@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;800&family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #040814;
    color: #e2e8f0;
    overflow-x: hidden;
    position: relative;
}

/* 3D Background Engine */
.canvas-3d-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.floating-logistics-icon {
    position: absolute;
    color: rgba(255, 87, 34, 0.08);
    filter: drop-shadow(0 0 8px rgba(255, 87, 34, 0.2));
    animation: floatMove 20s linear infinite;
}

/* Header Navbar */
header {
    background: rgba(4, 8, 20, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo h1 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    font-size: 24px;
    letter-spacing: 1px;
}

.logo h1 span {
    color: #ff5722;
    text-shadow: 0 0 15px rgba(255, 87, 34, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    color: #cbd5e1;
    text-decoration: none;
    margin: 0 18px;
    font-weight: 500;
    transition: 0.3s ease;
}

.nav-links li a:hover {
    color: #ff5722;
}

.btn-nav {
    background: linear-gradient(135deg, #ff7043, #ff5722);
    color: #fff !important;
    padding: 9px 22px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.burger-menu {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section with Parallax Shifting Backdrop */
.hero-section {
    background: linear-gradient(180deg, rgba(4, 8, 20, 0.2), #040814),
                url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?q=80&w=1200') no-repeat center center/cover;
    background-attachment: fixed;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.badge-premium {
    background: rgba(255, 87, 34, 0.12);
    border: 1px solid rgba(255, 87, 34, 0.4);
    color: #ff7043;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.hero-content h2 {
    font-size: 54px;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h2 span {
    background: linear-gradient(135deg, #ff8a65, #ff5722);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 19px;
    color: #94a3b8;
    max-width: 750px;
    margin: 0 auto 35px;
}

.hero-btns a {
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    margin: 0 10px;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, #ff7043, #ff5722);
    color: #fff;
    box-shadow: 0 5px 20px rgba(255, 87, 34, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.6);
}

.btn-secondary {
    border: 2px solid rgba(255,255,255,0.15);
    color: #fff;
    background: rgba(255,255,255,0.02);
}

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

/* 3D Glassmorphism Cards Section */
.features-section {
    display: flex;
    justify-content: space-around;
    padding: 60px 8%;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-3d-card, .service-3d-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px 30px;
    border-radius: 20px;
    width: 31%;
    min-width: 280px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s;
    cursor: pointer;
}

.feature-3d-card:hover, .service-3d-box:hover {
    border-color: #ff5722;
    transform: translateY(-10px) rotateY(5deg) rotateX(5deg);
    background: rgba(255,255,255,0.04);
}

.icon-wrapper {
    width: 75px;
    height: 75px;
    background: rgba(255, 87, 34, 0.1);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    border: 1px solid rgba(255, 87, 34, 0.2);
}

.icon-wrapper i, .service-3d-box i {
    font-size: 34px;
    color: #ff5722;
}

.feature-3d-card h3, .service-3d-box h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 12px;
}

.feature-3d-card p, .service-3d-box p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
}

/* Global Section Title */
.global-title {
    text-align: center;
    font-size: 36px;
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 40px;
    font-size: 16px;
}

/* About Box */
.about-section { padding: 60px 8%; }
.about-glass-box {
    background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
    border: 1px solid rgba(255,255,255,0.05);
    padding: 50px;
    border-radius: 24px;
    text-align: center;
}
.about-glass-box h2 { font-size: 32px; color: #fff; margin-bottom: 20px; }
.about-glass-box p { color: #cbd5e1; font-size: 16px; line-height: 1.8; max-width: 900px; margin: 0 auto; }

/* Services Layout */
.services-section { padding: 40px 8% 40px; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.service-3d-box { width: 100%; }
.service-3d-box i { margin-bottom: 20px; display: block;}

/* NEW: Premium Work Gallery Grid Layout */
.gallery-section {
    padding: 60px 8%;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 240px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(360deg, rgba(4,8,20,0.95) 0%, rgba(4,8,20,0) 100%);
    opacity: 0.9;
    transition: opacity 0.3s;
}
.gallery-overlay h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}
.gallery-item:hover img {
    transform: scale(1.1) rotate(1deg);
}

/* Locations Showcase Section */
.locations-section {
    padding: 60px 8%;
    background: rgba(255, 87, 34, 0.02);
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
    text-align: center;
}
.loc-subtitle { margin-bottom: 30px; color: #94a3b8; font-size: 16px;}
.location-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}
.loc-tag {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    color: #e2e8f0;
    transition: 0.3s;
}
.loc-tag i { margin-right: 8px; color: #ff5722; }
.loc-tag.local-hub {
    background: rgba(255, 87, 34, 0.15);
    border-color: #ff5722;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 87, 34, 0.2);
}
.loc-tag:hover {
    transform: scale(1.08);
    background: rgba(255, 87, 34, 0.2);
    border-color: #ff5722;
}

/* Contact Area with Smart Neon Fields */
.contact-section { padding: 60px 8% 80px; }
.contact-wrapper { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 50px; margin-bottom: 50px; }
.contact-details, .contact-form-box { flex: 1; min-width: 320px; }
.contact-details h2 { font-size: 36px; margin-bottom: 15px; }
.contact-details p { color: #94a3b8; margin-bottom: 30px; }

.info-block { display: flex; gap: 20px; margin-bottom: 25px; align-items: flex-start; }
.info-block i { font-size: 24px; color: #ff5722; background: rgba(255,87,34,0.1); padding: 12px; border-radius: 12px; }
.info-block h4 { font-size: 18px; color: #fff; margin-bottom: 4px; }
.info-block p { font-size: 15px; color: #cbd5e1; margin: 0; }

.contact-form-box form {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.input-group { position: relative; display: flex; align-items: center; }
.input-group i { position: absolute; left: 15px; color: #64748b; }
.contact-form-box input, .contact-form-box select {
    width: 100%;
    padding: 14px 14px 14px 45px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}
.contact-form-box select option { background-color: #040814; color: #fff; }
.contact-form-box input:focus, .contact-form-box select:focus {
    outline: none;
    border-color: #ff5722;
    box-shadow: 0 0 15px rgba(255, 87, 34, 0.3);
}
.btn-submit {
    background: linear-gradient(135deg, #ff7043, #ff5722);
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
    transition: 0.3s;
}
.btn-submit:hover {
    box-shadow: 0 6px 22px rgba(255, 87, 34, 0.6);
    transform: translateY(-2px);
}

/* NEW: Google Map Section Layout Styling */
.map-container-box {
    width: 100%;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 24px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.map-title {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}
.map-title i { color: #ff5722; margin-right: 8px; }
.responsive-map {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 87, 34, 0.2);
}
.responsive-map iframe {
    filter: invert(90%) hue-rotate(180deg) contrast(120%); /* Custom modern dark mode effect for Google Maps */
}

/* Floating WhatsApp & Call Bars */
.sticky-action-bars { position: fixed; bottom: 25px; right: 25px; display: flex; flex-direction: column; gap: 15px; z-index: 9999; }
.bar-btn { width: 55px; height: 55px; border-radius: 50px; display: flex; justify-content: center; align-items: center; color: #fff; font-size: 26px; text-decoration: none; box-shadow: 0 8px 25px rgba(0,0,0,0.4); transition: transform 0.3s; animation: floatAnim 3s ease-in-out infinite; }
.bar-btn.whatsapp { background: #25d366; animation-delay: 0s; }
.bar-btn.call { background: #007aff; animation-delay: 1.5s; }
.bar-btn:hover { transform: scale(1.12) translateY(-5px); }

/* Animations Keyframes */
@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes floatMove {
    0% { transform: translateY(105vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-5vh) rotate(360deg); opacity: 0; }
}

footer { text-align: center; padding: 40px 20px; border-top: 1px solid rgba(255,255,255,0.05); color: #64748b; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .burger-menu { display: block; }
    .nav-links {
        position: absolute; right: 0; top: 65px; height: 55vh;
        background: rgba(4, 8, 20, 0.96); backdrop-filter: blur(20px);
        display: flex; flex-direction: column; width: 100%;
        transform: translateX(100%); transition: transform 0.4s ease-in-out;
        padding-top: 20px;
    }
    .nav-links.nav-active { transform: translateX(0%); }
    .nav-links li { margin: 15px 0; }
    .hero-content h2 { font-size: 32px; }
    .feature-3d-card { width: 100%; }
}
