html {
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #004085;
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

header nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #ffc107;
}

.hero {
    background-color: #f8f9fa;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 2.8rem;
    color: #004085;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    color: #555;
}

.btn {
    display: inline-block;
    background-color: #ffc107;
    color: #000;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#services {
    padding: 60px 20px;
    text-align: center;
}

#services h2 {
    color: #004085;
    font-size: 2rem;
    margin-bottom: 40px;
}

.service-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.box {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    width: 280px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.box:hover {
    transform: translateY(-5px);
}

.box h3 {
    color: #004085;
    margin-top: 0;
}

#contact {
    background-color: #004085;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

#contact h2 {
    margin-bottom: 30px;
}

#contact p {
    font-size: 1.1rem;
}

footer {
    background-color: #111;
    color: #ccc;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}
html {
    background-color: #ffffff;
}

.slider-section, #home {
    background: linear-gradient(rgba(12, 26, 64, 0.65), rgba(12, 26, 64, 0.65)), url('img/truckprofile.png?v=5') no-repeat center center / cover !important;
}
header nav ul {
    display: flex !important;
    gap: 25px !important;
    margin: 0 !important;
    padding: 0 !important;
}

header nav ul li {
    display: inline-block !important;
}

/* క్లయింట్ లోగో స్లైడర్ అనిమేషన్ */
.logo-slider-container {
    overflow: hidden;
    padding: 40px 0;
    background: #ffffff;
    width: 100%;
}

.logo-slider-track {
    display: flex;
    width: calc(200px * 8);
    animation: scrollLogos 20s linear infinite;
}

.slide {
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.slide img {
    max-width: 150px;
    height: auto;
    object-fit: contain;
}

/* ఎడమ వైపునకు గ్యాప్ లేకుండా కంటిన్యూగా తిరగడానికి */
@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 4));
    }
}

/* --- Optimized Quote Button and Phone Number Styling --- */
header .container, 
header div[class*="container"] {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
}

header nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}

header nav ul {
  display: flex;
  align-items: center;
  margin-bottom: 0 !important;
  padding-left: 0;
  list-style: none;
}

.header-right-action {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  margin-left: 25px !important;
}

.header-phone-info {
  display: flex !important;
  align-items: center !important;
  white-space: nowrap;
}

.header-phone-info .ph-icon {
  margin-right: 6px !important;
  font-size: 16px;
}

.header-phone-info .ph-number {
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}

.header-quote-btn {
  background: linear-gradient(135deg, #8b5cf6, #ec4899) !important;
  color: #ffffff !important;
  padding: 10px 22px !important;
  font-size: 15px !important;
  font-weight: bold !important;
  text-decoration: none !important;
  border-radius: 30px !important;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3) !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
  white-space: nowrap;
}

.header-quote-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(139, 92, 246, 0.5) !important;
}

