/* Krishnas Pathway Logistics - Modern Logistics Website Styles */

/* Theme Colors - Krishnas Pathway Theme */
:root {
    --primary-color: #fd5523;      /* Vibrant Orange */
    --primary-dark: #e64a1f;       /* Dark Orange */
    --primary-light: #ff6b3d;      /* Light Orange */
    --secondary-color: #062f3a;    /* Deep Teal */
    --secondary-dark: #041e26;     /* Darker Teal */
    --secondary-light: #0a4a5a;    /* Light Teal */
    --accent-color: #10b981;       /* Green */
    --accent-dark: #059669;        /* Dark Green */
    --text-primary: #1e293b;       /* Dark Text */
    --text-secondary: #64748b;     /* Secondary Text */
    --text-light: #94a3b8;         /* Light Text */
    --bg-primary: #ffffff;         /* White Background */
    --bg-secondary: #f8fafc;       /* Light Gray Background */
    --bg-dark: #0f172a;            /* Dark Background */
    --border-color: #e2e8f0;       /* Border Color */
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    --krishnas-orange: #fd5523;    /* Krishnas Orange */
    --krishnas-teal: #062f3a;      /* Krishnas Teal */
    --krishnas-green: #10b981;     /* Krishnas Green */
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--krishnas-orange);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar-brand img {
    height: 80px;
    width: auto;
    max-width: 200px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-brand i {
    margin-right: 0.5rem;
    color: var(--krishnas-teal);
}

.navbar-nav .nav-link {
    color: var(--text-primary);
    font-weight: 500;
    margin: 0 0.75rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0.75rem;
}

.navbar-nav .nav-link:hover {
    color: var(--krishnas-orange);
}

.navbar-nav .track-btn {
    background: var(--gradient-secondary);
    border: none;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.track-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 47, 58, 0.3);
    color: white;
}

/* Hero Section - Enhanced with Krishnas Pathway Animation */
.hero-section {
    min-height: 100vh;
    max-height: 100vh;
    padding: 80px 0 0px;
    background: url('images/kpl banner background.png') center center/cover;
    position: relative;
    overflow: hidden;
    animation: moveBackground 60s linear infinite;
    background-size: 275% auto;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(253, 85, 35, 0.8) 0%, rgba(6, 47, 58, 0.6) 100%);
    z-index: 1;
}

.hero-section-row {
    position: relative;
    z-index: 2;
    align-items: center;
    width: 100%;
    --bs-gutter-x: 0;
    margin: 0;
    height: calc(100vh - 80px);
}

@keyframes moveBackground {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Truck Animation */
.truck-container {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    /* height: 100%; */
    /* Define custom properties for responsive scaling */
    --truck-scale: 1;
    --wheel-size: 60px;
}

.truck-animation {
    max-width: 100%;
    height: auto;
    animation: truckMove 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    position: relative;
    /* Position truck to align with road in background */
    /* bottom: 15vh; 
    z-index: 10; */
}

@keyframes truckMove {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.wheel {
    position: absolute;
    width: var(--wheel-size);
    height: var(--wheel-size);
    animation: wheelRotate 2s linear infinite, truckMove ;
    /* Position wheels relative to truck image */
    /* bottom: 15vh; */
    z-index: 5;
}

/* Position wheels relative to truck image using percentages of truck width */
.wheel1 { 
    left: calc(20% - 7% * var(--truck-scale)); 
    bottom: calc(0vh + 5.2% * var(--truck-scale));
    animation-delay: 0s;  
}
.wheel2 { 
    left: calc(20% - 1.9% * var(--truck-scale)); 
    bottom: calc(0vh + 5.2% * var(--truck-scale));
    animation-delay: 0.5s;  
}
.wheel3 { 
    left: calc(20% + 3.2% * var(--truck-scale)); 
    bottom: calc(0vh + 5.2% * var(--truck-scale));
    animation-delay: 1s;  
}
.wheel4 { 
    left: calc(50% + 6.3% * var(--truck-scale));
    bottom: calc(0vh + 5.2% * var(--truck-scale));
    animation-delay: 1.5s;  
}
.wheel5 { 
    left: calc(50% + 23% * var(--truck-scale));
    bottom: calc(0vh + 5.2% * var(--truck-scale));
    animation-delay: 2s;  
}

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

/* Hero Text */
.hero-text {
    color: white;
    text-align: left;
    padding: 2rem 2rem;
    margin-top: 2rem;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-secondary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}
.hero-title-col{
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-top: 0;
    padding: 2rem 0rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 400;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: white;
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 47, 58, 0.3);
    color: white;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    margin-left: 1rem;
}

.btn-outline:hover {
    background: white;
    color: var(--krishnas-orange);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--krishnas-teal);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin: 0;
}

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

/* Section Headers */
.section-header {
    margin-bottom: 4rem;
}

/* New animated tagline structure */
.section-title__tagline-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.section-title__tagline-border {
    position: relative;
    display: block;
    width: 40px;
    border: 1px dashed var(--krishnas-orange);
}

.section-title__shape-1 {
    position: absolute;
    left: 8px;
    top: -4px;
}

.section-title__shape-1 > i {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: var(--krishnas-orange);
    animation: l-r-move 2s linear infinite;
}

.section-title__shape-2 {
    position: absolute;
    right: 8px;
    top: -4px;
}

.section-title__shape-2 > i {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: var(--krishnas-orange);
    animation: l-r-move 2s linear infinite;
}

.section-title__tagline {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--krishnas-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Animation for truck movement */
@keyframes l-r-move {
    0% {
        transform: translateX(-5px);
    }
    50% {
        transform: translateX(5px);
    }
    100% {
        transform: translateX(-5px);
    }
}

/* Keep old section-badge for backward compatibility */
.section-badge {
    display: inline-block;
    background: var(--gradient-secondary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    font-weight: 400;
}

/* Locations Section */
.locations-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.location-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

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

.location-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.location-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.location-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.location-features {
    list-style: none;
    text-align: left;
}

.location-features li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.location-features i {
    color: var(--krishnas-green);
    margin-right: 0.5rem;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: white;
}

/* New Services One Style */
.services-one__single {
    position: relative;
    display: block;
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
}

.services-one__single:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.services-one__img-box {
    position: relative;
    display: block;
    height: 250px;
    overflow: hidden;
}

.services-one__img {
    position: relative;
    width: 100%;
    height: 100%;
}

.services-one__img::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(253, 85, 35, 0.8) 0%, rgba(6, 47, 58, 0.6) 100%);
    opacity: 0;
    z-index: 1;
    content: "";
    transition: all 0.3s ease;
}

.services-one__single:hover .services-one__img::before {
    opacity: 1;
}

.services-one__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.services-one__single:hover .services-one__img img {
    transform: scale(1.1);
}

.services-one__icon {
    position: absolute;
    top: 20px;
    right: 20px;
    height: 60px;
    width: 60px;
    background: var(--krishnas-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(253, 85, 35, 0.3);
}

.services-one__single:hover .services-one__icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(253, 85, 35, 0.4);
}

.services-one__icon span {
    font-size: 28px;
    color: white;
    transition: all 0.3s ease;
}

.services-one__single:hover .services-one__icon span {
    transform: rotateY(180deg);
}

.services-one__content {
    position: relative;
    padding: 30px 25px 25px;
    background: white;
}

.services-one__count {
    position: absolute;
    top: -15px;
    left: 25px;
    font-size: 40px;
    font-weight: 900;
    color: var(--krishnas-orange);
    opacity: 0.1;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.services-one__single:hover .services-one__count {
    opacity: 0.2;
    transform: scale(1.1);
}

.services-one__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.services-one__title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.services-one__title a:hover {
    color: var(--krishnas-orange);
}

.services-one__text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.services-one__btn-box a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--krishnas-orange);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.services-one__btn-box a:hover {
    color: var(--krishnas-teal);
    gap: 12px;
}

.services-one__btn-box a span {
    transition: transform 0.3s ease;
}

.services-one__btn-box a:hover span {
    transform: translateX(5px);
}

/* Keep old service styles for backward compatibility */
.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

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

.service-card.featured {
    border-color: var(--krishnas-orange);
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: var(--bg-secondary);
    color: var(--krishnas-teal);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.about-content {
    padding-right: 2rem;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.about-stats .stat-item {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-stats .stat-item h3 {
    color: var(--krishnas-teal);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.about-stats .stat-item p {
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0;
}

.about-image {
    position: relative;
}

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

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-secondary);
    color: white;
    padding: 1.5rem;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(6, 47, 58, 0.3);
}

.experience-badge h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0;
}

.experience-badge p {
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.9;
}

/* Clients Section */
.clients-section {
    padding: 6rem 0;
    background: white;
}
.client-item {
    margin: 0.6rem 0rem;
}

.client-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--krishnas-teal);
}

.client-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.client-card h5 {
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

/* News Section */
.news-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-date {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    text-align: center;
    min-width: 80px;
}

.news-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
}

.news-date .month {
    font-size: 0.9rem;
    opacity: 0.9;
}

.news-content {
    padding: 1.5rem;
}

.news-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.news-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.news-link {
    color: var(--krishnas-teal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: var(--krishnas-orange);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: white;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--krishnas-teal);
    box-shadow: 0 0 0 3px rgba(6, 47, 58, 0.1);
}

/* Form validation styles */
.form-control.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-control.success {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    min-height: 1.25rem;
    display: none;
}

.error-message.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Form messages */
#formMessages {
    margin-top: 1rem;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    animation: slideInUp 0.3s ease;
}

.form-message.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-message.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Loading button styles */
.btn-loading {
    display: none;
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.contact-info {
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-details h5 {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-secondary);
    margin: 0;
}

/* Track Section */
.track-section {
    padding: 4rem 0;
    background: var(--gradient-primary);
}

.track-container {
    text-align: center;
    color: white;
}

.track-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.track-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.track-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.track-form .form-control {
    flex: 1;
    border: none;
    border-radius: 25px;
    padding: 1rem 1.5rem;
}

.track-form .btn {
    border-radius: 25px;
    padding: 1rem 2rem;
    background: var(--gradient-secondary);
    border: none;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-content h4 i {
    color: var(--krishnas-orange);
    margin-right: 0.5rem;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(253, 85, 35, 0.3);
}

.footer-links h5 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 40px;
        max-width: 160px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    /* Form responsive styles */
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-control {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }
    
    .btn {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .form-message {
        margin: 1rem 0;
        padding: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .track-form {
        flex-direction: column;
    }
    
    /* Scale truck and wheels for tablet */
    .truck-container {
        --truck-scale: 0.8;
        --wheel-size: 48px;
    }
    
    .truck-animation {
        /* bottom: 12vh; */
    }
    
    .wheel {
        /* bottom: 12vh; */
    }
    
    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
        display: inline-block;
    }
    
    /* Services responsive for tablet */
    .services-one__img-box {
        height: 220px;
    }
    
    .services-one__content {
        padding: 25px 20px 20px;
    }
    
    .services-one__count {
        font-size: 35px;
        top: -12px;
        left: 20px;
    }
    
    .services-one__title {
        font-size: 18px;
    }
    
    .services-one__icon {
        height: 55px;
        width: 55px;
        top: 15px;
        right: 15px;
    }
    
    .services-one__icon span {
        font-size: 24px;
    }

  
}

@media (max-width: 576px) {
    .navbar-brand img {
        height: 35px;
        max-width: 140px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    /* Small mobile form styles */
    .contact-form {
        padding: 1rem;
    }
    
    .form-control {
        padding: 0.75rem 0.875rem;
        font-size: 0.95rem;
    }
    
    .error-message {
        font-size: 0.8rem;
    }
    
    .form-message {
        font-size: 0.9rem;
        padding: 0.875rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
    }
    
    /* Scale truck and wheels for mobile */
    .truck-container {
        --truck-scale: 0.6;
        --wheel-size: 36px;
    }
    
    .truck-animation {
        /* bottom: 10vh; */
    }
    
    .wheel {
        /* bottom: 10vh; */
    }
    
    .location-card,
    .service-card,
    .client-card {
        padding: 1.5rem;
    }
    
    /* Services responsive adjustments */
    .services-one__img-box {
        height: 200px;
    }
    
    .services-one__content {
        padding: 20px 15px 15px;
    }
    
    .services-one__count {
        font-size: 30px;
        top: -10px;
        left: 15px;
    }
    
    .services-one__title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .services-one__text {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .services-one__icon {
        height: 50px;
        width: 50px;
        top: 10px;
        right: 10px;
    }
    
    .services-one__icon span {
        font-size: 20px;
    }
    
    .services-one__btn-box a {
        font-size: 13px;
    }
}

/* Large screens - scale up truck */
@media (min-width: 1200px) {
    .truck-container {
        --truck-scale: 1.2;
        --wheel-size: 60px;
        margin-top: 4rem;
    }
    
    .truck-animation {
        /* bottom: 18vh; */
    }
    
    .wheel {
        /* bottom: 18vh; */
    }
    .wheel1 { 
        left: calc(20% - 8.2% * var(--truck-scale)); 
        bottom: calc(0vh + 6% * var(--truck-scale));
        animation-delay: 0s;  
    }
    .wheel2 { 
        left: calc(20% - 2.3% * var(--truck-scale)); 
        bottom: calc(0vh + 6% * var(--truck-scale));
        animation-delay: 0.5s;  
    }
    .wheel3 { 
        left: calc(20% + 3.8% * var(--truck-scale)); 
        bottom: calc(0vh + 6% * var(--truck-scale));
        animation-delay: 1s;  
    }
    .wheel4 { 
        left: calc(50% + 7.3% * var(--truck-scale));
        bottom: calc(0vh + 6% * var(--truck-scale));
        animation-delay: 1.5s;  
    }
    .wheel5 { 
        left: calc(50% + 26.9% * var(--truck-scale));
        bottom: calc(0vh + 6% * var(--truck-scale));
        animation-delay: 2s;  
    }
   
}

/* Extra large screens */
@media (min-width: 1400px) {
    .truck-container {
        --truck-scale: 1.4;
        --wheel-size: 84px;
    }
    
    .truck-animation {
        /* bottom: 20vh; */
    }
    
    .wheel {
        /* bottom: 20vh; */
    }

    /* Position wheels relative to truck image using percentages of truck width */
    .wheel1 { 
        left: calc(20% - 7% * var(--truck-scale)); 
        bottom: calc(0vh + 5.2% * var(--truck-scale));
        animation-delay: 0s;  
    }
    .wheel2 { 
        left: calc(20% - 1.9% * var(--truck-scale)); 
        bottom: calc(0vh + 5.2% * var(--truck-scale));
        animation-delay: 0.5s;  
    }
    .wheel3 { 
        left: calc(20% + 3.2% * var(--truck-scale)); 
        bottom: calc(0vh + 5.2% * var(--truck-scale));
        animation-delay: 1s;  
    }
    .wheel4 { 
        left: calc(50% + 6.3% * var(--truck-scale));
        bottom: calc(0vh + 5.2% * var(--truck-scale));
        animation-delay: 1.5s;  
    }
    .wheel5 { 
        left: calc(50% + 23% * var(--truck-scale));
        bottom: calc(0vh + 5.2% * var(--truck-scale));
        animation-delay: 2s;  
    }
} 