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

:root {
    --primary-yellow: #D4AF37;
    --primary-orange: #FF8C42;
    --dark-blue: #0D3B66;
    --bright-blue: #1E90FF;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --border-gray: #333;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.navbar {
    background: rgba(255, 255, 255, 1);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: background 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--dark-blue);
    transition: color 0.3s ease;
}

.logo-container {
    position: relative;
    width: 50px;
    height: 50px;
}

.site-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-circle {
    width: 50px;
    height: 50px;
    background: var(--bright-blue);
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-orange);
}

.has-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-blue);
    min-width: 280px;
    padding: 0;
    margin-top: 0.5rem;
    list-style: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1001;
}

.has-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: white !important;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: background 0.3s ease, padding-left 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(255,255,255,0.1);
    padding-left: 25px;
}

.search-btn {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--dark-blue);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-blue);
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark-blue);
    margin: 5px 0;
    transition: 0.3s;
}

/* Scrolled navbar state */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg-image.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
}

.hero-subtitle {
    color: var(--primary-yellow);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    letter-spacing: -1px;
}

.brand-highlight {
    color: var(--primary-yellow);
}

.tech-text {
    color: white;
}

.hero-carousel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-track {
    position: relative;
    min-height: 180px;
}

.carousel-item {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

.carousel-item.active {
    display: block;
}

.carousel-image {
    width: 100%;
    max-width: 500px;
    height: 300px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: imageZoom 20s ease-in-out infinite;
    transition: transform 0.5s ease;
}

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

.carousel-item.active .carousel-image img {
    animation: imageFadeZoom 0.8s ease-out;
}

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

.carousel-item h3 {
    color: var(--primary-yellow);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    font-family: 'Montserrat', 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.carousel-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background: var(--primary-yellow);
    transform: scale(1.2);
}

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

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }
    50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.8); }
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-yellow);
    color: var(--dark-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-details {
    background: white;
    color: var(--bright-blue);
    font-size: 0.8rem;
    padding: 10px 20px;
    border-radius: 20px;
}

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

.intro-section {
    background: var(--primary-yellow);
    padding: 50px 0;
}

.intro-section h2 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--black);
    text-align: center;
    margin-bottom: 1.5rem;
}

.intro-content {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-content p {
    color: var(--black);
    line-height: 1.9;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.intro-content strong {
    font-weight: 700;
}

section {
    padding: 70px 0;
}

section h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--black);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 3rem;
}

.services {
    background: var(--light-gray);
}

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

.service-card-bordered {
    background: white;
    padding: 2rem;
    border: 2px solid var(--primary-orange);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-bordered:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card-bordered h3 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
}

.service-card-bordered ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-card-bordered ul li {
    padding: 0.5rem 0;
    color: #333;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.2rem;
}

.service-card-bordered ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

.portfolio {
    background: #e8f4f8;
    padding: 70px 0;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    background: white;
    border: 2px solid var(--dark-blue);
    color: var(--dark-blue);
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: var(--dark-blue);
    color: white;
}

.filter-btn.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
}

.portfolio-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.portfolio-slider {
    display: flex;
    overflow: hidden;
    position: relative;
    gap: 1.5rem;
}

.project-slide {
    min-width: calc(33.333% - 1rem);
    flex-shrink: 0;
    transition: transform 0.5s ease;
}

.project-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid var(--primary-orange);
    text-align: center;
    height: 100%;
}

.project-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6b35 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
}

.project-card h3 {
    color: var(--dark-blue);
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.project-type {
    color: var(--primary-orange);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.project-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.project-links {
    margin-top: 2rem;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--dark-blue);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-orange);
    width: 30px;
    border-radius: 6px;
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.gallery-image {
    height: 350px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 59, 102, 0.95);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

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

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.project-category {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.project-description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-primary-small {
    background: var(--primary-yellow);
    color: var(--dark-blue);
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-primary-small:hover {
    background: #e6a800;
    transform: translateY(-2px);
}

.gallery-footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.1rem;
}

.gallery-footer p {
    color: var(--text-gray);
}

.highlight-link {
    color: var(--primary-yellow);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--primary-yellow);
    transition: color 0.3s ease;
}

.highlight-link:hover {
    color: var(--dark-blue);
}

.tech-separator {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.tech-separator-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.pricing {
    background: var(--light-gray);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid var(--primary-orange);
    transition: transform 0.3s ease;
    position: relative;
}

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

.pricing-featured {
    border: 3px solid var(--primary-yellow);
    background: #fffef5;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-yellow);
    color: var(--dark-blue);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.pricing-header h3 {
    color: var(--dark-blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.price {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--bright-blue);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.pricing-features li:before {
    content: "✓ ";
    color: var(--bright-blue);
    font-weight: bold;
    margin-right: 0.5rem;
}

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

.pricing-service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--primary-orange);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-service-card:hover {
    transform: translateY(-8px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pricing-service-card h3 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.price-tag {
    color: var(--primary-orange);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    min-height: 40px;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(255, 140, 66, 0.1);
    border-radius: 8px;
}

.pricing-note p {
    color: var(--dark-blue);
    font-size: 1rem;
    font-weight: 600;
}

.contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-item h3 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    font-size: 1rem;
}

.contact-item a {
    color: var(--bright-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bright-blue);
}

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

.success-message {
    background: #4CAF50;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.contact-page-section {
    padding: 4rem 0;
    background: white;
}

.contact-page-section h2 {
    color: var(--dark-blue);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-form h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.contact-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.business-hours {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.business-hours h3 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.business-hours p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer {
    background: linear-gradient(135deg, rgba(13, 59, 102, 0.90) 0%, rgba(26, 84, 144, 0.90) 100%), 
                url('../attached_assets/stock_images/city_skyline_night_l_ee7a6d1e.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-yellow));
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.footer-col p {
    line-height: 1.8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

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

.footer-col ul li a:hover {
    color: white;
    text-decoration: underline;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    fill: var(--primary-orange);
}

.footer-contact-text {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact-text a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-text a:hover {
    color: white;
}

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

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-links span {
    color: rgba(255, 255, 255, 0.5);
}

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

.social-icon {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-icon:hover {
    background: white;
    color: var(--primary-orange);
}

.stats-section {
    background: linear-gradient(rgba(13, 59, 102, 0.85), rgba(22, 33, 62, 0.85)), url('../attached_assets/stock_images/server_room_data_cen_14fa9c79.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0.5;
}

.stats-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
}

.stats-section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 1;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-orange);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: inline-block;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    display: inline-block;
    margin-left: 0.2rem;
    vertical-align: super;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.about-hero {
    position: relative;
    min-height: 350px;
    background: url('static/img/modern_technology_di_02472fb7.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.about-hero .hero-content {
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.about-hero .hero-subtitle {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Portfolio Hero Section */
.portfolio-hero {
    position: relative;
    min-height: 650px;
    background: url('static/img/portfolio-hero-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.portfolio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.9) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    z-index: 2;
}

.portfolio-hero .container {
    position: relative;
    z-index: 3;
}

.portfolio-hero .hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 193, 7, 0.2);
    border: 2px solid var(--primary-yellow);
    color: var(--primary-yellow);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.portfolio-hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.portfolio-hero .hero-subtitle {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.portfolio-hero .hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-yellow);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 15px rgba(255, 193, 7, 0.4);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: white;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator svg {
    width: 30px;
    height: 30px;
    opacity: 0.7;
}

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

.about-intro {
    background: var(--primary-orange);
    padding: 60px 0;
}

.about-intro h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--black);
    text-align: center;
    margin-bottom: 2rem;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid var(--primary-orange);
}

.about-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.our-story {
    background: var(--light-gray);
    padding: 80px 0;
}

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

.story-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid var(--primary-orange);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-card h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.story-card p {
    color: #555;
    line-height: 1.7;
}

.why-choose-us {
    background: white;
    padding: 80px 0;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--dark-blue);
    margin-bottom: 3rem;
}

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

.reason-item {
    position: relative;
    padding-left: 80px;
}

.reason-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-yellow);
    color: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
}

.reason-item h3 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
}

.reason-item p {
    color: #555;
    line-height: 1.7;
}

.our-journey,
.our-approach {
    background: var(--light-gray);
    padding: 80px 0;
}

.our-journey h2,
.our-approach h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--dark-blue);
    margin-bottom: 2rem;
}

.journey-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid var(--primary-orange);
}

.journey-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.approach-step {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--primary-orange);
}

.approach-step h3 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
}

.approach-step p {
    color: #555;
    line-height: 1.7;
}

.cta-section {
    background: var(--dark-blue);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

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

.btn-secondary {
    background: white;
    color: var(--dark-blue);
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.service-detail-hero,
.order-hero {
    position: relative;
    min-height: 300px;
    background: url('attached_assets/stock_images/professional_technol_0dd52657.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.service-detail-hero::before,
.order-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.85) 0%, rgba(30, 95, 140, 0.85) 50%, rgba(42, 157, 143, 0.85) 100%);
    z-index: 1;
}

.service-detail-hero .hero-content,
.order-hero .hero-content {
    position: relative;
    z-index: 2;
}

.service-detail-hero .hero-content h1,
.order-hero .hero-content h1 {
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
    text-align: center;
}

.service-overview {
    background: white;
    padding: 60px 0;
}

.overview-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    font-weight: 500;
}

.service-features {
    background: var(--light-gray);
    padding: 80px 0;
}

.service-features h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--dark-blue);
    margin-bottom: 3rem;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--primary-orange);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

.service-packages {
    background: white;
    padding: 80px 0;
}

.service-packages h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.package-card {
    background: white;
    border: 2px solid var(--primary-orange);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.package-card h3 {
    color: var(--dark-blue);
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.package-price {
    color: var(--primary-orange);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.package-features li {
    padding: 0.6rem 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.order-form-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.order-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.order-intro h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.order-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.order-form {
    background: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid var(--primary-orange);
}

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

.order-form select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

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

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1rem;
    width: 100%;
}

.form-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #999;
    text-align: center;
    line-height: 1.6;
}

.order-support {
    max-width: 800px;
    margin: 4rem auto 0;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
}

.order-support h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.support-contacts {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.support-item strong {
    display: block;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.support-item a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.support-item a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu > li > a {
        display: block;
        padding: 1rem 1.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        margin-top: 0;
        background: #f5f5f5;
    }
    
    .has-dropdown:hover .dropdown-menu {
        display: none;
    }
    
    .has-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    section h2 {
        font-size: 1.6rem;
    }
    
    .services-grid,
    .portfolio-gallery,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
    }
    
    .footer-col:first-child {
        grid-column: 1 / -1;
    }
    
    .footer-col:nth-child(2),
    .footer-col:nth-child(3) {
        grid-column: auto;
    }
    
    .footer-col:last-child {
        grid-column: 1 / -1;
    }
    
    .project-slide {
        min-width: 100%;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .portfolio-slider-container {
        padding: 0 50px;
    }
    
    .navbar {
        position: relative;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-slide {
        min-width: calc(50% - 0.75rem);
    }
}

.modern-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.modern-stats-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0D3B66;
    margin-bottom: 1rem;
}

.modern-stats-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6B6B6B;
    margin-bottom: 3rem;
}

.modern-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.modern-stat-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary-orange);
}

.modern-stat-card:hover {
    transform: translateY(-8px);
}

.stat-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #FFF8F0, #FFE8D0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    transition: all 0.4s ease;
}

.modern-stat-card:hover .stat-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #FF7A00, #FFB84D);
    color: white;
}

.stat-card-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #0D3B66;
    line-height: 1;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #0D3B66, #1E5A8E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card-label {
    font-size: 1rem;
    color: #6B6B6B;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #FF7A00, #FFB84D);
    margin: 1.5rem auto 0;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.modern-stat-card:hover .stat-card-line {
    width: 80px;
}

.portfolio-intro {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

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

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid var(--primary-orange);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

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

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

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem;
    transform: translateY(50%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    color: #ddd;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.portfolio-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--primary-orange);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a2540 0%, #1e5f8c 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .modern-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .modern-stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-card-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .stat-card-number {
        font-size: 2.5rem;
    }
    
    .stat-card-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .modern-stats-grid {
        grid-template-columns: 1fr;
    }
}

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-button svg {
    width: 32px;
    height: 32px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(255, 122, 0, 0.6);
}

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

.hero-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    z-index: -2;
}

.hero-gradient-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 140, 66, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(30, 144, 255, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 140, 66, 0.1);
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: 50px;
    color: var(--primary-orange);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    color: white;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 14px 38px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.hero-stats-row {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-orange);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.hero-image-wrapper {
    position: relative;
    width: 100%;
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.card-icon {
    font-size: 1.8rem;
}

.card-text {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 0.95rem;
}

.floating-card.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 50%;
    right: -10%;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 10%;
    left: -5%;
    animation-delay: 2s;
}

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

.hero-shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    fill: #ffffff;
}

/* Flashy Hero Section with Box Animations */
.hero-flashy {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
    background: linear-gradient(135deg, #0D3B66 0%, #1a1a2e 50%, #16213e 100%);
}

.hero-flashy .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 122, 0, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(30, 144, 255, 0.08) 0%, transparent 50%);
    z-index: 0;
}

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

.hero-text-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 10;
}

.hero-title-flashy {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    color: white;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-description-flashy {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-phone-animated {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    animation: phoneRing 2s ease-in-out infinite;
}

.hero-phone-animated .phone-icon {
    width: 28px;
    height: 28px;
    fill: var(--primary-orange);
    animation: phoneShake 1.5s ease-in-out infinite;
}

.hero-phone-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-phone-number:hover {
    color: #ff8c00;
    transform: scale(1.05);
}

@keyframes phoneRing {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

@keyframes phoneShake {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: rotate(-10deg);
    }
    20%, 40%, 60%, 80% {
        transform: rotate(10deg);
    }
}

.hero-cta-flashy {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-hero-orange {
    background: transparent;
    border: 2px solid var(--primary-orange);
    color: white;
    padding: 14px 38px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-hero-orange:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 14px 38px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.hero-stats-flashy {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.stat-number-flashy {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 30px rgba(255, 122, 0, 0.5);
}

.stat-label-flashy {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Animated Image Boxes */
.hero-images-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.image-box {
    position: absolute;
    width: 300px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.image-box.active {
    opacity: 1;
}

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

/* Left side boxes - slide in from left */
.image-box.box-left-1 {
    top: 15%;
    left: -400px;
}

.image-box.box-left-1.active {
    left: 8%;
    animation: slideInFromLeft 1s ease-out forwards, float 4s ease-in-out infinite 1s;
}

.image-box.box-left-2 {
    top: 45%;
    left: -400px;
}

.image-box.box-left-2.active {
    left: 5%;
    animation: slideInFromLeft 1s ease-out 0.2s forwards, float 4s ease-in-out infinite 1.2s;
}

.image-box.box-left-3 {
    top: 70%;
    left: -400px;
}

.image-box.box-left-3.active {
    left: 10%;
    animation: slideInFromLeft 1s ease-out 0.4s forwards, float 4s ease-in-out infinite 1.4s;
}

/* Right side boxes - slide in from right */
.image-box.box-right-1 {
    top: 10%;
    right: -400px;
}

.image-box.box-right-1.active {
    right: 8%;
    animation: slideInFromRight 1s ease-out forwards, float 4s ease-in-out infinite 1s;
}

.image-box.box-right-2 {
    top: 40%;
    right: -400px;
}

.image-box.box-right-2.active {
    right: 5%;
    animation: slideInFromRight 1s ease-out 0.2s forwards, float 4s ease-in-out infinite 1.2s;
}

.image-box.box-right-3 {
    top: 68%;
    right: -400px;
}

.image-box.box-right-3.active {
    right: 10%;
    animation: slideInFromRight 1s ease-out 0.4s forwards, float 4s ease-in-out infinite 1.4s;
}

/* Keyframe animations */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100px) rotate(-10deg) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: translateX(0) rotate(0) scale(1);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100px) rotate(10deg) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: translateX(0) rotate(0) scale(1);
        opacity: 1;
    }
}

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

/* Responsive adjustments for flashy hero */
@media (max-width: 1024px) {
    .hero-title-flashy {
        font-size: 3.2rem;
    }
    
    .image-box {
        width: 250px;
        height: 170px;
    }
}

@media (max-width: 768px) {
    .hero-flashy {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-title-flashy {
        font-size: 2.5rem;
    }
    
    .hero-description-flashy {
        font-size: 1.1rem;
    }
    
    .image-box {
        width: 180px;
        height: 120px;
    }
    
    .image-box.box-left-1.active {
        left: 2%;
    }
    
    .image-box.box-left-2.active {
        left: 0%;
    }
    
    .image-box.box-left-3.active {
        left: 3%;
    }
    
    .image-box.box-right-1.active {
        right: 2%;
    }
    
    .image-box.box-right-2.active {
        right: 0%;
    }
    
    .image-box.box-right-3.active {
        right: 3%;
    }
}

@media (max-width: 480px) {
    .hero-title-flashy {
        font-size: 2rem;
    }
    
    .hero-description-flashy {
        font-size: 1rem;
    }
    
    .stat-number-flashy {
        font-size: 2.2rem;
    }
    
    .image-box {
        display: none;
    }
}

/* Top Info Bar Section */
.top-info-bar {
    background: linear-gradient(135deg, rgba(13, 59, 102, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
    padding: 12px 0;
    border-bottom: 2px solid rgba(255, 140, 66, 0.3);
}

.top-info-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.top-info-title {
    font-size: 1.3rem;
    font-weight: 900;
    color: white;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

.top-info-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.top-info-phone:hover {
    transform: scale(1.05);
}

.phone-icon-small {
    width: 18px;
    height: 18px;
    fill: var(--primary-orange);
}

.top-info-phone-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.btn-top-bar {
    padding: 8px 20px;
    background: var(--primary-orange);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-top-bar:hover {
    background: #ff6b3d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.4);
}

/* Tech Video Hero Section - Compact & Animated */
.hero-tech-video {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-tech-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomPulse 20s ease-in-out infinite;
}

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

.hero-tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 59, 102, 0.85) 0%, rgba(26, 26, 46, 0.75) 50%, rgba(22, 33, 62, 0.85) 100%);
    z-index: 1;
}

.hero-container-full {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-top-bar {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    z-index: 10;
}

.hero-title-top {
    font-size: 1.6rem;
    font-weight: 900;
    color: white;
    margin: 0;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 140, 66, 0.3);
    line-height: 1;
    white-space: nowrap;
}

.hero-phone-top {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(13, 59, 102, 0.7);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 8px;
    border: 2px solid rgba(255, 140, 66, 0.5);
}

.phone-icon-top {
    width: 20px;
    height: 20px;
    fill: var(--primary-orange);
    animation: phoneRotate 1.5s ease-in-out infinite;
}

.hero-phone-number-top {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-bottom-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px;
    flex-wrap: wrap;
}

.btn-hero-bottom {
    background: var(--primary-orange);
    color: white;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-orange);
}

.btn-hero-bottom:hover {
    background: transparent;
    color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

.btn-hero-call {
    background: var(--primary-yellow);
    color: var(--dark-blue);
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-yellow);
}

.btn-hero-call:hover {
    background: transparent;
    color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

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

.hero-img-box {
    position: absolute;
    width: 280px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-img-box.active {
    opacity: 1;
}

.hero-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-box.box-1 {
    top: 15%;
    right: -300px;
}

.hero-img-box.box-1.active {
    animation: slideInRight 1s ease-out forwards, moveAround1 15s ease-in-out infinite 1s;
    right: 10%;
}

.hero-img-box.box-2 {
    top: 35%;
    left: -300px;
}

.hero-img-box.box-2.active {
    animation: slideInLeft 1.2s ease-out forwards, moveAround2 18s ease-in-out infinite 1.2s;
    left: 8%;
}

.hero-img-box.box-3 {
    top: 55%;
    left: 50%;
    transform: translateX(-50%) scale(0);
}

.hero-img-box.box-3.active {
    animation: zoomInCenter 1s ease-out 0.3s forwards, moveAround3 20s ease-in-out infinite 1.3s;
}

.hero-img-box.box-4 {
    top: 65%;
    right: -300px;
}

.hero-img-box.box-4.active {
    animation: slideInRight 1.3s ease-out 0.2s forwards, moveAround4 16s ease-in-out infinite 1.5s;
    right: 15%;
}

.hero-img-box.box-5 {
    bottom: 15%;
    left: -300px;
}

.hero-img-box.box-5.active {
    animation: slideInLeft 1.1s ease-out 0.4s forwards, moveAround5 19s ease-in-out infinite 1.5s;
    left: 5%;
}

.hero-img-box.box-6 {
    top: 25%;
    left: 50%;
    transform: translateX(-50%) scale(0);
}

.hero-img-box.box-6.active {
    animation: zoomInCenter 1.2s ease-out 0.5s forwards, moveAround6 17s ease-in-out infinite 1.7s;
}

@keyframes moveAround1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-50px, 30px) rotate(3deg); }
    50% { transform: translate(30px, -40px) rotate(-3deg); }
    75% { transform: translate(-30px, -20px) rotate(2deg); }
}

@keyframes moveAround2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(40px, -30px) rotate(-3deg); }
    50% { transform: translate(-30px, 40px) rotate(3deg); }
    75% { transform: translate(50px, 20px) rotate(-2deg); }
}

@keyframes moveAround3 {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
    25% { transform: translateX(-50%) translateY(-40px) rotate(2deg); }
    50% { transform: translateX(-50%) translateY(40px) rotate(-2deg); }
    75% { transform: translateX(-50%) translateY(-30px) rotate(3deg); }
}

@keyframes moveAround4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-40px, 40px) rotate(3deg); }
    50% { transform: translate(40px, -30px) rotate(-3deg); }
    75% { transform: translate(-50px, 30px) rotate(2deg); }
}

@keyframes moveAround5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, -40px) rotate(-2deg); }
    50% { transform: translate(-40px, -30px) rotate(3deg); }
    75% { transform: translate(30px, 40px) rotate(-3deg); }
}

@keyframes moveAround6 {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
    25% { transform: translateX(-50%) translateY(40px) rotate(-3deg); }
    50% { transform: translateX(-50%) translateY(-40px) rotate(3deg); }
    75% { transform: translateX(-50%) translateY(30px) rotate(-2deg); }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100px) rotate(10deg) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: translateX(0) rotate(0) scale(1);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100px) rotate(-10deg) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: translateX(0) rotate(0) scale(1);
        opacity: 1;
    }
}

@keyframes zoomInCenter {
    0% {
        transform: translateX(-50%) scale(0) rotate(0deg);
        opacity: 0;
    }
    100% {
        transform: translateX(-50%) scale(1) rotate(0deg);
        opacity: 1;
    }
}

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

.hero-title-corner {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.3;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 140, 66, 0.3);
    }
    50% {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 140, 66, 0.6);
    }
}

.hero-phone-corner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    animation: phoneGlow 2s ease-in-out infinite;
}

@keyframes phoneGlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

.phone-icon-corner {
    width: 18px;
    height: 18px;
    fill: var(--primary-orange);
    animation: phoneRotate 1.5s ease-in-out infinite;
}

@keyframes phoneRotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: rotate(-8deg);
    }
    20%, 40%, 60%, 80% {
        transform: rotate(8deg);
    }
}

.hero-phone-link-corner {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-phone-link-corner:hover {
    color: var(--primary-yellow);
    transform: scale(1.05);
}

.hero-cta-center {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
}

.btn-hero-compact {
    background: var(--primary-orange);
    color: white;
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-orange);
}

.btn-hero-compact:hover {
    background: transparent;
    color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    background: rgba(255, 140, 66, 0.1);
    transform: translateY(-2px);
}

/* Responsive for Tech Video Hero */
@media (max-width: 1024px) {
    .top-info-title {
        font-size: 1.1rem;
    }
    
    .top-info-phone-number {
        font-size: 1rem;
    }
    
    .hero-img-box {
        width: 220px;
        height: 140px;
    }
}

@media (max-width: 768px) {
    .top-info-bar {
        padding: 10px 0;
    }
    
    .top-info-content {
        justify-content: center;
        gap: 12px;
    }
    
    .top-info-title {
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
    }
    
    .top-info-phone-number {
        font-size: 0.9rem;
    }
    
    .btn-top-bar {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .hero-tech-video {
        min-height: 80vh;
        padding: 80px 0 60px;
    }
    
    .hero-bottom-bar {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-hero-bottom,
    .btn-hero-call {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-img-box {
        width: 180px;
        height: 120px;
    }
    
    .hero-img-box.box-1.active {
        right: 5%;
    }
    
    .hero-img-box.box-2.active {
        left: 5%;
    }
    
    .hero-img-box.box-4.active {
        right: 8%;
    }
    
    .hero-img-box.box-5.active {
        left: 3%;
    }
}

@media (max-width: 480px) {
    .hero-title-top {
        font-size: 1rem;
    }
    
    .hero-phone-number-top {
        font-size: 0.95rem;
    }
    
    .btn-hero-bottom,
    .btn-hero-call {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .hero-img-box {
        width: 140px;
        height: 90px;
    }
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    background: linear-gradient(rgba(13, 59, 102, 0.85), rgba(22, 33, 62, 0.85)), url('../attached_assets/stock_images/server_room_data_cen_14fa9c79.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.clients-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.clients-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.clients-slider-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.clients-slider {
    display: flex;
    gap: 40px;
    will-change: transform;
}

.client-slide {
    flex-shrink: 0;
    width: 250px;
    height: 120px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.client-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.client-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-split {
        gap: 40px;
    }
    
    .floating-card {
        padding: 12px 20px;
    }
    
    .card-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats-row {
        justify-content: center;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .floating-card {
        display: none;
    }
    
    .clients-title {
        font-size: 2rem;
    }
    
    .client-slide {
        width: 200px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn-large {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .btn-outline {
        padding: 12px 28px;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-stats-row {
        gap: 30px;
    }
    
    .clients-title {
        font-size: 1.6rem;
    }
    
    .client-slide {
        width: 180px;
        height: 90px;
    }
}

/* Portfolio Hero Responsive */
@media (max-width: 768px) {
    .portfolio-hero {
        min-height: 500px;
        padding: 80px 0 60px;
    }
    
    .portfolio-hero h1 {
        font-size: 2.5rem;
    }
    
    .portfolio-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .portfolio-hero .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 15px;
    }
}

@media (max-width: 480px) {
    .portfolio-hero {
        min-height: 450px;
        padding: 60px 0 50px;
    }
    
    .portfolio-hero h1 {
        font-size: 2rem;
    }
    
    .portfolio-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .portfolio-hero .hero-description {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-item .stat-number {
        font-size: 2rem;
    }
    
    .stat-item .stat-label {
        font-size: 0.75rem;
    }
}

/* Portfolio Filters */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

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

.filter-btn.active {
    background: var(--primary-orange);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

/* Portfolio Category Tag */
.portfolio-category-tag {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

/* Portfolio Card Styles */
.portfolio-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.portfolio-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    overflow: hidden;
}

.portfolio-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.portfolio-placeholder {
    font-size: 1.5rem;
    font-weight: 900;
    color: #1a1a2e;
    text-align: center;
}

.portfolio-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-card-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.portfolio-industry {
    font-size: 0.85rem;
    color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.portfolio-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-portfolio {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-orange);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
    align-self: flex-start;
}

.btn-portfolio:hover {
    background: #e67a33;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .portfolio-filters {
        gap: 10px;
        margin: 30px 0;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .portfolio-card-image {
        height: 180px;
        padding: 20px;
    }
    
    .portfolio-placeholder {
        font-size: 1.2rem;
    }
    
    .portfolio-card-content {
        padding: 20px;
    }
    
    .portfolio-card-content h3 {
        font-size: 1.2rem;
    }
}
