/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body & Global Fonts */
body {
  font-family: "Poppins", sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 150px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Added global icon rotation animation on hover */
/* Icon Rotation Animation - Applied globally to all icons in cards */
.service-card i:first-child,
.offering-card i,
.value-card i,
.contact-card i,
.medicare-card i,
.social-card i,
.reach-card i,
.detail-item i,
.truck-card i,
.feature-card i,
.service-icon,
.card-icon,
.matter-card i{
  transition: transform 0.6s ease-in-out;
}

.service-card:hover i:first-child,
.offering-card:hover i,
.value-card:hover i,
.contact-card:hover i,
.medicare-card:hover i,
.social-card:hover i,
.reach-card:hover i,
.detail-item:hover i,
.truck-card:hover i,
.feature-card:hover i,
.core-services-list li:hover .service-icon,
.contact-card:hover .card-icon ,
.matter-card:hover i,.all-types-feature i:hover ,.value-point i:hover 
{
  transform: rotate(360deg);
}
/* </CHANGE> */

/* Added border color swap animation on hover */
/* Border Color Swap Animation - Red to Blue and Blue to Red */
.service-card,
.offering-card,
.value-card,
.contact-card,
.medicare-card,
.social-card,
.reach-card,
.detail-item,
.process-step,
.matter-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.4s ease, background-color 0.3s ease;
}

/* Red borders change to blue on hover */
.service-card:nth-child(odd):hover,
.offering-card:nth-child(odd):hover,
.value-card:nth-child(odd):hover,
.reach-card:nth-child(odd):hover,
.detail-item:nth-child(odd):hover {
  border-color: #007bff !important;
}

/* Blue borders change to red on hover */
.service-card:nth-child(even):hover,
.offering-card:nth-child(even):hover,
.value-card:nth-child(even):hover,
.reach-card:nth-child(even):hover,
.detail-item:nth-child(even):hover {
  border-color: #e60000 !important;
}

/* Specific border position swaps */
.contact-card.phone-card:hover,
.contact-card.location-card:hover {
  border-bottom-color: #007bff !important;
}

.contact-card.email-card:hover {
  border-bottom-color: #e60000 !important;
}

.medicare-card:nth-child(odd):hover {
  border-top-color: #007bff !important;
}

.medicare-card:nth-child(even):hover {
  border-top-color: #e60000 !important;
}

.social-card:nth-child(even):hover {
  border-top-color: #e60000 !important;
}

.social-card:nth-child(odd):hover {
  border-top-color: #007bff !important;
}

.process-step:nth-child(even):hover {
  border-bottom-color: #007bff !important;
}

.process-step:nth-child(odd):hover {
  border-bottom-color: #e60000 !important;
}
/* </CHANGE> */

/* Navigation */
/* style.css */

/* ... (around line 24) */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  backdrop-filter: blur(5px);
  z-index: 1000;
  padding: 0;
  transition: all 0.3s ease;
  /* NEW: Stack the title row and the content row */
  display: flex;
  flex-direction: column;
}
/* ... */
.nav-title-header {
  width: 100%; /* Allows it to span full width */
  padding: 5px 20px;
  text-align: center;
  margin: 0; /* Reset margin */
  /* Optional: Slight background for separation */
  background-color: rgba(0, 0, 0, 0.05);
}

.nav-main-title {
  font-size: 2.2rem; /* Reduced from 3rem for better fit in a two-row navbar */
  font-weight: 900;
  background: linear-gradient(45deg, #e60000, #007bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0; /* Remove default h1 margin */
}
.logo {
  width: 100px; /* Reduced from 140px for a two-row navbar */
  height: 100px; /* Reduced from 140px */
  display: block;
}
.but {
  height: fit-content;
  padding: 13px 25px;
  background: linear-gradient(45deg, red, blue);
  position: relative;
  font-weight: bold;
  align-items: center;
  color: white;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  cursor: pointer;
  transition: all 0.5s ease-in;
  border: none;
}

.but:hover {
  background: linear-gradient(45deg, blue, red);
  color: white;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px; /* Added padding to space out content */
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center; /* Vertically center all items in the row */
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-grow: 1; /* Allows the menu to take up the space in the center */
  justify-content: center; /* Centers the links within the available space */
  align-items: center;
  margin: 0 20px;
}
/* Dropdown parent container */
.nav-dropdown {
  position: relative;
}

.nav-link {
  color: black;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  transition: all 0.3s ease;
  position: relative;
  padding: 10px 0;
}

.nav-link:hover {
  color: red;
}

/* Dropdown Menu Styling */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 10px 0;
  min-width: 200px;
  z-index: 1001;
}

/* Show dropdown on hover of the parent li */
.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 0;
  margin: 0;
}

.dropdown-menu a {
  color: black;
  text-decoration: none;
  padding: 10px 20px;
  display: block;
  white-space: nowrap;
  font-weight: 400;
  transition: background-color 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: #f0f0f0;
  color: red;
}

/* ACTIVE Link Styles */
#active {
  color: red;
}
#active::after {
  width: 100%;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, red, blue);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

/* --- HERO SECTION ROTATION STYLES --- */

/* All hero sections *EXCEPT* the one with id="hero" are stacked and hidden by default */
/* Fix for hero sections positioning */
/* Fix for hero sections positioning and height */
.hero-section:not(#hero) {
  position: absolute;
  top: 150px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 150px); /* Adjusted to match the actual navbar height */
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  z-index: 5;
  transition: opacity 1s ease-in-out;
  display: flex;
}

#hero {
  min-height: calc(100vh - 150px); /* Adjusted to match the actual navbar height */
  width: 100%;
  position: relative;
  top: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 0 50px 5%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  transition: opacity 1s ease-in-out;
}

/* Remove the spacer that might be causing layout issues */
.hero-section-spacer {
  display: none;
}

/* Adjust the hero content wrapper to ensure it fits within the container */
.hero-content-wrapper {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  width: 90%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  align-items: flex-start;
  padding-top: 30px; /* Reduced padding */
  padding-bottom: 30px; /* Reduced padding */
  box-sizing: border-box;
  overflow-y: auto; /* Allow content to scroll if needed */
}

/* Adjust the body padding to match the navbar height */
body {
  font-family: "Poppins", sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 150px; /* Match this to the navbar height */
}

/* Show spacer when rotating hero is active */
.hero-section:not(#hero).active ~ .hero-section-spacer {
  display: block;
}

/* NEW: Class to hide the static hero's content while preserving its space */
.hero-section.hidden-hero {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/* Reset the specific styles only for the first section's direct content */
#hero h2 {
  position: relative;
  z-index: 2;
  font-size: 2em;
  margin-bottom: 10px;
}

#hero h1 {
  position: relative;
  z-index: 2;
  font-size: 4em;
  margin-bottom: 20px;
}
#hero p {
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin-bottom: 30px;
}

#hero button {
  position: relative;
  z-index: 2;
  background-color: #e60000;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-bottom: 20px; /* Added bottom margin */
}
/* Shared styles for the 5 new sections */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}

.hero-stats {
  background-color: #222;
  color: #eee;
  padding: 8px 15px;
  font-size: 0.9em;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: auto;
}

.hero-stats i {
  color: #e60000;
}

.hero-main-content {
  text-align: left;
  max-width: 600px;
  margin-bottom: auto;
}

.hero-main-content h1 {
  font-size: 4em;
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 700;
}

.hero-main-content h1 .highlight {
  color: #e60000;
}

.hero-main-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ccc;
  max-width: 500px;
}

.hero-button {
  background-color: #e60000;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  cursor: pointer;
  border: none;
}

.hero-rating {
  margin-top: auto;
  color: #ccc;
  font-size: 0.9em;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-rating i.fas {
  color: gold;
}
/* Hide scrollbar for webkit browsers */
::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
html {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
/* --- INDIVIDUAL HERO SECTION BACKGROUNDS --- */
#hero-section-1 .hero-background {
  background-image: url("img/Dry-Van.webp");
}
#hero-section-2 .hero-background {
  background-image: url("img/medicae.png");
}
#hero-section-3 .hero-background {
  background-image: url("img/Reefer-Dispatch-Services.webp");
}
#hero-section-4 .hero-background {
  background-image: url("img/Reefer-Dispatch-Services.webp");
}
#hero-section-5 .hero-background {
  background-image: url("img/Reefer-Dispatch-Services.webp");
}

/* --- LOGO CAROUSEL STYLES --- */

.logo-carousel {
  width: 100%;
  overflow: hidden;
  background-color: black;
  padding: 20px 0;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  margin-top: 0;
  z-index: 20;
  /* filter: grayscale(100%); */
}

.partnerships-heading {
  text-align: center;
  color: #aaa;
  font-size: 1.1em;
  font-weight: 300;
  margin-bottom: 20px;
}

.carousel-track {
  display: flex;
  width: fit-content;
  animation: scroll-logos 20s linear infinite;
}

.logo-item {
  height: 60px;
  width: auto;
  margin: 0 40px;
  filter: opacity(100%);
}

.logo-item:hover {
  filter: grayscale(0%) opacity(100%);
}

/* Keyframe animation for scrolling */
@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- WELCOME SECTION STYLES (Modern EK-Alpha Solutions) --- */

.welcome-section {
  background-color: #0f0f1c; /* Very Dark Blue-Black Background */
  padding: 80px 0;
}

.welcome-header {
  text-align: center;
  margin-bottom: 60px;
}

/* NEW STYLE FOR PROFESSIONAL INTRO LINE */
.professional-intro {
  font-size: 1.1em;
  font-weight: 400;
  letter-spacing: 2px;
  color: #e60000; /* Red to stand out */
  margin-bottom: 5px;
}
/* END NEW STYLE */

.welcome-header h1 {
  font-size: 3em;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
}

/* ... (rest of .highlight-text and welcome-section styles) ... */

.highlight-text {
  font-size: 1.4em;
  font-weight: 500;
  color: #007bff; /* Professional Blue Accent */
}

/* --- GRID LAYOUT --- */
.services-grid {
  display: grid;
  grid-template-columns: 3fr 2fr; /* Creates an asymmetric, modern layout */
  gap: 50px;
  align-items: stretch; /* Ensures columns stretch to match height */
}

.service-box {
  background-color: #1a1a33; /* Slightly lighter blue-black for contrast */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-top: 5px solid #e60000; /* Red top border for flair */
}

.service-box p {
  color: #c9c9d8;
  line-height: 1.7;
  margin-bottom: 30px;
}

.services-title {
  color: #e60000; /* Red Title */
  font-size: 1.8em;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 25px;
  border-bottom: 1px solid #33334f;
  padding-bottom: 10px;
}

/* --- CORE SERVICES LIST --- */
.core-services-list {
  list-style: none;
  padding: 0;
}

.core-services-list li {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  background-color: #0f0f1c;
  padding: 15px;
  border-radius: 8px;
}

.core-services-list li:hover {
  background-color: #007bff20; /* Subtle blue hover effect */
}

.service-icon {
  font-size: 1.8em;
  color: #e60000; /* Red icon color */
  margin-right: 20px;
  flex-shrink: 0;
}

.service-details .service-name {
  display: block;
  font-weight: 700;
  color: #ffffff;
  font-size: 1.1em;
  margin-bottom: 2px;
}

.service-details p {
  margin: 0;
  color: #a0a0b8;
  font-size: 0.9em;
}

/* --- INFO CARDS AND CTA --- */

.info-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background-color: #1a1a33;
  padding: 25px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.info-card h4 {
  color: #ffffff;
  font-size: 1.4em;
  margin-bottom: 5px;
  font-weight: 600;
}

.info-icon {
  font-size: 2em;
  flex-shrink: 0;
  margin-top: 5px;
}

.info-icon.blue {
  color: #007bff; /* Blue */
}

.info-icon.red {
  color: #e60000; /* Red */
}

.cta-block {
  text-align: center;
  padding: 30px;
  border: 2px dashed #007bff; /* Blue dashed border for focus */
  border-radius: 12px;
  margin-top: auto; /* Pushes the CTA block to the bottom of the column */
}

.urgent-help {
  color: #e60000;
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 15px;
}

.call-us-button {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(45deg, blue, red);
  color: #fff;
  padding: 15px 35px;
  font-size: 1.2em;
  font-weight: 700;
  border-radius: 50px; /* Pill shape for modern look */
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s;
  box-shadow: 0 4px 15px rgba(230, 0, 0, 0.4);
}

.call-us-button:hover {
  background: linear-gradient(45deg, red, blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
  animation: none;
}

/* --- ANIMATIONS --- */

.fade-in-up {
  opacity: 100%;
  /* This ensures animation starts from off-screen and then plays */
  animation-fill-mode: backwards;
}

/* 1. Fade In Up Animation (for staggered text) */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 2. Pulse Animation (for CTA button) */
.pulse {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 0, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(230, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(230, 0, 0, 0);
  }
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .welcome-header h1 {
    font-size: 2.2em;
  }
}
/* --- FOOTER STYLES --- */
.site-footer {
  background-color: #111122; /* A dark, deep color for contrast */
  color: #c9c9d8;
  padding-top: 60px;
  font-size: 0.95em;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-logo {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
}

.description {
  margin-bottom: 20px;
}

.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer-contact .contact-item i {
  font-size: 1.2em;
  margin-right: 15px;
  margin-top: 3px;
}

.red-icon {
  color: #e60000; /* Red accent color */
}

.footer-contact a {
  color: #c9c9d8;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: #e60000;
}

.footer-links h4 {
  color: #ffffff;
  font-size: 1.2em;
  margin-bottom: 25px;
  font-weight: 700;
  border-bottom: 2px solid #333;
  padding-bottom: 8px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #c9c9d8;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #007bff; /* Blue accent on hover */
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 20px 0;
  background-color: #0a0a0a; /* Match the body background */
}

.bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-icons a {
  color: #c9c9d8;
  font-size: 1.4em;
  margin-left: 15px;
  transition: color 0.3s;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.social-icons a {
  color: var(--neon-pink);
  font-size: 1.2rem;
  transition: all 0.3s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(45deg, blue, red);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
}

.social-icons a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-neon);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 50%;
}

.social-icons a:hover::before {
  opacity: 1;
}

.social-icons a:hover {
  color: white;
  transform: scale(1.2) rotate(360deg);
  box-shadow: 0 0 20px red;
  text-decoration: none !important;
}

.social-icons a i {
  position: relative;
  z-index: 2;
  text-decoration: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--gradient-neon);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}
/* Updated WhatsApp button to exact green color from blueprint */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  position: relative;
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
  position: absolute;
  left: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30, 41, 59, 0.95);
  color: #e2e8f0;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.875rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
/* --- CONTACT PAGE STYLES --- */

/* Contact Header Section */
.contact-header-section {
  background-color: #0f0f1c;
  padding: 150px 0 80px;
  text-align: center;
}

.contact-header-section h1 {
  font-size: 3.5em;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
}

.contact-header-section p {
  font-size: 1.3em;
  font-weight: 400;
  color: #c9c9d8;
}

/* Contact Content Section */
.contact-content-section {
  padding: 80px 0;
  background-color: #0a0a0a;
}

/* Contact Cards Grid */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.contact-card {
  background-color: #1a1a33;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  border-bottom: 4px solid transparent;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-card.phone-card {
  border-bottom-color: #e60000;
}
.contact-card.email-card {
  border-bottom-color: #007bff;
}
.contact-card.location-card {
  border-bottom-color: #e60000;
}

.card-icon {
  font-size: 3em;
  margin-bottom: 15px;
  color: #e60000; /* Primary accent color */
}
.contact-card.email-card .card-icon {
  color: #007bff; /* Secondary accent color */
}

.contact-card h4 {
  font-size: 1.6em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.contact-card p {
  color: #a0a0b8;
  margin-bottom: 20px;
  line-height: 1.5;
}

.contact-info-link {
  display: block;
  font-weight: 600;
  color: #007bff;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s;
}

.contact-card.phone-card .contact-info-link {
  color: #e60000;
}
.contact-card.location-card .address-text {
  color: #ffffff;
}

.contact-info-link:hover {
  color: #e60000;
}

/* Contact Form Styles */
.contact-form-container {
  background-color: #1a1a33;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.form-title {
  color: #ffffff;
  font-size: 2.5em;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 3px solid #007bff;
  display: inline-block;
  padding-bottom: 10px;
  width: 100%;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group {
  flex: 1 1 calc(50% - 10px);
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  flex: 1 1 100%;
}

.contact-form label {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  padding: 15px;
  border: 1px solid #33334f;
  background-color: #0f0f1c;
  color: #ffffff;
  border-radius: 8px;
  font-size: 1em;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #e60000;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.submit-button {
  margin-top: 20px;
  padding: 15px 30px !important;
  font-size: 1.2em;
  border-radius: 8px;
  transition: all 0.5s ease-in;
}
/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Variables based on established color scheme */
:root {
  --primary-color: #e60000; /* Red Accent */
  --secondary-color: #007bff; /* Blue Accent */
  --text-white: #ffffff;
  --primary-black: #0a0a0a; /* Main Background */
  --secondary-black: #1a1a1a; /* Card/Section Background */
}

/* Body & Global Fonts */
body {
  font-family: "Poppins", sans-serif;
  background-color: var(--primary-black);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 100px; /* Space for fixed navbar */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Utility Classes --- */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.bg-dark-alt {
  background-color: var(--secondary-black);
}
.my-5 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.mt-8 {
  margin-top: 4rem;
}
.mt-10 {
  margin-top: 6rem;
}
.text-sm-light {
  font-size: 0.9rem;
  color: #b0b0b0;
}

/* Icon Rotation Animation - Applied globally to icons within interactive elements */
.service-card i:first-child,
.detail-card i,
.team-card i,
.card-subtitle i {
  transition: transform 0.6s ease-in-out;
}

.service-card:hover i:first-child,
.detail-card:hover i,
.team-card:hover i,
.card-subtitle:hover i {
  transform: rotateY(360deg);
}

/* --- Typography & Headers --- */
.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  display:block;
}

.section-header {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-white);
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.1rem;
  color: #b0b0b0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.card-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.card-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-subtitle i {
  font-size: 1.5rem;
}

.detail-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-white);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 5px;
}

.final-statement {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--secondary-color);
  padding: 2rem;
  border: 2px dashed var(--primary-color);
  border-radius: 12px;
}

/* --- Layout Sections --- */
.hero-section {
  padding: 60px 0;
  /* Subtle radial gradient background effect */
  background: radial-gradient(circle at top left, rgba(230, 0, 0, 0.1), transparent 50%),
    radial-gradient(circle at bottom right, rgba(0, 123, 255, 0.1), transparent 50%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content-section,
.detail-section,
.services-overview-section,
.team-goals-section {
  padding: 80px 0;
}

/* --- Card Styles (General) --- */
.card-large,
.card-medium,
.service-card,
.detail-card,
.team-card {
  background-color: var(--secondary-black);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.card-large:hover,
.card-medium:hover,
.service-card:hover,
.detail-card:hover,
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
}

.accent-border-red {
  border-left: 5px solid var(--primary-color);
}
.accent-border-blue {
  border-left: 5px solid var(--secondary-color);
}

/* --- Grid Layouts --- */
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.detail-card-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* --- List Styles --- */
.feature-list,
.team-list,
.goal-list,
.leader-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  color: #e0e0e0;
}

.feature-list li i {
  position: absolute;
  left: 0;
  color: var(--primary-color); /* Red checkmark/arrow icon */
}

/* Core Values Specific Style */
.value-item {
  padding: 15px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.value-item:last-child {
  border-bottom: none;
}

.value-title {
  font-weight: 600;
  color: var(--secondary-color); /* Blue for value title */
  display: inline-block;
  min-width: 100px;
}

.team-list li,
.goal-list li,
.leader-list li {
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: #b0b0b0;
}

/* Icon Styling in Cards */
.service-icon,
.detail-card i,
.team-card i {
  font-size: 2rem;
  color: var(--secondary-color); /* Blue for primary card icons */
  margin-bottom: 1rem;
  display: block;
}

/* Loading Screen - Ensure it's visible */
#loading-screen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 99999 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: opacity 0.5s ease, visibility 0.5s ease !important;
}

#loading-screen.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
}

.loader-content {
    text-align: center !important;
}

.loader-logo {
    font-size: 3rem !important;
    font-weight: bold !important;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin-bottom: 2rem !important;
    animation: pulse 2s ease-in-out infinite !important;
}

.loader-spinner {
    width: 60px !important;
    height: 60px !important;
    border: 4px solid rgba(255, 255, 255, 0.1) !important;
    border-top: 4px solid var(--primary-color) !important;
    border-right: 4px solid var(--secondary-color) !important;
    border-radius: 50% !important;
    animation: spin 1s linear infinite !important;
    margin: 0 auto 1.5rem !important;
}

.loader-text {
    margin-top: 1.5rem !important;
    font-size: 1.2rem !important;
    color: #b0b0b0 !important;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}
@media(max-width:480px){
  #loading-screen{
    width: 300px;
    height: 300px;
  }
}
/* =================================
   NAVBAR STYLES 
   ================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-black);
  border-bottom: 3px solid var(--primary-color);
  padding: 15px 0;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
              
.nav-main-title {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 5px 0;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-white);
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  background-color: var(--primary-color);
  color: var(--primary-black);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-white);
}

/* =================================
   FOOTER STYLES
   ================================= */
.footer {
  background-color: #111111;
  color: #b0b0b0;
  padding: 40px 0;
  border-top: 3px solid var(--secondary-color);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-section {
  flex: 1 1 200px;
  margin-bottom: 20px;
}

.footer-section h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(230, 0, 0, 0.3);
  padding-bottom: 5px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--text-white);
}

.social-links a {
  color: var(--text-white);
  font-size: 1.5rem;
  margin-right: 15px;
  transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
  color: var(--secondary-color);
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 20px;
}

/* =================================
   RESPONSIVENESS (MOBILE STYLES)
   ================================= */
@media (max-width: 1024px) {
  .grid-3-col,
  .detail-card-group {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Main Layout */
  body {
    padding-top: 80px; /* Smaller space for smaller navbar */
  }
  .section-title {
    font-size: 2.2rem;
  }
  .section-header {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  
  }

  /* Grid Adjustments */
  .grid-2-col,
  .grid-3-col,
  .detail-card-group {
    grid-template-columns: 1fr;
  }
  .content-section,
  .detail-section,
  .services-overview-section,
  .team-goals-section {
    padding: 40px 0;
  }
  .card-large,
  .card-medium,
  .service-card,
  .detail-card,
  .team-card {
    padding: 20px;
  }
  .section-header.text-left {
    text-align: center;
  }

  /*Navbar Mobile Menu*/
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: var(--secondary-black);
    padding: 10px 20px;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.5);
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }
  .menu-toggle {
    display: block;
  }
  .nav-content {
    padding: 0 15px;
  }

  /* Footer Adjustment */
  .footer-content {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .loader-logo {
    font-size: 2rem;
  }
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
  }
}

/* Responsive adjustments for About Us */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .story-image {
    order: -1; /* Place image above text on mobile */
  }
}

@media (max-width: 600px) {
  .about-hero-section h1 {
    font-size: 2.2em;
  }

  .section-title {
    font-size: 2em;
  }

  .cta-banner {
    padding: 30px 20px;
  }
}
/* ======================================= */
/* TRUCK-DISPATCH PAGE SPECIFIC STYLES */
/* ======================================= */

/* --- General Section Styling --- */
.section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #ffffff;
}
.subsection-title {
  font-size: 1.8em;
  font-weight: 600;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 10px;
  border-bottom: 2px solid #e60000; /* Red accent line */
  display: inline-block;
  padding-bottom: 5px;
}
.red-icon {
  color: #e60000;
}
.blue-icon {
  color: #007bff;
}

/* --- 1. About Us Dispatch Section --- */
.about-us-dispatch {
  padding: 80px 0;
  background-color: #0a0a0a; /* Dark background from body */
  color: #ffffff;
}

.about-us-dispatch .container {
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-us-dispatch .about-content {
  flex: 2; /* Takes up more space */
}

.about-us-dispatch .about-content p {
  margin-bottom: 15px;
  color: #a0a0b8; /* Lighter text for readability */
}

.why-choose-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.why-choose-list li {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #ffffff;
}

.why-choose-list i {
  margin-right: 10px;
  font-size: 1.2em;
}

.about-us-dispatch .about-image {
  flex: 1;
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  background-color: #1a1a1a; /* Darker card background */
  padding: 30px;
  border-radius: 10px;
  border-left: 5px solid #007bff; /* Blue accent border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.image-placeholder:hover {
  transform: scale(1.05);
}

.image-placeholder i {
  color: #e60000;
  margin-bottom: 20px;
}

.image-placeholder p {
  font-size: 1.4em;
  font-weight: 600;
  color: #ffffff;
}

/* --- 2. Statistics Section --- */
.stats-section {
  padding: 60px 0;
  background-color: #121212; /* Slightly different dark shade */
}

.stats-section .container {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-card {
  text-align: center;
  padding: 20px;
  flex-basis: 200px; /* Base width for cards */
}

.stat-card i {
  font-size: 3.5em;
  margin-bottom: 15px;
}

.stat-number {
  font-size: 3.5em;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1.1em;
  color: #a0a0b8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- 3. The Advantage Section (Value Grid) --- */
.value-proposition {
  padding: 80px 0;
  background-color: #0a0a0a;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.value-card {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid transparent; /* Prepare for hover effect */
}

.value-card:nth-child(even) {
  border-left-color: #007bff; /* Blue accent border on even cards */
}

.value-card:nth-child(odd) {
  border-left-color: #e60000; /* Red accent border on odd cards */
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  background-color: #1f1f1f;
}

.value-card i {
  font-size: 3em;
  margin-bottom: 15px;
}

.value-card h4 {
  font-size: 1.4em;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 700;
}

.value-card p {
  color: #a0a0b8;
  line-height: 1.6;
}

/* --- Media Queries for Responsiveness --- */
@media (max-width: 992px) {
  .about-us-dispatch .container {
    flex-direction: column;
    text-align: center;
  }
  .about-us-dispatch .about-image {
    margin-top: 30px;
  }
  .section-title {
    font-size: 2em;
  }
  .stat-card {
    flex-basis: 40%;
  }
}

@media (max-width: 600px) {
  .stats-section .container {
    flex-direction: column;
  }
  .stat-card {
    flex-basis: 100%;
  }
}
/* ======================================= */
/* TESTIMONIALS CAROUSEL STYLES */
/* ======================================= */
.testimonials-section {
  padding: 80px 0;
  background-color: #121212; /* Darker than the body */
  text-align: center;
}
.section-subtitle {
  color: #a0a0b8;
  margin-top: -30px;
  margin-bottom: 40px;
  font-size: 1.1em;
}

.testimonials-carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 1100px;
}

.testimonials-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  flex: 0 0 100%; /* Important: Each card takes full width */
  padding: 40px;
  margin: 0 15px; /* Spacing between cards when multiple are visible (not needed for full width) */
  background-color: #0a0a0a;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.testimonial-card .rating {
  margin-bottom: 15px;
}

.testimonial-card .rating i {
  font-size: 1.2em;
}

.testimonial-text {
  font-size: 1.2em;
  font-style: italic;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.5;
}

.testimonial-author .author-name {
  display: block;
  font-weight: 700;
  color: #e60000;
  font-size: 1.1em;
}

.testimonial-author .author-title {
  display: block;
  color: #007bff;
  font-size: 0.9em;
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26, 26, 26, 0.7);
  color: #ffffff;
  border: none;
  padding: 15px;
  cursor: pointer;
  z-index: 10;
  font-size: 1.5em;
  transition: background 0.3s;
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

.prev-btn:hover,
.next-btn:hover {
  background: #e60000;
}

.carousel-dots {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #a0a0b8;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.dot.active {
  background-color: #e60000;
  transform: scale(1.2);
}

/* ======================================= */
/* FULL SERVICE OFFERINGS GRID STYLES */
/* ======================================= */
.dispatch-services-grid {
  padding: 80px 0;
  background-color: #0a0a0a;
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.section-title-left {
  font-size: 2.5em;
  font-weight: 700;
  color: #ffffff;
  text-align: left;
  margin: 0;
}
.tag-with-arrow {
  background-color: #1f1f1f;
  color: #007bff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1em;
}
.tag-with-arrow i {
  margin-left: 10px;
}

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  display: flex;
  align-items: center;
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
  color: #ffffff;
  border: 1px solid #1f1f1f;
  position: relative;
  overflow: hidden;
}

.service-card.large {
  grid-column: span 1;
}

.service-card.small {
  grid-column: span 1; /* For a smaller 4-column layout */
  flex-direction: column;
  align-items: flex-start;
  padding: 25px;
}
.service-card.small .card-content {
  flex-grow: 1;
  margin-top: 15px;
}
.service-card.small h4 {
  font-size: 1.1em;
  margin-bottom: 5px;
}
.service-card.small p {
  font-size: 0.9em;
}
.service-card.small i.card-arrow {
  position: absolute;
  bottom: 15px;
  right: 15px;
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card.small:hover i.card-arrow {
  opacity: 1;
}

.service-card i:first-child {
  font-size: 2.5em;
  margin-right: 15px;
}

.service-card h4 {
  font-size: 1.2em;
  font-weight: 600;
  margin: 0;
}

.service-card p {
  font-size: 0.9em;
  color: #a0a0b8;
  margin: 0;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  background-color: #1f1f1f;
}

.service-card.new-service {
  border: 1px solid #e60000;
}
.new-badge {
  background-color: #e60000;
  color: white;
  font-size: 0.7em;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 10px;
  font-weight: bold;
  vertical-align: top;
}

/* ======================================= */
/* TRUCK TYPE SELECTION STYLES */
/* ======================================= */
.truck-type-selection {
  padding: 80px 0;
  background-color: #121212;
  text-align: center;
}

.truck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.truck-card {
  background-color: #0a0a0a;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-align: center;
}

.truck-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.truck-image-placeholder {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 15px;
}

.truck-card h4 {
  font-size: 1.2em;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

/* ======================================= */
/* CARGO DISPATCHERS FEATURE STYLES */
/* ======================================= */
.cargo-dispatch-features {
  padding: 80px 0;
  background-color: #0a0a0a;
}

.feature-content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.feature-list-area {
  flex: 1;
}

.feature-text-area {
  flex: 1;
}
.feature-text-area p {
  color: #a0a0b8;
  margin-bottom: 20px;
}

.main-feature-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.main-feature-list li {
  font-size: 1.1em;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #1a1a1a;
  border-radius: 8px;
  border-left: 4px solid;
  transition: background-color 0.3s;
}

.main-feature-list li:nth-child(odd) {
  border-left-color: #e60000;
}

.main-feature-list li:nth-child(even) {
  border-left-color: #007bff;
}

.main-feature-list i {
  margin-right: 10px;
}

.all-types-feature {
  background-color: #1f1f1f;
  padding: 20px;
  border-radius: 8px;
  border-bottom: 4px solid #e60000;
  margin-top: 30px;
  display: flex;
  align-items: center;
}

.all-types-feature i {
  font-size: 2em;
  color: #e60000;
  margin-right: 15px;
  transition: ease-in-out 0.2s;
}

.all-types-feature span {
  font-weight: 600;
  color: #ffffff;
  transition: ease-in-out 0.4s;
}
.all-types-feature:hover{
  transform: translatey(-10px);
  border-bottom-color: blue;
}
/* ======================================= */
/* FREE SETUP FORM STYLES */
/* ======================================= */
.free-setup-form-section {
  padding: 80px 0;
  background-color: #121212;
}
.free-setup-form-section .container {
  display: flex;
  justify-content: center;
}
.form-card {
  background-color: #0a0a0a;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  border-top: 5px solid #007bff;
}
.setup-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #e60000;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.form-title {
  font-size: 2em;
  color: #ffffff;
  margin-bottom: 10px;
  margin-top: 15px;
}
.form-subtitle {
  color: #a0a0b8;
  margin-bottom: 30px;
}
.setup-form .form-group {
  margin-bottom: 20px;
}
.setup-form input[type="text"],
.setup-form input[type="email"],
.setup-form input[type="tel"] {
  width: 100%;
  padding: 15px;
  border: 1px solid #333;
  background-color: #1a1a1a;
  color: #ffffff;
  border-radius: 5px;
  font-size: 1em;
  transition: border-color 0.3s;
}
.setup-form input:focus {
  border-color: #007bff;
  outline: none;
}
.submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(45deg, #e60000, #007bff);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.3s;
}
.submit-btn:hover {
  opacity: 0.9;
}

/* --- Media Queries --- */
@media (max-width: 992px) {
  .service-cards-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
  }
  .service-card.large,
  .service-card.small {
    grid-column: span 1;
  }
  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-title-left {
    margin-bottom: 15px;
  }
  .feature-content-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .service-cards-grid {
    grid-template-columns: 1fr; /* 1 column on small screens */
  }
  .section-title-left {
    font-size: 1.8em;
  }
  .truck-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ======================================= */
/* WEB DEVELOPMENT PAGE SPECIFIC STYLES */
/* ======================================= */

/* --- Hero Section --- */
.webdev-hero {
  background-color: #1a1a1a;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #e60000;
}
.webdev-hero h1 {
  font-size: 3.5em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}
.webdev-hero h2 {
  font-size: 1.8em;
  font-weight: 400;
  color: #007bff;
  margin-bottom: 20px;
}
.webdev-hero p {
  color: #a0a0b8;
  max-width: 600px;
  margin: 0 auto 30px;
}
.hero-cta-btn {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(45deg, #e60000, #007bff);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.1em;
  transition: transform 0.3s, opacity 0.3s;
}
.hero-cta-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* --- Introduction Section --- */
.webdev-introduction {
  padding: 80px 0;
  background-color: #0a0a0a;
}
.webdev-introduction .intro-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.webdev-introduction .section-title {
  margin-bottom: 30px;
  font-size: 2.2em;
  text-align: center;
}
.webdev-introduction p {
  color: #a0a0b8;
  margin-bottom: 20px;
}
.webdev-introduction strong {
  color: #ffffff;
}

/* --- What We Offer (Services Grid) --- */
.webdev-offerings {
  padding: 80px 0;
  background-color: #121212;
}
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.offering-card {
  background-color: #0a0a0a;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-left: 4px solid #007bff; /* Default blue border */
  transition: transform 0.3s, box-shadow 0.3s;
}
.offering-card:nth-child(odd) {
  border-left-color: #e60000; /* Red border for odd cards */
}
.offering-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  background-color: #1a1a1a;
}
.offering-card i {
  font-size: 2.5em;
  margin-bottom: 15px;
}
.offering-card h4 {
  font-size: 1.3em;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}
.offering-card p {
  color: #a0a0b8;
}

/* --- Why Choose Us Section --- */
.webdev-value-proposition {
  padding: 80px 0;
  background-color: #0a0a0a;
  text-align: center;
}
.value-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin-top: 50px;
}
.value-point {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  text-align: left;
  transition: background-color 0.3s;
}
.value-point i {
  font-size: 1.5em;
  margin-right: 15px;
}
.value-point p {
  margin: 0;
  color: #ffffff;
}
.closing-statement {
  margin-top: 40px;
  font-style: italic;
  font-size: 1.1em;
  color: #a0a0b8;
}

/* --- Our Process Section --- */
.webdev-process {
  padding: 80px 0;
  background-color: #121212;
}
.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  overflow-x: auto; /* Allow horizontal scroll on small screens */
  padding-bottom: 10px;
}
.process-step {
  flex: 1;
  min-width: 200px;
  background-color: #0a0a0a;
  padding: 30px 20px;
  border-radius: 8px;
  position: relative;
  border-bottom: 3px solid #007bff;
}
.process-step:nth-child(even) {
  border-bottom-color: #e60000;
}
.step-number {
  display: block;
  font-size: 2.5em;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 10px;
}
.process-step:nth-child(even) .step-number {
  color: #e60000;
}
.process-step h3 {
  font-size: 1.2em;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}
.process-step p {
  color: #a0a0b8;
  font-size: 0.95em;
}

.webdev-vision {
  margin-top: 60px;
  padding: 30px;
  background-color: #0a0a0a;
  border-radius: 8px;
  border: 1px dashed #333;
  text-align: center;
}
.webdev-vision h3 {
  color: #007bff;
  font-size: 1.8em;
  margin-bottom: 15px;
}
.webdev-vision p {
  color: #a0a0b8;
  margin-bottom: 15px;
}
.webdev-vision strong {
  color: #e60000;
  font-size: 1.1em;
  display: block;
  margin-top: 15px;
}

/* --- Media Queries --- */
@media (max-width: 768px) {
  .webdev-hero h1 {
    font-size: 2.5em;
  }
  .offerings-grid {
    grid-template-columns: 1fr;
  }
  .value-points-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    flex-wrap: wrap;
    justify-content: center;
  }
  .process-step {
    flex: 0 0 45%; /* Two columns on medium screens */
  }
}
@media (max-width: 480px) {
  .process-step {
    flex: 0 0 100%; /* Single column on small screens */
  }
}
/* ======================================= */
/* CONTACT PAGE SPECIFIC STYLES */
/* ======================================= */

/* --- Contact Hero Section --- */
.contact-hero {
  background-color: #1a1a1a;
  padding: 100px 0;
  text-align: center;
  border-bottom: 5px solid #007bff; /* Blue border accent */
}
.contact-hero h1 {
  font-size: 3.5em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}
.contact-hero h2 {
  font-size: 1.8em;
  font-weight: 400;
  color: #e60000;
  margin-bottom: 20px;
}
.contact-hero p {
  color: #a0a0b8;
  max-width: 600px;
  margin: 0 auto 30px;
}
/* Reusing hero-cta-btn from webdev-hero */

/* --- Introduction & Ways to Reach Us Section --- */
.contact-introduction {
  padding: 80px 0;
  background-color: #0a0a0a;
  text-align: center;
}
.contact-introduction .section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
}
.contact-introduction .subsection-title {
  font-size: 1.8em;
  margin-top: 50px;
  margin-bottom: 30px;
  color: #ffffff;
  border-bottom: 2px solid #e60000;
  display: inline-block;
  padding-bottom: 5px;
}
.intro-text {
  max-width: 900px;
  margin: 0 auto;
  color: #a0a0b8;
  line-height: 1.7;
}

.ways-to-reach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.reach-card {
  background-color: #1a1a1a;
  padding: 30px 20px;
  border-radius: 8px;
  border-left: 4px solid #007bff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}
.reach-card:nth-child(odd) {
  border-left-color: #e60000;
}
.reach-card:hover {
  transform: translateY(-5px);
  background-color: #1f1f1f;
}
.reach-card i {
  font-size: 2em;
  margin-bottom: 10px;
}
.reach-card h4 {
  font-size: 1.2em;
  color: #ffffff;
  margin-bottom: 5px;
}
.reach-card p {
  color: #a0a0b8;
  font-size: 0.9em;
}
.reach-card.disabled-card {
  opacity: 0.6;
  cursor: not-allowed;
}
.ways-to-reach-footer {
  margin-top: 40px;
  font-style: italic;
  color: #a0a0b8;
}

/* --- Why Contact Us & Our Promise Section --- */
.contact-promise-section {
  padding: 80px 0;
  background-color: #121212;
}
.split-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.why-contact-area,
.our-promise-area {
  flex: 1;
}
.section-title-left {
  font-size: 2em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  border-left: 5px solid #007bff;
  padding-left: 15px;
  text-align: left;
}
.why-contact-list {
  list-style: none;
  padding: 0;
}
.why-contact-list li {
  background-color: #0a0a0a;
  color: #ffffff;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  border-left: 3px solid;
  font-size: 1.05em;
  text-decoration: none;
}
.why-contact-list li:hover{
  bottom: 20px;
  background-color: #0f0f1c;
}
.why-contact-list li:nth-child(even) {
  border-left-color: #007bff;
}
.why-contact-list li:nth-child(odd) {
  border-left-color: #e60000;
}
.why-contact-list i {
  margin-right: 10px;
}
.why-contact-footer {
  margin-top: 20px;
  color: #a0a0b8;
  font-style: italic;
}

.promise-card {
  background-color: #0a0a0a;
  padding: 30px;
  border-radius: 8px;
  border-top: 4px solid #e60000;
}
.promise-card p {
  color: #a0a0b8;
  margin-bottom: 20px;
}
.promise-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.promise-list li {
  color: #ffffff;
  margin-bottom: 10px;
}
.promise-list strong {
  color: #e60000;
}
.promise-signature {
  font-weight: 600;
  color: #007bff !important;
  text-align: center;
  border-top: 1px dashed #333;
  padding-top: 15px;
}

/* --- Direct Contact Details Section --- */
.direct-contact-details {
  padding: 80px 0;
  background-color: #0a0a0a;
  text-align: center;
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.detail-item {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 8px;
  transition: transform 0.3s;
  border-bottom: 4px solid #007bff;
}
.detail-item:nth-child(odd) {
  border-bottom-color: #e60000;
}
.detail-item:hover {
  transform: translateY(-5px);
}
.detail-item i {
  font-size: 3em;
  margin-bottom: 15px;
}
.detail-item h4 {
  font-size: 1.3em;
  color: #ffffff;
  margin-bottom: 10px;
}
.detail-item p {
  color: #a0a0b8;
}
.detail-item strong {
  color: #ffffff;
  font-size: 1.1em;
}
.final-cta-text {
  margin-top: 50px;
  font-size: 1.2em;
  font-weight: 500;
  color: #007bff;
}

/* --- Contact Form Section Specifics --- */
.contact-form-section {
  background-color: #121212;
}
.contact-form-section .form-card {
  border-top: 5px solid #e60000;
}
.contact-form-section .setup-badge {
  background-color: #007bff;
}
.setup-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #333;
  background-color: #0a0a0a;
  color: #ffffff;
  border-radius: 5px;
  font-size: 1em;
  resize: vertical;
}

/* --- Media Queries --- */
@media (max-width: 992px) {
  .split-content {
    flex-direction: column;
  }
  .why-contact-area,
  .our-promise-area {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .contact-hero h1 {
    font-size: 2.5em;
  }
  .ways-to-reach-grid {
    grid-template-columns: 1fr;
  }
}
/* ======================================= */
/* MEDICARE SERVICES PAGE SPECIFIC STYLES */
/* ======================================= */

/* --- Hero Section --- */
/* Medicare Hero Section with CSS Gradient Background */
.medicare-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a33 50%, #0f0f1c 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #e60000;
}

.medicare-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(230, 0, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 123, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.medicare-hero .container {
  position: relative;
  z-index: 2;
}

.medicare-hero h1 {
  font-size: 3.5em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.medicare-hero h2 {
  font-size: 1.8em;
  font-weight: 400;
  color: #007bff;
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.medicare-hero p {
  color: #a0a0b8;
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.2em;
  line-height: 1.6;
}

/* Optional: Add medical icons using Font Awesome */
.medicare-hero::after {
  content: "\f0fa\f21e\f481";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.1);
  font-size: 2em;
  letter-spacing: 20px;
  z-index: 1;
}
.medicare-info-section {
  background-color: #0f0f1c;
  padding: 80px 0;
}

.medicare-content-wrapper {
  display: grid;
  grid-template-columns:  1fr;
  gap: 50px;
  align-items: start;
}

.medicare-text h2 {
  color: #e60000;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.medicare-text h3 {
  color: #007bff;
  font-size: 2em;
  margin: 40px 0 20px 0;
  border-bottom: 2px solid #007bff;
  padding-bottom: 10px;
}

.medicare-text h4 {
  color: #ffffff;
  font-size: 1.4em;
  margin: 25px 0 10px 0;
  display: flex;
  align-items: center;
}

.medicare-text h4::before {
  content: "•";
  color: #e60000;
  font-size: 2em;
  margin-right: 15px;
}

.medicare-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.medicare-list li {
  background-color: #1a1a33;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 4px solid #007bff;
  color: #ffffff;
}

.medicare-part {
  background-color: #1a1a33;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  border-top: 3px solid #e60000;
  column-span: 2;
}

.medicare-part p {
  color: #a0a0b8;
  line-height: 1.6;
  margin: 0;
}

.medicare-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.image-placeholder {
  background: linear-gradient(135deg, #1a1a33, #0f0f1c);
  padding: 60px 40px;
  border-radius: 15px;
  text-align: center;
  border: 3px dashed #007bff;
  width: 100%;
  max-width: 400px;
}

.image-placeholder i {
  font-size: 4em;
  color: #e60000;
  margin-bottom: 20px;
}

.image-placeholder p {
  color: #ffffff;
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
}

.image-placeholder small {
  color: #a0a0b8;
  font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .medicare-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .medicare-text h2 {
    font-size: 2em;
  }

  .medicare-text h3 {
    font-size: 1.6em;
  }
}
/* Reuses .hero-cta-btn from web-development.html */

/* --- Introduction & Understanding Medicare Section --- */
.medicare-introduction {
  padding: 80px 0;
  background-color: #0a0a0a;
}
.medicare-introduction .section-title {
  margin-bottom: 40px;
  font-size: 2.2em;
  text-align: center;
}
.intro-flex {
  display: flex;
  gap: 40px;
  align-items: stretch;
}
.intro-text-area {
  flex: 2;
}
.intro-text-area p {
  color: #a0a0b8;
  line-height: 1.7;
}
.intro-text-area strong {
  color: #ffffff;
  font-weight: 600;
}
.medicare-explanation-card {
  flex: 1;
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 8px;
  border-left: 5px solid #e60000;
}
.medicare-explanation-card h3 {
  color: #e60000;
  font-size: 1.5em;
  margin-bottom: 10px;
}
.medicare-explanation-card p {
  color: #a0a0b8;
}

/* --- What We Offer (Services Grid) --- */
.medicare-offerings {
  padding: 80px 0;
  background-color: #121212;
  text-align: center;
}
.medicare-offerings .offerings-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.medicare-card {
  background-color: #0a0a0a;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-top: 4px solid #007bff;
  transition: transform 0.3s;
  grid-column: span 1;
}
.medicare-card:nth-child(odd) {
  border-top-color: #e60000;
}
.medicare-card.full-width-card {
  grid-column: 1 / -1; /* Spans all columns */
}
.medicare-card:hover {
  transform: translateY(-5px);
  background-color: #1a1a1a;
}
.medicare-card i {
  font-size: 3em;
  margin-bottom: 15px;
}
.medicare-card h4 {
  font-size: 1.4em;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}
.medicare-card p {
  color: #a0a0b8;
}

/* --- Why Choose Us & Our Process Section --- */
.medicare-value-process-section {
  padding: 80px 0;
  background-color: #0a0a0a;
}
.value-process-flex {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
.value-area,
.process-area {
  flex: 1;
}
.value-list {
  list-style: none;
  padding: 0;
}
.value-list li {
  background-color: #1a1a1a;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  border-left: 3px solid;
  font-size: 1.05em;
  color: #ffffff;
}
.value-list li:hover{
  background-color: #111122;
  padding-bottom: 20px;
}
.value-list li:nth-child(even) {
  border-left-color: #007bff;
}
.value-list li:nth-child(odd) {
  border-left-color: #e60000;
}
.value-list i {
  margin-right: 10px;
}
.value-list strong {
  font-weight: 600;
}

.process-step-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}
.process-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background-color: #1a1a1a;
  border-radius: 8px;
  border-right: 4px solid #007bff;
}
.process-item:nth-child(even) {
  border-right-color: #e60000;
}
.process-item .step-num {
  font-size: 1.8em;
  font-weight: 700;
  color: #e60000;
  margin-right: 15px;
}
.process-item:nth-child(even) .step-num {
  color: #007bff;
}
.process-item h5 {
  font-size: 1.1em;
  color: #ffffff;
  margin-bottom: 5px;
}
.process-item p {
  color: #a0a0b8;
  font-size: 0.9em;
}

.medicare-vision {
  margin-top: 60px;
  padding: 30px;
  background-color: #1a1a1a;
  border-radius: 8px;
  border: 1px dashed #e60000;
  text-align: center;
}
.medicare-vision h3 {
  color: #e60000;
  font-size: 1.8em;
  margin-bottom: 15px;
}
.medicare-vision p {
  color: #ffffff;
  margin-bottom: 10px;
}
.medicare-vision strong {
  color: #007bff;
}

/* --- Contact Form Section Specifics --- */
.medicare-contact {
  background-color: #121212;
}
.medicare-contact .form-card {
  border-top: 5px solid #007bff;
}
.medicare-contact .setup-badge {
  background-color: #e60000;
}

/* --- Media Queries --- */
@media (max-width: 992px) {
  .intro-flex,
  .value-process-flex {
    flex-direction: column;
  }
  .medicare-offerings .offerings-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}
@media (max-width: 600px) {
  .medicare-hero h1 {
    font-size: 2.5em;
  }
  .medicare-offerings .offerings-grid {
    grid-template-columns: 1fr;
  }
}
/* ======================================= */
/* OUR SERVICES PAGE SPECIFIC STYLES (UPDATED) */
/* ======================================= */

/* --- Hero Section --- */
.services-hero {
  background-color: #1a1a1a;
  padding: 120px 0; /* Increase padding for more height */
  text-align: center;
  border-bottom: 7px solid #007bff; /* Thicker blue border accent */
  position: relative;
  overflow: hidden;
}
.services-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(30, 30, 30, 0.8) 0%, rgba(10, 10, 10, 1) 100%);
  z-index: 1;
}
.services-hero .hero-content {
  position: relative;
  z-index: 2;
}
.services-hero h1 {
  font-size: 4em; /* Larger heading */
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 5px;
  letter-spacing: 1px;
}
.services-hero h2 {
  font-size: 2em;
  font-weight: 500;
  color: #e60000;
  margin-bottom: 25px;
}
.services-hero p {
  color: #c0c0c0;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1em;
}

/* --- Introduction Section --- */
.services-introduction {
  padding: 60px 0;
  background-color: #0a0a0a;
  text-align: center;
  border-bottom: 1px solid #1f1f1f;
}
.services-introduction .intro-text {
  max-width: 900px;
  margin: 0 auto 20px;
  color: #ffffff;
  font-size: 1.1em;
  line-height: 1.7;
}
.services-introduction .intro-text-small {
  color: #a0a0b8;
  font-size: 0.9em;
}
.services-introduction strong {
  color: #007bff;
}

/* --- Service Overview Cards --- */
.service-overview-section {
  padding: 80px 0;
  background-color: #121212;
  text-align: center;
}
.service-overview-section .section-title {
  margin-bottom: 50px;
  font-size: 2.5em;
  color: #ffffff;
}

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.service-card {
  background-color: #0a0a0a;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  text-align: left;
  border-left: 5px solid #e60000; /* Vertical emphasis on the left */
  transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
  display: flex; /* Flex container for content */
  flex-direction: column;
}
.service-card:nth-child(even) {
  border-left-color: #007bff;
}
.service-card:hover {
  transform: translateY(-8px); /* Deeper lift on hover */
  background-color: #1a1a1a;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}
.service-card i {
  font-size: 3em;
  margin-bottom: 15px;
}
.service-card h3 {
  font-size: 1.6em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}
.service-card p {
  color: #a0a0b8;
  margin-bottom: 15px;
  flex-grow: 1; /* Allows the main paragraph to grow and push the button down */
}

.key-points {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  border-top: 1px dashed #333;
  padding-top: 15px;
}
.key-points li {
  color: #ffffff;
  font-size: 0.95em;
  margin-bottom: 8px;
}
.key-points i {
  font-size: 0.8em;
  margin-right: 8px;
  color: #007bff;
}
.dispatch-card .key-points i,
.webdev-card .key-points i {
  color: #e60000; /* Red checks for Dispatch/Web */
}

/* Insurance Card Specifics */
.sub-points-group {
  margin-bottom: 20px;
  flex-grow: 1;
}
.sub-points-group h4 {
  color: #007bff;
  font-size: 1.2em;
  margin-top: 10px;
  border-bottom: 1px solid #007bff44;
  padding-bottom: 5px;
}
.insurance-card p {
  font-size: 0.9em;
}

.learn-more-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #e60000;
  color: white;
  text-decoration: none;
  border-radius: 50px; /* Pill shape for CTA */
  font-weight: 700;
  margin-top: 15px; /* Ensures space below content */
  transition: background-color 0.3s, transform 0.3s;
}
.insurance-card .learn-more-btn,
.marketing-card .learn-more-btn {
  background-color: #007bff;
}
.learn-more-btn:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

/* --- Why Choose Us Section --- */
.services-why-choose {
  padding: 80px 0;
  background-color: #0a0a0a;
  text-align: center;
}
.services-why-choose .section-title {
  color: #007bff;
}
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Fixed 4 columns */
  gap: 20px;
  margin-top: 50px;
}
.why-choose-item {
  background-color: #1a1a1a;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid;
  transition: all 0.3s;
}
.why-choose-item:nth-child(odd) {
  border-bottom-color: #e60000;
}
.why-choose-item:nth-child(even) {
  border-bottom-color: #007bff;
}
.why-choose-item:hover {
  transform: translateY(-5px);
  background-color: #252525;
}
.why-choose-item i {
  font-size: 2.5em;
  margin-bottom: 10px;
}
.why-choose-item h4 {
  color: #ffffff;
  font-size: 1.2em;
  margin-bottom: 5px;
  font-weight: 600;
}
.why-choose-item p {
  color: #a0a0b8;
  font-size: 0.9em;
}

/* --- Call to Action Form Section Specifics (Reusing existing form styles) --- */
.services-cta {
  background-color: #121212;
}
.services-cta .form-card {
  border-top: 5px solid #e60000;
}
.services-cta .setup-badge {
  background-color: #007bff;
}

/* --- Media Queries --- */
@media (max-width: 992px) {
  .service-cards-grid {
    grid-template-columns: 1fr;
  }
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card {
    text-align: left; /* Keep text left-aligned for better readability on mobile */
  }
}
@media (max-width: 600px) {
  .services-hero h1 {
    font-size: 2.5em;
  }
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}
/* ======================================= */
/* HOME & AUTO INSURANCE PAGE SPECIFIC STYLES */
/* ======================================= */

/* --- Hero Section --- */
.home-auto-hero {
  background-color: #1a1a1a;
  padding: 120px 0;
  text-align: center;
  border-bottom: 7px solid #e60000; /* Red border accent */
}
.home-auto-hero h1 {
  font-size: 3.5em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}
.home-auto-hero h2 {
  font-size: 1.8em;
  font-weight: 400;
  color: #007bff;
  margin-bottom: 20px;
}
.home-auto-hero p {
  color: #a0a0b8;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* --- Introduction Section --- */
.home-auto-introduction {
  padding: 60px 0;
  background-color: #0a0a0a;
  text-align: center;
}
.home-auto-introduction .section-title {
  color: #ffffff;
  margin-bottom: 30px;
}
.home-auto-introduction .intro-text {
  max-width: 900px;
  margin: 0 auto;
  color: #a0a0b8;
  line-height: 1.7;
}
.home-auto-introduction strong {
  color: #e60000;
}

/* --- Why Home & Auto Insurance Matters Section --- */
.why-it-matters-section {
  padding: 80px 0;
  background-color: #121212;
}
.why-it-matters-section .section-title-left {
  font-size: 2.2em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 40px;
  border-left: 5px solid #007bff;
  padding-left: 15px;
  text-align: left;
}
.matter-grid {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
.matter-card {
  flex: 1;
  background-color: #0a0a0a;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-top: 4px solid;
}
.home-card {
  border-top-color: #e60000;
}
.auto-card {
  border-top-color: #007bff;
}

.matter-card i {
  font-size: 3em;
  margin-bottom: 15px;
}
.matter-card h3 {
  font-size: 1.5em;
  color: #ffffff;
  margin-bottom: 10px;
}
.matter-card p {
  color: #a0a0b8;
  line-height: 1.6;
}
.cta-summary {
  text-align: center;
  font-size: 1.1em;
  font-style: italic;
  color: #007bff;
}

/* --- Coverage Details Section --- */
.coverage-details-section {
  padding: 80px 0;
  background-color: #0a0a0a;
}
.coverage-flex {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
.coverage-area {
  flex: 1;
}
.subsection-title {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 20px;
}
.red-text {
  color: #e60000;
}
.blue-text {
  color: #007bff;
}

.list-intro {
  color: #a0a0b8;
  margin-bottom: 15px;
}
.coverage-list {
  list-style: none;
  padding: 0;
}
.coverage-list li {
  background-color: #121212;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #ffffff;
  border-left: 3px solid;
  font-size: 1.05em;
  line-height: 1.4;
}
.coverage-list li:hover{
  background-color: #0f0f1c;
  bottom: 30px;
}
.home-coverage-list li {
  border-left-color: #e60000;
}
.auto-coverage-list li {
  border-left-color: #007bff;
}

.coverage-list i {
  margin-right: 10px;
  font-size: 1.1em;
  color: #a0a0b8; /* icon color for contrast */
}
.coverage-list strong {
  font-weight: 600;
}
.tailor-note {
  margin-top: 20px;
  color: #a0a0b8;
  font-style: italic;
}

/* --- Benefits & Trust Section --- */
.benefits-trust-section {
  padding: 80px 0;
  background-color: #121212;
}
.benefits-trust-flex {
  display: inline-block;
  gap: 40px;
  align-items: center;
}
.benefits-area,
.trust-area {
  flex: 0;
}
.benefit-list {
  list-style: none;
  padding: 0;
}
.benefit-list li {
  background-color: #0a0a0a;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  border-left: 3px solid;
  color: #ffffff;
}
.benefit-list li:hover{
  background-color:#111122;
  transform: translate(10px);
  
}
.benefit-list li:nth-child(even) {
  border-left-color: #007bff;
}
.benefit-list li:nth-child(even):hover{
  border-left-color: grey;
}
.benefit-list li:nth-child(odd) {
  border-left-color: #e60000;
}
.benefit-list li:nth-child(odd):hover{
  border-left-color: grey;
}
.benefit-list i {
  margin-right: 10px;
}

.trust-box {
  background-color: #0a0a0a;
  padding: 30px;
  border-radius: 8px;
  border: 1px dashed #007bff;
}
.trust-box p {
  color: #a0a0b8;
  margin-bottom: 20px;
}
.trust-points {
  list-style: none;
  padding: 0;
}
.trust-points li {
  color: #ffffff;
  margin-bottom: 10px;
  padding-left: 15px;
  position: relative;
}
.trust-points li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #e60000;
}
.trust-points strong {
  font-weight: 600;
  color: #007bff;
}

/* --- Contact Form Section Specifics (Reusing Global Form Style) --- */
.home-auto-contact {
  background-color: #0a0a0a;
}
.home-auto-contact .form-card {
  border-top: 5px solid #e60000;
}
.home-auto-contact .setup-badge {
  background-color: #007bff;
}
.home-auto-contact .submit-btn {
  background: linear-gradient(45deg, #007bff, #e60000);
}

/* --- Media Queries --- */
@media (max-width: 992px) {
  .matter-grid,
  .coverage-flex,
  .benefits-trust-flex {
    flex-direction: column;
  }
  .why-it-matters-section .section-title-left {
    text-align: center;
    border-left: none;
    padding-left: 0;
    border-bottom: 3px solid #007bff;
    display: inline-block;
  }
}
@media (max-width: 600px) {
  .home-auto-hero h1 {
    font-size: 2.5em;
  }
  .subsection-title {
    font-size: 1.6em;
  }
}
/* ======================================= */
/* SOCIAL MEDIA MARKETING PAGE SPECIFIC STYLES */
/* ======================================= */

/* --- Hero Section --- */
.social-hero {
  background-color: #1a1a1a;
  padding: 120px 0;
  text-align: center;
  border-bottom: 7px solid #007bff; /* Blue border accent */
}
.social-hero h1 {
  font-size: 3.5em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}
.social-hero h2 {
  font-size: 1.8em;
  font-weight: 400;
  color: #e60000;
  margin-bottom: 20px;
}
.social-hero p {
  color: #a0a0b8;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* --- Introduction Section --- */
.social-introduction {
  padding: 60px 0;
  background-color: #0a0a0a;
  text-align: center;
}
.social-introduction .section-title {
  color: #ffffff;
  margin-bottom: 30px;
}
.social-introduction .intro-text {
  max-width: 900px;
  margin: 0 auto 15px;
  color: #a0a0b8;
  line-height: 1.7;
}
.social-introduction .intro-text-small {
  color: #a0a0b8;
  font-size: 0.95em;
  margin-bottom: 40px;
}
.social-introduction strong {
  color: #007bff;
}

.why-it-matters-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: #121212;
  border-radius: 8px;
  border-left: 5px solid #e60000;
}
.why-it-matters-list h3 {
  color: #e60000;
  font-size: 1.5em;
  margin-bottom: 20px;
}
.check-list {
  list-style: none;
  padding: 0;
  text-align: left;
}
.check-list li {
  color: #ffffff;
  padding: 8px 0;
  border-bottom: 1px dashed #333;
}
.check-list li:last-child {
  border-bottom: none;
}
.check-list i {
  margin-right: 10px;
  font-size: 1.1em;
}

/* --- Our Services Section --- */
.social-offerings {
  padding: 80px 0;
  background-color: #121212;
  text-align: center;
}
.social-offerings .offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.social-card {
  background-color: #0a0a0a;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-top: 4px solid #e60000;
  transition: transform 0.3s;
}
.social-card:nth-child(even) {
  border-top-color: #007bff;
}
.social-card:hover {
  transform: translateY(-5px);
  background-color: #1a1a1a;
}
.social-card i {
  font-size: 3em;
  margin-bottom: 15px;
}
.social-card h4 {
  font-size: 1.4em;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}
.service-details-list {
  list-style: none;
  padding: 0;
  text-align: left;
}
.service-details-list li {
  color: #a0a0b8;
  padding-left: 15px;
  position: relative;
  margin-bottom: 5px;
  font-size: 0.95em;
}
.service-details-list li::before {
  content: "▪";
  position: absolute;
  left: 0;
  color: inherit;
}
.social-card:nth-child(odd) .service-details-list li::before {
  color: #e60000;
}
.social-card:nth-child(even) .service-details-list li::before {
  color: #007bff;
}

/* --- Benefits & Approach Section --- */
.social-value-approach-section {
  padding: 80px 0;
  background-color: #0a0a0a;
}
.value-approach-flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.benefits-area,
.approach-area {
  flex: 1;
}
.subsection-title {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 5px;
  border-bottom: 2px solid;
  display: inline-block;
}
.benefit-list {
  list-style: none;
  padding: 0;
}
.benefit-list li {
  background-color: #121212;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  border-left: 3px solid;
  color: #ffffff;
}
.benefit-list li:nth-child(even) {
  border-left-color: #007bff;
}
.benefit-list li:nth-child(odd) {
  border-left-color: #e60000;
}
.benefit-list i {
  margin-right: 10px;
}
.final-benefit-text {
  margin-top: 20px;
  font-style: italic;
  color: #a0a0b8;
}

.approach-box {
  background-color: #121212;
  padding: 30px;
  border-radius: 8px;
  border: 1px dashed #e60000;
}
.approach-area p {
  color: #a0a0b8;
  margin-bottom: 20px;
}
.approach-list {
  list-style: none;
  padding: 0;
  margin-left: 20px;
}
.approach-list li {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 1.05em;
}
.approach-list strong {
  color: #e60000;
}
.cta-line {
  margin-top: 30px !important;
  font-weight: 600;
  color: #007bff !important;
  font-size: 1.1em;
}

/* --- Contact Form Section Specifics (Reusing Global Form Style) --- */
.social-contact {
  background-color: #121212;
}
.social-contact .form-card {
  border-top: 5px solid #e60000;
}
.social-contact .setup-badge {
  background-color: #007bff;
}

/* --- Media Queries --- */
@media (max-width: 992px) {
  .value-approach-flex {
    flex-direction: column;
  }
  .social-offerings .offerings-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
@media (max-width: 600px) {
  .social-hero h1 {
    font-size: 2.5em;
  }
}

/* ======================================= */
/* HOMEPAGE SECTIONS BELOW HERO STYLES */
/* ======================================= */

/* --- General Section Styling --- */
.section-spacing {
  padding: 80px 0;
  /* Dark background for sections */
  background-color: #0a0a0a;
}

.section-title {
  font-size: 2.8em;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

.section-subtitle {
  font-size: 1.1em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 5px;
}
.red {
  color: #e60000;
}
.blue {
  color: #007bff;
}

/* --- Who We Are Section --- */
.about-content {
  max-width: 900px;
  margin: 30px auto 0;
  text-align: center;
}
.about-content p {
  font-size: 1.1em;
  color: #a0a0b8; /* Light gray for body text */
  margin-bottom: 20px;
}
.about-content p strong {
  color: #ffffff; /* Highlight key phrases */
  font-weight: 600;
}

/* --- Services Overview Section --- */
.services-overview-section {
  background-color: #0d0d0d; /* Slightly different dark shade for contrast */
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: #e60000; /* Red border on hover */
}

.service-card i {
  font-size: 3em;
  margin-bottom: 20px;
}

.service-card h4 {
  font-size: 1.4em;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-card p {
  color: #a0a0b8;
  margin-bottom: 15px;
  line-height: 1.5;
}

.learn-more-link {
  color: #007bff; /* Blue link color */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}
.learn-more-link i {
  font-size: 0.8em;
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}
.learn-more-link:hover {
  color: #e60000; /* Red on hover */
}
.learn-more-link:hover i {
  margin-left: 10px;
}

/* --- Why Choose Us Section --- */
.why-choose-us-section {
  background-color: #0a0a0a;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.value-card {
  background-color: #151515;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  background-color: #1a1a1a;
}

.value-card i {
  font-size: 3em;
  margin-bottom: 15px;
}

.value-card h4 {
  font-size: 1.4em;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 700;
}

.value-card p {
  color: #a0a0b8;
  line-height: 1.6;
}

/* --- Mission & Vision Section --- */
.mission-vision-section {
  padding: 60px 0;
  background-color: #0d0d0d;
}
.mission-vision-grid {
  display: grid;
  grid-template-columns:  1fr;
  margin-top: 30px;
}

.mission-card {
  background-color: #151515;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.mission-card i {
  font-size: 3.5em;
  margin-bottom: 15px;
}

.mission-card .card-title {
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
  text-transform: none;
  letter-spacing: normal;
}

.mission-card p {
  color: #a0a0b8;
  font-size: 1.1em;
  line-height: 1.6;
}

/* --- TESTIMONIALS SECTION STYLES --- */
.testimonials-section {
  background-color: #121212;
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.section-subtitle {
  font-size: 1.1em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-subtitle.blue {
  color: #007bff;
}

.section-title {
  font-size: 2.8em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 50px;
}

.testimonial-carousel-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.testimonial-carousel {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  min-width: 100%;
  padding: 50px 40px;
  background-color: #1a1a33;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.quote-icon {
  font-size: 3em;
  color: #e60000;
  margin-bottom: 25px;
  opacity: 0.8;
}

.testimonial-text {
  font-size: 1.3em;
  font-style: italic;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 30px;
  max-width: 800px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.testimonial-author i {
  font-size: 2.5em;
  color: #007bff;
  margin-right: 15px;
}

.author-details {
  text-align: left;
}

.author-name {
  font-weight: 700;
  color: #ffffff;
  font-size: 1.2em;
  margin-bottom: 5px;
}

.author-title {
  color: #a0a0b8;
  font-size: 0.9em;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
}

.nav-btn:hover {
  background: #e60000;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.carousel-dots {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.dot {
  height: 12px;
  width: 12px;
  background-color: #444;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background-color: #666;
  transform: scale(1.1);
}

.dot.active {
  background-color: #e60000;
  transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 40px 30px;
  }

  .testimonial-text {
    font-size: 1.1em;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1em;
  }

  .prev-btn {
    left: 10px;
  }

  .next-btn {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2.2em;
  }

  .testimonial-card {
    padding: 30px 20px;
  }

  .testimonial-text {
    font-size: 1em;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-author i {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .author-details {
    text-align: center;
  }
}

/* --- GENERAL STYLES FOR ALL PAGES --- */
/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body & Global Fonts */
body {
  font-family: "Poppins", sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 150px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  backdrop-filter: blur(5px);
  z-index: 1000;
  padding: 0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.nav-title-header {
  width: 100%;
  padding: 5px 20px;
  text-align: center;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.05);
}

.nav-main-title {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(45deg, #e60000, #007bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.logo {
  width: 100px;
  height: 100px;
  display: block;
}

.but {
  height: fit-content;
  padding: 13px 25px;
  background: linear-gradient(45deg, red, blue);
  position: relative;
  font-weight: bold;
  align-items: center;
  color: white;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  cursor: pointer;
  transition: all 0.5s ease-in;
  border: none;
}

.but:hover {
  background: linear-gradient(45deg, blue, red);
  color: white;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  margin: 0 20px;
}

.nav-dropdown {
  position: relative;
}

.nav-link {
  color: black;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  transition: all 0.3s ease;
  position: relative;
  padding: 10px 0;
}

.nav-link:hover {
  color: red;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 10px 0;
  min-width: 200px;
  z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 0;
  margin: 0;
}

.dropdown-menu a {
  color: black;
  text-decoration: none;
  padding: 10px 20px;
  display: block;
  white-space: nowrap;
  font-weight: 400;
  transition: background-color 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: #f0f0f0;
  color: red;
}

#active {
  color: red;
}

#active::after {
  width: 100%;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, red, blue);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #000000;
  margin: 3px 0;
  transition: 0.3s;
}

/* --- HERO SECTION ROTATION STYLES --- */

/* All hero sections *EXCEPT* the one with id="hero" are stacked and hidden by default */
.hero-section:not(#hero) {
  position: absolute;
  top: 140px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 100px);
  align-items: center;
  justify-content: center;
  overflow: hidden;

  opacity: 0;
  z-index: 5;

  transition: opacity 1s ease-in-out;
  display: flex;
}

/* The active rotating slide is visible and brought to the front */
.hero-section:not(#hero).active {
  opacity: 1;
  z-index: 10;
}

/* Make the first hero section (#hero) static and take up space */
#hero {
  min-height: calc(100vh - 100px);
  width: 100%;
  position: relative;
  top: 0;

  flex-direction: column;
  align-items: flex-start;
  padding-top: 50px;
  padding-left: 5%;
  display: flex;
  justify-content: center;
  overflow: hidden;

  /* Allow the static hero to fade out */
  transition: opacity 1s ease-in-out;
}

/* NEW: Class to hide the static hero's content while preserving its space */
.hero-section.hidden-hero {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Reset the specific styles only for the first section's direct content */
#hero h2 {
  position: relative;
  z-index: 2;
  font-size: 2em;
}
#hero h1 {
  position: relative;
  z-index: 2;
  font-size: 4em;
}
#hero p {
  position: relative;
  z-index: 2;
  max-width: 500px;
}
#hero button {
  position: relative;
  z-index: 2;
  background-color: #e60000;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

/* Shared styles for the 5 new sections */
/* ======================================= */
/* MOBILE HERO SECTION FIXES */
/* ======================================= */

@media (max-width: 768px) {
  /* Fix for hero section positioning and background display */
  .hero-section:not(#hero) {
    position: absolute;
    top: 120px; /* Adjusted for mobile navbar */
    left: 0;
    width: 100vw;
    height: max-content;
    align-items: center;
    justify-content: center;
  }

  /* Ensure background images display fully on mobile */
  .hero-background {
    background-size: cover !important;
    background-position: center center !important;
  }

  /* Adjust overlay for better text readability */
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.3) 100%
    );
  }

  /* Hero content wrapper adjustments */
  .hero-content-wrapper {
    padding: 20px 15px;
    width: 95%;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 20px;
  }

  /* Mobile text size adjustments */
  .hero-main-content h1 {
    font-size: 2em !important; /* Much smaller for mobile */
    line-height: 1.2;
    margin-bottom: 15px;
    width: 100% !important; /* Remove fixed width */
    text-align: center;
  }

  .hero-main-content h2 {
    font-size: 1.3em !important;
    margin-bottom: 10px;
    text-align: center;
  }

  /* Stats section - make it more compact */
  .hero-stats {
    font-size: 0.8em;
    padding: 6px 12px;
    margin-bottom: 10px;
    text-align: center;
    width: fit-content;
    max-width: 90%;
  }

  /* Button adjustments */
  .hero-button {
    padding: 12px 25px;
    font-size: 0.9em;
    margin: 10px 0;
  }

  /* Rating adjustments */
  .hero-rating {
    font-size: 0.8em;
    margin-top: 10px;
    justify-content: center;
    text-align: center;
  }

  /* Specific fix for the first hero section */
  #hero {
    min-height: calc(100vh - 120px);
    padding: 20px 5%;
    align-items: center;
    text-align: center;
    justify-content: center;
  }

  #hero h1 {
    font-size: 2.5em !important;
    text-align: center;
    margin-bottom: 15px;
  }

  #hero h2 {
    font-size: 1.5em !important;
    text-align: center;
    margin-bottom: 15px;
  }

  #hero button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 15px 0;
  }

  /* Ensure body padding matches mobile navbar height */
  body {
    padding-top: 120px;
  }
}

@media (max-width: 480px) {
  /* Extra small devices */
  .hero-main-content h1 {
    font-size: 1.8em !important;
  }

  .hero-main-content h2 {
    font-size: 1.1em !important;
  }

  #hero h1 {
    font-size: 2em !important;
  }

  #hero h2 {
    font-size: 1.3em !important;
  }

  .hero-stats {
    font-size: 0.7em;
    padding: 5px 10px;
  }

  .hero-button {
    padding: 10px 20px;
    font-size: 0.85em;
  }

  .hero-content-wrapper {
    padding: 15px 10px;
  }
  .hero-section,#hero{
    height: max-content;
  }
}

/* Ensure all hero sections have proper background display */
.hero-section:not(#hero) .hero-background {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Specific background image fixes for each hero section */
#hero-section-1 .hero-background {
  background-image: url('img/Dry-Van.webp');
}

#hero-section-2 .hero-background {
  background-image: url('https://media.istockphoto.com/id/1047505000/photo/medicare-health-insurance-card.jpg?s=612x612&w=0&k=20&c=Q-a8HDKaPTyZzzlS-MWfyme2OiPi0X7BD3fUaJHXeTA=');
}

#hero-section-3 .hero-background {
  background-image: url('https://images.unsplash.com/photo-1557838923-2985c318be48?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8ZGlnaXRhbCUyMG1hcmtldGluZ3xlbnwwfHwwfHx8MA%3D%3D');
}

#hero-section-4 .hero-background {
  background-image: url('https://media.istockphoto.com/id/2176931173/photo/responsive-web-design-studio-page-displayed-across-laptop-phone-tablet-and-computer-on-office.jpg?s=612x612&w=0&k=20&c=bCPIA86IN4oNmJIYl98ZnebKlFnAaFd1jrXidu3Vw94=');
}

#hero-section-5 .hero-background {
  background-image: url('https://media.istockphoto.com/id/1373086063/photo/insurance-company-client-take-out-complete-insurance-concept-assurance-and-insurance-car-real.jpg?s=612x612&w=0&k=20&c=8ouqL1I4DY8urrt_0oBH-w4Fr0-toFniy0wAc8fHAd0=');
}

/* --- LOGO CAROUSEL STYLES --- */
.logo-carousel {
  width: 100%;
  overflow: hidden;
  background-color: black;
  padding: 20px 0;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  /* FIX: The hero section now reserves the space, so we remove the margin */
  margin-top: 0;
}

.partnerships-heading {
  text-align: center;
  color: #aaa;
  font-size: 1.1em;
  font-weight: 300;
  margin-bottom: 20px;
}

.carousel-track {
  display: flex;
  width: fit-content;
  animation: scroll-logos 20s linear infinite;
}

.logo-item {
  height: 60px;
  width: auto;
  margin: 0 40px;
  filter: opacity(100%);
}

.logo-item:hover {
  filter: grayscale(0%) opacity(100%);
}

/* Keyframe animation for scrolling */
@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- WELCOME SECTION STYLES (Modern EK-Alpha Solutions) --- */

.welcome-section {
  background-color: #0f0f1c; /* Very Dark Blue-Black Background */
  padding: 80px 0;
}

.welcome-header {
  text-align: center;
  margin-bottom: 60px;
}

/* NEW STYLE FOR PROFESSIONAL INTRO LINE */
.professional-intro {
  font-size: 1.1em;
  font-weight: 400;
  letter-spacing: 2px;
  color: #e60000; /* Red to stand out */
  margin-bottom: 5px;
}
/* END NEW STYLE */

.welcome-header h1 {
  font-size: 3em;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
}

/* ... (rest of .highlight-text and welcome-section styles) ... */

.highlight-text {
  font-size: 1.4em;
  font-weight: 500;
  color: #007bff; /* Professional Blue Accent */
}

/* --- GRID LAYOUT --- */
.services-grid {
  display: grid;
  grid-template-columns: 3fr 2fr; /* Creates an asymmetric, modern layout */
  gap: 50px;
  align-items: stretch; /* Ensures columns stretch to match height */
}

.service-box {
  background-color: #1a1a33; /* Slightly lighter blue-black for contrast */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-top: 5px solid #e60000; /* Red top border for flair */
}

.service-box p {
  color: #c9c9d8;
  line-height: 1.7;
  margin-bottom: 30px;
}

.services-title {
  color: #e60000; /* Red Title */
  font-size: 1.8em;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 25px;
  border-bottom: 1px solid #33334f;
  padding-bottom: 10px;
}

/* --- CORE SERVICES LIST --- */
.core-services-list {
  list-style: none;
  padding: 0;
}

.core-services-list li {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  background-color: #0f0f1c;
  padding: 15px;
  border-radius: 8px;
}

.core-services-list li:hover {
  background-color: #007bff20; /* Subtle blue hover effect */
}

.service-icon {
  font-size: 1.8em;
  color: #e60000; /* Red icon color */
  margin-right: 20px;
  flex-shrink: 0;
}

.service-details .service-name {
  display: block;
  font-weight: 700;
  color: #ffffff;
  font-size: 1.1em;
  margin-bottom: 2px;
}

.service-details p {
  margin: 0;
  color: #a0a0b8;
  font-size: 0.9em;
}

/* --- INFO CARDS AND CTA --- */

.info-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background-color: #1a1a33;
  padding: 25px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.info-card h4 {
  color: #ffffff;
  font-size: 1.4em;
  margin-bottom: 5px;
  font-weight: 600;
}

.info-icon {
  font-size: 2em;
  flex-shrink: 0;
  margin-top: 5px;
}

.info-icon.blue {
  color: #007bff; /* Blue */
}

.info-icon.red {
  color: #e60000; /* Red */
}

.cta-block {
  text-align: center;
  padding: 30px;
  border: 2px dashed #007bff; /* Blue dashed border for focus */
  border-radius: 12px;
  margin-top: auto; /* Pushes the CTA block to the bottom of the column */
}

.urgent-help {
  color: #e60000;
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 15px;
}

.call-us-button {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(45deg, blue, red);
  color: #fff;
  padding: 15px 35px;
  font-size: 1.2em;
  font-weight: 700;
  border-radius: 50px; /* Pill shape for modern look */
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s;
  box-shadow: 0 4px 15px rgba(230, 0, 0, 0.4);
}

.call-us-button:hover {
  background: linear-gradient(45deg, red, blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
  animation: none;
}

/* --- ANIMATIONS --- */

.fade-in-up {
  opacity: 100%;
  /* This ensures animation starts from off-screen and then plays */
  animation-fill-mode: backwards;
}

/* 1. Fade In Up Animation (for staggered text) */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 2. Pulse Animation (for CTA button) */
.pulse {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 0, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(230, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(230, 0, 0, 0);
  }
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .welcome-header h1 {
    font-size: 2.2em;
  }
}
/* --- FOOTER STYLES --- */
.site-footer {
  background-color: #111122; /* A dark, deep color for contrast */
  color: #c9c9d8;
  padding-top: 60px;
  font-size: 0.95em;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-logo {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
}

.description {
  margin-bottom: 20px;
}

.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer-contact .contact-item i {
  font-size: 1.2em;
  margin-right: 15px;
  margin-top: 3px;
}

.red-icon {
  color: #e60000; /* Red accent color */
}

.footer-contact a {
  color: #c9c9d8;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: #e60000;
}

.footer-links h4 {
  color: #ffffff;
  font-size: 1.2em;
  margin-bottom: 25px;
  font-weight: 700;
  border-bottom: 2px solid #333;
  padding-bottom: 8px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #c9c9d8;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #007bff; /* Blue accent on hover */
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 20px 0;
  background-color: #0a0a0a; /* Match the body background */
}

.bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-icons a {
  color: #c9c9d8;
  font-size: 1.4em;
  margin-left: 15px;
  transition: color 0.3s;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.social-icons a {
  color: var(--neon-pink);
  font-size: 1.2rem;
  transition: all 0.3s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(45deg, blue, red);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
}

.social-icons a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-neon);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 50%;
}

.social-icons a:hover::before {
  opacity: 1;
}

.social-icons a:hover {
  color: white;
  transform: scale(1.2) rotate(360deg);
  box-shadow: 0 0 20px red;
  text-decoration: none !important;
}

.social-icons a i {
  position: relative;
  z-index: 2;
  text-decoration: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--gradient-neon);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}
/* Updated WhatsApp button to exact green color from blueprint */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  position: relative;
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
  position: absolute;
  left: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30, 41, 59, 0.95);
  color: #e2e8f0;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.875rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Comprehensive Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 992px) {
  body {
    padding-top: 120px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 120px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger span {
    background: #000000;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .service-cards-grid,
  .offerings-grid,
  .value-points-grid,
  .ways-to-reach-grid,
  .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 100px;
  }

  .nav-main-title {
    font-size: 1.8rem;
  }

  .logo {
    width: 80px;
    height: 80px;
  }

  .but {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .service-cards-grid,
  .offerings-grid,
  .value-points-grid,
  .ways-to-reach-grid,
  .details-grid,
  .truck-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2em;
  }

  .subsection-title {
    font-size: 1.5em;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 15px;
  }

  .nav-main-title {
    font-size: 1.5rem;
  }

  .logo {
    width: 70px;
    height: 70px;
  }

  #tel {
    display: none;
  }

  .section-title {
    font-size: 1.8em;
  }

  .whatsapp-float {
    bottom: 20px;
    left: 20px;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 90px;
  }

  .nav-main-title {
    font-size: 1.3rem;
  }

  .logo {
    width: 60px;
    height: 60px;
  }

  .section-title {
    font-size: 1.5em;
  }

  .subsection-title {
    font-size: 1.2em;
  }
}
/* ======================================= */
/* HAMBURGER MENU STRUCTURAL/RESPONSIVE ADDITIONS */
/* ======================================= */

/* 1. Toggle Button Setup (Desktop: Hidden) */
#menu-toggle {
  display: none; /* Hide button on desktop */
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1000;
}

/* 2. Responsive Overrides (Mobile View) - Using 992px from the file's existing media queries */
@media (max-width: 992px) {
  /* make hamburger black and position it on the right above all content */
  #menu-toggle {
    display: block;
    position: absolute; /* place relative to .navbar */
    top: 16px;
    right: 16px; /* push to right side */
    font-size: 24px;
    color: #000; /* black icon color */
    padding: 8px;
    z-index: 1002; /* above navbar contents and overlay */
  }
  #menu-toggle i {
    color: #000; /* ensure bars icon is black */
  }

  /* Ensure the old .hamburger div is gone if it exists */
  .hamburger {
    display: none !important;
  }

  /* Main Menu (Default Mobile State: Hidden Off-Screen) */
  .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    position: fixed;
    top: 0;
    right: -100%; /* hidden off-screen by default */
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: white;
    padding: 80px 0 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    z-index: 999;
    margin: 0;
    gap: 0;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0; /* show menu when active */
  }

  .nav-menu li {
    width: 100%;
  }
  .nav-menu a {
    display: block;
    width: 100%;
    padding: 14px 20px;
    color: #000;
  }
}
/* Overlay (already present in file; ensure visibility handled elsewhere) */
#mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  cursor: pointer;
}

#mobile-menu-overlay.active {
  display: block;
}

/* Body Scroll Lock */
body.no-scroll {
  overflow: hidden; /* Prevents background content from scrolling */
}

/* ======================================= */
/* CTA BANNER SECTION STYLES */
/* ======================================= */
.cta-banner-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a33 0%, #0f0f1c 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(230, 0, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 123, 255, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.cta-banner {
  background: linear-gradient(90deg, #1a1a33, #0f0f1c);
  padding: 60px 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.cta-banner h3 {
  color: #ffffff;
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #e60000, #007bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-banner p {
  color: #a0a0b8;
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  color: #fff;
  padding: 18px 35px;
  font-size: 1.2em;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.red-button {
  background: linear-gradient(45deg, #e60000, #cc0000);
  box-shadow: 0 5px 15px rgba(230, 0, 0, 0.4);
}

.red-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #007bff, #0056b3);
  transition: left 0.5s ease;
  z-index: -1;
}

.red-button:hover::before {
  left: 0;
}

.red-button:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.5);
}

.red-button i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.red-button:hover i {
  transform: translateX(5px);
}

/* Pulse animation for the button */
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 0, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(230, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(230, 0, 0, 0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cta-banner {
    padding: 40px 20px;
  }

  .cta-banner h3 {
    font-size: 2em;
  }

  .cta-banner p {
    font-size: 1.1em;
  }

  .primary-button {
    padding: 15px 25px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .cta-banner h3 {
    font-size: 1.8em;
  }

  .cta-banner p {
    font-size: 1em;
  }

  .primary-button {
    padding: 12px 20px;
    font-size: 1em;
  }
}
/* Variables for consistency */
:root {
    --primary-color: #007bff; /* Assumed primary link/blue color */
    --secondary-color: #ff0000; /* Based on 'red-icon' */
    --text-dark: #333;
    --text-light: #f4f4f4;
    --bg-light: #ffffff;
    --border-color: #ddd;
}

.faq-section {
    padding: 60px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.faq-header p {
    font-size: 1.1rem;
    color: #6c757d;
}

/* FAQ Navigation Tabs */
.faq-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.faq-nav-item {
    padding: 10px 20px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    margin: 0 5px 0 5px;
}

.faq-nav-item.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    font-weight: 600;
}

/* Accordion Items */
.faq-page h2 {
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.accordion-item {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    background-color: #f9f9f9;
}

.accordion-header:hover {
    background-color: #f0f0f0;
}

.accordion-header .fa-chevron-down {
    transition: transform 0.3s ease;
}

/* Styling for the hidden answer content */
.accordion-body {
    padding: 0 20px;
    /* max-height: 0; is required and managed by JS for the smooth effect */
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-body p {
    padding: 15px 0;
    margin: 0;
    color: #555;
}
/* ======================================================= */
/* === NEW STYLES: WORKING HOURS SECTION === */
/* ======================================================= */

.hours-section {
    background-color: #0a0a0a; /* Dark background */
    padding: 80px 0;
    color: #ffffff;
    text-align: center;
}

.hours-section .section-title {
    color: #ffffff;
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
}

.hours-section .section-subtitle {
    color: #a0a0b8; /* Lighter grey for subtitle */
    font-size: 1.1em;
    margin-bottom: 40px;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto 30px auto;
    padding: 20px;
    border: 1px solid #1a1a1a; /* Subtle border for structure */
    border-radius: 10px;
    background-color: #151515; /* Slightly lighter dark background for the box */
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #2a2a2a; /* Dashed separator */
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    font-weight: 600;
    color: #e60000; /* Red accent for the day names */
}

.hours-item .time {
    font-weight: 500;
    color: #ffffff; 
}

.hours-item.closed .day,
.hours-item.closed .time {
    color: #707070; /* Muted color for "Closed" days */
    font-style: italic;
}

.hours-note {
    max-width: 600px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
}

.hours-note p {
    color: #a0a0b8;
    font-size: 0.95em;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .hours-grid {
        padding: 15px;
    }
    .hours-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px;
    }
}
/* ======================================= */
/* MOBILE-ONLY RESPONSIVE STYLES */
/* ======================================= */

/* Mobile devices only (max-width: 768px) */
@media (max-width: 768px) {
  /* Improved container spacing for mobile */
  .container {
    padding: 0 15px;
    grid-template-columns: repeat(2 1fr);
  }
  
  /* Mobile typography adjustments */
  .section-title {
    font-size: 1.8rem;
  }
  
  .subsection-title {
    font-size: 1.4rem;
  }
  
  /* Hero section mobile fixes */
  .hero-section:not(#hero) {
    position: absolute;
    top: 120px;
    left: 0;
    width: 100vw;
    height: auto;
    min-height: 70vh;
  }
  
  .hero-content-wrapper {
    padding: 20px 15px;
    width: 95%;
    text-align: center;
  }
  
  .hero-main-content h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    width: 100% !important;
  }
  
  .hero-main-content h2 {
    font-size: 1.3rem;
  }
  
  .hero-stats {
    font-size: 0.8rem;
    padding: 8px 12px;
    margin-bottom: 15px;
  }
  
  .hero-button {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  /* Main hero section mobile fixes */
  #hero {
    min-height: 70vh;
    padding: 20px 5%;
    text-align: center;
  }
  
  #hero h1 {
    font-size: 2.2rem;
  }
  
  #hero h2 {
    font-size: 1.4rem;
  }
  
  #hero button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  /* Mobile navigation improvements */
  .nav-container {
    padding: 10px 15px;
  }
  
  .nav-main-title {
    font-size: 1.5rem;
  }
  
  .logo {
    width: 70px;
    height: 70px;
  }
  
  /* Mobile grid adjustments */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* Mobile card adjustments */
  .service-card,
  .value-card,
  .info-card {
    padding: 20px;
    margin-bottom: 15px;
  }
  
  /* Mobile button and touch target improvements */
  .hero-button,
  .learn-more-btn,
  .primary-button,
  .call-us-button {
    padding: 12px 20px;
    min-height: 44px;
    font-size: 1rem;
  }
  
  /* Mobile form improvements */
  input, textarea, button, select {
    font-size: 16px; /* Prevents zoom on iOS */
    min-height: 44px;
  }
  
  /* Mobile testimonial carousel */
  .testimonial-card {
    padding: 25px 15px;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
  
  /* Mobile logo carousel */
  .logo-item {
    height: 40px;
    margin: 0 20px;
  }
  
  /* Mobile spacing adjustments */
  .section-spacing {
    padding: 40px 0;
  }
  
  .welcome-section {
    padding: 50px 0;
  }
  
  /* Hide phone number on very small screens */
  #tel {
    display: none;
  }
}

/* Small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
  .hero-main-content h1 {
    font-size: 1.6rem;
  }
  
  #hero h1 {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .nav-main-title {
    font-size: 1.3rem;
  }
  
  .logo {
    width: 60px;
    height: 60px;
  }
  
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .whatsapp-float {
    bottom: 15px;
    left: 15px;
  }
  
  .hero-stats {
    font-size: 0.7rem;
    padding: 6px 10px;
  }
}

/* Tablet adjustments (768px - 992px) - Only minor tweaks */
@media (min-width: 769px) and (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ======================================= */
/* SOCIAL HERO MOBILE BACKGROUND FIX */
/* ======================================= */

@media (max-width: 768px) {
  .social-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 50px 0;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important; /* Important for mobile */
  }

  .social-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
  }

  .social-hero .hero-content {
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.85); /* Better readability */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  .social-hero h1 {
    font-size: 2.2em;
    margin-bottom: 15px;
    text-shadow: none; /* Remove shadow since we have background */
    color: #000; /* Ensure contrast */
  }

  .social-hero h2 {
    font-size: 1.3em;
    margin-bottom: 15px;
    text-shadow: none; /* Remove shadow since we have background */
    color: #333; /* Ensure contrast */
  }

  .social-hero p {
    font-size: 1.1em;
    margin-bottom: 25px;
    text-shadow: none; /* Remove shadow since we have background */
    color: #555; /* Ensure contrast */
  }

  .hero-cta-btn {
    padding: 12px 25px;
    font-size: 0.9em;
    margin-top: 10px;
  }

  /* Ensure the background image covers the entire hero section */
  .social-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    z-index: 1;
  }
}

@media (max-width: 480px) {
  .social-hero {
    min-height: 60vh;
    padding: 100px 0 30px 0;
  }

  .social-hero .hero-content {
    max-width: 95%;
    padding: 15px;
  }

  .social-hero h1 {
    font-size: 1.8em;
  }

  .social-hero h2 {
    font-size: 1.1em;
  }

  .social-hero p {
    font-size: 1em;
  }

  .hero-cta-btn {
    padding: 10px 20px;
    font-size: 0.85em;
  }
}

/* Extra small devices (phones in landscape) */
@media (max-width: 767px) and (orientation: landscape) {
  .social-hero {
    min-height: 80vh; /* More height for landscape */
    background-position: center 30% !important; /* Adjust background position */
  }
}

/* High-resolution mobile devices */
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2),
       (max-width: 768px) and (min-resolution: 192dpi) {
  .social-hero {
    background-size: cover !important;
    background-position: center center !important;
  }
}

/* Fix for iOS Safari */
@supports (-webkit-touch-callout: none) {
  @media (max-width: 768px) {
    .social-hero {
      background-attachment: scroll !important;
      -webkit-background-size: cover !important;
      background-size: cover !important;
    }
  }
}

/* Ensure the inline style background is properly overridden for mobile */
@media (max-width: 768px) {
  section.social-hero[style*="background: url"] {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }
  
  section.social-hero[style*="background:url"] {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }
}
/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Variables based on established color scheme */
:root {
  --primary-color: #e60000; /* Red Accent */
  --secondary-color: #007bff; /* Blue Accent */
  --text-white: #ffffff;
  --primary-black: #0a0a0a; /* Main Background */
  --secondary-black: #1a1a1a; /* Card/Section Background */
}

/* Body & Global Fonts */
body {
  font-family: "Poppins", sans-serif;
  background-color: var(--primary-black);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 100px; /* Space for fixed navbar */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Utility Classes --- */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.bg-dark-alt {
  background-color: var(--secondary-black);
}
.my-5 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.mt-8 {
  margin-top: 4rem;
}
.mt-10 {
  margin-top: 6rem;
}
.text-sm-light {
  font-size: 0.9rem;
  color: #b0b0b0;
}

/* Icon Rotation Animation - Applied globally to icons within interactive elements */
.service-card i:first-child,
.detail-card i,
.team-card i,
.card-subtitle i {
  transition: transform 0.6s ease-in-out;
}

.service-card:hover i:first-child,
.detail-card:hover i,
.team-card:hover i,
.card-subtitle:hover i {
  transform: rotateY(360deg);
}

/* --- Typography & Headers --- */
.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--secondary-color);
  margin-bottom: 2rem;

}

.section-header {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-white);
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.1rem;
  color: #b0b0b0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.card-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.card-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-subtitle i {
  font-size: 1.5rem;
}

.detail-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-white);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 5px;
}

.final-statement {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--secondary-color);
  padding: 2rem;
  border: 2px dashed var(--primary-color);
  border-radius: 12px;
}

/* --- Layout Sections --- */
.hero-section {
  padding: 60px 0;
  /* Subtle radial gradient background effect */
  background: radial-gradient(circle at top left, rgba(230, 0, 0, 0.1), transparent 50%),
    radial-gradient(circle at bottom right, rgba(0, 123, 255, 0.1), transparent 50%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content-section,
.detail-section,
.services-overview-section,
.team-goals-section {
  padding: 80px 0;
}

/* --- Card Styles (General) --- */
.card-large,
.card-medium,
.service-card,
.detail-card,
.team-card {
  background-color: var(--secondary-black);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.card-large:hover,
.card-medium:hover,
.service-card:hover,
.detail-card:hover,
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
}

.accent-border-red {
  border-left: 5px solid var(--primary-color);
}
.accent-border-blue {
  border-left: 5px solid var(--secondary-color);
}

/* --- Grid Layouts --- */
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.detail-card-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* --- List Styles --- */
.feature-list,
.team-list,
.goal-list,
.leader-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  color: #e0e0e0;
}

.feature-list li i {
  position: absolute;
  left: 0;
  color: var(--primary-color); /* Red checkmark/arrow icon */
}

/* Core Values Specific Style */
.value-item {
  padding: 15px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.value-item:last-child {
  border-bottom: none;
}

.value-title {
  font-weight: 600;
  color: var(--secondary-color); /* Blue for value title */
  display: inline-block;
  min-width: 100px;
}

.team-list li,
.goal-list li,
.leader-list li {
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: #b0b0b0;
}

/* Icon Styling in Cards */
.service-icon,
.detail-card i,
.team-card i {
  font-size: 2rem;
  color: var(--secondary-color); /* Blue for primary card icons */
  margin-bottom: 1rem;
  display: block;
}

/* Loading Screen - Ensure it's visible */
#loading-screen {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  z-index: 99999 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: opacity 0.5s ease, visibility 0.5s ease !important;
}

#loading-screen.hidden {
  opacity: 0 !important;
  visibility: hidden !important;
}

.loader-content {
  text-align: center !important;
}

.loader-logo {
  font-size: 3rem !important;
  font-weight: bold !important;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin-bottom: 2rem !important;
  animation: pulse 2s ease-in-out infinite !important;
}

.loader-spinner {
  width: 60px !important;
  height: 60px !important;
  border: 4px solid rgba(255, 255, 255, 0.1) !important;
  border-top: 4px solid var(--primary-color) !important;
  border-right: 4px solid var(--secondary-color) !important;
  border-radius: 50% !important;
  animation: spin 1s linear infinite !important;
  margin: 0 auto 1.5rem !important;
}

.loader-text {
  margin-top: 1.5rem !important;
  font-size: 1.2rem !important;
  color: #b0b0b0 !important;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 480px) {
  #loading-screen {
    width: 300px;
    height: 300px;
  }
}
/* =================================
   NAVBAR STYLES 
   ================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-black);
  border-bottom: 3px solid var(--primary-color);
  padding: 15px 0;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-main-title {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 5px 0;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-white);
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  background-color: var(--primary-color);
  color: var(--primary-black);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-white);
}

/* =================================
   FOOTER STYLES
   ================================= */
.footer {
  background-color: #111111;
  color: #b0b0b0;
  padding: 40px 0;
  border-top: 3px solid var(--secondary-color);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-section {
  flex: 1 1 200px;
  margin-bottom: 20px;
}

.footer-section h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(230, 0, 0, 0.3);
  padding-bottom: 5px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--text-white);
}

.social-links a {
  color: var(--text-white);
  font-size: 1.5rem;
  margin-right: 15px;
  transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
  color: var(--secondary-color);
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 20px;
}

/* =================================
   RESPONSIVENESS (MOBILE STYLES)
   ================================= */
@media (max-width: 1024px) {
  .grid-3-col,
  .detail-card-group {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Main Layout */
  body {
    padding-top: 80px; /* Smaller space for smaller navbar */
  }
  .section-title {
    font-size: 2.2rem;
  }
  .section-header {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }

  /* Grid Adjustments */
  .grid-2-col,
  .grid-3-col,
  .detail-card-group {
    grid-template-columns: 1fr;
  }
  .content-section,
  .detail-section,
  .services-overview-section,
  .team-goals-section {
    padding: 40px 0;
  }
  .card-large,
  .card-medium,
  .service-card,
  .detail-card,
  .team-card {
    padding: 20px;
  }
  .section-header.text-left {
    text-align: center;
  }

  /*Navbar Mobile Menu*/
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: var(--secondary-black);
    padding: 10px 20px;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.5);
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }
  .menu-toggle {
    display: block;
  }
  .nav-content {
    padding: 0 15px;
  }

  /* Footer Adjustment */
  .footer-content {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .loader-logo {
    font-size: 2rem;
  }
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
  }
}

/* Responsive adjustments for About Us */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .story-image {
    order: -1; /* Place image above text on mobile */
  }
}

@media (max-width: 600px) {
  .about-hero-section h1 {
    font-size: 2.2em;
  }

  .section-title {
    font-size: 2em;
  }

  .cta-banner {
    padding: 30px 20px;
  }
}
/* ======================================= */
/* TRUCK-DISPATCH PAGE SPECIFIC STYLES */
/* ======================================= */

/* --- General Section Styling --- */
.section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #ffffff;
}
.subsection-title {
  font-size: 1.8em;
  font-weight: 600;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 10px;
  border-bottom: 2px solid #e60000; /* Red accent line */
  display: inline-block;
  padding-bottom: 5px;
}
.red-icon {
  color: #e60000;
}
.blue-icon {
  color: #007bff;
}

/* --- 1. About Us Dispatch Section --- */
.about-us-dispatch {
  padding: 80px 0;
  background-color: #0a0a0a; /* Dark background from body */
  color: #ffffff;
}

.about-us-dispatch .container {
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-us-dispatch .about-content {
  flex: 2; /* Takes up more space */
}

.about-us-dispatch .about-content p {
  margin-bottom: 15px;
  color: #a0a0b8; /* Lighter text for readability */
}

.why-choose-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.why-choose-list li {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #ffffff;
}

.why-choose-list i {
  margin-right: 10px;
  font-size: 1.2em;
}

.about-us-dispatch .about-image {
  flex: 1;
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  background-color: #1a1a1a; /* Darker card background */
  padding: 30px;
  border-radius: 10px;
  border-left: 5px solid #007bff; /* Blue accent border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.image-placeholder:hover {
  transform: scale(1.05);
}

.image-placeholder i {
  color: #e60000;
  margin-bottom: 20px;
}

.image-placeholder p {
  font-size: 1.4em;
  font-weight: 600;
  color: #ffffff;
}

/* --- 2. Statistics Section --- */
.stats-section {
  padding: 60px 0;
  background-color: #121212; /* Slightly different dark shade */
}

.stats-section .container {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-card {
  text-align: center;
  padding: 20px;
  flex-basis: 200px; /* Base width for cards */
}

.stat-card i {
  font-size: 3.5em;
  margin-bottom: 15px;
}

.stat-number {
  font-size: 3.5em;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1.1em;
  color: #a0a0b8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- 3. The Advantage Section (Value Grid) --- */
.value-proposition {
  padding: 80px 0;
  background-color: #0a0a0a;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.value-card {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid transparent; /* Prepare for hover effect */
}

.value-card:nth-child(even) {
  border-left-color: #007bff; /* Blue accent border on even cards */
}

.value-card:nth-child(odd) {
  border-left-color: #e60000; /* Red accent border on odd cards */
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  background-color: #1f1f1f;
}

.value-card i {
  font-size: 3em;
  margin-bottom: 15px;
}

.value-card h4 {
  font-size: 1.4em;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 700;
}

.value-card p {
  color: #a0a0b8;
  line-height: 1.6;
}

/* --- Media Queries for Responsiveness --- */
@media (max-width: 992px) {
  .about-us-dispatch .container {
    flex-direction: column;
    text-align: center;
  }
  .about-us-dispatch .about-image {
    margin-top: 30px;
  }
  .section-title {
    font-size: 2em;
  }
  .stat-card {
    flex-basis: 40%;
  }
}

@media (max-width: 600px) {
  .stats-section .container {
    flex-direction: column;
  }
  .stat-card {
    flex-basis: 100%;
  }
}
/* ======================================= */
/* TESTIMONIALS CAROUSEL STYLES */
/* ======================================= */
.testimonials-section {
  padding: 80px 0;
  background-color: #121212; /* Darker than the body */
  text-align: center;
}
.section-subtitle {
  color: #a0a0b8;
  margin-top: -30px;
  margin-bottom: 40px;
  font-size: 1.1em;
}

.testimonials-carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 1100px;
}

.testimonials-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  flex: 0 0 100%; /* Important: Each card takes full width */
  padding: 40px;
  margin: 0 15px; /* Spacing between cards when multiple are visible (not needed for full width) */
  background-color: #0a0a0a;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.testimonial-card .rating {
  margin-bottom: 15px;
}

.testimonial-card .rating i {
  font-size: 1.2em;
}

.testimonial-text {
  font-size: 1.2em;
  font-style: italic;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.5;
}

.testimonial-author .author-name {
  display: block;
  font-weight: 700;
  color: #e60000;
  font-size: 1.1em;
}

.testimonial-author .author-title {
  display: block;
  color: #007bff;
  font-size: 0.9em;
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26, 26, 26, 0.7);
  color: #ffffff;
  border: none;
  padding: 15px;
  cursor: pointer;
  z-index: 10;
  font-size: 1.5em;
  transition: background 0.3s;
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

.prev-btn:hover,
.next-btn:hover {
  background: #e60000;
}

.carousel-dots {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #a0a0b8;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.dot.active {
  background-color: #e60000;
  transform: scale(1.2);
}

/* ======================================= */
/* FULL SERVICE OFFERINGS GRID STYLES */
/* ======================================= */
.dispatch-services-grid {
  padding: 80px 0;
  background-color: #0a0a0a;
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.section-title-left {
  font-size: 2.5em;
  font-weight: 700;
  color: #ffffff;
  text-align: left;
  margin: 0;
}
.tag-with-arrow {
  background-color: #1f1f1f;
  color: #007bff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1em;
}
.tag-with-arrow i {
  margin-left: 10px;
}

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  display: flex;
  align-items: center;
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
  color: #ffffff;
  border: 1px solid #1f1f1f;
  position: relative;
  overflow: hidden;
}

.service-card.large {
  grid-column: span 1;
}

.service-card.small {
  grid-column: span 1; /* For a smaller 4-column layout */
  flex-direction: column;
  align-items: flex-start;
  padding: 25px;
}
.service-card.small .card-content {
  flex-grow: 1;
  margin-top: 15px;
}
.service-card.small h4 {
  font-size: 1.1em;
  margin-bottom: 5px;
}
.service-card.small p {
  font-size: 0.9em;
}
.service-card.small i.card-arrow {
  position: absolute;
  bottom: 15px;
  right: 15px;
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card.small:hover i.card-arrow {
  opacity: 1;
}

.service-card i:first-child {
  font-size: 2.5em;
  margin-right: 15px;
}

.service-card h4 {
  font-size: 1.2em;
  font-weight: 600;
  margin: 0;
}

.service-card p {
  font-size: 0.9em;
  color: #a0a0b8;
  margin: 0;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  background-color: #1f1f1f;
}

.service-card.new-service {
  border: 1px solid #e60000;
}
.new-badge {
  background-color: #e60000;
  color: white;
  font-size: 0.7em;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 10px;
  font-weight: bold;
  vertical-align: top;
}

/* ======================================= */
/* TRUCK TYPE SELECTION STYLES */
/* ======================================= */
.truck-type-selection {
  padding: 80px 0;
  background-color: #121212;
  text-align: center;
}

.truck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.truck-card {
  background-color: #0a0a0a;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-align: center;
}

.truck-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.truck-image-placeholder {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 15px;
}

.truck-card h4 {
  font-size: 1.2em;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

/* ======================================= */
/* CARGO DISPATCHERS FEATURE STYLES */
/* ======================================= */
.cargo-dispatch-features {
  padding: 80px 0;
  background-color: #0a0a0a;
}

.feature-content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.feature-list-area {
  flex: 1;
}

.feature-text-area {
  flex: 1;
}
.feature-text-area p {
  color: #a0a0b8;
  margin-bottom: 20px;
}

.main-feature-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.main-feature-list li {
  font-size: 1.1em;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #1a1a1a;
  border-radius: 8px;
  border-left: 4px solid;
  transition: background-color 0.3s;
}

.main-feature-list li:nth-child(odd) {
  border-left-color: #e60000;
}

.main-feature-list li:nth-child(even) {
  border-left-color: #007bff;
}

.main-feature-list i {
  margin-right: 10px;
}

.all-types-feature {
  background-color: #1f1f1f;
  padding: 20px;
  border-radius: 8px;
  border-bottom: 4px solid #e60000;
  margin-top: 30px;
  display: flex;
  align-items: center;
  transition: ease-in-out 0.4s;
}

.all-types-feature i {
  font-size: 2em;
  color: #e60000;
  margin-right: 15px;
}

.all-types-feature span {
  font-weight: 600;
  color: #ffffff;
}

/* ======================================= */
/* FREE SETUP FORM STYLES */
/* ======================================= */
.free-setup-form-section {
  padding: 80px 0;
  background-color: #121212;
}
.free-setup-form-section .container {
  display: flex;
  justify-content: center;
}
.form-card {
  background-color: #0a0a0a;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  border-top: 5px solid #007bff;
}
.setup-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #e60000;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.form-title {
  font-size: 2em;
  color: #ffffff;
  margin-bottom: 10px;
  margin-top: 15px;
}
.form-subtitle {
  color: #a0a0b8;
  margin-bottom: 30px;
}
.setup-form .form-group {
  margin-bottom: 20px;
}
.setup-form input[type="text"],
.setup-form input[type="email"],
.setup-form input[type="tel"] {
  width: 100%;
  padding: 15px;
  border: 1px solid #333;
  background-color: #1a1a1a;
  color: #ffffff;
  border-radius: 5px;
  font-size: 1em;
  transition: border-color 0.3s;
}
.setup-form input:focus {
  border-color: #007bff;
  outline: none;
}
.submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(45deg, #e60000, #007bff);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.3s;
}
.submit-btn:hover {
  opacity: 0.9;
}

/* --- Media Queries --- */
@media (max-width: 992px) {
  .service-cards-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
  }
  .service-card.large,
  .service-card.small {
    grid-column: span 1;
  }
  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-title-left {
    margin-bottom: 15px;
  }
  .feature-content-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .service-cards-grid {
    grid-template-columns: 1fr; /* 1 column on small screens */
  }
  .section-title-left {
    font-size: 1.8em;
  }
  .truck-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ======================================= */
/* WEB DEVELOPMENT PAGE SPECIFIC STYLES */
/* ======================================= */

/* --- Hero Section --- */
.webdev-hero {
  background-color: #1a1a1a;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #e60000;
}
.webdev-hero h1 {
  font-size: 3.5em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}
.webdev-hero h2 {
  font-size: 1.8em;
  font-weight: 400;
  color: #007bff;
  margin-bottom: 20px;
}
.webdev-hero p {
  color: #a0a0b8;
  max-width: 600px;
  margin: 0 auto 30px;
}
.hero-cta-btn {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(45deg, #e60000, #007bff);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.1em;
  transition: transform 0.3s, opacity 0.3s;
}
.hero-cta-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* --- Introduction Section --- */
.webdev-introduction {
  padding: 80px 0;
  background-color: #0a0a0a;
}
.webdev-introduction .intro-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.webdev-introduction .section-title {
  margin-bottom: 30px;
  font-size: 2.2em;
  text-align: center;
}
.webdev-introduction p {
  color: #a0a0b8;
  margin-bottom: 20px;
}
.webdev-introduction strong {
  color: #ffffff;
}

/* --- What We Offer (Services Grid) --- */
.webdev-offerings {
  padding: 80px 0;
  background-color: #121212;
}
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.offering-card {
  background-color: #0a0a0a;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-left: 4px solid #007bff; /* Default blue border */
  transition: transform 0.3s, box-shadow 0.3s;
}
.offering-card:nth-child(odd) {
  border-left-color: #e60000; /* Red border for odd cards */
}
.offering-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  background-color: #1a1a1a;
}
.offering-card i {
  font-size: 2.5em;
  margin-bottom: 15px;
}
.offering-card h4 {
  font-size: 1.3em;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}
.offering-card p {
  color: #a0a0b8;
}

/* --- Why Choose Us Section --- */
.webdev-value-proposition {
  padding: 80px 0;
  background-color: #0a0a0a;
  text-align: center;
}
.value-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin-top: 50px;
}
.value-point {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  text-align: left;
  transition: ease-in-out 0.3s;
}
.value-point:hover{
  transform: translatey(-10px);
  background-color: #111122;
}
.value-point i {
  font-size: 1.5em;
  margin-right: 15px;
}
.value-point p {
  margin: 0;
  color: #ffffff;
}
.closing-statement {
  margin-top: 40px;
  font-style: italic;
  font-size: 1.1em;
  color: #a0a0b8;
}

/* --- Our Process Section --- */
.webdev-process {
  padding: 80px 0;
  background-color: #121212;
}
.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  overflow-x: auto; /* Allow horizontal scroll on small screens */
  padding-bottom: 10px;
}
.process-step {
  flex: 1;
  min-width: 200px;
  background-color: #0a0a0a;
  padding: 30px 20px;
  border-radius: 8px;
  position: relative;
  border-bottom: 3px solid #007bff;
}
.process-step:hover{
  background-color: #111122;
  transform: translateY(-10px);
}
.process-step:nth-child(even) {
  border-bottom-color: #e60000;
}
.process-step:nth-child(even):hover{
  background-color: #111122;
  transform: translateY(-10px);
}
.step-number {
  display: block;
  font-size: 2.5em;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 10px;
}
.process-step:nth-child(even) .step-number {
  color: #e60000;
}
.process-step h3 {
  font-size: 1.2em;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}
.process-step p {
  color: #a0a0b8;
  font-size: 0.95em;
}

.webdev-vision {
  margin-top: 60px;
  padding: 30px;
  background-color: #0a0a0a;
  border-radius: 8px;
  border: 1px dashed #333;
  text-align: center;
}
.webdev-vision h3 {
  color: #007bff;
  font-size: 1.8em;
  margin-bottom: 15px;
}
.webdev-vision p {
  color: #a0a0b8;
  margin-bottom: 15px;
}
.webdev-vision strong {
  color: #e60000;
  font-size: 1.1em;
  display: block;
  margin-top: 15px;
}

/* --- Media Queries --- */
@media (max-width: 768px) {
  .webdev-hero h1 {
    font-size: 2.5em;
  }
  .offerings-grid {
    grid-template-columns: 1fr;
  }
  .value-points-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    flex-wrap: wrap;
    justify-content: center;
  }
  .process-step {
    flex: 0 0 45%; /* Two columns on medium screens */
  }
}
@media (max-width: 480px) {
  .process-step {
    flex: 0 0 100%; /* Single column on small screens */
  }
}
/* ======================================= */
/* CONTACT PAGE SPECIFIC STYLES */
/* ======================================= */

/* --- Contact Hero Section --- */
.contact-hero {
  background-color: #1a1a1a;
  padding: 100px 0;
  text-align: center;
  border-bottom: 5px solid #007bff; /* Blue border accent */
}
.contact-hero h1 {
  font-size: 3.5em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}
.contact-hero h2 {
  font-size: 1.8em;
  font-weight: 400;
  color: #e60000;
  margin-bottom: 20px;
}
.contact-hero p {
  color: #a0a0b8;
  max-width: 600px;
  margin: 0 auto 30px;
}
/* Reusing hero-cta-btn from webdev-hero */

/* --- Introduction & Ways to Reach Us Section --- */
.contact-introduction {
  padding: 80px 0;
  background-color: #0a0a0a;
  text-align: center;
}
.contact-introduction .section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
}
.contact-introduction .subsection-title {
  font-size: 1.8em;
  margin-top: 50px;
  margin-bottom: 30px;
  color: #ffffff;
  border-bottom: 2px solid #e60000;
  display: inline-block;
  padding-bottom: 5px;
}
.intro-text {
  max-width: 900px;
  margin: 0 auto;
  color: #a0a0b8;
  line-height: 1.7;
}

.ways-to-reach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.reach-card {
  background-color: #1a1a1a;
  padding: 30px 20px;
  border-radius: 8px;
  border-left: 4px solid #007bff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}
.reach-card:nth-child(odd) {
  border-left-color: #e60000;
}
.reach-card:hover {
  transform: translateY(-5px);
  background-color: #1f1f1f;
}
.reach-card i {
  font-size: 2em;
  margin-bottom: 10px;
}
.reach-card h4 {
  font-size: 1.2em;
  color: #ffffff;
  margin-bottom: 5px;
}
.reach-card p {
  color: #a0a0b8;
  font-size: 0.9em;
}
.reach-card.disabled-card {
  opacity: 0.6;
  cursor: not-allowed;
}
.ways-to-reach-footer {
  margin-top: 40px;
  font-style: italic;
  color: #a0a0b8;
}

/* --- Why Contact Us & Our Promise Section --- */
.contact-promise-section {
  padding: 80px 0;
  background-color: #121212;
}
.split-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.why-contact-area,
.our-promise-area {
  flex: 1;
}
.section-title-left {
  font-size: 2em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  border-left: 5px solid #007bff;
  padding-left: 15px;
  text-align: left;
}
.why-contact-list {
  list-style: none;
  padding: 0;
}
.why-contact-list li {
  background-color: #0a0a0a;
  color: #ffffff;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  border-left: 3px solid;
  font-size: 1.05em;
  text-decoration: none;
}
.why-contact-list li:hover {
  transform: translate(10px);
  background-color:#111122;
}
.why-contact-list li:nth-child(even) {
  border-left-color: #007bff;
}
.why-contact-list li:nth-child(even):hover{
  border-left-color: grey;
}
.why-contact-list li:nth-child(odd) {
  border-left-color: #e60000;
}
.why-contact-list li:nth-child(odd):hover{
  border-left-color: grey;
}
.why-contact-list i {
  margin-right: 10px;
}
.why-contact-footer {
  margin-top: 20px;
  color: #a0a0b8;
  font-style: italic;
}

.promise-card {
  background-color: #0a0a0a;
  padding: 30px;
  border-radius: 8px;
  border-top: 4px solid #e60000;
}
.promise-card p {
  color: #a0a0b8;
  margin-bottom: 20px;
}
.promise-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.promise-list li {
  color: #ffffff;
  margin-bottom: 10px;
}
.promise-list strong {
  color: #e60000;
}
.promise-signature {
  font-weight: 600;
  color: #007bff !important;
  text-align: center;
  border-top: 1px dashed #333;
  padding-top: 15px;
}

/* --- Direct Contact Details Section --- */
.direct-contact-details {
  padding: 80px 0;
  background-color: #0a0a0a;
  text-align: center;
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.detail-item {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 8px;
  transition: transform 0.3s;
  border-bottom: 4px solid #007bff;
}
.detail-item:nth-child(odd) {
  border-bottom-color: #e60000;
}
.detail-item:hover {
  transform: translateY(-5px);
}
.detail-item i {
  font-size: 3em;
  margin-bottom: 15px;
}
.detail-item h4 {
  font-size: 1.3em;
  color: #ffffff;
  margin-bottom: 10px;
}
.detail-item p {
  color: #a0a0b8;
}
.detail-item strong {
  color: #ffffff;
  font-size: 1.1em;
}
.final-cta-text {
  margin-top: 50px;
  font-size: 1.2em;
  font-weight: 500;
  color: #007bff;
}

/* --- Contact Form Section Specifics --- */
.contact-form-section {
  background-color: #121212;
}
.contact-form-section .form-card {
  border-top: 5px solid #e60000;
}
.contact-form-section .setup-badge {
  background-color: #007bff;
}
.setup-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #333;
  background-color: #0a0a0a;
  color: #ffffff;
  border-radius: 5px;
  font-size: 1em;
  resize: vertical;
}

/* --- Media Queries --- */
@media (max-width: 992px) {
  .split-content {
    flex-direction: column;
  }
  .why-contact-area,
  .our-promise-area {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .contact-hero h1 {
    font-size: 2.5em;
  }
  .ways-to-reach-grid {
    grid-template-columns: 1fr;
  }
}
/* ======================================= */
/* MEDICARE SERVICES PAGE SPECIFIC STYLES */
/* ======================================= */

/* --- Hero Section --- */
/* Medicare Hero Section with CSS Gradient Background */
.medicare-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a33 50%, #0f0f1c 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #e60000;
}

.medicare-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(230, 0, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 123, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.medicare-hero .container {
  position: relative;
  z-index: 2;
}

.medicare-hero h1 {
  font-size: 3.5em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.medicare-hero h2 {
  font-size: 1.8em;
  font-weight: 400;
  color: #007bff;
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.medicare-hero p {
  color: #a0a0b8;
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.2em;
  line-height: 1.6;
}

/* Optional: Add medical icons using Font Awesome */
.medicare-hero::after {
  content: "\f0fa\f21e\f481";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.1);
  font-size: 2em;
  letter-spacing: 20px;
  z-index: 1;
}
.medicare-info-section {
  background-color: #0f0f1c;
  padding: 80px 0;
}

.medicare-content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: start;
}

.medicare-text h2 {
  color: #e60000;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.medicare-text h3 {
  color: #007bff;
  font-size: 2em;
  margin: 40px 0 20px 0;
  border-bottom: 2px solid #007bff;
  padding-bottom: 10px;
}

.medicare-text h4 {
  color: #ffffff;
  font-size: 1.4em;
  margin: 25px 0 10px 0;
  display: flex;
  align-items: center;
}

.medicare-text h4::before {
  content: "•";
  color: #e60000;
  font-size: 2em;
  margin-right: 15px;
}

.medicare-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.medicare-list li {
  background-color: #1a1a33;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 4px solid #007bff;
  color: #ffffff;
  transition: ease-in-out 0.4s;
}
.medicare-list li:hover{
  border-left-color: red;
  transform: translate(10px);
}
.medicare-part {
  background-color: #1a1a33;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  border-top: 3px solid #e60000;
  column-span: 2;
}

.medicare-part p {
  color: #a0a0b8;
  line-height: 1.6;
  margin: 0;
}

.medicare-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.image-placeholder {
  background: linear-gradient(135deg, #1a1a33, #0f0f1c);
  padding: 60px 40px;
  border-radius: 15px;
  text-align: center;
  border: 3px dashed #007bff;
  width: 100%;
  max-width: 400px;
}

.image-placeholder i {
  font-size: 4em;
  color: #e60000;
  margin-bottom: 20px;
}

.image-placeholder p {
  color: #ffffff;
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
}

.image-placeholder small {
  color: #a0a0b8;
  font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .medicare-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .medicare-text h2 {
    font-size: 2em;
  }

  .medicare-text h3 {
    font-size: 1.6em;
  }
}
/* Reuses .hero-cta-btn from web-development.html */

/* --- Introduction & Understanding Medicare Section --- */
.medicare-introduction {
  padding: 80px 0;
  background-color: #0a0a0a;
}
.medicare-introduction .section-title {
  margin-bottom: 40px;
  font-size: 2.2em;
  text-align: center;
}
.intro-flex {
  display: flex;
  gap: 40px;
  align-items: stretch;
}
.intro-text-area {
  flex: 2;
}
.intro-text-area p {
  color: #a0a0b8;
  line-height: 1.7;
}
.intro-text-area strong {
  color: #ffffff;
  font-weight: 600;
}
.medicare-explanation-card {
  flex: 1;
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 8px;
  border-left: 5px solid #e60000;
}
.medicare-explanation-card h3 {
  color: #e60000;
  font-size: 1.5em;
  margin-bottom: 10px;
}
.medicare-explanation-card p {
  color: #a0a0b8;
}

/* --- What We Offer (Services Grid) --- */
.medicare-offerings {
  padding: 80px 0;
  background-color: #121212;
  text-align: center;
}
.medicare-offerings .offerings-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.medicare-card {
  background-color: #0a0a0a;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-top: 4px solid #007bff;
  transition: transform 0.3s;
  grid-column: span 1;
}
.medicare-card:nth-child(odd) {
  border-top-color: #e60000;
}
.medicare-card.full-width-card {
  grid-column: 1 / -1; /* Spans all columns */
}
.medicare-card:hover {
  transform: translateY(-5px);
  background-color: #1a1a1a;
}
.medicare-card i {
  font-size: 3em;
  margin-bottom: 15px;
}
.medicare-card h4 {
  font-size: 1.4em;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}
.medicare-card p {
  color: #a0a0b8;
}

/* --- Why Choose Us & Our Process Section --- */
.medicare-value-process-section {
  padding: 80px 0;
  background-color: #0a0a0a;
}
.value-process-flex {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
.value-area,
.process-area {
  flex: 1;
}
.value-list {
  list-style: none;
  padding: 0;
}
.value-list li {
  background-color: #1a1a1a;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  border-left: 3px solid;
  font-size: 1.05em;
  color: #ffffff;
  transition: ease-in-out 0.4s;
}
.value-list li:hover {
  background-color:#111122;
  transform: translate(10px);
}
.value-list li:nth-child(even) {
  border-left-color: #007bff;
}
.value-list li:nth-child(odd) {
  border-left-color: #e60000;
}
.value-list li:nth-child(even):hover{
  border-left-color: grey;
}
.value-list li:nth-child(odd):hover{
  border-left-color: grey;
}
.value-list i {
  margin-right: 10px;
}
.value-list strong {
  font-weight: 600;
}

.process-step-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}
.process-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background-color: #1a1a1a;
  border-radius: 8px;
  border-right: 4px solid #007bff;
  transition: ease-in-out 0.4s;
}
.process-item:hover{
  transform: translate(10px);
  border-right-color: grey;
  background-color: #111122;
}
.process-item:nth-child(even) {
  border-right-color: #e60000;
}
.process-item:nth-child(even):hover{
  border-right-color: grey;
}
.process-item .step-num {
  font-size: 1.8em;
  font-weight: 700;
  color: #e60000;
  margin-right: 15px;
}
.process-item:nth-child(even) .step-num {
  color: #007bff;
}
.process-item h5 {
  font-size: 1.1em;
  color: #ffffff;
  margin-bottom: 5px;
}
.process-item p {
  color: #a0a0b8;
  font-size: 0.9em;
}

.medicare-vision {
  margin-top: 60px;
  padding: 30px;
  background-color: #1a1a1a;
  border-radius: 8px;
  border: 1px dashed #e60000;
  text-align: center;
}
.medicare-vision h3 {
  color: #e60000;
  font-size: 1.8em;
  margin-bottom: 15px;
}
.medicare-vision p {
  color: #ffffff;
  margin-bottom: 10px;
}
.medicare-vision strong {
  color: #007bff;
}

/* --- Contact Form Section Specifics --- */
.medicare-contact {
  background-color: #121212;
}
.medicare-contact .form-card {
  border-top: 5px solid #007bff;
}
.medicare-contact .setup-badge {
  background-color: #e60000;
}

/* --- Media Queries --- */
@media (max-width: 992px) {
  .intro-flex,
  .value-process-flex {
    flex-direction: column;
  }
  .medicare-offerings .offerings-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}
@media (max-width: 600px) {
  .medicare-hero h1 {
    font-size: 2.5em;
  }
  .medicare-offerings .offerings-grid {
    grid-template-columns: 1fr;
  }
}
/* ======================================= */
/* OUR SERVICES PAGE SPECIFIC STYLES (UPDATED) */
/* ======================================= */

/* --- Hero Section --- */
.services-hero {
  background-color: #1a1a1a;
  padding: 120px 0; /* Increase padding for more height */
  text-align: center;
  border-bottom: 7px solid #007bff; /* Thicker blue border accent */
  position: relative;
  overflow: hidden;
}
.services-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(30, 30, 30, 0.8) 0%, rgba(10, 10, 10, 1) 100%);
  z-index: 1;
}
.services-hero .hero-content {
  position: relative;
  z-index: 2;
}
.services-hero h1 {
  font-size: 4em; /* Larger heading */
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 5px;
  letter-spacing: 1px;
}
.services-hero h2 {
  font-size: 2em;
  font-weight: 500;
  color: #e60000;
  margin-bottom: 25px;
}
.services-hero p {
  color: #c0c0c0;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1em;
}

/* --- Introduction Section --- */
.services-introduction {
  padding: 60px 0;
  background-color: #0a0a0a;
  text-align: center;
  border-bottom: 1px solid #1f1f1f;
}
.services-introduction .intro-text {
  max-width: 900px;
  margin: 0 auto 20px;
  color: #ffffff;
  font-size: 1.1em;
  line-height: 1.7;
}
.services-introduction .intro-text-small {
  color: #a0a0b8;
  font-size: 0.9em;
}
.services-introduction strong {
  color: #007bff;
}

/* --- Service Overview Cards --- */
.service-overview-section {
  padding: 80px 0;
  background-color: #121212;
  text-align: center;
}
.service-overview-section .section-title {
  margin-bottom: 50px;
  font-size: 2.5em;
  color: #ffffff;
}

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.service-card {
  background-color: #0a0a0a;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  text-align: left;
  border-left: 5px solid #e60000; /* Vertical emphasis on the left */
  transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
  display: flex; /* Flex container for content */
  flex-direction: column;
}
.service-card:nth-child(even) {
  border-left-color: #007bff;
}
.service-card:hover {
  transform: translateY(-8px); /* Deeper lift on hover */
  background-color: #1a1a1a;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}
.service-card i {
  font-size: 3em;
  margin-bottom: 15px;
}
.service-card h3 {
  font-size: 1.6em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}
.service-card p {
  color: #a0a0b8;
  margin-bottom: 15px;
  flex-grow: 1; /* Allows the main paragraph to grow and push the button down */
}
.home-card i:hover{
  transform: rotate(360deg);
}
.key-points {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  border-top: 1px dashed #333;
  padding-top: 15px;
}
.key-points li {
  color: #ffffff;
  font-size: 0.95em;
  margin-bottom: 8px;
}
.key-points i {
  font-size: 0.8em;
  margin-right: 8px;
  color: #007bff;
}
.dispatch-card .key-points i,
.webdev-card .key-points i {
  color: #e60000; /* Red checks for Dispatch/Web */
}

/* Insurance Card Specifics */
.sub-points-group {
  margin-bottom: 20px;
  flex-grow: 1;
}
.sub-points-group h4 {
  color: #007bff;
  font-size: 1.2em;
  margin-top: 10px;
  border-bottom: 1px solid #007bff44;
  padding-bottom: 5px;
}
.insurance-card p {
  font-size: 0.9em;
}

.learn-more-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #e60000;
  color: white;
  text-decoration: none;
  border-radius: 50px; /* Pill shape for CTA */
  font-weight: 700;
  margin-top: 15px; /* Ensures space below content */
  transition: background-color 0.3s, transform 0.3s;
}
.insurance-card .learn-more-btn,
.marketing-card .learn-more-btn {
  background-color: #007bff;
}
.learn-more-btn:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

/* --- Why Choose Us Section --- */
.services-why-choose {
  padding: 80px 0;
  background-color: #0a0a0a;
  text-align: center;
}
.services-why-choose .section-title {
  color: #007bff;
}
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Fixed 4 columns */
  gap: 20px;
  margin-top: 50px;
}
.why-choose-item {
  background-color: #1a1a1a;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid;
  transition: all 0.3s;
}
.why-choose-item:nth-child(odd) {
  border-bottom-color: #e60000;
}
.why-choose-item:nth-child(even) {
  border-bottom-color: #007bff;
}
.why-choose-item:hover {
  transform: translateY(-5px);
  background-color: #252525;
}
.why-choose-item i {
  font-size: 2.5em;
  margin-bottom: 10px;
}
.why-choose-item h4 {
  color: #ffffff;
  font-size: 1.2em;
  margin-bottom: 5px;
  font-weight: 600;
}
.why-choose-item p {
  color: #a0a0b8;
  font-size: 0.9em;
}

/* --- Call to Action Form Section Specifics (Reusing existing form styles) --- */
.services-cta {
  background-color: #121212;
}
.services-cta .form-card {
  border-top: 5px solid #e60000;
}
.services-cta .setup-badge {
  background-color: #007bff;
}

/* --- Media Queries --- */
@media (max-width: 992px) {
  .service-cards-grid {
    grid-template-columns: 1fr;
  }
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card {
    text-align: left; /* Keep text left-aligned for better readability on mobile */
  }
}
@media (max-width: 600px) {
  .services-hero h1 {
    font-size: 2.5em;
  }
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}
/* ======================================= */
/* HOME & AUTO INSURANCE PAGE SPECIFIC STYLES */
/* ======================================= */

/* --- Hero Section --- */
.home-auto-hero {
  background-color: #1a1a1a;
  padding: 120px 0;
  text-align: center;
  border-bottom: 7px solid #e60000; /* Red border accent */
}
.home-auto-hero h1 {
  font-size: 3.5em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}
.home-auto-hero h2 {
  font-size: 1.8em;
  font-weight: 400;
  color: #007bff;
  margin-bottom: 20px;
}
.home-auto-hero p {
  color: #a0a0b8;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* --- Introduction Section --- */
.home-auto-introduction {
  padding: 60px 0;
  background-color: #0a0a0a;
  text-align: center;
}
.home-auto-introduction .section-title {
  color: #ffffff;
  margin-bottom: 30px;
}
.home-auto-introduction .intro-text {
  max-width: 900px;
  margin: 0 auto;
  color: #a0a0b8;
  line-height: 1.7;
}
.home-auto-introduction strong {
  color: #e60000;
}

/* --- Why Home & Auto Insurance Matters Section --- */
.why-it-matters-section {
  padding: 80px 0;
  background-color: #121212;
}
.why-it-matters-section .section-title-left {
  font-size: 2.2em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 40px;
  border-left: 5px solid #007bff;
  padding-left: 15px;
  text-align: left;
}
.matter-grid {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
.matter-card {
  flex: 1;
  background-color: #0a0a0a;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-top: 4px solid;
}
.matter-card:hover{
transform: translatey(-10px);
}
.home-card {
  border-top-color: #e60000;
  animation: ease-in 0.3s;
}
.home-card:hover{
  border-top-color: blue;
}
.auto-card {
  border-top-color: #007bff;
    animation: ease-in 0.3s;

}
.auto-card:hover{
  border-top-color: red;
}
.matter-card i {
  font-size: 3em;
  margin-bottom: 15px;
}
.matter-card h3 {
  font-size: 1.5em;
  color: #ffffff;
  margin-bottom: 10px;
}
.matter-card p {
  color: #a0a0b8;
  line-height: 1.6;
}
.cta-summary {
  text-align: center;
  font-size: 1.1em;
  font-style: italic;
  color: #007bff;
}

/* --- Coverage Details Section --- */
.coverage-details-section {
  padding: 80px 0;
  background-color: #0a0a0a;
}
.coverage-flex {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
.coverage-area {
  flex: 1;
}
.subsection-title {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 20px;
}
.red-text {
  color: #e60000;
}
.blue-text {
  color: #007bff;
}

.list-intro {
  color: #a0a0b8;
  margin-bottom: 15px;
}
.coverage-list {
  list-style: none;
  padding: 0;
}
.coverage-list li {
  background-color: #121212;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #ffffff;
  border-left: 3px solid;
  font-size: 1.05em;
  line-height: 1.4;
  transition: ease-in-out 0.4s;
}
.coverage-list li:hover {
border-left-color: linear-gradient(45deg,red,blue);  
transform: translate(10px);
background-color: #1a1a33;
}
.home-coverage-list li {
  border-left-color: #e60000;
}
.auto-coverage-list li {
  border-left-color: #007bff;
}

.coverage-list i {
  margin-right: 10px;
  font-size: 1.1em;
  color: #a0a0b8; /* icon color for contrast */
}
.coverage-list strong {
  font-weight: 600;
}
.tailor-note {
  margin-top: 20px;
  color: #a0a0b8;
  font-style: italic;
}

/* --- Benefits & Trust Section --- */
.benefits-trust-section {
  padding: 80px 0;
  background-color: #121212;
}
.benefits-trust-flex {
  display: inline-block;
  gap: 40px;
  align-items: center;
}
.benefits-area,
.trust-area {
  flex: 0;
}
.benefit-list {
  list-style: none;
  padding: 0;
}
.benefit-list li {
  background-color: #0a0a0a;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  border-left: 3px solid;
  color: #ffffff;
  transition: ease-in-out 0.3s;
}
.benefit-list li:hover {
  background-color: black;
  transform: translate(10px);
}
.benefit-list li:nth-child(even) {
  border-left-color: #007bff;
}
.benefit-list li:nth-child(odd) {
  border-left-color: #e60000;
}
.benefit-list i {
  margin-right: 10px;
}

.trust-box {
  background-color: #0a0a0a;
  padding: 30px;
  border-radius: 8px;
  border: 1px dashed #007bff;
}
.trust-box p {
  color: #a0a0b8;
  margin-bottom: 20px;
}
.trust-points {
  list-style: none;
  padding: 0;
}
.trust-points li {
  color: #ffffff;
  margin-bottom: 10px;
  padding-left: 15px;
  position: relative;
}
.trust-points li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #e60000;
}
.trust-points strong {
  font-weight: 600;
  color: #007bff;
}

/* --- Contact Form Section Specifics (Reusing Global Form Style) --- */
.home-auto-contact {
  background-color: #0a0a0a;
}
.home-auto-contact .form-card {
  border-top: 5px solid #e60000;
}
.home-auto-contact .setup-badge {
  background-color: #007bff;
}
.home-auto-contact .submit-btn {
  background: linear-gradient(45deg, #007bff, #e60000);
}

/* --- Media Queries --- */
@media (max-width: 992px) {
  .matter-grid,
  .coverage-flex,
  .benefits-trust-flex {
    flex-direction: column;
  }
  .why-it-matters-section .section-title-left {
    text-align: center;
    border-left: none;
    padding-left: 0;
    border-bottom: 3px solid #007bff;
    display: inline-block;
  }
}
@media (max-width: 600px) {
  .home-auto-hero h1 {
    font-size: 2.5em;
  }
  .subsection-title {
    font-size: 1.6em;
  }
}
/* ======================================= */
/* SOCIAL MEDIA MARKETING PAGE SPECIFIC STYLES */
/* ======================================= */

/* --- Hero Section --- */
.social-hero {
  background-color: #1a1a1a;
  padding: 120px 0;
  text-align: center;
  border-bottom: 7px solid #007bff; /* Blue border accent */
}
.social-hero h1 {
  font-size: 3.5em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}
.social-hero h2 {
  font-size: 1.8em;
  font-weight: 400;
  color: #e60000;
  margin-bottom: 20px;
}
.social-hero p {
  color: #a0a0b8;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* --- Introduction Section --- */
.social-introduction {
  padding: 60px 0;
  background-color: #0a0a0a;
  text-align: center;
}
.social-introduction .section-title {
  color: #ffffff;
  margin-bottom: 30px;
}
.social-introduction .intro-text {
  max-width: 900px;
  margin: 0 auto 15px;
  color: #a0a0b8;
  line-height: 1.7;
}
.social-introduction .intro-text-small {
  color: #a0a0b8;
  font-size: 0.95em;
  margin-bottom: 40px;
}
.social-introduction strong {
  color: #007bff;
}

.why-it-matters-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: #121212;
  border-radius: 8px;
  border-left: 5px solid #e60000;
}
.why-it-matters-list h3 {
  color: #e60000;
  font-size: 1.5em;
  margin-bottom: 20px;
}
.check-list {
  list-style: none;
  padding: 0;
  text-align: left;
}
.check-list li {
  color: #ffffff;
  padding: 8px 0;
  border-bottom: 1px dashed #333;
}
.check-list li:last-child {
  border-bottom: none;
}
.check-list i {
  margin-right: 10px;
  font-size: 1.1em;
}

/* --- Our Services Section --- */
.social-offerings {
  padding: 80px 0;
  background-color: #121212;
  text-align: center;
}
.social-offerings .offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.social-card {
  background-color: #0a0a0a;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-top: 4px solid #e60000;
  transition: transform 0.3s;
}
.social-card:nth-child(even) {
  border-top-color: #007bff;
}
.social-card:hover {
  transform: translateY(-5px);
  background-color: #1a1a1a;
}
.social-card i {
  font-size: 3em;
  margin-bottom: 15px;
}
.social-card h4 {
  font-size: 1.4em;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}
.service-details-list {
  list-style: none;
  padding: 0;
  text-align: left;
}
.service-details-list li {
  color: #a0a0b8;
  padding-left: 15px;
  position: relative;
  margin-bottom: 5px;
  font-size: 0.95em;
}
.service-details-list li::before {
  content: "▪";
  position: absolute;
  left: 0;
  color: inherit;
}
.social-card:nth-child(odd) .service-details-list li::before {
  color: #e60000;
}
.social-card:nth-child(even) .service-details-list li::before {
  color: #007bff;
}

/* --- Benefits & Approach Section --- */
.social-value-approach-section {
  padding: 80px 0;
  background-color: #0a0a0a;
}
.value-approach-flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.benefits-area,
.approach-area {
  flex: 1;
}
.subsection-title {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 5px;
  border-bottom: 2px solid;
  display: inline-block;
}
.benefit-list {
  list-style: none;
  padding: 0;
}
.benefit-list li {
  background-color: #121212;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  border-left: 3px solid;
  color: #ffffff;
}
.benefit-list li:nth-child(even) {
  border-left-color: #007bff;
}
.benefit-list li:nth-child(odd) {
  border-left-color: #e60000;
}
.benefit-list i {
  margin-right: 10px;
}
.final-benefit-text {
  margin-top: 20px;
  font-style: italic;
  color: #a0a0b8;
}

.approach-box {
  background-color: #121212;
  padding: 30px;
  border-radius: 8px;
  border: 1px dashed #e60000;
}
.approach-area p {
  color: #a0a0b8;
  margin-bottom: 20px;
}
.approach-list {
  list-style: none;
  padding: 0;
  margin-left: 20px;
}
.approach-list li {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 1.05em;
}
.approach-list strong {
  color: #e60000;
}
.cta-line {
  margin-top: 30px !important;
  font-weight: 600;
  color: #007bff !important;
  font-size: 1.1em;
}

/* --- Contact Form Section Specifics (Reusing Global Form Style) --- */
.social-contact {
  background-color: #121212;
}
.social-contact .form-card {
  border-top: 5px solid #e60000;
}
.social-contact .setup-badge {
  background-color: #007bff;
}

/* --- Media Queries --- */
@media (max-width: 992px) {
  .value-approach-flex {
    flex-direction: column;
  }
  .social-offerings .offerings-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
@media (max-width: 600px) {
  .social-hero h1 {
    font-size: 2.5em;
  }
}

/* ======================================= */
/* HOMEPAGE SECTIONS BELOW HERO STYLES */
/* ======================================= */

/* --- General Section Styling --- */
.section-spacing {
  padding: 80px 0;
  /* Dark background for sections */
  background-color: #0a0a0a;
}

.section-title {
  font-size: 2.8em;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

.section-subtitle {
  font-size: 1.1em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 5px;
}
.red {
  color: #e60000;
}
.blue {
  color: #007bff;
}

/* --- Who We Are Section --- */
.about-content {
  max-width: 900px;
  margin: 30px auto 0;
  text-align: center;
}
.about-content p {
  font-size: 1.1em;
  color: #a0a0b8; /* Light gray for body text */
  margin-bottom: 20px;
}
.about-content p strong {
  color: #ffffff; /* Highlight key phrases */
  font-weight: 600;
}

/* --- Services Overview Section --- */
.services-overview-section {
  background-color: #0d0d0d; /* Slightly different dark shade for contrast */
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: #e60000; /* Red border on hover */
}

.service-card i {
  font-size: 3em;
  margin-bottom: 20px;
}

.service-card h4 {
  font-size: 1.4em;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-card p {
  color: #a0a0b8;
  margin-bottom: 15px;
  line-height: 1.5;
}

.learn-more-link {
  color: #007bff; /* Blue link color */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}
.learn-more-link i {
  font-size: 0.8em;
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}
.learn-more-link:hover {
  color: #e60000; /* Red on hover */
}
.learn-more-link:hover i {
  margin-left: 10px;
}

/* --- Why Choose Us Section --- */
.why-choose-us-section {
  background-color: #0a0a0a;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.value-card {
  background-color: #151515;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  background-color: #1a1a1a;
}

.value-card i {
  font-size: 3em;
  margin-bottom: 15px;
}

.value-card h4 {
  font-size: 1.4em;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 700;
}

.value-card p {
  color: #a0a0b8;
  line-height: 1.6;
}

/* --- Mission & Vision Section --- */
.mission-vision-section {
  padding: 60px 0;
  background-color: #0d0d0d;
}
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 30px;
}

.mission-card {
  background-color: #151515;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.mission-card i {
  font-size: 3.5em;
  margin-bottom: 15px;
}

.mission-card .card-title {
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
  text-transform: none;
  letter-spacing: normal;
}

.mission-card p {
  color: #a0a0b8;
  font-size: 1.1em;
  line-height: 1.6;
}

/* --- TESTIMONIALS SECTION STYLES --- */
.testimonials-section {
  background-color: #121212;
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.section-subtitle {
  font-size: 1.1em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-subtitle.blue {
  color: #007bff;
}

.section-title {
  font-size: 2.8em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 50px;
}

.testimonial-carousel-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.testimonial-carousel {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  min-width: 100%;
  padding: 50px 40px;
  background-color: #1a1a33;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.quote-icon {
  font-size: 3em;
  color: #e60000;
  margin-bottom: 25px;
  opacity: 0.8;
}

.testimonial-text {
  font-size: 1.3em;
  font-style: italic;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 30px;
  max-width: 800px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.testimonial-author i {
  font-size: 2.5em;
  color: #007bff;
  margin-right: 15px;
}

.author-details {
  text-align: left;
}

.author-name {
  font-weight: 700;
  color: #ffffff;
  font-size: 1.2em;
  margin-bottom: 5px;
}

.author-title {
  color: #a0a0b8;
  font-size: 0.9em;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
}

.nav-btn:hover {
  background: #e60000;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.carousel-dots {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.dot {
  height: 12px;
  width: 12px;
  background-color: #444;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background-color: #666;
  transform: scale(1.1);
}

.dot.active {
  background-color: #e60000;
  transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 40px 30px;
  }

  .testimonial-text {
    font-size: 1.1em;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1em;
  }

  .prev-btn {
    left: 10px;
  }

  .next-btn {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2.2em;
  }

  .testimonial-card {
    padding: 30px 20px;
  }

  .testimonial-text {
    font-size: 1em;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-author i {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .author-details {
    text-align: center;
  }
}

/* --- GENERAL STYLES FOR ALL PAGES --- */
/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body & Global Fonts */
body {
  font-family: "Poppins", sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 150px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  backdrop-filter: blur(5px);
  z-index: 1000;
  padding: 0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.nav-title-header {
  width: 100%;
  padding: 5px 20px;
  text-align: center;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.05);
}

.nav-main-title {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(45deg, #e60000, #007bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.logo {
  width: 100px;
  height: 100px;
  display: block;
}

.but {
  height: fit-content;
  padding: 13px 25px;
  background: linear-gradient(45deg, red, blue);
  position: relative;
  font-weight: bold;
  align-items: center;
  color: white;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  cursor: pointer;
  transition: all 0.5s ease-in;
  border: none;
}

.but:hover {
  background: linear-gradient(45deg, blue, red);
  color: white;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  margin: 0 20px;
}

.nav-dropdown {
  position: relative;
}

.nav-link {
  color: black;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  transition: all 0.3s ease;
  position: relative;
  padding: 10px 0;
}

.nav-link:hover {
  color: red;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 10px 0;
  min-width: 200px;
  z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 0;
  margin: 0;
}

.dropdown-menu a {
  color: black;
  text-decoration: none;
  padding: 10px 20px;
  display: block;
  white-space: nowrap;
  font-weight: 400;
  transition: background-color 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: #f0f0f0;
  color: red;
}

#active {
  color: red;
}

#active::after {
  width: 100%;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, red, blue);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #000000;
  margin: 3px 0;
  transition: 0.3s;
}

/* --- HERO SECTION ROTATION STYLES --- */

/* All hero sections *EXCEPT* the one with id="hero" are stacked and hidden by default */
.hero-section:not(#hero) {
  position: absolute;
  top: 140px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 100px);
  align-items: center;
  justify-content: center;
  overflow: hidden;

  opacity: 0;
  z-index: 5;

  transition: opacity 1s ease-in-out;
  display: flex;
}

/* The active rotating slide is visible and brought to the front */
.hero-section:not(#hero).active {
  opacity: 1;
  z-index: 10;
}

/* Make the first hero section (#hero) static and take up space */
#hero {
  min-height: calc(100vh - 100px);
  width: 100%;
  position: relative;
  top: 0;

  flex-direction: column;
  align-items: flex-start;
  padding-top: 50px;
  padding-left: 5%;
  display: flex;
  justify-content: center;
  overflow: hidden;

  /* Allow the static hero to fade out */
  transition: opacity 1s ease-in-out;
}

/* NEW: Class to hide the static hero's content while preserving its space */
.hero-section.hidden-hero {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Reset the specific styles only for the first section's direct content */
#hero h2 {
  position: relative;
  z-index: 2;
  font-size: 2em;
}
#hero h1 {
  position: relative;
  z-index: 2;
  font-size: 4em;
}
#hero p {
  position: relative;
  z-index: 2;
  max-width: 500px;
}
#hero button {
  position: relative;
  z-index: 2;
  background-color: #e60000;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

/* Shared styles for the 5 new sections */
/* ======================================= */
/* MOBILE HERO SECTION FIXES */
/* ======================================= */

@media (max-width: 768px) {
  /* Fix for hero section positioning and background display */
  .hero-section:not(#hero) {
    position: absolute;
    top: 120px; /* Adjusted for mobile navbar */
    left: 0;
    width: 100vw;
    height: max-content;
    align-items: center;
    justify-content: center;
  }

  /* Ensure background images display fully on mobile */
  .hero-background {
    background-size: cover !important;
    background-position: center center !important;
  }

  /* Adjust overlay for better text readability */
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
  }

  /* Hero content wrapper adjustments */
  .hero-content-wrapper {
    padding: 20px 15px;
    width: 95%;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 20px;
  }

  /* Mobile text size adjustments */
  .hero-main-content h1 {
    font-size: 2em !important; /* Much smaller for mobile */
    line-height: 1.2;
    margin-bottom: 15px;
    width: 100% !important; /* Remove fixed width */
    text-align: center;
  }

  .hero-main-content h2 {
    font-size: 1.3em !important;
    margin-bottom: 10px;
    text-align: center;
  }

  /* Stats section - make it more compact */
  .hero-stats {
    font-size: 0.8em;
    padding: 6px 12px;
    margin-bottom: 10px;
    text-align: center;
    width: fit-content;
    max-width: 90%;
  }

  /* Button adjustments */
  .hero-button {
    padding: 12px 25px;
    font-size: 0.9em;
    margin: 10px 0;
  }

  /* Rating adjustments */
  .hero-rating {
    font-size: 0.8em;
    margin-top: 10px;
    justify-content: center;
    text-align: center;
  }

  /* Specific fix for the first hero section */
  #hero {
    min-height: calc(100vh - 120px);
    padding: 20px 5%;
    align-items: center;
    text-align: center;
    justify-content: center;
  }

  #hero h1 {
    font-size: 2.5em !important;
    text-align: center;
    margin-bottom: 15px;
  }

  #hero h2 {
    font-size: 1.5em !important;
    text-align: center;
    margin-bottom: 15px;
  }

  #hero button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 15px 0;
  }

  /* Ensure body padding matches mobile navbar height */
  body {
    padding-top: 120px;
  }
}

@media (max-width: 480px) {
  /* Extra small devices */
  .hero-main-content h1 {
    font-size: 1.8em !important;
  }

  .hero-main-content h2 {
    font-size: 1.1em !important;
  }

  #hero h1 {
    font-size: 2em !important;
  }

  #hero h2 {
    font-size: 1.3em !important;
  }

  .hero-stats {
    font-size: 0.7em;
    padding: 5px 10px;
  }

  .hero-button {
    padding: 10px 20px;
    font-size: 0.85em;
  }

  .hero-content-wrapper {
    padding: 15px 10px;
  }
  .hero-section,
  #hero {
    height: max-content;
  }
}

/* Ensure all hero sections have proper background display */
.hero-section:not(#hero) .hero-background {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Specific background image fixes for each hero section */
#hero-section-1 .hero-background {
  background-image: url("img/Dry-Van.webp");
}

#hero-section-2 .hero-background {
  background-image: url("https://media.istockphoto.com/id/1047505000/photo/medicare-health-insurance-card.jpg?s=612x612&w=0&k=20&c=Q-a8HDKaPTyZzzlS-MWfyme2OiPi0X7BD3fUaJHXeTA=");
}

#hero-section-3 .hero-background {
  background-image: url("https://images.unsplash.com/photo-1557838923-2985c318be48?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8ZGlnaXRhbCUyMG1hcmtldGluZ3xlbnwwfHwwfHx8MA%3D%3D");
}

#hero-section-4 .hero-background {
  background-image: url("https://media.istockphoto.com/id/2176931173/photo/responsive-web-design-studio-page-displayed-across-laptop-phone-tablet-and-computer-on-office.jpg?s=612x612&w=0&k=20&c=bCPIA86IN4oNmJIYl98ZnebKlFnAaFd1jrXidu3Vw94=");
}

#hero-section-5 .hero-background {
  background-image: url("https://media.istockphoto.com/id/1373086063/photo/insurance-company-client-take-out-complete-insurance-concept-assurance-and-insurance-car-real.jpg?s=612x612&w=0&k=20&c=8ouqL1I4DY8urrt_0oBH-w4Fr0-toFniy0wAc8fHAd0=");
}

/* --- LOGO CAROUSEL STYLES --- */
.logo-carousel {
  width: 100%;
  overflow: hidden;
  background-color: black;
  padding: 20px 0;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  /* FIX: The hero section now reserves the space, so we remove the margin */
  margin-top: 0;
}

.partnerships-heading {
  text-align: center;
  color: #aaa;
  font-size: 1.1em;
  font-weight: 300;
  margin-bottom: 20px;
}

.carousel-track {
  display: flex;
  width: fit-content;
  animation: scroll-logos 20s linear infinite;
}

.logo-item {
  height: 60px;
  width: auto;
  margin: 0 40px;
  filter: opacity(100%);
}

.logo-item:hover {
  filter: grayscale(0%) opacity(100%);
}

/* Keyframe animation for scrolling */
@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- WELCOME SECTION STYLES (Modern EK-Alpha Solutions) --- */

.welcome-section {
  background-color: #0f0f1c; /* Very Dark Blue-Black Background */
  padding: 80px 0;
}

.welcome-header {
  text-align: center;
  margin-bottom: 60px;
}

/* NEW STYLE FOR PROFESSIONAL INTRO LINE */
.professional-intro {
  font-size: 1.1em;
  font-weight: 400;
  letter-spacing: 2px;
  color: #e60000; /* Red to stand out */
  margin-bottom: 5px;
}
/* END NEW STYLE */

.welcome-header h1 {
  font-size: 3em;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
}

/* ... (rest of .highlight-text and welcome-section styles) ... */

.highlight-text {
  font-size: 1.4em;
  font-weight: 500;
  color: #007bff; /* Professional Blue Accent */
}

/* --- GRID LAYOUT --- */
.services-grid {
  display: grid;
  grid-template-columns: 3fr 2fr; /* Creates an asymmetric, modern layout */
  gap: 50px;
  align-items: stretch; /* Ensures columns stretch to match height */
}

.service-box {
  background-color: #1a1a33; /* Slightly lighter blue-black for contrast */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-top: 5px solid #e60000; /* Red top border for flair */
}

.service-box p {
  color: #c9c9d8;
  line-height: 1.7;
  margin-bottom: 30px;
}

.services-title {
  color: #e60000; /* Red Title */
  font-size: 1.8em;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 25px;
  border-bottom: 1px solid #33334f;
  padding-bottom: 10px;
}

/* --- CORE SERVICES LIST --- */
.core-services-list {
  list-style: none;
  padding: 0;
}

.core-services-list li {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  background-color: #0f0f1c;
  padding: 15px;
  border-radius: 8px;
}

.core-services-list li:hover {
  background-color: #007bff20; /* Subtle blue hover effect */
}

.service-icon {
  font-size: 1.8em;
  color: #e60000; /* Red icon color */
  margin-right: 20px;
  flex-shrink: 0;
}

.service-details .service-name {
  display: block;
  font-weight: 700;
  color: #ffffff;
  font-size: 1.1em;
  margin-bottom: 2px;
}

.service-details p {
  margin: 0;
  color: #a0a0b8;
  font-size: 0.9em;
}

/* --- INFO CARDS AND CTA --- */

.info-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background-color: #1a1a33;
  padding: 25px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.info-card h4 {
  color: #ffffff;
  font-size: 1.4em;
  margin-bottom: 5px;
  font-weight: 600;
}

.info-icon {
  font-size: 2em;
  flex-shrink: 0;
  margin-top: 5px;
}

.info-icon.blue {
  color: #007bff; /* Blue */
}

.info-icon.red {
  color: #e60000; /* Red */
}

.cta-block {
  text-align: center;
  padding: 30px;
  border: 2px dashed #007bff; /* Blue dashed border for focus */
  border-radius: 12px;
  margin-top: auto; /* Pushes the CTA block to the bottom of the column */
}

.urgent-help {
  color: #e60000;
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 15px;
}

.call-us-button {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(45deg, blue, red);
  color: #fff;
  padding: 15px 35px;
  font-size: 1.2em;
  font-weight: 700;
  border-radius: 50px; /* Pill shape for modern look */
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s;
  box-shadow: 0 4px 15px rgba(230, 0, 0, 0.4);
}

.call-us-button:hover {
  background: linear-gradient(45deg, red, blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
  animation: none;
}

/* --- ANIMATIONS --- */

.fade-in-up {
  opacity: 100%;
  /* This ensures animation starts from off-screen and then plays */
  animation-fill-mode: backwards;
}

/* 1. Fade In Up Animation (for staggered text) */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 2. Pulse Animation (for CTA button) */
.pulse {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 0, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(230, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(230, 0, 0, 0);
  }
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .welcome-header h1 {
    font-size: 2.2em;
  }
}
/* --- FOOTER STYLES --- */
.site-footer {
  background-color: #111122; /* A dark, deep color for contrast */
  color: #c9c9d8;
  padding-top: 60px;
  font-size: 0.95em;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-logo {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
}

.description {
  margin-bottom: 20px;
}

.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer-contact .contact-item i {
  font-size: 1.2em;
  margin-right: 15px;
  margin-top: 3px;
}

.red-icon {
  color: #e60000; /* Red accent color */
}

.footer-contact a {
  color: #c9c9d8;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: #e60000;
}

.footer-links h4 {
  color: #ffffff;
  font-size: 1.2em;
  margin-bottom: 25px;
  font-weight: 700;
  border-bottom: 2px solid #333;
  padding-bottom: 8px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #c9c9d8;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #007bff; /* Blue accent on hover */
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 20px 0;
  background-color: #0a0a0a; /* Match the body background */
}

.bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-icons a {
  color: #c9c9d8;
  font-size: 1.4em;
  margin-left: 15px;
  transition: color 0.3s;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.social-icons a {
  color: var(--neon-pink);
  font-size: 1.2rem;
  transition: all 0.3s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(45deg, blue, red);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
}

.social-icons a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-neon);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 50%;
}

.social-icons a:hover::before {
  opacity: 1;
}

.social-icons a:hover {
  color: white;
  transform: scale(1.2) rotate(360deg);
  box-shadow: 0 0 20px red;
  text-decoration: none !important;
}

.social-icons a i {
  position: relative;
  z-index: 2;
  text-decoration: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--gradient-neon);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}
/* Updated WhatsApp button to exact green color from blueprint */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  position: relative;
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
  position: absolute;
  left: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30, 41, 59, 0.95);
  color: #e2e8f0;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.875rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Comprehensive Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 992px) {
  body {
    padding-top: 120px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 120px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger span {
    background: #000000;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .service-cards-grid,
  .offerings-grid,
  .value-points-grid,
  .ways-to-reach-grid,
  .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 100px;
  }

  .nav-main-title {
    font-size: 1.8rem;
  }

  .logo {
    width: 80px;
    height: 80px;
  }

  .but {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .service-cards-grid,
  .offerings-grid,
  .value-points-grid,
  .ways-to-reach-grid,
  .details-grid,
  .truck-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2em;
  }

  .subsection-title {
    font-size: 1.5em;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 15px;
  }

  .nav-main-title {
    font-size: 1.5rem;
  }

  .logo {
    width: 70px;
    height: 70px;
  }

  #tel {
    display: none;
  }

  .section-title {
    font-size: 1.8em;
  }

  .whatsapp-float {
    bottom: 20px;
    left: 20px;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 90px;
  }

  .nav-main-title {
    font-size: 1.3rem;
  }

  .logo {
    width: 60px;
    height: 60px;
  }

  .section-title {
    font-size: 1.5em;
  }

  .subsection-title {
    font-size: 1.2em;
  }
}
/* ======================================= */
/* HAMBURGER MENU STRUCTURAL/RESPONSIVE ADDITIONS */
/* ======================================= */

/* 1. Toggle Button Setup (Desktop: Hidden) */
#menu-toggle {
  display: none; /* Hide button on desktop */
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1000;
}

/* 2. Responsive Overrides (Mobile View) - Using 992px from the file's existing media queries */
@media (max-width: 992px) {
  /* make hamburger black and position it on the right above all content */
  #menu-toggle {
    display: block;
    position: absolute; /* place relative to .navbar */
    top: 16px;
    right: 16px; /* push to right side */
    font-size: 24px;
    color: #000; /* black icon color */
    padding: 8px;
    z-index: 1002; /* above navbar contents and overlay */
  }
  #menu-toggle i {
    color: #000; /* ensure bars icon is black */
  }

  /* Ensure the old .hamburger div is gone if it exists */
  .hamburger {
    display: none !important;
  }

  /* Main Menu (Default Mobile State: Hidden Off-Screen) */
  .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    position: fixed;
    top: 0;
    right: -100%; /* hidden off-screen by default */
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: white;
    padding: 80px 0 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    z-index: 999;
    margin: 0;
    gap: 0;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0; /* show menu when active */
  }

  .nav-menu li {
    width: 100%;
  }
  .nav-menu a {
    display: block;
    width: 100%;
    padding: 14px 20px;
    color: #000;
  }
}
/* Overlay (already present in file; ensure visibility handled elsewhere) */
#mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  cursor: pointer;
}

#mobile-menu-overlay.active {
  display: block;
}

/* Body Scroll Lock */
body.no-scroll {
  overflow: hidden; /* Prevents background content from scrolling */
}

/* ======================================= */
/* CTA BANNER SECTION STYLES */
/* ======================================= */
.cta-banner-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a33 0%, #0f0f1c 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(230, 0, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 123, 255, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.cta-banner {
  background: linear-gradient(90deg, #1a1a33, #0f0f1c);
  padding: 60px 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.cta-banner h3 {
  color: #ffffff;
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #e60000, #007bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-banner p {
  color: #a0a0b8;
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  color: #fff;
  padding: 18px 35px;
  font-size: 1.2em;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.red-button {
  background: linear-gradient(45deg, #e60000, #cc0000);
  box-shadow: 0 5px 15px rgba(230, 0, 0, 0.4);
}

.red-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #007bff, #0056b3);
  transition: left 0.5s ease;
  z-index: -1;
}

.red-button:hover::before {
  left: 0;
}

.red-button:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.5);
}

.red-button i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.red-button:hover i {
  transform: translateX(5px);
}

/* Pulse animation for the button */
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 0, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(230, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(230, 0, 0, 0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cta-banner {
    padding: 40px 20px;
  }

  .cta-banner h3 {
    font-size: 2em;
  }

  .cta-banner p {
    font-size: 1.1em;
  }

  .primary-button {
    padding: 15px 25px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .cta-banner h3 {
    font-size: 1.8em;
  }

  .cta-banner p {
    font-size: 1em;
  }

  .primary-button {
    padding: 12px 20px;
    font-size: 1em;
  }
}
/* Variables for consistency */
:root {
  --primary-color: #007bff; /* Assumed primary link/blue color */
  --secondary-color: #ff0000; /* Based on 'red-icon' */
  --text-dark: #333;
  --text-light: #f4f4f4;
  --bg-light: #ffffff;
  --border-color: #ddd;
}

.faq-section {
  padding: 60px 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.faq-header p {
  font-size: 1.1rem;
  color: #6c757d;
}

/* FAQ Navigation Tabs */
.faq-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--border-color);
}

.faq-nav-item {
  padding: 10px 20px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
  margin: 0 5px 0 5px;
}

.faq-nav-item.active {
  color: var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
  font-weight: 600;
}

/* Accordion Items */
.faq-page h2 {
  color: var(--text-dark);
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.accordion-item {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.accordion-header {
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-dark);
  background-color: #f9f9f9;
}

.accordion-header:hover {
  background-color: #f0f0f0;
}

.accordion-header .fa-chevron-down {
  transition: transform 0.3s ease;
}

/* Styling for the hidden answer content */
.accordion-body {
  padding: 0 20px;
  /* max-height: 0; is required and managed by JS for the smooth effect */
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.accordion-body p {
  padding: 15px 0;
  margin: 0;
  color: #555;
}
/* ======================================================= */
/* === NEW STYLES: WORKING HOURS SECTION === */
/* ======================================================= */

.hours-section {
  background-color: #0a0a0a; /* Dark background */
  padding: 80px 0;
  color: #ffffff;
  text-align: center;
}

.hours-section .section-title {
  color: #ffffff;
  font-size: 2.5em;
  margin-bottom: 10px;
  font-weight: 700;
}

.hours-section .section-subtitle {
  color: #a0a0b8; /* Lighter grey for subtitle */
  font-size: 1.1em;
  margin-bottom: 40px;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto 30px auto;
  padding: 20px;
  border: 1px solid #1a1a1a; /* Subtle border for structure */
  border-radius: 10px;
  background-color: #151515; /* Slightly lighter dark background for the box */
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #2a2a2a; /* Dashed separator */
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-item .day {
  font-weight: 600;
  color: #e60000; /* Red accent for the day names */
}

.hours-item .time {
  font-weight: 500;
  color: #ffffff;
}

.hours-item.closed .day,
.hours-item.closed .time {
  color: #707070; /* Muted color for "Closed" days */
  font-style: italic;
}

.hours-note {
  max-width: 600px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid #1a1a1a;
}

.hours-note p {
  color: #a0a0b8;
  font-size: 0.95em;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .hours-grid {
    padding: 15px;
  }
  .hours-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
  }
}
/* ======================================= */
/* MOBILE-ONLY RESPONSIVE STYLES */
/* ======================================= */

/* Mobile devices only (max-width: 768px) */
@media (max-width: 768px) {
  /* Improved container spacing for mobile */
  .container {
    padding: 0 15px;
    grid-template-columns: repeat(2 1fr);
  }

  /* Mobile typography adjustments */
  .section-title {
    font-size: 1.8rem;
  }

  .subsection-title {
    font-size: 1.4rem;
  }

  /* Hero section mobile fixes */
  .hero-section:not(#hero) {
    position: absolute;
    top: 120px;
    left: 0;
    width: 100vw;
    height: auto;
    min-height: 70vh;
  }

  .hero-content-wrapper {
    padding: 20px 15px;
    width: 95%;
    text-align: center;
  }

  .hero-main-content h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    width: 100% !important;
  }

  .hero-main-content h2 {
    font-size: 1.3rem;
  }

  .hero-stats {
    font-size: 0.8rem;
    padding: 8px 12px;
    margin-bottom: 15px;
  }

  .hero-button {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  /* Main hero section mobile fixes */
  #hero {
    min-height: 70vh;
    padding: 20px 5%;
    text-align: center;
  }

  #hero h1 {
    font-size: 2.2rem;
  }

  #hero h2 {
    font-size: 1.4rem;
  }

  #hero button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  /* Mobile navigation improvements */
  .nav-container {
    padding: 10px 15px;
  }

  .nav-main-title {
    font-size: 1.5rem;
  }

  .logo {
    width: 70px;
    height: 70px;
  }

  /* Mobile grid adjustments */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Mobile card adjustments */
  .service-card,
  .value-card,
  .info-card {
    padding: 20px;
    margin-bottom: 15px;
  }

  /* Mobile button and touch target improvements */
  .hero-button,
  .learn-more-btn,
  .primary-button,
  .call-us-button {
    padding: 12px 20px;
    min-height: 44px;
    font-size: 1rem;
  }

  /* Mobile form improvements */
  input,
  textarea,
  button,
  select {
    font-size: 16px; /* Prevents zoom on iOS */
    min-height: 44px;
  }

  /* Mobile testimonial carousel */
  .testimonial-card {
    padding: 25px 15px;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  /* Mobile logo carousel */
  .logo-item {
    height: 40px;
    margin: 0 20px;
  }

  /* Mobile spacing adjustments */
  .section-spacing {
    padding: 40px 0;
  }

  .welcome-section {
    padding: 50px 0;
  }

  /* Hide phone number on very small screens */
  #tel {
    display: none;
  }
}

/* Small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
  .hero-main-content h1 {
    font-size: 1.6rem;
  }

  #hero h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .nav-main-title {
    font-size: 1.3rem;
  }

  .logo {
    width: 60px;
    height: 60px;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .whatsapp-float {
    bottom: 15px;
    left: 15px;
  }

  .hero-stats {
    font-size: 0.7rem;
    padding: 6px 10px;
  }
}

/* Tablet adjustments (768px - 992px) - Only minor tweaks */
@media (min-width: 769px) and (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ======================================= */
/* SOCIAL HERO MOBILE BACKGROUND FIX */
/* ======================================= */

@media (max-width: 768px) {
  .social-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 50px 0;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important; /* Important for mobile */
  }

  .social-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
  }

  .social-hero .hero-content {
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.85); /* Better readability */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  .social-hero h1 {
    font-size: 2.2em;
    margin-bottom: 15px;
    text-shadow: none; /* Remove shadow since we have background */
    color: #000; /* Ensure contrast */
  }

  .social-hero h2 {
    font-size: 1.3em;
    margin-bottom: 15px;
    text-shadow: none; /* Remove shadow since we have background */
    color: #333; /* Ensure contrast */
  }

  .social-hero p {
    font-size: 1.1em;
    margin-bottom: 25px;
    text-shadow: none; /* Remove shadow since we have background */
    color: #555; /* Ensure contrast */
  }

  .hero-cta-btn {
    padding: 12px 25px;
    font-size: 0.9em;
    margin-top: 10px;
  }

  /* Ensure the background image covers the entire hero section */
  .social-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    z-index: 1;
  }
}

@media (max-width: 480px) {
  .social-hero {
    min-height: 60vh;
    padding: 100px 0 30px 0;
  }

  .social-hero .hero-content {
    max-width: 95%;
    padding: 15px;
  }

  .social-hero h1 {
    font-size: 1.8em;
  }

  .social-hero h2 {
    font-size: 1.1em;
  }

  .social-hero p {
    font-size: 1em;
  }

  .hero-cta-btn {
    padding: 10px 20px;
    font-size: 0.85em;
  }
}

/* Extra small devices (phones in landscape) */
@media (max-width: 767px) and (orientation: landscape) {
  .social-hero {
    min-height: 80vh; /* More height for landscape */
    background-position: center 30% !important; /* Adjust background position */
  }
}

/* High-resolution mobile devices */
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 768px) and (min-resolution: 192dpi) {
  .social-hero {
    background-size: cover !important;
    background-position: center center !important;
  }
}

/* Fix for iOS Safari */
@supports (-webkit-touch-callout: none) {
  @media (max-width: 768px) {
    .social-hero {
      background-attachment: scroll !important;
      -webkit-background-size: cover !important;
      background-size: cover !important;
    }
  }
}

/* Ensure the inline style background is properly overridden for mobile */
@media (max-width: 768px) {
  section.social-hero[style*="background: url"] {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }

  section.social-hero[style*="background:url"] {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }
}
/* ======================================= */
/* HAMBURGER MENU MOBILE FIXES */
/* ======================================= */

/* Mobile View - 992px and below */
@media (max-width: 992px) {
  /* Hide the regular nav menu by default */
  .nav-menu {
    display: none !important;
  }

  /* Show hamburger toggle button */
  #menu-toggle {
    display: block !important;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    z-index: 1002;
    padding: 8px;
  }

  /* Mobile menu when active */
  .nav-menu.active {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    padding: 80px 20px 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    margin: 0;
    gap: 0;
    overflow-y: auto;
  }

  /* Mobile menu links */
  .nav-menu.active .nav-link {
    color: #000 !important;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    width: 100%;
    display: block;
  }

  /* Dropdown menu adjustments for mobile */
  .nav-menu.active .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    background: #f9f9f9 !important;
    width: 100% !important;
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .nav-menu.active .nav-dropdown:hover .dropdown-menu,
  .nav-menu.active .nav-dropdown:focus-within .dropdown-menu {
    display: block !important;
  }

  /* Mobile overlay */
  #mobile-menu-overlay.active {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }

  /* Prevent body scroll when menu is open */
  body.no-scroll {
    overflow: hidden;
  }
}

/* Desktop View - above 992px */
@media (min-width: 993px) {
  #menu-toggle {
    display: none !important;
  }
  .nav-menu {
    display: flex !important;
    position: static !important;
    height: auto !important;
  }
  #mobile-menu-overlay {
    display: none !important;
  }
}

/* Keep navbar interactable while menu is open, overriding scroll-hide */
.navbar.menu-open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 1003 !important;
}

/* Unify mobile nav behavior to a right-side drawer and ensure reliable toggle */
@media (max-width: 992px) {
  /* Ensure the toggle button is visible and above overlay */
  #menu-toggle {
    display: block !important;
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: 0;
    color: #000;
    font-size: 24px;
    z-index: 1004 !important;
  }

  /* Normalize the nav drawer. Force right drawer and neutralize conflicting left-based rules. */
  .nav-menu {
    display: flex !important; /* override any display:none */
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;

    position: fixed !important;
    top: 0 !important;
    right: -100% !important; /* hidden by default off-screen to the right */
    left: auto !important; /* neutralize any left:-100% rules */
    width: 80% !important;
    max-width: 350px !important;
    height: 100vh !important;
    background: #fff !important;
    padding: 80px 20px 20px !important;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2) !important;
    z-index: 1002 !important;
    margin: 0 !important;
    gap: 0 !important;
    overflow-y: auto !important;
    transition: right 0.3s ease-in-out !important; /* single, consistent transition */
  }

  .nav-menu.active {
    right: 0 !important;
  }

  /* Mobile links in the drawer */
  .nav-menu .nav-link {
    color: #000 !important;
    display: block !important;
    width: 100% !important;
    padding: 15px 0 !important;
    border-bottom: 1px solid #eee !important;
    text-align: left !important;
  }

  /* Dropdown inside drawer */
  .nav-menu .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    background: #f9f9f9 !important;
    width: 100% !important;
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .nav-menu .nav-dropdown:hover .dropdown-menu,
  .nav-menu .nav-dropdown:focus-within .dropdown-menu {
    display: block !important;
  }

  /* Overlay */
  #mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
  }
  #mobile-menu-overlay.active {
    display: block;
  }

  /* Lock background scroll when open */
  body.no-scroll {
    overflow: hidden !important;
    touch-action: none;
  }
}

/* Desktop: ensure default horizontal menu */
@media (min-width: 993px) {
  #menu-toggle {
    display: none !important;
  }
  .nav-menu {
    display: flex !important;
    position: static !important;
    height: auto !important;
  }
  #mobile-menu-overlay {
    display: none !important;
  }
}
