:root {
    --primary-color: #D4AF37; /* Gold */
    --secondary-color: #0B1B3B; /* Navy Blue */
    --accent-color: #2B2E34; /* Dark Gray */
    --bg-light: #F4F6F8; /* Light Gray */
    --white: #FFF;
    --navy-light: #162a4d;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    --navy-gradient: linear-gradient(135deg, #0B1B3B 0%, #162a4d 100%);
    --transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gs-reveal-up, .gs-reveal-left, .gs-reveal-right, .gs-hero-reveal-up {
    opacity: 0;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--secondary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .navbar-brand {
    font-weight: 700;
}

/* Animated BG Blobs */
.blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}
.blob {
    position: absolute;
    filter: blur(120px);
    opacity: 0.15;
    border-radius: 50%;
    animation: drift 20s infinite alternate ease-in-out;
}
.blob-1 { top: -10%; left: -10%; width: 50vw; height: 50vw; background: var(--primary-color); }
.blob-2 { bottom: -20%; right: -10%; width: 60vw; height: 60vw; background: var(--secondary-color); animation-delay: -5s; }

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10vw, 5vw) scale(1.1); }
}

/* Glassmorphism Classes */
.glass-nav {
    background: rgba(11, 27, 59, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}


.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
}

/* Premium Card (Sheen Effect) */
.premium-card {
    background: linear-gradient(145deg, rgba(255,255,255,1) 0%, rgba(244,246,248,0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(11, 27, 59, 0.05);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease, border-color 0.5s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.75s;
    z-index: -1;
}
.premium-card:hover::before { left: 200%; }
.premium-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(11, 27, 59, 0.1);
    border-color: rgba(212, 175, 55, 0.6);
}

/* Dark Glass Card (Specialties) */
.dark-glass-card {
    background: linear-gradient(145deg, rgba(11, 27, 59, 1) 0%, rgba(22, 42, 77, 1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    color: var(--white);
    box-shadow: 0 30px 60px rgba(11, 27, 59, 0.15);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.dark-glass-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(0,0,0,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    pointer-events: none;
}

.dark-glass-card:hover::before {
    opacity: 1;
}

.dark-glass-card .bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 8rem !important;
    background: none !important;
    color: rgba(255, 255, 255, 0.03) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.03) !important;
    z-index: 0;
    transform: rotate(-15deg);
    transition: transform 0.5s ease, color 0.5s ease;
    margin: 0 !important;
}

.dark-glass-card:hover .bg-icon {
    transform: rotate(0deg) scale(1.1);
    color: rgba(212, 175, 55, 0.05) !important;
    -webkit-text-fill-color: rgba(212, 175, 55, 0.05) !important;
}

.dark-glass-card:hover {
    transform: translateY(-15px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 40px 80px rgba(11, 27, 59, 0.25);
}

/* Light Premium Card Icon Effects */
.premium-card .bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 8rem !important;
    background: none !important;
    color: rgba(11, 27, 59, 0.03) !important;
    -webkit-text-fill-color: rgba(11, 27, 59, 0.03) !important;
    z-index: 0;
    transform: rotate(-15deg);
    transition: transform 0.5s ease, color 0.5s ease;
    margin: 0 !important;
}

.premium-card:hover .bg-icon {
    transform: rotate(0deg) scale(1.1);
    color: rgba(212, 175, 55, 0.06) !important;
    -webkit-text-fill-color: rgba(212, 175, 55, 0.06) !important;
}


.dark-glass-card h3 { 
    color: var(--white); 
    font-weight: 700; 
    position: relative;
    z-index: 2;
}

.dark-glass-card p {
    color: rgba(255, 255, 255, 0.8) !important;
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
}

.icon-wrapper-gold {
    width: 75px; height: 75px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.03) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    display: inline-flex;
    align-items: center; justify-content: center;
    margin: 0 auto 25px auto;
    position: relative;
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.05);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.dark-glass-card:hover .icon-wrapper-gold {
    transform: scale(1.1) translateY(-5px);
    border-color: var(--primary-color);
}

.icon-wrapper-gold i {
    font-size: 2rem !important;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 !important;
}

/* Feature Pills */
.feature-pill {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 15px 20px;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    width: 100%;
    font-weight: 500;
}
.feature-pill i {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
}
.feature-pill:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateX(10px);
    border-color: rgba(212, 175, 55, 0.5);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    background: var(--secondary-color);
    overflow: hidden;
}

/* Background Slider With Ken Burns Effect */
.hero-slider {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0; /* Brings it above the solid background */
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1);
    transition: opacity 2.5s ease-in-out, transform 12s linear;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.15);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(11, 27, 59, 0.85) 0%, rgba(11, 27, 59, 0.4) 100%);
    z-index: 1; /* Puts overlay ON TOP of slider */
    pointer-events: none;
}

.hero-bottom-fade {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--bg-light) 0%, transparent 100%);
    z-index: 5;
    pointer-events: none;
}

#three-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; /* Particles sit over the shadow overlay */
    pointer-events: none;
}

/* Hero Typography & Glow */
.hero-content {
    position: relative;
    z-index: 10;
}

.hero-text-glow {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(11,27,59,0.9) 0%, rgba(11,27,59,0) 70%);
    z-index: 0;
    pointer-events: none;
}

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

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 0;
    letter-spacing: -1px;
}

/* Hero Features */
.hero-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
    100% { opacity: 1; transform: scale(1); }
}

/* Hero Floating Stats */
.hero-float-container {
    perspective: 1000px;
}
.float-card {
    position: absolute;
    width: 300px;
    background: rgba(11,27,59,0.85) !important;
    border-color: rgba(212,175,55,0.2) !important;
}
.float-pos-1 { top: 15%; right: 20px; animation: floatSlow 8s infinite alternate ease-in-out; }
.float-pos-2 { top: 45%; right: 60px; animation: floatSlow 7s infinite alternate-reverse ease-in-out; }
.float-pos-3 { top: 75%; right: 10px; animation: floatSlow 9s infinite alternate ease-in-out; }

@keyframes floatSlow {
    0% { transform: translateY(0) rotateX(0deg); }
    100% { transform: translateY(-20px) rotateX(5deg); }
}

.bg-gold-light {
    background: rgba(212, 175, 55, 0.1);
}

/* Premium Buttons */
.btn-gold-glow {
    background: var(--gold-gradient);
    color: var(--secondary-color);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.btn-gold-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    color: var(--secondary-color);
}
.btn-icon { transition: transform 0.3s ease; }
.btn-gold-glow:hover .btn-icon { transform: translateX(5px); }

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    text-decoration: none;
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-5px);
}

/* Buttons */
.btn-gold {
    background: var(--gold-gradient);
    color: var(--secondary-color);
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    transition: transform var(--transition), box-shadow var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
    color: var(--secondary-color);
}

.btn-outline-gold {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-gold:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: var(--secondary-color);
}

.navbar-brand img {
    height: 50px;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 15px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

/* Sections */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title::before {
    content: attr(data-title);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    font-weight: 900;
    color: rgba(11, 27, 59, 0.04);
    white-space: nowrap;
    z-index: -1;
    pointer-events: none;
    letter-spacing: 10px;
    text-transform: uppercase;
}

.section-title.text-start::before {
    left: -20px;
    transform: translateY(-50%);
}

.section-title.text-white::before {
    color: rgba(255, 255, 255, 0.04);
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    letter-spacing: -1px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 5px;
    background: var(--gold-gradient);
    border-radius: 50px;
}

.section-title.text-start h2::after {
    left: 5px;
    transform: translateX(0);
}

/* Info Cards */
.info-card {
    padding: 40px;
    text-align: center;
}

.info-card i {
    font-size: 3rem;
    margin-bottom: 25px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Logistics Steps & Dashboard UI */
.logistics-step {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
}
.logistics-step:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(10px);
}
.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-right: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.logistics-image-wrapper {
    position: relative;
    border-radius: 20px;
    display: inline-block;
}
.image-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 70%; height: 70%;
    background: var(--primary-color);
    filter: blur(80px);
    opacity: 0.3;
    z-index: 0;
}
.floating-badge {
    position: absolute;
    z-index: 2;
    background: rgba(11, 27, 59, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    animation: float 6s infinite ease-in-out alternate;
}
.badge-1 { bottom: -20px; left: -30px; animation-delay: 0s; }
.badge-2 { top: 30px; right: -40px; animation-delay: -3s; }

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

/* Contact Form */
.contact-container {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.contact-info-box {
    background: var(--navy-gradient);
    color: var(--white);
    padding: 50px;
}

.contact-form-box {
    padding: 50px;
}

.form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 18px 20px;
    border-radius: 15px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
    background: var(--white);
    transform: translateY(-2px);
}

.alert {
    border-radius: 12px;
    border: none;
    font-weight: 500;
    padding: 15px 20px;
}
.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}
.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}


/* Footer */
footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 30px;
}

.footer-links h4 {
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}


.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    margin-top: 60px;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    font-weight: 300;
    font-size: 0.9rem;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--white);
    transform: translateY(-5px);
    color: var(--primary-color);
}

/* Custom Utilities */
.text-gold { color: var(--primary-color); }
.bg-navy { background-color: var(--secondary-color); }
.bg-gold { background: var(--gold-gradient); }

/* CTA Component */
.cta-overlap {
    z-index: 10;
    margin-bottom: -120px;
    padding-top: 60px;
}
.cta-title {
    line-height: 1.2;
    font-size: 2.8rem;
    text-shadow: 0 5px 15px rgba(0,0,0,0.4);
}
.cta-text {
    line-height: 1.7;
    font-size: 1.15rem;
    opacity: 0.85;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(11, 27, 59, 0.98);
        backdrop-filter: blur(15px);
        padding: 25px;
        border-radius: 15px;
        margin-top: 15px;
        border: 1px solid rgba(212, 175, 55, 0.15);
        box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    }
    .nav-link { margin-bottom: 12px; }
    
    .hero-title { font-size: 3.5rem; }
    .hero-content { text-align: center; }
    .hero-buttons { justify-content: center; }
    
    .cta-overlap {
        margin-bottom: -80px; 
        padding-top: 40px;
    }
    .cta-title { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.8rem; }
    .section-padding { padding: 60px 0; }
    .contact-info-box, .contact-form-box { padding: 30px; }
    
    .cta-box { border-radius: 20px !important; }
    .cta-overlap {
        margin-bottom: -50px; 
    }
    .cta-title { font-size: 1.9rem; }
    .cta-text { font-size: 1rem; }
}
