* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}



.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  padding: 13px 0;
  font-size: 16.5px;
  z-index: 1001;
  transition: transform 0.3s ease;
}


header {
  position: fixed;
  top: 55px; /* Starts below top bar */
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
  transition: all 0.3s ease;
  background: transparent;
}


.top-bar-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.contact-info {
  color: #000000;
  font-family: 'Roboto', sans-serif;

}



header.scrolled {
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

header.scrolled nav ul li a,
header.scrolled .desktop-icons a {
  color: #333;
}

header.scrolled .icon-separator {
  background-color: #333;
}

header.scrolled nav ul li a:hover {
  color: #f6871f;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo img {

  border-radius: 5px;
}

/* Nav (desktop) */
nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 400;
  font-family: 'Myriad Pro', sans-serif;
  transition: 0.3s;
  font-size: 20px;
}

nav ul li a.active,
nav ul li a:hover {
  color: #f6871f;
}

/* Desktop icons in header */
.desktop-icons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.desktop-icons a {
  color: white;
  font-size: 20px;
  transition: color 0.3s;
  position: relative;
  padding: 0 10px;
}

.icon-separator {
  width: 3px;
  height: 25px;
  background-color: white;
  opacity: 0.9;
  border-radius: 2px;
}


.desktop-icons a:hover {
  color: #f6871f;
}

/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
  margin-left: 15px;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: right 0.3s ease;
  z-index: 2000;
}

.sidebar.active {
  right: 0;
}

.sidebar ul {
  list-style: none;
  width: 100%;
  text-align: center;
}

.sidebar ul li {
  margin: 15px 0;
}

.sidebar ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  display: block;
  padding: 10px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
}

.sidebar ul li a:hover {
  color: #f6871f;
}

.sidebar .sidebar-icons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.sidebar .sidebar-icons a {
  color: white;
  font-size: 22px;
  transition: color 0.3s;
}

.sidebar .sidebar-icons a:hover {
  color: #f6871f;
}

/* Sidebar Close Button */
.sidebar .close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 28px;
  color: white;
  cursor: pointer;
  transition: color 0.3s;
}

.sidebar .close-btn:hover {
  color: #f6871f;
}

/* Overlay background */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1500;
}

.overlay.active {
  display: block;
}

/* Hero */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  color: white;
  max-width: 800px;
  z-index: 2;
  padding-top: 100px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}

.hero-content p {
  font-size: 15px;
  width: 550px;
  margin-left: 15px;
  margin-bottom: 30px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}

.btn-explore {
  background: #f6871f;
  color: white;
  padding: 15px 30px;
  width: 275px;
  height: 55px;
  text-decoration: none;
  font-family: 'Myriad Pro', sans-serif;
  font-weight: 400;
  transition: 0.3s;
  font-size: 20px;
  border-radius: 27.5px / 27.5px;
}

.btn-explore:hover {
  background: #f6871f;
}

/* --- Unique "Choose Us" Form Section --- */
.choose-form-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.choose-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.choose-left {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.choose-image img {
  width: 594px;
  height: 520px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.choose-form-column {
  flex: 1;
  background: #f6871f;
  padding: 25px;
  border-radius: 10px;
  color: #fff;
}

.choose-contact-form .choose-form-group {
  margin-bottom: 15px;
}

.choose-contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #fde1e3;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;

}

.choose-contact-form input,
.choose-contact-form textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.choose-contact-form textarea {
  min-height: 100px;
}

.choose-submit-btn {
  background: #fff;
  color: #000000;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.choose-submit-btn:hover {
  background: #f6871f;
  color: #fff;
}

.choose-us h2 {
  color: #000000;
  font-size: 51px;
  margin-bottom: 20px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  margin-top: -10px;
}

.choose-us ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: none;
}

.choose-us li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  font-size: 20px;
  color: #56585e;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}

.choose-us li::before {
  content: "•";
  color: #f6871f;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -2px;
}

/* --- End Unique "Choose Us" Section --- */


/* --- services-section Section --- */
.services-section {
  padding: 80px 20px;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.services-header h5 {
  color: #ffffff;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;

}

.services-header h2 {
  color: #f6871f;
  font-size: 45px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
}

.services-header p {
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto 50px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 17px;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
}

/* Image should fill parent and inherit rounded corners */
.service-card img {
  width: 100%;
  height: 305px;
  object-fit: cover;
  display: block; 
  border-radius: inherit; 
}

.service-card h3 {
  color: #f6871f;
  font-size: 25px;
  margin: 20px 0 10px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;

}

.service-card p {
  color: #ccc;
  font-size: 16.25px;
  padding: 0 15px 20px;
  line-height: 1.5;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}



/* Clients Section */
.clients-section {
  background: #f7f7f7;
  padding: 70px 20px;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.clients-header h4 {
  text-transform: uppercase;
  color: #000000;
  font-size: 21px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}

.clients-header h2 {
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: #000000;
}

.clients-header p {
  font-size: 17px;
  color: #777;
  margin-bottom: 40px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

/* Logos Grid */

/* Logos Grid */
.clients-logos {
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px; 
}
.clients-logos img {
  max-height: 90px;
  max-width: 160px;
  object-fit: contain;
  transition: filter 0.3s, transform 0.3s;
}

.clients-logos img:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}



/* ------------------------------------------- */
/* --- FOOTER SECTION STYLING --- */
/* ------------------------------------------- */

.footer-section {
  background-color: #000;
  color: #fff;
  padding-top: 60px;
  font-size: 15px;
  position: relative;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}


.footer-logo-col {
  flex: 1.5;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  margin-right: 10px;
}

.footer-logo-text {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.1;
}

.footer-logo-text strong {
  color: #fff;
}

.footer-logo-text span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  font-family: 'Myriad Pro', sans-serif;
}

.footer-description {
  color: #fefefe;
  margin-bottom: 20px;
  max-width: 278px;
  font-weight: 400;
  font-family: 'Myriad Pro', sans-serif;

}

/* Social Icons */
.social-icons a {
  color: #f6871f;
  font-size: 20px;
  margin-right: 15px;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #fff;
}


.footer-column h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 20px;
  color: #f6871f;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fefefe;
  text-decoration: none;
  font-weight: 400;
  font-family: 'Myriad Pro', sans-serif;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #f6871f;
}

/* --- Column 3: Newsletter --- */
.newsletter p {
  color: #fefefe;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 15px;
}

.newsletter form {
  flex-direction: column;
  gap: 10px;
}

.newsletter input[type="email"] {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  outline: none;
}

.newsletter .subscribe-btn {
  background-color: #f6871f;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 10px;
  /* push button down */
}

.newsletter .subscribe-btn:hover {
  background-color: #f6871f;
}

.footer-bottom {
  padding: 20px 20px;
  text-align: center;
}

.footer-bottom p {
  color: #fefefe;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  display: inline-block;
  transform: translateX(-400px);
}



/* --- WhatsApp Button --- */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  z-index: 100;
}

.whatsapp-btn i {
  font-size: 24px;
}

.whysafetran {
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: 606px;
  overflow: hidden;
}




.whysafetran img {
  width: 1920px;
  height: 606px;
  object-fit: cover;
  display: block;
}

.whysafetran2 img {
  width: 1920px;
  height: 606px;
  object-fit: cover;
  display: block;
}

.banner-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 20px 40px;
  border-radius: 8px;
}

.banner-txt3 {
  position: absolute;
  top: 59%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 20px 40px;
  border-radius: 8px;
}

.banner-txt2 {
  position: absolute;
  top: 59%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 20px 40px;
  border-radius: 8px;
}

.banner-txt2 h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 50px;
  margin: 0;
}

.banner-txt5 {
  position: absolute;
  top: 59%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 20px 40px;
  border-radius: 8px;
}

.banner-txt5 h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 50px;
  margin: 0;
}


.banner-txt3 h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 50px;
  margin: 0;
}
.banner-txt h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 50px;
  margin: 0;
}

.banner-txtteam {
  position: absolute;
  top: 59%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 20px 40px;
  border-radius: 8px;
}
.banner-txtteam h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 50px;
  margin: 0;
}

/* ------------------------------------------- */
/* --- VALUES/FEATURES SECTION STYLING --- */
/* ------------------------------------------- */

.values-section {
  padding: 80px 20px;
  background-color: #fff;

}

.values-section .container {
  max-width: 960px;

  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.intro-block h2 {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}

.intro-block p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.secondary-heading {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin: 50px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}

.team-image-container {
  margin-bottom: 60px;
  overflow: hidden;
  border-radius: 5px;

}

.team-image-container img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}



.feature-block {
  margin-bottom: 40px;
}

.feature-header h4 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.feature-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 15px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.feature-content p:last-child {
  margin-bottom: 0;
}



/* ------------------------------------------- */
/* --- VERSATILE SOLUTIONS SECTION STYLING --- */
/* ------------------------------------------- */

.versatile-solutions-section {
  padding: 26px 20px;
  background-color: #fff;
  text-align: center;
}

.versatile-solutions-section .container {
  max-width: 960px;
  margin: 0 auto;
}

.versatile-solutions-section h2 {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.versatile-solutions-section p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;

}

.versatile-solutions-section p:last-child {
  margin-bottom: 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

/* ------------------------------------------------- */
/* --- SPECIALIZED SERVICES SECTION STYLING --- */
/* ------------------------------------------------- */
.specialized-services-section {
  background-color: #ffe8d2;
  padding: 80px 20px;
}

.specialized-services-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.specialized-services-section .section-title {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 60px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.service-block {
    display: flex;
    align-items: center;
    gap: 40px; 
    margin-bottom: 60px;
}

.layout-left-image {
    flex-direction: row; 
}

.layout-right-image {
    flex-direction: row-reverse; 
}

.service-content {
    flex: 1;
    padding: 0 20px;
}

.layout-left-image .service-content {
    padding-left: 40px; 
}

.layout-right-image .service-content {
    padding-right: 40px; 
}

.service-image img {
    width: 595px;
    height: 425px;
    border-radius: 10px;
}

.service-content {
  flex: 1;
  padding: 30px;
}

.service-number {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #000000;
  margin-bottom: 15px;
  text-align: center;
}

.service-content h4 {
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
  text-align: center;
}

.service-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #261d1e;
  margin-bottom: 20px;
  margin-left: 5px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.service-content p:last-of-type {
  margin-bottom: 0;
}

/* Layouts */
.layout-left-image {
  flex-direction: row;
}

.layout-right-image {
  flex-direction: row-reverse;
}




/* ------------------------------------------- */
/* --- CONTACT US SECTION STYLING --- */
/* ------------------------------------------- */

.contactpagesection {
  padding: 80px 20px;
  background-color: #fff;
  /* White background */
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.contact-details-column {
  flex: 1;
  padding-top: 10px;
}

.contact-title {
  font-size: 32px;
  color: #000000;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}

.contact-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background-color: #f6871f;
  position: absolute;
  left: 0;
  bottom: 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.contact-icon {
  font-size: 24px;
  color: #f6871f;
  margin-right: 15px;
  line-height: 1.2;

}

.info-label {
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 2px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}

.info-detail {
  font-size: 15px;
  color: #000000;
  line-height: 1.4;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.contact-form-column {
  flex: 1;
  background-color: #f6871f;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;

}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="text"],
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  background-color: #fff;
  color: #333;
  font-size: 15px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;

}

.contact-form .submit-btn {
  display: block;
  width: 150px;

  margin-top: 20px;
  background-color: white;
  color: #f6871f;
  padding: 15px 20px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.contact-form .submit-btn:hover {
  background-color: #f0f0f0;
  color: #f6871f;
}


/* ------------------------------------------- */
/* --- OUR TEAM SECTION STYLING --- */
/* ------------------------------------------- */

.our-team-section {
  padding: 80px 20px;
  background-color: #f7f7f7;
  text-align: center;
}

.our-team-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.our-team-section .section-title {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 60px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;

}

.team-member {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.member-photo {
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.member-photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.member-info {
  background-color: #f6871f;
  color: #fff;
  padding: 15px 10px;
  width: 100%;
  text-align: center;
}

.member-name {
  font-size: 27px;
  font-weight: bold;
  margin-bottom: 5px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}

.member-title {
  font-size: 16px;
  opacity: 0.9;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}



/* ------------------------------------------- */
/* --- Owner Operators SECTION STYLING --- */
/* ------------------------------------------- */


.owneroper {
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: 606px;
  overflow: hidden;
}


.owneroper img {
  width: 1920px;
  height: 606px;
  object-fit: cover;
  display: block;
}

.ownerbanner-txt {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 20px 40px;
  border-radius: 8px;
}


.ownerbanner-txt h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 50px;
  margin: 0;
}


@media (max-width: 480px) {
  .owneroper  {
    height: 300px;
  }

  .owneroper  img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .ownerbanner-txt  {
    padding: 10px 15px;
  }

  .ownerbanner-txt h1 {
    font-size: 36px;
    line-height: 1.3;
  }
 
}

#owner {
  background-color: #fff;
  padding: 60px 20px;
  color: #333;
}

.owner-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

#owner h2 {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #000000;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}

#owner p {
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 17px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #000000;
}

.owner-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.owner-image img {
  width: 100%;
  max-width: 1220px;
  height: auto;
  aspect-ratio: 1220 / 691;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

#partnership {
  background-color: #ffe8d2;
  padding: 60px 20px;
  color: #222;
}

.partnership-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

#partnership h2 {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  color: #000000;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}

#partnership p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: justify;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

#drivers {
  background-color: #fff;
  padding: 60px 20px;
  color: #222;
}

.drivers-container {
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}



#drivers h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}

#drivers h3 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #000000;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}

#drivers p {
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 16px;
  color: #000000;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.hauling-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hauling-list li {
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  color: #333;
  line-height: 1.6;
}

/* ===== ICON BOX ===== */
.hauling-list .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: #f6871f;
  border: 2px solid #f6871f;
  border-radius: 4px;
  margin-right: 12px;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(229, 9, 20, 0.4);
  transition: all 0.3s ease;
}

.hauling-list .icon i {
  color: #fff;
  font-size: 14px;
}


.hauling-list li:hover .icon {
  background-color: #f6871f;
  border-color: #f6871f;
  box-shadow: 0 0 10px rgba(163, 0, 24, 0.5);
  transform: translateX(3px);
}


.hauling-list .text {
  font-family: 'Myriad Pro', sans-serif;
  display: inline-block;
  max-width: 850px;
}

.hauling-list .text .title {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  font-family: 'Myriad Pro', sans-serif;
  color: #111;
  margin-right: 4px;
}

.hauling-list .text .desc {
  font-size: 18px;
  font-weight: 400;
  font-family: 'Myriad Pro', sans-serif;
  color: #111;
}




/* ===== APPLY TO DRIVE SECTION ===== */
.logistics-section {
  background-color: #ffe8d2;
  padding: 60px 20px;
font-family: 'Roboto', sans-serif;

  color: #222;
}

.logistics-section .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.logistics-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 1px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}



.logistics-section p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin: 0 auto;
  text-align: left;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

/* ===== OWNER CONTACT SECTION ===== */
.ownercontact-section {
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
}

.ownercontact-us-container {
  position: relative;
  height: 600px;
  background: no-repeat center center / cover;
  display: flex;
  justify-content: center;
  align-items: center;

}



/* ---- Contact Form Wrapper ---- */
.contact-form-wrapper {
  position: relative;
  z-index: 2;

  padding: 40px;
  border-radius: 10px;
  max-width: 800px;
  width: 90%;
  text-align: center;
  color: #fff;
}

.contact-form-wrapper h3 {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: 1px;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}

/* ---- Contact Form ---- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.form-row input {
  flex: 1;
  min-width: 200px;
}

input,
textarea {
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
  outline: none;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

textarea {
  resize: vertical;
  width: 100%;
  box-sizing: border-box;
}

/* ---- Submit Button ---- */
button[type="submit"] {
  background-color: #f6871f;
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: 700;
  letter-spacing: 1px;
  width: 180px;
  margin: 20px auto 0;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button[type="submit"]:hover {
  background-color: #f6871f;
  transform: translateY(-2px);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .contact-form-wrapper h3 {
    font-size: 2em;
  }

  .ownercontact-us-container {
    height: 500px;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }
}

.fleet-stats-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  padding: 50px 20px;
  flex-wrap: wrap;
  background-color: #ffffff;
 font-family: 'Roboto', sans-serif;

}

.fleet-stats-section .fleet-stat {
  display: flex;
  align-items: center;
  gap: 20px;
 
  text-align: left;
}

.fleet-stats-section .fleet-stat img {
  width: 206px;
  height: 122px;
  object-fit: contain;
}

.fleet-stats-section .fleet-text h4 {
  font-size: 19px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  margin: 0 0 8px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}

.fleet-stats-section .fleet-text h2 {
  font-size: 25px;
  color: #f6871f; 
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}

/* Responsive design */
@media (max-width: 768px) {
  .fleet-stats-section {
    flex-direction: column;
    text-align: center;
  }

  .fleet-stats-section .fleet-stat {
    flex-direction: column;
    align-items: center;
    max-width: none;
  }

  .fleet-stats-section .fleet-text h4,
  .fleet-stats-section .fleet-text h2 {
    text-align: center;
  }
}

/* --- WHY CHOOSE US SECTION --- */
.why-choose-us-section {
  text-align: center;
  padding: 80px 20px;
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
}

.why-choose-us-section .why-header h5 {
  font-size: 21px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}

.why-choose-us-section .why-header h2 {
  font-size: 48px;
  color: #000;
  margin-bottom: 15px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}

.why-choose-us-section .why-header p {
  font-size: 16px;
  color: #828387;
  margin-bottom: 50px;
  line-height: 1.5;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}

.why-choose-us-section .why-features {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 92px;
  flex-wrap: wrap;
}

.why-choose-us-section .why-card {
  max-width: 250px;
  text-align: center;
}

.why-choose-us-section .why-card .icon {
  background-color: #f6871f;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-choose-us-section .why-card .icon img {
  width: 52px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1); 
}

.why-choose-us-section .why-card h4 {
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;
   font-family: 'Roboto', sans-serif;
  font-weight: 600;
}

.why-choose-us-section .why-card p {
  font-size: 16px;
  color: #56585e;
  line-height: 1.5;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  width: 326px;
  margin-left: -36px;
}

.why-choose-us-section .why-button {
  margin-top: 50px;
}

.why-choose-us-section .contact-btn {
  background-color: #f6871f;
  color: #fff;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.why-choose-us-section .contact-btn:hover {
  background-color: #f6871f;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .why-choose-us-section .why-features {
    flex-direction: column;
    align-items: center;
  }

  .why-choose-us-section .why-card {
    max-width: 320px;
  }
}

