/* Swift Move India Logistics - Premium Stylesheet */

:root {
    --primary-blue: #1e3a8a;
    --secondary-orange: #f97316;
    --dark-blue: #0f172a;
    --light-blue: #3b82f6;
    --dark-gray: #374151;
    --light-gray: #f3f4f6;
    --white: #ffffff;
    --success-green: #10b981;
    --danger-red: #ef4444;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-gray);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-orange);
}

.container {
    max-width: 1200px;
}

/* Top Header Bar */
.top-header-bar {
    background: var(--dark-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-header-left span {
    margin-right: 25px;
    display: inline-block;
}

.top-header-left i {
    margin-right: 8px;
    color: var(--secondary-orange);
}

.top-header-right {
    text-align: right;
}

.social-links a {
    color: var(--white);
    margin-left: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-orange);
    transform: translateY(-2px);
}

/* Main Header */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.transparent-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.main-header.sticky {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.navbar {
    padding: 15px 0;
}

.navbar-brand .logo {
    max-height: 50px;
}

.navbar-nav .nav-link {
    color: var(--dark-blue);
    font-weight: 500;
    padding: 8px 16px;
    margin: 0 5px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-orange);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--light-gray);
    color: var(--secondary-orange);
    padding-left: 25px;
}

.btn-track {
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    margin-left: 10px;
    font-weight: 500;
}

.btn-track:hover {
    background: var(--light-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.btn-quote {
    background: var(--secondary-orange);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    margin-left: 10px;
    font-weight: 500;
}

.btn-quote:hover {
    background: #ea580c;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.navbar-toggler {
    border: none;
    padding: 10px;
}

.navbar-toggler-icon i {
    font-size: 24px;
    color: var(--dark-blue);
}

/* Hero Section */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: none;
    align-items: center;
}

.hero-slide.active {
    display: flex;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(15, 23, 42, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-orange);
    font-weight: 600;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 10px;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
}

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

/* Track Shipment Box */
.track-box {
    position: absolute;
    bottom: 50px;
    right: 50px;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    max-width: 400px;
    z-index: 3;
}

.track-box h3 {
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.track-box input {
    height: 50px;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    padding: 0 15px;
    font-size: 16px;
}

.track-box button {
    height: 50px;
    background: var(--secondary-orange);
    border: none;
    color: var(--white);
    font-weight: 600;
    border-radius: 5px;
    width: 100%;
    margin-top: 15px;
}

.track-box button:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

/* Section Styling */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-blue);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-orange);
}

.section-title p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-top: 15px;
}

/* Service Cards */
.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--secondary-orange);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--secondary-orange), #ea580c);
    transform: rotateY(360deg);
}

.service-icon i {
    font-size: 36px;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.service-card p {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.service-card .btn {
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
}

.service-card .btn:hover {
    background: var(--secondary-orange);
    color: var(--white);
}

/* Stats Counter */
.stats-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
}

.stat-box {
    text-align: center;
    padding: 30px;
}

.stat-box i {
    font-size: 48px;
    color: var(--secondary-orange);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    border-left: 4px solid var(--secondary-orange);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.testimonial-info h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.testimonial-rating {
    color: #fbbf24;
}

.testimonial-text {
    font-style: italic;
    color: var(--dark-gray);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: rgba(255,255,255,0.8);
}

.footer-top {
    padding: 60px 0 30px;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 20px;
}

.footer-about {
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--secondary-orange);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-orange);
    padding-left: 5px;
}

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

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
}

.footer-contact i {
    color: var(--secondary-orange);
    margin-right: 12px;
    margin-top: 5px;
}

.footer-contact a {
    color: rgba(255,255,255,0.8);
}

.footer-contact a:hover {
    color: var(--secondary-orange);
}

/* Newsletter */
.newsletter-box {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    padding: 40px;
    border-radius: 10px;
    color: var(--white);
}

.newsletter-box h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.newsletter-form .form-control {
    height: 50px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.newsletter-form .btn {
    height: 50px;
    border-radius: 0 5px 5px 0;
    background: var(--secondary-orange);
    border: none;
    padding: 0 30px;
}

.newsletter-form .btn:hover {
    background: #ea580c;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    margin-top: 30px;
}

.copyright-text {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.footer-bottom-links li {
    display: inline-block;
    margin-left: 20px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.8);
}

.footer-bottom-links a:hover {
    color: var(--secondary-orange);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 999;
}

.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: var(--white);
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.whatsapp-btn {
    background: #25D366;
}

.call-btn {
    background: var(--primary-blue);
}

.scroll-top-btn {
    background: var(--secondary-orange);
    display: none;
}

/* Mobile Sticky Bottom */
.mobile-sticky-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-around;
    z-index: 998;
    padding: 10px 0;
}

.mobile-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--dark-blue);
    font-size: 12px;
}

.mobile-btn i {
    font-size: 20px;
    margin-bottom: 5px;
}

.mobile-btn.whatsapp {
    color: #25D366;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .track-box {
        position: static;
        margin: 30px auto;
        max-width: 100%;
    }
    
    .footer-bottom-links {
        text-align: left;
        margin-top: 15px;
    }
    
    .footer-bottom-links li {
        margin-left: 0;
        margin-right: 15px;
    }
}

@media (max-width: 768px) {
    .top-header-bar {
        text-align: center;
    }
    
    .top-header-left span {
        display: block;
        margin: 5px 0;
    }
    
    .top-header-right {
        text-align: center;
        margin-top: 10px;
    }
    
    .hero-slide {
        height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

/* Breadcrumb */
.breadcrumb-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    padding: 60px 0;
    color: var(--white);
}

.breadcrumb-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    color: rgba(255,255,255,0.8);
}

.breadcrumb-item a {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--secondary-orange);
}

/* Buttons */
.btn-primary {
    background: var(--primary-blue);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
}

.btn-primary:hover {
    background: var(--light-blue);
}

.btn-secondary {
    background: var(--secondary-orange);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
}

.btn-secondary:hover {
    background: #ea580c;
}

/* Forms */
.form-control {
    height: 50px;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    padding: 0 15px;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.15);
}

textarea.form-control {
    height: auto;
    padding: 15px;
}

/* Pagination */
.pagination {
    margin-top: 30px;
}

.page-link {
    color: var(--primary-blue);
    border: 1px solid var(--light-gray);
    margin: 0 5px;
    border-radius: 5px;
}

.page-link:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.page-item.active .page-link {
    background: var(--secondary-orange);
    border-color: var(--secondary-orange);
}

/* Loading Animation */
.loading {
    text-align: center;
    padding: 50px;
}

.spinner {
    border: 4px solid var(--light-gray);
    border-top: 4px solid var(--primary-blue);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
