:root {
    --primary: #ff6b00;
    --secondary: #ff3d00;
    --dark: #ffffff;
    --card-bg: #f8f9fa;
    --text: #212529;
    --gray-text: #6c757d;
    --glow: #ff8c00;
    --gradient-1: linear-gradient(135deg, #ff6b00, #ff3d00);
    --gradient-2: linear-gradient(135deg, #ff6b00, #ff8c00);
    --shadow-glow: 0 0 30px rgba(255, 107, 0, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 107, 0, 0.15);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Orbitron', monospace;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
}

::selection {
    background: var(--primary);
    color: #fff;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

a {
    text-decoration: none;
    color: inherit;
}

.text-orange {
    color: var(--primary) !important;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Loading Screen */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s, visibility 0.6s;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    position: relative;
}

.loader-ring {
    width: 80px;
    height: 80px;
    border: 3px solid transparent;
    border-top-color: var(--primary);
    border-bottom-color: var(--secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader-ring-inner {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border: 3px solid transparent;
    border-left-color: var(--glow);
    border-right-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite reverse;
}

.loader-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 4px;
    text-transform: uppercase;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Mouse Glow */
#mouse-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* Particles Canvas */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.25);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--gray-text);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
    z-index: 9999;
    background: #010005;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar.scrolled {
    background: #010005;
    border-bottom: 1px solid rgba(255, 107, 0, 0.15);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.25) !important;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-logo {
    height: 95px;
    max-height: 95px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.footer-logo {
    height: 170px;
    max-height: 170px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.navbar-brand .brand-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

.navbar-brand .brand-text {
    display: flex;
    flex-direction: column;
}

.navbar-brand .brand-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
}

.navbar-brand .brand-tagline {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px !important;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.btn-nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-nav-phone:hover {
    background: var(--gradient-1);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 25px rgba(255, 107, 0, 0.3);
}

/* ===== Hero Slider Section ===== */
.hero-section {
    height: 70vh;
    min-height: 520px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    /* fallback bg when no slider slides */
    background: #010005;
}

/* The slider container fills the section but starts below the navbar */
.hero-slider {
    position: absolute;
    top: 105px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

/* Individual slide */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
    z-index: 0;
}
.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Shared media styles */
.slide-bg-blur {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: brightness(0.45);
    z-index: 0;
}
.slide-media {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1;
}
/* Images: show desktop by default */
.slide-media-desktop { display: block; }
.slide-media-mobile  { display: none; }

/* Video media */
video.slide-media {
    object-fit: cover;
    object-position: center;
}

/* Per-slide gradient overlay - dark on left for text readability */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 2;
}

/* On mobile: vertical gradient */
@media (max-width: 991.98px) {
    .slide-overlay {
        background: rgba(0, 0, 0, 0.15);
    }
    /* On mobile: hide desktop media, show mobile */
    .slide-media-desktop { display: none !important; }
    .slide-media-mobile  { display: block !important; }
    video.slide-media-desktop { display: none !important; }
    video.slide-media-mobile  { display: block !important; }
}

/* Slider navigation arrows */
.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}
.hero-slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 0 24px rgba(255, 107, 0, 0.45);
}
.hero-slider-prev { left: 28px; }
.hero-slider-next { right: 28px; }

/* Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    align-items: center;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.hero-dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}
.hero-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Hero text colors adapt to dark slider background */
.hero-slider-section .hero-title,
.hero-slider-section .hero-title span:not(.gradient-text) {
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-slider-section .hero-subtitle {
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.hero-slider-section .hero-badge {
    background: rgba(255, 107, 0, 0.2);
    border-color: rgba(255, 107, 0, 0.45);
    color: #ffb060;
}
.hero-slider-section .hero-stat-number { color: #ff8c30; }
.hero-slider-section .hero-stat-label  { color: rgba(255,255,255,0.75); }
.hero-slider-section .hero-stat-divider-vertical {
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.3), transparent);
}
.hero-slider-section .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}
.hero-slider-section .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 3;
    pointer-events: none;
}

/* Below-Hero CTA bar */
.hero-cta-section {
    background: #010005;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 10;
}
.hero-cta-section .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}
.hero-cta-section .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: #ffffff;
}

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-title-single {
    font-family: var(--font-display);
    font-size: 2.05rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
    letter-spacing: 1.5px;
    line-height: 1.2;
    margin-top: 115px;
}

.hero-text-slide {
    display: none;
    animation: heroTextIn 0.6s ease-out;
}
.hero-text-slide.active {
    display: block;
}
@keyframes heroTextIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991.98px) {
    .hero-slider-section {
        align-items: flex-end;
    }
    .hero-title-single {
        font-size: 1.4rem;
        margin-top: 0;
        margin-bottom: 50px;
        padding: 0 15px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.12);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-text);
    max-width: 650px;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(0, 0, 0, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: lightSweep 3s ease-in-out infinite;
}

@keyframes lightSweep {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.btn-primary {
    background: var(--gradient-1);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(255, 107, 0, 0.4);
    background: var(--gradient-2);
}

.btn-outline-light {
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 12px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    color: var(--text);
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.4);
    color: var(--text);
    transform: translateY(-3px);
}

.hero-stats-inline {
    background: transparent;
    padding: 10px 0;
}

.hero-stat-divider-vertical {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(255, 107, 0, 0.4), transparent);
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.hero-stat-label {
    display: block;
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-top: 4px;
}

.hero-stat-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.3), transparent);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 4px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, var(--dark) 0%, #f0f2f5 100%);
}

.about-image-grid {
    position: relative;
    padding-right: 0;
}

.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 107, 0, 0.15);
}

.about-img-main img {
    width: 100%;
    transition: var(--transition);
}

.about-img-main:hover img {
    transform: scale(1.05);
}

/* About 4-image Grid */
.about-main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.25);
}

.about-main-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    transition: var(--transition);
}

/* Overriding parent hover styling to only animate individual grid images */
.about-img-main:hover .about-main-grid img {
    transform: none;
}

.about-main-grid img:hover {
    transform: scale(1.06) !important;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.35);
}

/* Small image classes removed */

.about-experience-badge {
    position: absolute;
    top: 20px;
    right: 10px;
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.4);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 107, 0, 0.6); }
}

.about-text {
    color: var(--gray-text);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 0.95rem;
}

.about-feature i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Services Section */
.services-section {
    background: #f0f2f5;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 0 40px rgba(255, 107, 0, 0.04);
    border-color: rgba(255, 107, 0, 0.15);
}

.service-img {
    position: relative;
    overflow: hidden;
    height: 200px;
    flex-shrink: 0;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.12);
}

.service-content {
    padding: 16px 22px 20px;
    background: #ffffff;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

.service-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
    line-height: 1.3;
}

.service-content p {
    color: var(--gray-text);
    font-size: 0.85rem;
    line-height: 1.65;
    margin-bottom: 10px;
    flex: 1;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-link i {
    transition: transform 0.3s ease;
    font-size: 0.75rem;
}

.service-link:hover {
    color: var(--glow);
    gap: 10px;
}

.service-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 767.98px) {
    .service-img {
        height: 170px;
    }
    .service-content {
        padding: 12px 16px 16px;
    }
    .service-content h3 {
        font-size: 0.95rem;
    }
    .service-content p {
        font-size: 0.8rem;
    }
}

/* Why Choose Us */
.why-section {
    background: var(--dark);
}

.why-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 35px 28px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 0, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15), rgba(255, 61, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--gradient-1);
    color: #fff;
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.3);
    transform: rotateY(360deg);
}

.why-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--gray-text);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* Portfolio Section */
.portfolio-section {
    background: #f0f2f5;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 22px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--gray-text);
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-1);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
}

.portfolio-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.portfolio-img {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.portfolio-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #ffffff;
}

.portfolio-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.portfolio-tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(255, 107, 0, 0.2);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
}

/* Process Section */
.process-section {
    background: var(--dark);
    overflow: hidden;
}

.process-timeline {
    position: relative;
}

.process-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), rgba(255, 107, 0, 0.3), transparent);
    transform: translateY(-50%);
}

.process-step {
    position: relative;
    margin-bottom: 30px;
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 107, 0, 0.1);
    position: absolute;
    top: -10px;
    right: 20px;
    line-height: 1;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    height: 100%;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 0, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    transition: var(--transition);
}

.step-card:hover .step-icon {
    background: var(--gradient-1);
    color: #fff;
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.3);
}

.step-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #f0f2f5 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 0, 0.1);
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.stat-card:hover {
    border-color: rgba(255, 107, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.stat-number .plus {
    color: var(--primary);
    font-size: 2rem;
}

.stat-card p {
    color: var(--gray-text);
    font-size: 1rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    background: #f0f2f5;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    margin: 15px 10px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(255, 107, 0, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    font-size: 2.5rem;
    color: var(--primary);
}

.testimonial-author h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray-text);
}

/* Clients Section */
.clients-section {
    background: var(--dark);
}

.clients-carousel {
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    gap: 40px;
    animation: scrollClients 25s linear infinite;
    width: max-content;
}

@keyframes scrollClients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.clients-carousel:hover .clients-track {
    animation-play-state: paused;
}

.client-logo {
    flex: 0 0 auto;
    width: 170px;
    height: 90px;
}

.client-logo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gray-text);
    transition: var(--transition);
}

.client-logo-placeholder:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.1);
}

/* Contact Section */
.contact-section {
    background: #f0f2f5;
}

.contact-form-wrapper {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 40px;
}

.form-group {
    position: relative;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.form-control {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--text);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
    color: var(--text);
}

.form-control::placeholder {
    color: rgba(139, 148, 158, 0.6);
}

.form-control option {
    background: var(--dark);
    color: var(--text);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 22px;
    transition: var(--transition);
}

.contact-info-item:hover {
    border-color: rgba(255, 107, 0, 0.2);
    transform: translateX(5px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
}

.contact-info-item h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin: 0;
}

.contact-info-item a:hover {
    color: var(--primary);
}

/* Map Section */
.map-section {
    position: relative;
    z-index: 1;
}

.map-section iframe {
    display: block;
    filter: grayscale(0.5) invert(0.9);
}

/* Footer */
.footer-section {
    background: #010005;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 70px 0 0;
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand .brand-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
}

.footer-brand .brand-text {
    display: flex;
    flex-direction: column;
}

.footer-brand .brand-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
}

.footer-brand .brand-tagline {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-desc {
    color: #a0aec0;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    font-size: 1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-1);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.3);
}

.footer-heading {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    color: #ffffff;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-1);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #a0aec0;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--primary);
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #a0aec0;
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--primary);
    margin-top: 4px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: #a0aec0;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 50px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    color: #8892a4;
    font-size: 0.85rem;
    margin: 0;
}

/* Floating Buttons */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9997;
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.call-float {
    position: fixed;
    bottom: 170px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
    z-index: 9997;
    transition: var(--transition);
    animation: float 3s ease-in-out infinite 0.5s;
}

.call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.5);
    color: #fff;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 46px;
    height: 46px;
    background: var(--card-bg);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gradient-1);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
    transform: translateY(-3px);
}

/* Owl Carousel Custom */
.owl-theme .owl-dots .owl-dot span {
    background: rgba(255, 107, 0, 0.2);
    width: 12px;
    height: 12px;
    transition: var(--transition);
}

.owl-theme .owl-dots .owl-dot.active span {
    background: var(--primary);
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
}

.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary);
}

.owl-theme .owl-nav [class*='owl-'] {
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: var(--gradient-1);
    color: #fff;
}


/* ===================================
   RESPONSIVE STYLES
=================================== */

/* Large tablets and below */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
}

/* Tablets and below (md) */
@media (max-width: 991.98px) {
    .hero-slider {
        top: 72px;
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .about-image-grid {
        padding-right: 0;
        margin-bottom: 60px;
    }

    .about-img-small {
        bottom: -20px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .process-line {
        display: none;
    }

    .step-number {
        position: relative;
        top: 0;
        right: 0;
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .navbar-collapse {
        background: rgba(1, 0, 5, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-radius: 16px;
        margin-top: 10px;
        border: 1px solid rgba(255, 107, 0, 0.2);
        box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    }

    .nav-link {
        color: rgba(255, 255, 255, 0.85) !important;
        padding: 10px 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .btn-nav-phone {
        margin: 10px 0 0;
        justify-content: center;
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Small tablets / large phones (sm) */
@media (max-width: 767.98px) {
    .section {
        padding: 55px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 6px 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .hero-stats-inline {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px !important;
        margin-left: 0 !important;
    }

    .hero-stat-divider-vertical {
        display: none;
    }

    .hero-actions-wrapper {
        flex-direction: column;
        align-items: stretch !important;
        gap: 20px !important;
    }

    .portfolio-filter {
        gap: 6px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .filter-btn {
        font-size: 0.8rem;
        padding: 6px 14px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .whatsapp-float,
    .call-float {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .whatsapp-float {
        bottom: 90px;
    }

    .call-float {
        bottom: 150px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 20px;
    }
}

/* Mobile phones (xs) */
@media (max-width: 575.98px) {
    /* Base layout */
    html, body {
        width: 100%;
        overflow-x: hidden;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Section spacing */
    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.6rem;
        line-height: 1.25;
    }

    .section-subtitle {
        font-size: 0.92rem;
    }

    /* Navbar */
    .navbar {
        padding: 10px 0;
    }

    .navbar-logo {
        height: 68px !important;
        max-height: 68px !important;
    }

    .brand-name {
        font-size: 1.1rem !important;
    }

    .brand-tagline {
        font-size: 0.6rem !important;
        letter-spacing: 1.5px !important;
    }

    .navbar-toggler {
        padding: 4px 8px;
        font-size: 0.9rem;
    }

    /* Hero */
    .hero-section {
        height: 65vh;
        min-height: 420px;
        padding-top: 90px;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 5px 14px;
        margin-bottom: 14px;
    }

    .hero-title {
        font-size: 1.55rem;
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 0.88rem;
        margin-bottom: 22px;
        line-height: 1.7;
    }

    .hero-actions-wrapper {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 16px !important;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .hero-stats-inline {
        flex-wrap: wrap !important;
        justify-content: space-around !important;
        gap: 10px !important;
        margin-left: 0 !important;
        width: 100%;
    }

    .hero-stat-divider-vertical {
        display: none;
    }

    .hero-stat-number {
        font-size: 1.4rem;
    }

    .hero-stat-label {
        font-size: 0.72rem;
    }

    /* About section */
    .about-image-grid {
        padding-right: 0;
        margin-bottom: 60px;
    }

    .about-img-small {
        bottom: -20px;
        width: 48%;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .about-text {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    /* Services */
    .service-card {
        padding: 26px 20px;
    }

    .service-card h3 {
        font-size: 1.05rem;
    }

    .service-card p {
        font-size: 0.88rem;
    }

    /* Why section */
    .why-card {
        padding: 26px 20px;
    }

    .why-card h4 {
        font-size: 1rem;
    }

    .why-card p {
        font-size: 0.85rem;
    }

    .why-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    /* Portfolio */
    .portfolio-filter {
        gap: 6px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .filter-btn {
        font-size: 0.78rem;
        padding: 5px 12px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .portfolio-img img {
        height: 210px;
    }

    /* Process */
    .process-line {
        display: none;
    }

    .step-number {
        position: relative;
        top: 0;
        right: 0;
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .process-step {
        margin-bottom: 16px;
    }

    .step-card {
        padding: 22px 18px;
    }

    /* Stats */
    .stat-card {
        padding: 26px 16px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-icon {
        font-size: 2rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 26px 20px;
        margin: 8px 4px;
    }

    .testimonial-text {
        font-size: 0.88rem;
    }

    /* Clients */
    .clients-track {
        gap: 16px;
    }

    .client-logo {
        width: 130px;
        height: 65px;
    }

    .client-logo-placeholder {
        font-size: 0.85rem;
    }

    /* Contact */
    .contact-form-wrapper {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .form-control {
        padding: 11px 13px;
        font-size: 0.88rem;
    }

    .contact-info-item {
        padding: 16px;
        gap: 12px;
    }

    .contact-info-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 0.95rem;
    }

    .contact-info-item h5 {
        font-size: 0.88rem;
    }

    .contact-info-item p,
    .contact-info-item a {
        font-size: 0.82rem;
    }

    /* Footer */
    .footer-section {
        padding: 48px 0 0;
    }

    .footer-brand .footer-logo {
        height: 85px;
        max-height: 85px;
    }

    .footer-heading {
        font-size: 0.95rem;
        margin-bottom: 14px;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-contact li {
        font-size: 0.85rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        margin-top: 28px;
        padding: 18px 0;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    /* Map */
    .map-section iframe {
        height: 240px;
    }

    /* Floating buttons */
    .whatsapp-float {
        bottom: 86px;
        right: 14px;
        width: 46px;
        height: 46px;
        font-size: 1.25rem;
    }

    .call-float {
        bottom: 144px;
        right: 14px;
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
    }

    .back-to-top {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
        bottom: 18px;
        right: 14px;
    }

    /* Hide decorative elements on mobile */
    #mouse-glow {
        display: none !important;
    }

    #particles-canvas {
        display: none !important;
    }

    .scroll-indicator {
        display: none;
    }
}

