body {
  font-family: 'Arial', sans-serif; 
  margin: 0;
  padding: 0;
}
.transparent-nav {
background: transparent;
border: none;
box-shadow: none;
z-index: 1000;
transition: background-color 0.3s ease;
}

.hero-nav {
position: absolute;
top: 0;
left: 0;
width: 100%;
z-index: 10;
}

.nav-logo {
height: 100px;
width: 100px;
filter: grayscale(100%) brightness(180%);
}

.navbar-nav .nav-link {
color: white !important;
font-weight: 500;
padding: 10px 15px;
transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
color: #ffd700 !important;
}

.navbar-toggler {
border: none;
outline: none;
}
.navbar-toggler:focus {
box-shadow: none;
}
.hero-section {
position: relative;
height: 100vh;
overflow: hidden;
}

.bg-video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 0;
}
.mobile-bg {
display: none;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
z-index: 0;
}

.hero-content {
position: relative;
z-index: 1;
top: 70%;
transform: translateY(-50%);
}

.hero-title {
font-size: 2.8rem;
font-weight: bold;
margin-bottom: 15px;
color: black;
}

.hero-text {
font-size: 1.2rem;
margin-bottom: 30px;
color: black;
}

.hero-buttons .btn {
padding: 10px 25px;
font-size: 1rem;
border-radius: 30px;
}
@media (max-width: 768px) {
.desktop-bg,
.bg-video {
  display: none;
}
.mobile-bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  top: 55%; 
  transform: translateY(-50%);
  padding: 0 20px;
  text-align: center;
}

.hero-title {
  font-size: 1.9rem;
  color: #fff;
  line-height: 1.3;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-text {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #f8f8f8;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons .btn {
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 25px;
}
.hero-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
}

.nav-logo {
  height: 55px;
  width: auto;
}

.navbar-collapse {
  background: rgba(0, 0, 0, 0.9);
  border-radius: 0 0 12px 12px;
  padding: 10px 0;
}

.navbar-nav .nav-link {
  color: #fff !important;
  display: block;
  padding: 12px 0;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-link:last-child {
  border-bottom: none;
}
}
.about-section {
  background-color: #fff;
  color: #333;
}

.about-section .section-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #004080;
}

.about-section .section-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about-images {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-wrapper {
  width: 100%;
  max-width: 450px; /* controls width of both */
  aspect-ratio: 4 / 3; /* keeps consistent shape */
  overflow: hidden;
  border-radius: 12px;
}

.equal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.equal-img:hover {
  transform: scale(1.03);
}

@media (min-width: 992px) {
  .about-images .row {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .about-section .section-text {
    font-size: 1rem;
    padding: 0 15px;
  }

  .image-wrapper {
    max-width: 100%;
    aspect-ratio: 4 / 3;
    margin-bottom: 15px;
  }
}

.services-section .section-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: #004080;
}

.services-section .section-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 20px;
}

.services-section .section-highlight {
  font-size: 1.5rem;
  font-weight: bold;
  color: #004080;
}

.services-section .section-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* ---------- Feature Boxes ---------- */
.feature-box {
  background: #f8f9fa;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-box .feature-title {
  font-weight: bold;
  margin-bottom: 10px;
  color: #004080;
  text-transform: uppercase;
}

/* ---------- Horizontal Scroll Gallery ---------- */
.company-logos-container {
  width: 100%;
  overflow-x: auto;
  padding: 30px 0;
  margin-top: 40px;
  position: relative;
}

.company-logos-scroll {
  display: flex;
  gap: 30px;
  padding: 0 20px;
  min-width: max-content;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Scrollbar styling */
.company-logos-container::-webkit-scrollbar {
  height: 10px;
}

.company-logos-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.company-logos-container::-webkit-scrollbar-thumb {
  background: #004080;
  border-radius: 10px;
}

.company-logos-container::-webkit-scrollbar-thumb:hover {
  background: #003366;
}

/* Each logo box - Made bigger */
.company-box {
  background: #f8f9fa;
  border-radius: 15px;
  width: 200px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.company-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  background: #ffffff;
}

/* Logo inside each box - Made bigger */
.company-logo {
  max-width: 130px;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(40%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.company-box:hover .company-logo {
  transform: scale(1.1);
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .company-logos-container {
    margin-top: 30px;
    padding: 20px 0;
  }
  
  .company-logos-scroll {
    gap: 20px;
    padding: 0 15px;
  }

  .company-box {
    width: 150px;
    height: 110px;
  }

  .company-logo {
    max-width: 100px;
    max-height: 55px;
  }
}

@media (max-width: 576px) {
  .company-box {
    width: 130px;
    height: 95px;
  }

  .company-logo {
    max-width: 85px;
    max-height: 45px;
  }
}
.why-choose-section {
background-color: #f8f9fa;
color: #333;
}

.why-choose-section .section-title {
font-size: 2.2rem;
font-weight: bold;
color: #004080;
}

.why-card {
background-color: #ffffff;
border-left: 5px solid #004080;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.why-card .why-title {
font-weight: bold;
font-size: 1.2rem;
color: #004080;
margin-bottom: 15px;
text-transform: uppercase;
}
.why-card p {
font-size: 1rem;
line-height: 1.6;
}

.cedar-difference {
margin-top: 50px;
background-color: #004080;
color: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.cedar-difference .difference-text {
font-size: 1.1rem;
margin: 0;
}
.service-areas-section {
background-color: #ffffff;
color: #333;
}

.service-areas-section .section-title {
font-size: 2.2rem;
font-weight: bold;
color: #004080;
margin-bottom: 20px;
}

.service-areas-section .section-text {
font-size: 1.1rem;
line-height: 1.7;
color: #555;
}

.area-card {
background-color: #f8f9fa;
border-left: 5px solid #004080;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.area-card:hover {
transform: translateY(-8px);
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.area-title {
font-size: 1.2rem;
font-weight: bold;
color: #004080;
margin-bottom: 15px;
text-transform: uppercase;
}
.area-card p {
font-size: 0.95rem;
line-height: 1.6;
color: #333;
}
.how-it-works-section {
background-color: #f8f9fa;
color: #333;
}

.how-it-works-section .section-title {
font-size: 2.2rem;
font-weight: bold;
color: #004080;
}

.how-it-works-section .section-subtitle {
font-size: 1.3rem;
font-weight: 600;
color: #666;
margin-bottom: 15px;
}

.how-it-works-section .section-text {
font-size: 1.1rem;
line-height: 1.7;
margin-bottom: 20px;
}

.step-card {
background-color: #ffffff;
border-top: 5px solid #004080;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step-title {
font-size: 1.05rem;
font-weight: bold;
color: #004080;
text-transform: uppercase;
margin-bottom: 15px;
}

.step-card p {
font-size: 0.95rem;
line-height: 1.6;
}

.step-card ul li {
font-size: 0.9rem;
line-height: 1.6;
color: #333;
}

.safety-section {
background-color: #ffffff;
color: #333;
}

.safety-section .section-title {
font-size: 2.2rem;
font-weight: bold;
color: #004080;
}

.safety-section .section-text {
font-size: 1.1rem;
line-height: 1.7;
color: #555;
}

.sub-section-title {
font-size: 1.3rem;
font-weight: bold;
color: #004080;
margin-bottom: 15px;
}

.safety-section p {
font-size: 1rem;
line-height: 1.6;
}

.safety-section ul li {
font-size: 0.95rem;
line-height: 1.6;
color: #333;
}

.safety-section img {
max-width: 90%;
border-radius: 10px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.security-box {
background-color: #004080;
color: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
font-size: 1.05rem;
}
.affordable-section {
background-color: #f8f9fa;
color: #333;
}

.affordable-section .section-title {
font-size: 2.2rem;
font-weight: bold;
color: #004080;
}

.affordable-section .section-subtitle {
font-size: 1.3rem;
color: #666;
font-weight: 600;
margin-bottom: 15px;
}

.affordable-section .section-text {
font-size: 1.1rem;
line-height: 1.7;
color: #555;
}

.shipping-card {
background-color: #ffffff;
border-top: 5px solid #004080;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.shipping-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.shipping-title {
font-weight: bold;
color: #004080;
margin-bottom: 15px;
text-transform: uppercase;
}
.shipping-card p,
.shipping-card ul li {
font-size: 0.95rem;
line-height: 1.6;
}

.payment-process-box {
background-color: #004080;
color: #ffffff;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.payment-title {
font-weight: bold;
font-size: 1.5rem;
color: #ffd700;
}

.payment-list li {
font-size: 1.05rem;
line-height: 1.8;
margin-bottom: 10px;
}
.contact-section {
background-color: #004080;
color: white;
}

.contact-section .section-title {
font-size: 2.2rem;
font-weight: bold;
}

.contact-section .section-subtitle {
font-size: 1.3rem;
font-weight: 600;
color: #ffd700;
}

.contact-section .section-text {
font-size: 1.1rem;
line-height: 1.7;
}

.contact-card {
background-color: #ffffff;
color: #004080;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.contact-title {
font-weight: bold;
font-size: 1.2rem;
text-transform: uppercase;
margin-bottom: 15px;
color: #004080;
}

.contact-card a {
color: #004080;
text-decoration: none;
}
.contact-card a:hover {
text-decoration: underline;
}

.social-links .btn {
border: 1px solid #fff;
color: #fff;
border-radius: 30px;
transition: all 0.3s ease;
}
.social-links .btn:hover {
background-color: #ffd700;
color: #004080;
border-color: #ffd700;
}

.footer-note {
background-color: #002d5e;
color: #fff;
font-size: 0.95rem;
border-radius: 10px;
}