
/* Custom CSS for Thaji Logistics */

:root {
    --thaji-blue: #012758;
    --thaji-yellow: #ffbf6d;
    --thaji-orange: #ff8f00;
    --thaji-gray: #51545d;
    --thaji-light-gray: #E0E0E0;
}

body {
    font-family: 'Poppins', sans-serif;
    padding-top: 76px;
}

/* Custom color classes */
.text-thaji-blue { color: var(--thaji-blue) !important; }
.text-thaji-yellow { color: var(--thaji-yellow) !important; }
.text-thaji-orange { color: var(--thaji-orange) !important; }
.text-thaji-gray { color: var(--thaji-gray) !important; }

.bg-thaji-blue { background-color: var(--thaji-blue) !important; }
.bg-thaji-yellow { background-color: var(--thaji-yellow) !important; }
.bg-thaji-orange { background-color: var(--thaji-orange) !important; }
.bg-thaji-gray { background-color: var(--thaji-gray) !important; }

.btn-thaji-orange {
    background-color: var(--thaji-orange);
    border-color: var(--thaji-orange);
    color: white;
}

.btn-thaji-orange:hover {
    background-color: var(--thaji-yellow);
    border-color: var(--thaji-yellow);
    color: white;
}

.btn-outline-thaji-orange {
    border-color: var(--thaji-orange);
    color: var(--thaji-orange);
}

.btn-outline-thaji-orange:hover {
    background-color: var(--thaji-orange);
    border-color: var(--thaji-orange);
    color: white;
}

/* Custom color classes */
.bg-thaji-gray {
    background-color: var(--thaji-gray) !important;
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
    background-color: var(--thaji-gray) !important;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--thaji-yellow) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--thaji-blue) 0%, var(--thaji-gray) 50%, var(--thaji-orange) 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 47, 108, 0.5) 0%, rgba(81, 84, 93, 0.5) 50%, rgba(255, 143, 0, 0.5) 100%);
    z-index: 1;
}

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

.hero-image {
    position: relative;
    z-index: 1;
    max-width: 400px;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

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

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.service-icon {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
}

/* Footer - More compact */
footer {
    background-color: #51545d !important;
    padding: 1.5rem 0 !important;
}

footer h6 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem !important;
}

footer p,
footer li {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    padding-left: 0.3rem;

}

footer .social-links a {
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

footer .social-links a:hover {
    color: var(--thaji-orange) !important;
}

footer hr {
    margin: 1rem 0 !important;
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--thaji-blue) 0%, var(--thaji-gray) 50%, var(--thaji-orange) 100%);
    padding: 120px 0 80px;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .display-3 {
        font-size: 2.2rem;
    }
    
    .hero-image {
        margin-top: 30px;
        max-width: 300px;
    }
    
    .page-header {
        padding: 100px 0 60px;
    }
}

@media (max-width: 576px) {
    .display-3 {
        font-size: 1.8rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.6rem;
    }
    
    .hero-image {
        max-width: 280px;
    }
}

/* Utility Classes */
.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.rounded {
    border-radius: 15px !important;
}

/* Button Animations */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Custom styles for better spacing */
.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

/* Ensure consistent card heights */
.h-100 {
    height: 100% !important;
}

/* Badge styles */
.badge {
    font-size: 0.7rem;
    padding: 0.4em 0.6em;
}

.btn-thaji-orange {
    background-color: #FF6B00; /* or your preferred orange color */
    color: white;
    border: none;
}

.btn-thaji-orange:hover {
    background-color: #E05D00; /* slightly darker orange for hover */
    color: white;
}
