<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* =============================
   General Styles
============================= */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #333;
}


/* =============================
   Topbar &amp; Navigation
============================= */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #0c0d1d;
  border-bottom: 1px solid #ccc;
}

.logo img {
  height: 60px;
  width: 200px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-contact-icon {
  display: flex;
  align-items: center;
  margin-right: 1rem;
  text-decoration: none; /* Remove underline */
  color: inherit; /* Inherit white from parent or set it directly */
  
}

.top-contact-icon img {
  height: 24px;
  width: 24px;
}

.contact-number {
  margin-left: 6px;
  font-weight: bold;
  font-size: 0.95rem;
  color: white;
}

.hamburger {
  font-size: 28px;
  cursor: pointer;
  display: none; /* shown in responsive.css */
}

/* Navbar container */
#navbar {
  display: flex;
  gap: 1.5rem;    
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  background-color: #7ca4d1;
}

/* Navbar links */
#navbar a {
  text-decoration: none;
  color: #333;          /* dark text */
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  margin-left: 0.5rem;
}

/* Hover effect */
#navbar a:hover {
  color: #007BFF;       /* blue on hover */
}

/* =============================
   Hero Section
============================= */
.hero {
  position: relative;
  width: 100%;
  height: 80vh; /* ðŸ”¼ Increase this value as needed */
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #f4a300;
  text-align: center;
  padding: 4rem 2rem; /* your original padding */
  max-width: 600px;   /* desktop max width */
  font-size: 20px;  /* keep your original size */
  line-height: 1.3;
  box-sizing: border-box;
}

.tagline1 {
  color: #e49c0d; /* golden yellow */
  font-weight: bold;
}

.tagline2 {
  color: white;
}

/* =============================
   Footer Section
============================= */
.footer {
  background-color: #0d0c1d;
  color: white;
  padding: 2rem 1rem;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  text-align: left;
}

.footer-logo img {
  height: 50px;
  width: auto; /* maintain aspect ratio */
  max-width: 100%;
  object-fit: contain;
}

.footer-links h4,
.footer-contact h4 {
  color: #f4a300; /* golden shade */
}

.footer-about,
.footer-links,
.footer-contact {
  flex: 1 1 280px;
}

.footer-about h4,
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-about p {
  font-weight: 500;
  line-height: 1.5;
}

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

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

.footer-links ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #f4a300;
}

.footer-contact address {
  font-style: normal;
  line-height: 1.6;
}

.footer-contact a {
  color: white;
  text-decoration: underline;
}

.footer-social-links {
  margin-top: 1.5rem;
}

.footer-social-links a {
  display: inline-block;
  color: white;
}

.footer-social-links .social-icon img {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.footer-copy {
  text-align: center;
  font-weight: 600;
  margin-top: 1rem;
}

.footer-contact a {
  text-decoration: none;
}


/* =============================
   Contact Section (if used)
============================= */
#contact {
  background: #f9f9f9;
  padding: 2rem;
  border-top: 2px solid #f4a300;
  border-bottom: 2px solid #f4a300;
}

#contact h2 {
  color: #002147;
  margin-bottom: 1rem;
}

#contact a {
  color: #002147;
  text-decoration: none;
}

#contact iframe {
  margin-top: 1rem;
  border-radius: 8px;
}


/* =============================
  postload (if used)
============================= */

#postload {
  background-color: #0c0d1d;
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-container {
  background-color: #1a1c2c;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
  padding: 2.5rem 2rem;
  max-width: 600px;
  width: 100%;
  color: #fff;
}

.form-container h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #f4a300;
}


.form-container form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-container input,
.form-container textarea {
  padding: 0.9rem;
  border-radius: 10px;
  border: 1px solid #333;
  background-color: #101119;
  color: #fff;
  font-size: 1rem;
}

.form-container button {
  padding: 0.9rem;
  border-radius: 10px;
  background-color: #f4a300;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-container button:hover {
  background-color: #5dc39e;

}


/* =============================
  About Us (if used)
============================= */
.founder-section {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

.founder-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0077b5; /* LinkedIn Blue or use any color */
}

.founder-text-name,
.founder-text-about {
  margin: 0;               
  padding: 0;              
  line-height: 1.2;        /* Controls vertical spacing between lines */
}

.founder-text-name {
  font-size: 1.3rem;
  margin-top: 5px;
  font-weight: bolder;
  color: #333;
}

.founder-text-about {
  font-size: 1.1rem;
  margin-top: 2px;
  font-weight: bold;
  color: #999;
}

/* =============================
  services (if used)
============================= */
.star-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
  margin-bottom: 1px;
}

.star-icon {
  color: burlywood; /* Gold star */
  font-size: 20px;
}


/* =============================================
  All pages except index hero class (if used)
============================================= */

.hero .truck-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero .truck-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

</pre></body></html>