/* ============================================================
   GATI EXPRESS LOGISTICS - Custom Styles
   ============================================================ */

:root {
    --primary-color: #0056b3;
    --secondary-color: #ff9800;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

a {
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.65) 0%, rgba(0, 61, 130, 0.65) 100%), 
                url('https://placehold.co/1920x1080/003d82/ffffff?text=Professional+Packers+Movers+Truck') center/cover no-repeat;
    min-height: 600px;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    border-radius: 10px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.hover-shadow:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

/* Process Section */
.process-card {
    position: relative;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

/* Stats Section */
.stat-item {
    padding: 20px;
}

.stat-number {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonial-card {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
    color: white;
}

.float-btn.whatsapp {
    background: #25D366;
}

.float-btn.call {
    background: var(--primary-color);
}

.float-btn.track {
    background: var(--secondary-color);
}

.float-btn.top {
    background: var(--dark-color);
}

/* Buttons */
.btn-primary-custom {
    background: var(--secondary-color);
    color: white;
    border: none;
    font-weight: 600;
}

.btn-primary-custom:hover {
    background: #e68900;
    color: white;
}

/* Hover Effects */
.hover-bg-light:hover {
    background-color: var(--light-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
    }
    
    .display-3 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Top Bar */
.top-bar a:hover {
    color: var(--secondary-color) !important;
}

/* Navbar */
.navbar-brand span {
    font-size: 1.2rem;
}

/* Accordion */
.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}
/* ============================================================
   ULTRA LARGE LOGO + FURTHER LEFT ALIGNMENT FIX
   ============================================================ */

/* Navbar Brand wrapper ko aur left shift karne ke liye */
.navbar-brand {
    display: flex !important;
    align-items: center !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    margin-left: -35px !important; /* Aur left sarkane ke liye (chahiye toh -45px tak kar sakte ho) */
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

/* Logo Image Ka Size Aur Bada Karne Ke Liye */
.navbar-brand img {
    height: 150px !important; /* Pehle se aur bada (150px) */
    max-height: 160px !important;
    width: auto !important;
    max-width: 450px !important;
    object-fit: contain !important;
    margin-top: -25px !important; /* Top-Bottom space control karne ke liye */
    margin-bottom: -25px !important;
    transition: transform 0.2s ease;
}

/* Hover Effect */
.navbar-brand img:hover {
    transform: scale(1.02);
}
