/* Importing Google font - Fira Sans */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Fira Sans', sans-serif;
}

img {
  max-width: 100%;
}

body {
  background: #000;
}

header {
  width: 100%;
  position: relative;
  z-index: 1000;
  padding: 20px 0;
}

/* ===== Base Header & Navbar ===== */
header .navbar {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
}

/* ===== Logo ===== */
.navbar .logo {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Menu Links (Desktop) ===== */
.navbar .menu-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
  transition: all 0.3s ease;
}

.navbar .menu-links li a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.navbar .menu-links li a:hover {
  color: #AA8119;
}

/* ===== Join Button ===== */
.navbar .join-btn a {
  position: relative;
  display: inline-block;
  border: 1.5px solid #AA8119;
  color: #AA8119;
  background: transparent;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.95rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Light reflection effect */
.navbar .join-btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-25deg);
  transition: left 0.5s ease;
  pointer-events: none; /* ensures hover & text aren't blocked */
  mix-blend-mode: lighten;
  z-index: 0;
}

.navbar .join-btn a span {
  position: relative;
  z-index: 2; /* text above everything */
}

.navbar .join-btn a:hover::before {
  left: 125%;
}

.navbar .join-btn a:hover {
  background: #000;
  color: #AA8119;
  box-shadow: 0 0 12px rgba(170, 129, 25, 0.4);
  transform: translateY(-1px);
}

/* ===== Dropdown (Desktop) ===== */
.navbar .dropdown {
  position: relative;
}

.navbar .dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.navbar .dropdown > a::after {
  content: "\25BC"; /* down arrow */
  font-size: 0.7rem;
  transition: transform 0.3s ease, color 0.3s ease;
  color: #AA8119;
}

.navbar .dropdown:hover > a::after {
  transform: rotate(180deg);
}

/* Dropdown container */
.navbar .dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  width: 240px;
  background: rgba(15, 15, 15, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.5);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s ease;
  border: 1px solid rgba(170, 129, 25, 0.25);
  overflow: hidden;
  z-index: 1000;
}

/* Show dropdown on hover */
.navbar .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown items */
.navbar .dropdown-menu li {
  list-style: none;
  padding: 12px 20px;
  position: relative;
  transition: background 0.3s ease, color 0.3s ease;
}

.navbar .dropdown-menu li:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
}

.navbar .dropdown-menu li a {
  color: #f1f1f1;
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.navbar .dropdown-menu li:hover {
  background: linear-gradient(90deg, rgba(170,129,25,0.2), rgba(170,129,25,0.1));
}

.navbar .dropdown-menu li:hover a {
  color: #AA8119;
}

.navbar .dropdown-menu li:hover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #AA8119;
  border-radius: 0 3px 3px 0;
}

/* ===== Mobile Styles ===== */
@media (max-width: 850px) {
  .navbar {
    padding: 15px 25px;
    position: relative;
  }

  /* Hamburger Icon */
  #hamburger-btn {
    display: block;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  #hamburger-btn:hover {
    transform: scale(1.1);
    color: #AA8119;
  }

  /* Sidebar Menu */
  .navbar .menu-links {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 80%;
    max-width: 320px;
    background: #111;
    color: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 25px 40px;
    gap: 25px;
    box-shadow: 8px 0 25px rgba(0,0,0,0.5);
    transition: all 0.35s ease;
    overflow-y: auto;
    z-index: 1001;
  }

  header.show-mobile-menu .menu-links {
    left: 0;
  }

  #close-menu-btn {
    display: block;
    color: #fff;
    position: absolute;
    top: 22px;
    right: 22px;
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s ease;
  }

  #close-menu-btn:hover {
    color: #AA8119;
  }

  .menu-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .menu-links li:last-child {
    border-bottom: none;
  }

  .menu-links li a {
    display: block;
    width: 100%;
    color: #f1f1f1;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 0;
    transition: color 0.3s ease, transform 0.2s ease;
  }

  .menu-links li a:hover {
    color: #AA8119;
    transform: translateX(4px);
  }

  .menu-links .join-btn a {
    width: 100%;
    border: 1px solid #AA8119;
    color: #AA8119;
    background: transparent;
    padding: 14px;
    text-align: center;
    border-radius: 10px;
  }

  .menu-links .join-btn a:hover {
    background: #AA8119;
    color: #fff;
  }

  /* Mobile Dropdown */
  .menu-links .dropdown {
    width: 100%;
  }

  .menu-links .dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #f1f1f1;
    font-weight: 600;
    cursor: pointer;
    padding: 12px 0;
  }

  .menu-links .dropdown > a::after {
    content: "\25BC"; /* down arrow */
    font-size: 0.9rem;
    color: #AA8119;
    transition: transform 0.3s ease;
  }

  .menu-links .dropdown.open > a::after {
    transform: rotate(180deg);
  }

  .menu-links .dropdown-menu {
    display: none;
    position: static;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #AA8119;
    border-radius: 6px;
    padding: 8px 15px;
    margin-top: 8px;
    margin-left: 10px;
    width: calc(100% - 20px);
    box-shadow: none;
    z-index: auto;
  }

  .menu-links .dropdown.open .dropdown-menu {
    display: block;
  }

  .menu-links .dropdown-menu li {
    width: 100%;
    padding: 8px 0 8px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .menu-links .dropdown-menu li:last-child {
    border-bottom: none;
  }

  .menu-links .dropdown-menu li a {
    font-size: 1rem;
    color: #ddd;
    font-weight: 500;
    text-decoration: none;
    display: block;
    width: 100%;
  }

  .menu-links .dropdown-menu li a:hover {
    color: #AA8119;
    transform: translateX(3px);
    transition: all 0.3s ease;
  }

  /* Subtle overlay behind sidebar */
  header::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
  }

  header.show-mobile-menu::before {
    opacity: 1;
    visibility: visible;
  }
}








/* ===============================
   HERO SECTION
=============================== */
.hero-section {
  height: 80vh;
  background-image: url("images/nh-1.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center; /* Centers content vertically */
  padding: 5%;
  color: #fff;
}

/* Content container */
.hero-content {
  max-width: 600px;
  text-align: left;
  color: inherit; /* inherits white color */
}

/* Headline */
.headline {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: inherit;
}

/* Subheadline */
.subheadline {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #e0e0e0;
}

/* ===============================
   HERO SECTION RESPONSIVE
=============================== */
@media (max-width: 768px) {
  .hero-section {
    height: 90vh;
    padding: 5% 4%;
  }

  .headline {
    font-size: 2.5rem;
  }

  .subheadline {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: auto;
    padding: 5% 3%;
  }

  .headline {
    font-size: 2rem;
  }

  .subheadline {
    font-size: 1rem;
  }
}

/* ===============================
   TABLE STYLING
=============================== */
table {
  width: 300px;
  height: 200px;
  background-color: #EFEFEF;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 5px 5px 5px #888;
  color: #fff;
  margin: 20px auto;
}

th, td {
  padding: 10px;
  text-align: center;
  color: white;
}

th {
  background-color: transparent; /* fixed typo */
}

/* ===============================
   BLACK HEADING
=============================== */
.black-heading {
  background-color: black;
  color: white;
  padding: 3%;
  padding-left: 7%;
  border-radius: 8px;
  font-size: 2.5rem;
  text-align: left;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}







 /* ------------------------------
   MAIN WRAPPER
------------------------------ */
.hero-section2 .table-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 20px;
    margin: 0 auto;
    max-width: 1300px;
    background: none;
}

/* ------------------------------
   CARD
------------------------------ */
.hero-section2 .table3 {
    flex: 0 1 320px;
    max-width: 300px;
    background: #ffffff;
    border-radius: 16px;
    padding: 0;
    border: 1px solid #f1e7b8;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: box-shadow 0.25s ease;
}

/* ------------------------------
   TABLE
------------------------------ */
.hero-section2 .table3 table {
    width: 100%;
    border-collapse: collapse;
}

.hero-section2 .table3 table th,
.hero-section2 .table3 table td {
    padding: 14px;
    text-align: center;
}

.hero-section2 .table3 table th {
    background: #AA8119;
    color: #ffffff;
    font-size: 15.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.hero-section2 .table3 table td {
    background: #ffffff;
    color: #444;
    font-size: 14.5px;
    line-height: 1.45;
    padding: 11px 10px;
}

/* ------------------------------
   IMAGE
------------------------------ */
.hero-section2 .table3 img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

/* ------------------------------
   BUTTON
------------------------------ */
.hero-section2 .read-more-button {
    padding: 18px;
    text-align: center;
}

.hero-section2 .read-more-button a {
    background: #AA8119;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.hero-section2 .read-more-button a:hover {
    background: #8A690F;
    box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}

/* ------------------------------
   SECTION HEADING
------------------------------ */
.hero-section2 .section-title {
    background-color: #AA8119;
    color: #ffffff;
    padding: 18px 25px;
    border-radius: 10px;
    display: inline-block;
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-section2 .section-subtitle {
    color: #555;
    text-align: center;
    margin-bottom: 35px;
}

/* ------------------------------
   TABLET
------------------------------ */
@media (max-width: 900px) {
    .hero-section2 .table3 {
        flex: 0 1 46%;
        max-width: 46%;
    }
}

/* ------------------------------
   MOBILE (ONE CARD PER ROW)
------------------------------ */
@media (max-width: 600px) {
    .hero-section2 .table-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 6% 4%;
    }

    .hero-section2 .table3 {
        width: 100%;
        max-width: 380px;
        flex: none;
    }

    .hero-section2 .table3 table th,
    .hero-section2 .table3 table td {
        font-size: 14px;
        padding: 10px 8px;
    }

    .hero-section2 .table3 img {
        height: 180px;
    }
}







  

 .hero-section3 {
    background-color: #000; /* Black background */
    padding: 40px 20px;
    text-align: center;
    color: #fff; /* White text */
}

.hero-section3 .service-header {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #f1f1f1; /* Light gray for better contrast */
}

.hero-section3 .centered-table {
    max-width: 800px;
    margin: 0 auto;
}

.hero-section3 .custom-list {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.hero-section3 .custom-list li {
    font-size: 1.2rem;
    padding: 15px;
    border-left: 3px solid #f1f1f1;
    background-color: #222;
    color: #ddd;
    transition: background-color 0.3s ease;
}

.hero-section3 .custom-list li:hover {
    background-color: #333;
}

@media only screen and (max-width: 768px) {
    .hero-section3 .service-header {
        font-size: 1.8rem;
    }

    .hero-section3 .custom-list {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .hero-section3 .custom-list li {
        font-size: 1rem;
    }
}









.hero-section4 .table-container {
    width: 90%;
    margin: 5% auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 20px;
    background: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    overflow: hidden; /* prevents image overflow */
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Subtle hover effect */
.hero-section4 .table-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

/* ------------------------------
   IMAGE STYLE
------------------------------ */
.hero-section4 .table-container img {
    width: 100%;
    height: auto; /* fixed from 100% to prevent stretching */
    object-fit: cover;
    border-radius: 15px; 
    transition: transform 0.3s ease;
}

/* Image zoom effect */
.hero-section4 .table-container img:hover {
    transform: scale(1.03);
}

/* ------------------------------
   RESPONSIVE
------------------------------ */
@media (max-width: 768px) {
    .hero-section4 .table-container {
        width: 95%;
        margin: 4% auto;
        padding: 6px;
    }

    .hero-section4 .table-container img {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .hero-section4 .table-container {
        width: 100%;
        margin: 3% auto;
        padding: 5px;
    }

    .hero-section4 .table-container img {
        border-radius: 10px;
    }
}





/* ===============================
   HERO SECTION 5
=============================== */
.hero-section5 {
    width: 100%;
    padding: 40px 20px;
    background-color: #000;
    display: flex;
    justify-content: center;
}

.hero-section5 .table-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    width: 90%;
    max-width: 1200px;
}

.hero-section5 .table3 {
    flex: 1 1 300px;
    max-width: 330px;
    background-color: #fff;
    border-radius: 15px;
    border: 1px solid lightgoldenrodyellow;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-section5 .table3:hover {
    transform: translateY(-6px);
    box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.18);
}

.hero-section5 .table3 table {
    width: 100%;
    border-collapse: collapse;
}

.hero-section5 .table3 th,
.hero-section5 .table3 td {
    padding: 15px;
    text-align: center;
    color: #333;
}

.hero-section5 .table3 th {
    background-color: #AA8119;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.hero-section5 .table3 td {
    background-color: #fff;
    color: #333;
    font-size: 14px;
}

.hero-section5 .table3 img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-section5 .table3 img:hover {
    transform: scale(1.03);
}

.hero-section5 .read-more-button {
    text-align: center;
    padding: 15px 0;
}

.hero-section5 .read-more-button a {
    text-decoration: none;
    background-color: #AA8119;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.hero-section5 .read-more-button a:hover {
    background-color: #8A690F;
    box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}

/* -----------------
   Responsive
----------------- */
@media (max-width: 900px) {
    .hero-section5 .table3 {
        flex: 1 1 45%;
        max-width: 48%;
    }
}

@media (max-width: 600px) {
    .hero-section5 .table-container {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 20px;
        padding: 0 5%;
    }

    .hero-section5 .table3 {
        max-width: 100%;
        flex: 1 1 100%;
    }
}


  





.about-section {
  height: 80vh;
  background-image: url("images/Hero-Img-2.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center; /* Centers content vertically */
  padding: 5% 5%; /* Responsive padding */
  color: #fff; /* Default text color for better contrast */
}

/* Content container */
.about-section .hero-content {
  max-width: 600px; /* Limits the width of the content */
  text-align: left; /* Aligns text to the left */
  color: #fff; /* White text for readability */
}

/* Headline styling */
.about-section .headline {
  font-size: 3rem; /* Large headline for prominence */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff; /* Clean white color for modern look */
}

/* Subheadline styling */
.about-section .subheadline {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #e0e0e0; /* Slightly lighter gray for subheadline */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .about-section {
    height: 90vh; /* Adjust height for smaller screens */
    padding: 50px 20px; /* Reduce padding */
  }

  .about-section .headline {
    font-size: 2.5rem; /* Adjust heading size for smaller screens */
  }

  .about-section .subheadline {
    font-size: 1.1rem; /* Adjust subheadline size for smaller screens */
  }
}



.longhaul-section {
  height: 80vh;
  background-image: url("images/service-long-haul.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center; /* Centers content vertically */
  padding: 5% 5%; /* Responsive padding */
  color: #fff; /* Default text color for better contrast */
}

/* Content container */
.longhaul-section .hero-content {
  max-width: 600px; /* Limits the width of the content */
  text-align: left; /* Aligns text to the left */
  color: #fff; /* White text for readability */
}

/* Headline styling */
.longhaul-section .headline {
  font-size: 3rem; /* Large headline for prominence */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff; /* Clean white color for modern look */
}

/* Subheadline styling */
.longhaul-section .subheadline {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #e0e0e0; /* Slightly lighter gray for subheadline */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .longhaul-section {
    height: 90vh; /* Adjust height for smaller screens */
    padding: 50px 20px; /* Reduce padding */
  }

  .longhaul-section .headline {
    font-size: 2.5rem; /* Adjust heading size for smaller screens */
  }

  .longhaul-section .subheadline {
    font-size: 1.1rem; /* Adjust subheadline size for smaller screens */
  }
}



.dryvan-section {
  height: 80vh;
  background-image: url("images/service dry van.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center; /* Centers content vertically */
  padding: 5% 5%; /* Responsive padding */
  color: #fff; /* Default text color for better contrast */
}

/* Content container */
.dryvan-section .hero-content {
  max-width: 600px; /* Limits the width of the content */
  text-align: left; /* Aligns text to the left */
  color: #fff; /* White text for readability */
}

/* Headline styling */
.dryvan-section .headline {
  font-size: 3rem; /* Large headline for prominence */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff; /* Clean white color for modern look */
}

/* Subheadline styling */
.dryvan-section .subheadline {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #e0e0e0; /* Slightly lighter gray for subheadline */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .dryvan-section {
    height: 90vh; /* Adjust height for smaller screens */
    padding: 50px 20px; /* Reduce padding */
  }

  .dryvan-section .headline {
    font-size: 2.5rem; /* Adjust heading size for smaller screens */
  }

  .dryvan-section .subheadline {
    font-size: 1.1rem; /* Adjust subheadline size for smaller screens */
  }
}






.reefer-section {
  height: 80vh;
  background-image: url("images/service-reefer.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center; /* Centers content vertically */
  padding: 5% 5%; /* Responsive padding */
  color: #fff; /* Default text color for better contrast */
}

/* Content container */
.reefer-section .hero-content {
  max-width: 600px; /* Limits the width of the content */
  text-align: left; /* Aligns text to the left */
  color: #fff; /* White text for readability */
}

/* Headline styling */
.reefer-section .headline {
  font-size: 3rem; /* Large headline for prominence */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff; /* Clean white color for modern look */
}

/* Subheadline styling */
.reefer-section .subheadline {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #e0e0e0; /* Slightly lighter gray for subheadline */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .reefer-section {
    height: 90vh; /* Adjust height for smaller screens */
    padding: 50px 20px; /* Reduce padding */
  }

  .reefer-section .headline {
    font-size: 2.5rem; /* Adjust heading size for smaller screens */
  }

  .reefer-section .subheadline {
    font-size: 1.1rem; /* Adjust subheadline size for smaller screens */
  }
}






/* ===============================
   FULL TRUCKLOAD SECTION
=============================== */
.fulltruckload-section {
  height: 80vh;
  background-image: url("images/service-full-truck-load.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  padding: 5% 5%;
  color: #fff;
}

.fulltruckload-section .hero-content {
  max-width: 600px;
  text-align: left;
  color: #fff;
}

.fulltruckload-section .headline {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}

.fulltruckload-section .subheadline {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #e0e0e0;
}

@media (max-width: 768px) {
  .fulltruckload-section {
    height: 90vh;
    padding: 50px 20px;
  }

  .fulltruckload-section .headline {
    font-size: 2.5rem;
  }

  .fulltruckload-section .subheadline {
    font-size: 1.1rem;
  }
}

/* ===============================
   LESS THAN TRUCKLOAD SECTION
=============================== */
.lesstthentruckload-section {
  height: 80vh;
  background-image: url("images/service-less-then-truck-load.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  padding: 5% 5%;
  color: #fff;
}

.lesstthentruckload-section .hero-content {
  max-width: 600px;
  text-align: left;
  color: #fff;
}

.lesstthentruckload-section .headline {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}

.lesstthentruckload-section .subheadline {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #e0e0e0;
}

@media (max-width: 768px) {
  .lesstthentruckload-section {
    height: 90vh;
    padding: 50px 20px;
  }

  .lesstthentruckload-section .headline {
    font-size: 2.5rem;
  }

  .lesstthentruckload-section .subheadline {
    font-size: 1.1rem;
  }
}

/* ===============================
   SAFETY AND TRAINING SECTION
=============================== */
.safetyandtraining-section {
  height: 80vh;
  background-image: url("images/Driver-safety-and-training.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  padding: 5% 5%;
  color: #fff;
}

.safetyandtraining-section .hero-content {
  max-width: 600px;
  text-align: left;
  color: #fff;
}

.safetyandtraining-section .headline {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}

.safetyandtraining-section .subheadline {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #e0e0e0;
}

@media (max-width: 768px) {
  .safetyandtraining-section {
    height: 90vh;
    padding: 50px 20px;
  }

  .safetyandtraining-section .headline {
    font-size: 2.5rem;
  }

  .safetyandtraining-section .subheadline {
    font-size: 1.1rem;
  }
}

/* ===============================
   DRIVER TRAINING SECTION
=============================== */
.drivertraining-section {
  height: 80vh;
  background-image: url("images/Driver-driver-training.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  padding: 5% 5%;
  color: #fff;
}

.drivertraining-section .hero-content {
  max-width: 600px;
  text-align: left;
  color: #fff;
}

.drivertraining-section .headline {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}

.drivertraining-section .subheadline {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #e0e0e0;
}

@media (max-width: 768px) {
  .drivertraining-section {
    height: 90vh;
    padding: 50px 20px;
  }

  .drivertraining-section .headline {
    font-size: 2.5rem;
  }

  .drivertraining-section .subheadline {
    font-size: 1.1rem;
  }
}

/* ===============================
   EQUIPMENT AND MAINTENANCE SECTION
=============================== */
.equipmentandmaintence-section {
  height: 80vh;
  background-image: url("images/Driver-equipment-maintence.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  padding: 5% 5%;
  color: #fff;
}

.equipmentandmaintence-section .hero-content {
  max-width: 600px;
  text-align: left;
  color: #fff;
}

.equipmentandmaintence-section .headline {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}

.equipmentandmaintence-section .subheadline {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #e0e0e0;
}

@media (max-width: 768px) {
  .equipmentandmaintence-section {
    height: 90vh;
    padding: 50px 20px;
  }

  .equipmentandmaintence-section .headline {
    font-size: 2.5rem;
  }

  .equipmentandmaintence-section .subheadline {
    font-size: 1.1rem;
  }
}

/* ===============================
   DRIVER ONLINE APPLICATION SECTION
=============================== */
.driveronlineapplication-section {
  height: 80vh;
  background-image: url("images/Driver-online-application.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  padding: 5% 5%;
  color: #fff;
}

.driveronlineapplication-section .hero-content {
  max-width: 600px;
  text-align: left;
  color: #fff;
}

.driveronlineapplication-section .headline {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}

.driveronlineapplication-section .subheadline {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #e0e0e0;
}

@media (max-width: 768px) {
  .driveronlineapplication-section {
    height: 90vh;
    padding: 50px 20px;
  }

  .driveronlineapplication-section .headline {
    font-size: 2.5rem;
  }

  .driveronlineapplication-section .subheadline {
    font-size: 1.1rem;
  }
}

/* ===============================
   CUSTOMER TOOLS ONLINE BOOKING SECTION
=============================== */
.customertoolsonlinebooking-section {
  height: 80vh;
  background-image: url("images/Customer-tools-online-booking.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  padding: 5% 5%;
  color: #fff;
}

.customertoolsonlinebooking-section .hero-content {
  max-width: 600px;
  text-align: left;
  color: #fff;
}

.customertoolsonlinebooking-section .headline {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}

.customertoolsonlinebooking-section .subheadline {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #e0e0e0;
}

@media (max-width: 768px) {
  .customertoolsonlinebooking-section {
    height: 90vh;
    padding: 50px 20px;
  }

  .customertoolsonlinebooking-section .headline {
    font-size: 2.5rem;
  }

  .customertoolsonlinebooking-section .subheadline {
    font-size: 1.1rem;
  }
}

/* ===============================
   SHIPMENT TRACKING SECTION
=============================== */
.shipmenttracking-section {
  height: 80vh;
  background-image: url("images/customer-tools-shipment-tracking.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  padding: 5% 5%;
  color: #fff;
}

.shipmenttracking-section .hero-content {
  max-width: 600px;
  text-align: left;
  color: #fff;
}

.shipmenttracking-section .headline {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}

.shipmenttracking-section .subheadline {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #e0e0e0;
}

@media (max-width: 768px) {
  .shipmenttracking-section {
    height: 90vh;
    padding: 50px 20px;
  }

  .shipmenttracking-section .headline {
    font-size: 2.5rem;
  }

  .shipmenttracking-section .subheadline {
    font-size: 1.1rem;
  }
}

/* ===============================
   ROUTE OPTIMIZATION SECTION
=============================== */
.routeoptimization-section {
  height: 80vh;
  background-image: url("images/Customer-tools-route-optimization.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  padding: 5% 5%;
  color: #fff;
}

.routeoptimization-section .hero-content {
  max-width: 600px;
  text-align: left;
  color: #fff;
}

.routeoptimization-section .headline {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}

.routeoptimization-section .subheadline {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #e0e0e0;
}

@media (max-width: 768px) {
  .routeoptimization-section {
    height: 90vh;
    padding: 50px 20px;
  }

  .routeoptimization-section .headline {
    font-size: 2.5rem;
  }

  .routeoptimization-section .subheadline {
    font-size: 1.1rem;
  }
}

/* ===============================
   CUSTOMER PORTAL SECTION
=============================== */
.customerportal-section {
  height: 80vh;
  background-image: url("images/Customer-tools-customer-portal.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  padding: 5% 5%;
  color: #fff;
}

.customerportal-section .hero-content {
  max-width: 600px;
  text-align: left;
  color: #fff;
}

.customerportal-section .headline {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}

.customerportal-section .subheadline {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #e0e0e0;
}

@media (max-width: 768px) {
  .customerportal-section {
    height: 90vh;
    padding: 50px 20px;
  }

  .customerportal-section .headline {
    font-size: 2.5rem;
  }

  .customerportal-section .subheadline {
    font-size: 1.1rem;
  }
}


  



 

/* ===========================
   ABOUT SECTION WRAPPER
=========================== */
.about-section2.table3 {
   flex: 1 1 300px; 
    max-width: 330px;
    background: #ffffff;
    border-radius: 15px;
    padding: 0;
    border: 1px solid lightgoldenrodyellow;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-section2.table3:hover {
	
	transform: translateY(-6px);
    box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.18);
	
}


/* ===========================
   TABLE CONTAINER ? GRID
=========================== */
.table-container {
    display: grid;
	margin-left: auto;
    grid-template-columns: repeat(auto-fit, minmax(280px, 3fr)); /* auto-fit ensures responsiveness */
    gap: 30px;
    justify-content: center; /* center grid if fewer tables */
    padding: 20px;
}


/* ===========================
   INDIVIDUAL TABLE CARD
=========================== */
.table {
    background: #FFFFFF;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform .3s ease, box-shadow .3s ease;
}

.table:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}


/* ===========================
   TABLE HEADER
=========================== */
.table th {
    background-color: #333;
    color: #FFFFFF;
    text-align: center;
    font-size: 18px;
    padding: 18px;
}


/* ===========================
   TABLE BODY
=========================== */
.table td {
    padding: 15px;
    text-align: left;
    font-size: 20px;
    color: #333;
}


/* ===========================
   IMAGE INSIDE TABLE
=========================== */
.table img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: transform .35s ease, box-shadow .35s ease;
}

.table img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}


/* ===========================
   ABOUT SECTION SIDE-BY-SIDE
=========================== */
.section-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 40px 2%;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    background-color: black;
    padding: 20px;
}

.image-container, .content-container {
    flex: 1;
    min-width: 280px;
    margin: 10px;
}

.image-container img {
    width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 15px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
    object-fit: cover;
    background: #fff;
}

.content-container {
    color: white;
    padding: 20px;
    border: 2px outset lightgoldenrodyellow;
    border-radius: 15px;
    background-color: black;
}

.content-container h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: white;
}

.content-container h3 {
    margin-bottom: 15px;
}

.content-container p {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 20px;
}


/* ===========================
   MEDIA QUERIES
=========================== */

/* Tablet: 2 tables per row */
@media (max-width: 992px) {
    .table-container {
		margin:auto;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .section-container {
        flex-direction: column;
        padding: 15px;
    }
}

/* Mobile: 1 table per row */
@media (max-width: 600px) {
    .table-container {
		margin-left:40px;
		
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .section-container {
        padding: 10px;
    }

    .content-container {
        padding: 15px;
    }

    .content-container h2 {
        font-size: 24px;
    }

    .table img {
        height: 180px;
    }
}










/* Mobile View (screens narrower than 600px) */

 .section-container {
			 margin:2%;
            width: 100%;
            max-width: 100%;
            height: 100%;
            background-color: black;
            display: flex;
	 
    border-radius: 15px; /* Rounded corners for the container */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
        }

        .image-container {
			
            flex: 1;	
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .image-container img {
			width: 70%;
			height: 80%;
            max-width: 100%;
            max-height: 100%;
			 border-radius: 15px; /* Adjust the value to change the roundness of the corners */
    box-shadow: 10px 4px 8px rgba(1, 1, 1, 1); /* Adjust the values for the shadow effect */
    background: #ffffff; /* Adjust the background color */
        }

        .content-container {
			width:80%;
			height:100%;
			border:outset;
			border-color:lightgoldenrodyellow;
			border-radius: 15px;
			margin:5%;
            flex: 1;
            padding: 40px;
            background-color: black;
            color: white;
        }

        h2 {
            font-size: 28px;
            margin-left: 7px;
			margin-bottom:20px;
			color:white;
        }
h3{
	margin:7px;
}

       

.content-container p {
        margin-top: 30px; /* Adjust the value as needed */
        text-align: left;
        font-size: 16px;
        line-height: 1.5;
        color: #ffffff;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }



























.service-section {
  height: 80vh;
  background-image: url("images/hero-img-3.jpg");
  background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center; /* Centers content vertically */
    padding: 5% 5%; /* Responsive padding */
    color: #fff; /* Default text color for better contrast */
  }

  /* Content container */
  .hero-content {
    max-width: 600px; /* Limits the width of the content */
    text-align: left; /* Aligns text to the left */
    color: #fff; /* White text for readability */
  }

  /* Headline styling */
  .headline {
    font-size: 3rem; /* Large headline for prominence */
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff; /* Clean white color for modern look */
  }

  /* Subheadline styling */
  .subheadline {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #e0e0e0; /* Slightly lighter gray for subheadline */
  }

  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .hero-section {
      height: 90vh; /* Adjust height for smaller screens */
      padding: 50px 20px; /* Reduce padding */
    }

    .headline {
      font-size: 2.5rem; /* Adjust heading size for smaller screens */
    }

    .subheadline {
      font-size: 1.1rem; /* Adjust subheadline size for smaller screens */
    }
  }





         table {
			font-display: block;
			height: 200px;
            width:300px;
            background-color: #EFEFEF;
            border-collapse: collapse;
            border-radius: 10px;
            overflow: hidden;
			 box-shadow: 5px 5px 5px #888;
			padding-top: 10px ;
			
  outline: none;
        }

        th, td {
            border: 0px solid #565656;
            padding: 10px;
			padding-bottom:10px;
            text-align:center;
            color: black;
        }

        th {
            background-col: none;
            
        }


.section-container1 {
			 margin:5%;
            width: 100%;
            max-width: 100%;
            height: 70%;
            background-color: black;
            display: flex;
        }

        .image-container {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .image-container img {
            max-width: 70%;
            max-height: 80%;
        }

        .content-container1 {
			 max-width: 80%;
            max-height: 100%;
			border:outset;
			border-color:lightgoldenrodyellow;
			border-radius: 15px;
			margin:5%;
            flex: 1;
            padding: 40px;
            background-color: black;
            color: white;
        }

        h2 {
            font-size: 24px;
            margin-left: 7px;
			margin-bottom:20px;
			color:white;
        }
h3{
	margin:7px;
}

        .content-container1 p {
        margin-top: 30px; /* Adjust the value as needed */
        text-align: left;
        font-size: 16px;
        line-height: 1.5;
        color: #ffffff;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }


    .hero {
            
            height: 400px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            text-align: center;
            background-color: rgba(0, 0, 0, 0.7);
        }

        .hero h1 {
            font-size: 3.5em;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }

        .hero p {
            font-size: 1.3em;
            margin-top: 15px;
            max-width: 600px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
			color: #fff;
        }

        .hero .btn {
            margin-top: 30px;
            padding: 15px 40px;
            background-color: #fff;
            color: #000;
            border: none;
            border-radius: 50px;
            font-size: 1.2em;
            cursor: pointer;
            text-decoration: none;
            transition: background-color 0.3s;
        }

        .hero .btn:hover {
            background-color: #aa8119;
        }

        /* Content and Form Split Section */
        .split-section {
            display: flex;
            flex-wrap: wrap;
            padding: 50px 0;
            background-color: #fff;
        }

        .split-section .content, .split-section .form-container {
            width: 50%;
            padding: 30px;
            box-sizing: border-box;
			
        }

        .split-section .content {
            background-color: #f9f9f9;
            color: #333;
			
        }

        .split-section h2 {
            font-size: 2.2em;
            margin-bottom: 20px;
            color: #aa8119;
        }

        .split-section ul, .split-section ol {
            padding-left: 20px;
        }

        .split-section li {
            font-size: 1.1em;
            margin-bottom: 15px;
        }

        .split-section ol {
            list-style: none;
            counter-reset: step;
        }

        .split-section ol li {
            counter-increment: step;
            position: relative;
            margin-bottom: 20px;
        }

        .split-section ol li::before {
            content: counter(step);
            position: absolute;
            top: -5px;
            left: -35px;
            font-size: 1.4em;
            color: #aa8119;
            background-color: #fff;
            border: 2px solid #aa8119;
            width: 30px;
            height: 30px;
            text-align: center;
            line-height: 28px;
            border-radius: 50%;
        }

        /* Form Section Styling */
        .form-container {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            padding: 30px;
        }

        .form-container h2 {
            font-size: 2.2em;
            margin-bottom: 20px;
            color: #333;
        }

        label {
            display: block;
            margin-bottom: 10px;
            font-weight: bold;
        }

        input[type="text"], input[type="email"], input[type="tel"], input[type="date"], input[type="number"], textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1em;
            background-color: #f9f9f9;
        }

        input[type="submit"] {
            background-color: #000;
            color: #fff;
            padding: 12px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1.2em;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        input[type="submit"]:hover {
            background-color: #aa8119;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .split-section {
                flex-direction: column;
            }

            .split-section .content, .split-section .form-container {
                width: 100%;
            }

            .hero h1 {
                font-size: 2.5em;
            }

            .hero p {
                font-size: 1.1em;
            }

            .hero .btn {
                padding: 10px 30px;
            }
        }








 .tracking-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: center;
            margin-bottom: 30px;
	 margin-left: 10%;
        }
        label {
            font-size: 1.1em;
            color: #000;
        }
        input[type="text"] {
            padding: 10px;
            border-radius: 5px;
            border: 1px solid #000;
            width: 100%;
            max-width: 400px;
            background-color: #fff;
            color: #000;
        }
        button1 {
           display: inline-block;
    margin-top: 10px;
    padding: 10px 20px; /* Padding for button */
    background-color: #000; /* Button background */
    color: #fff; /* Button text color */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners for button */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
        }
        button1:hover {
            background-color: #aa8119;
        }
        #result {
            padding: 10px;
            background-color: #fff;
            border-radius: 5px;
            color: #fff;
            text-align: center;
            margin-top: 15px;
        }

        /* Responsive Adjustments */
       
 














 .contact-container {
    margin: 5%;
    width: 100%;
    max-width: 100%;
    background-color: black;
    display: inline-flex;
}

.image-container1 {
    flex: 3;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 10px;
}

.image-container1 img {
    max-width: 70%;
    height: 100%; /* Set the height to 100% */
    border-radius: 5%; /* Make the image round */
}

.contact-content {
    border: outset;
    border-color: lightgoldenrodyellow;
    border-radius: 15px;
    margin: 7%;
    flex: 1;
    padding: 30px;
    background-color: black;
    color: white;
}

section4 {
    max-width: 100%;
    margin: 10px auto;
    background-color: none;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 8px;
}

input,
textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 16px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
   margin-top:7%;
    padding: 10px 20px;
    background-color: #ffffff;
    color: #000000;
	
    border: none;
    border-radius: 4px;
	 
    cursor: pointer;
	 transition: background-color 0.3s ease, color 0.3s ease;
}

button:hover {
     background-color: #AA8119;
	color:#ffffff;
	 font-weight: bold; /* Optional: Increase font weight on hover */

}
















    .Customer-section {
  height: 80vh;
  background-image: url("images/hero-img-5.jpg");
 background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center; /* Centers content vertically */
    padding: 5% 5%; /* Responsive padding */
    color: #fff; /* Default text color for better contrast */
  }

  /* Content container */
  .hero-content {
    max-width: 600px; /* Limits the width of the content */
    text-align: left; /* Aligns text to the left */
    color: #fff; /* White text for readability */
  }

  /* Headline styling */
  .headline {
    font-size: 3rem; /* Large headline for prominence */
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff; /* Clean white color for modern look */
  }

  /* Subheadline styling */
  .subheadline {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #e0e0e0; /* Slightly lighter gray for subheadline */
  }

  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .hero-section {
      height: 90vh; /* Adjust height for smaller screens */
      padding: 50px 20px; /* Reduce padding */
    }

    .headline {
      font-size: 2.5rem; /* Adjust heading size for smaller screens */
    }

    .subheadline {
      font-size: 1.1rem; /* Adjust subheadline size for smaller screens */
    }
  }




        table {
			font-display: block;
			height: 200px;
            width:300px;
            background-color: #EFEFEF;
            border-collapse: collapse;
            border-radius: 10px;
            overflow: hidden;
			 box-shadow: 5px 5px 5px #888;
			padding-top: 10px ;
			
  outline: none;
        }

        th, td {
            border: 0px solid #565656;
            padding: 10px;
			padding-bottom:1000 px;
            text-align:center;
            color: black;
        }

        th {
            background-col: none;
            
        }



















.tools-container {
    max-width: 1200px; /* Max width for larger screens */
    margin: 20px auto; /* Centering the container */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Responsive grid layout */
    gap: 20px; /* Space between grid items */
    padding: 20px;
    background-color: none; /* White background for contrast */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

.tool {
    background-color: #fff; /* White background for each tool */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    padding: 20px;
    text-align: center; /* Center text for tools */
    transition: transform 0.3s; /* Smooth transform on hover */
}

.tool:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

.tool img {
    max-width: 100%; /* Make images responsive */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Rounded corners for images */
}

h20{
    color: #333; /* Darker color for tool titles */
    font-size: 1.5rem; /* Title size */
    margin: 15px 0 10px; /* Margin for spacing */
}

p {
    margin: 5px 0; /* Spacing for paragraphs */
    font-size: 0.9rem; /* Font size for descriptions */
}

.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px; /* Padding for button */
    background-color: #AA8119; /* Button background */
    color: white; /* Button text color */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners for button */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

.btn:hover {
    background-color: black; /* Darker shade on hover */
}











.main-content {
    max-width: 900pX; /* Limit the width for readability */
    margin: 20px auto;
    padding: 20px;
}

h2 {
    color: black; /* Gold color for section titles */
    font-size: 2rem; /* Title size */
    margin-bottom: 10px;
}

p {
    font-size: 1rem;
    color: #333; /* Darker text color for readability */
}

.section-image {
    width: 100%; /* Full width for images */
    border-radius: 8px; /* Rounded corners */
    margin-bottom: 15px; /* Space below images */
}

.intro-section, .culture-section, .positions-section, .benefits-section, .apply-section {
    background-color: white; /* White background for sections */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    margin-bottom: 20px; /* Space between sections */
    padding: 20px;
}

.job-listing {
    border-bottom: 1px solid #e0e0e0; /* Light divider for job listings */
    padding: 15px 0;
}

.job-listing:last-child {
    border-bottom: none; /* Remove border from the last job listing */
}

.job-image {
    width: 100%; /* Full width for job images */
    border-radius: 8px; /* Rounded corners for job images */
    margin-bottom: 10px; /* Space below job images */
}

.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px; /* Padding for button */
    background-color: black; /* Button background */
    color: white; /* Button text color */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners for button */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

.btn:hover {
    background-color: #AA8119; /* Darker shade on hover */
}

.footer {
    text-align: center;
    padding: 20px 0;
    background-color: black;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2rem; /* Smaller font size on mobile */
    }

    .job-listing h3 {
        font-size: 1.5rem; /* Smaller title size on mobile */
    }

    .job-listing p {
        font-size: 0.9rem; /* Smaller paragraph size on mobile */
    }

    .btn {
        padding: 8px 16px; /* Smaller button size on mobile */
    }
}




         table {
			font-display: block;
			height: 200px;
            width:300px;
            background-color: #EFEFEF;
            border-collapse: collapse;
            border-radius: 10px;
            overflow: hidden;
			 box-shadow: 5px 5px 5px #888;
			padding-top: 10px ;
			
  outline: none;
        }

        th, td {
            border: 0px solid #565656;
            padding: 10px;
			padding-bottom:1000 px;
            text-align:center;
            color: black;
        }

        th {
            background-col: none;
            
        }








.driver-section {
  height: 80vh;
  background-image: url("images/hero-img-6.jpg");
  background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center; /* Centers content vertically */
    padding: 5% 5%; /* Responsive padding */
    color: #fff; /* Default text color for better contrast */
  }

  /* Content container */
  .hero-content {
    max-width: 600px; /* Limits the width of the content */
    text-align: left; /* Aligns text to the left */
    color: #fff; /* White text for readability */
  }

  /* Headline styling */
  .headline {
    font-size: 3rem; /* Large headline for prominence */
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff; /* Clean white color for modern look */
  }

  /* Subheadline styling */
  .subheadline {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #e0e0e0; /* Slightly lighter gray for subheadline */
  }

  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .hero-section {
      height: 90vh; /* Adjust height for smaller screens */
      padding: 50px 20px; /* Reduce padding */
    }

    .headline {
      font-size: 2.5rem; /* Adjust heading size for smaller screens */
    }

    .subheadline {
      font-size: 1.1rem; /* Adjust subheadline size for smaller screens */
    }
  }





        table {
			font-display: block;
			height: 200px;
            width:300px;
            background-color: #EFEFEF;
            border-collapse: collapse;
            border-radius: 10px;
            overflow: hidden;
			 box-shadow: 5px 5px 5px #888;
			padding-top: 10px ;
			
  outline: none;
        }

        th, td {
            border: 0px solid #565656;
            padding: 10px;
			padding-bottom:1000 px;
            text-align:center;
            color: black;
        }

        th {
            background-col: none;
            
        }


section {
            padding: 60px 0;
        }

        /* Benefits Section */
        .benefits {
            text-align: center;
        }
        .benefits h2 {
            font-size: 2.5em;
            margin-bottom: 40px;
        }
        .benefit-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        .benefit {
            background-color:#fff;
            padding: 30px;
            border-radius: 8px;
            transition: transform 0.3s ease;
            text-align: center;
        }
        .benefit:hover {
            transform: scale(1.05);
        }
        .benefit img {
            width: 60px;
            height: 60px;
            margin-bottom: 20px;
        }
        .benefit h3 {
            font-size: 1.5em;
            margin-bottom: 10px;
        }
        .benefit p {
            font-size: 1em;
            color: #000;
        }

        /* Testimonials Section */
        .testimonials {
            background-color: #fff;
            padding: 60px 20px;
            border-radius: 8px;
            text-align: center;
        }
        .testimonials h2 {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2.5em;
        }
        .testimonial {
            margin-bottom: 20px;
            font-style: italic;
            font-size: 1.2em;
        }
        .testimonial img {
            border-radius: 50%;
            width: 100px;
            height: 100px;
            margin: 20px 0;
        }

        /* Job Openings Section */
        .jobs {
            text-align: center;
        }
        .jobs h2 {
            font-size: 2.5em;
            margin-bottom: 40px;
        }
        .job-listing {
            background-color: #fff;
            padding: 20px;
            margin: 10px 0;
            border-radius: 8px;
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .job-listing:hover {
            transform: scale(1.05);
        }
        .job-listing img {
            width: 100px;
            height: 100px;
            margin-right: 20px;
            border-radius: 8px;
        }
        .job-listing h3 {
            font-size: 1.5em;
            margin-bottom: 10px;
        }
        .job-listing p {
            font-size: 1.1em;
            color: #000;
            margin-bottom: 20px;
        }
        .job-listing a {
            background-color: #000;
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        .job-listing a:hover {
            background-color: #AA8119;
        }

        /* FAQs Section */
        .faq {
            background-color: #fff;
            padding: 60px;
            border-radius: 8px;
        }
        .faq h2 {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2.5em;
        }
        .question {
            background-color: #CBCBCB;
            padding: 20px;
            margin: 10px 0;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .question:hover {
            background-color: #D3D0D0;
        }

        /* Footer Styling */
        footer {
            background-color: #111;
            text-align: center;
            padding: 40px;
            color: #ccc;
            margin-top: 40px;
        }
        footer p {
            margin-bottom: 10px;
        }

        /* Media Queries for Mobile */
        @media (max-width: 768px) {
            header h1 {
                font-size: 2.5em;
            }
            header p {
                font-size: 1.2em;
            }
            .benefits .benefit {
                padding: 20px;
            }
            .job-listing {
                flex-direction: column;
                align-items: flex-start;
            }
        }






















.Contact-section {
  height: 80vh;
  background-image: url("images/hero-img-7.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  padding: 0 100px;
  align-items: center;
}




         table {
			font-display: block;
			height: 200px;
            width:300px;
            background-color: #EFEFEF;
            border-collapse: collapse;
            border-radius: 10px;
            overflow: hidden;
			 box-shadow: 5px 5px 5px #888;
			padding-top: 10px ;
			
  outline: none;
        }

        th, td {
            border: 0px solid #565656;
            padding: 10px;
			padding-bottom:1000 px;
            text-align:center;
            color: black;
        }

        th {
            background-col: none;
            
        }
 





   
.footer {
  background: linear-gradient(180deg, #000 0%, #111 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 60px 20px 30px;
  position: relative;
  overflow: hidden;
}

/* Decorative accent (thin gold line) */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #aa8119, transparent);
  transform: translateX(-50%);
}

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

.footer-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2.5rem;
}

.footer-col h4 {
  color: #aa8119;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-col ul li {
  margin: 10px 0;
}

.footer-col ul li a {
  color: #c4bebe;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

/* Newsletter Section */
.newsletter {
  text-align: center;
}

.newsletter p {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 10px;
}

.newsletter form {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 5px;
  max-width: 350px;
  margin: 0 auto;
}

.newsletter input[type="email"] {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 40px;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 0.95rem;
}

.newsletter button {
  background-color: #aa8119;
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.newsletter button:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-2px);
}

/* Social Icons */
.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  color: #aa8119;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #aa8119;
  color: #fff;
  transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #222;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #bbb;
  margin: 5px 0;
}

.footer-bottom a {
  color: #aa8119;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #fff;
}

/* ================================
   Responsive Design
=================================*/
@media (max-width: 768px) {
  .footer {
    padding: 50px 15px 20px;
    text-align: center;
  }

  .footer-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .newsletter {
  text-align: center;
  margin: 30px 0;
}

.newsletter h4 {
  color: #aa8119;
  font-size: 1.3rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.newsletter p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 20px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Newsletter Form */
.newsletter form {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1a1a1a;
  border-radius: 50px;
  padding: 5px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  box-shadow: 0 0 8px rgba(170, 129, 25, 0.25);
  transition: box-shadow 0.3s ease;
}

.newsletter form:hover {
  box-shadow: 0 0 12px rgba(170, 129, 25, 0.45);
}

/* Email Input */
.newsletter input[type="email"] {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 14px 20px;
  color: #fff;
  font-size: 1rem;
  border-radius: 50px;
}

.newsletter input::placeholder {
  color: #aaa;
}

.newsletter input:focus::placeholder {
  color: #777;
}

/* Subscribe Button */
.newsletter button {
  background-color: #aa8119;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 25px;
  margin-left: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter button:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-2px);
}

/* ================================
   Responsive Mobile
=================================*/
@media (max-width: 768px) {
  .newsletter form {
    flex-direction: column;
    width: 90%;
    background: transparent;
    box-shadow: none;
  }

  .newsletter input[type="email"] {
    width: 100%;
    background-color: #fff;
    color: #000;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 14px;
  }

  .newsletter button {
    width: 100%;
    border-radius: 8px;
    margin-left: 0;
  }
}







/* ===== AIGLE ROYAL PHP / PORTAL COMPONENTS ===== */
body.portal-page{background:#fff;color:#1b1b1b;line-height:1.6}
.portal-main{max-width:1280px;margin:0 auto;padding:55px 40px;min-height:60vh}
.portal-main h1,.portal-main h2,.portal-main h3{color:#111;margin-bottom:16px}
.portal-main p{margin-bottom:15px}
.portal-container{max-width:900px;margin:0 auto}
.portal-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;margin:25px 0}
.portal-card{background:#fff;border:1px solid #e5e5e5;border-radius:12px;padding:25px;box-shadow:0 8px 25px rgba(0,0,0,.08)}
.portal-card h3{margin-bottom:10px}
.portal-form{max-width:760px;display:grid;gap:18px;background:#fff;padding:30px;border:1px solid #e5e5e5;border-radius:12px;box-shadow:0 8px 25px rgba(0,0,0,.06)}
.portal-form label{display:grid;gap:7px;font-weight:600}
.portal-form input,.portal-form select,.portal-form textarea{width:100%;padding:12px 14px;border:1px solid #ccc;border-radius:7px;font:inherit;background:#fff}
.portal-form input:focus,.portal-form select:focus,.portal-form textarea:focus{outline:2px solid rgba(170,129,25,.3);border-color:#AA8119}
.portal-btn{display:inline-block;border:1px solid #AA8119;background:#AA8119;color:#fff!important;padding:11px 20px;border-radius:6px;text-decoration:none;font-weight:600;cursor:pointer}
.portal-btn:hover{background:#000;border-color:#AA8119}
.portal-alert{padding:13px 16px;border-left:4px solid #AA8119;background:#f7f3e8;margin:0 0 20px;border-radius:4px}
.portal-table-wrap{overflow-x:auto;margin:25px 0;border:1px solid #e5e5e5;border-radius:10px}
.portal-table{width:100%;border-collapse:collapse;background:#fff}
.portal-table th,.portal-table td{padding:13px 15px;border-bottom:1px solid #eee;text-align:left;white-space:nowrap}
.portal-table th{background:#111;color:#fff;font-weight:600}
.portal-table tr:hover td{background:#fafafa}
.portal-status{display:inline-block;padding:4px 10px;border-radius:999px;background:#f2eee4;color:#6d5310;font-size:.88rem;font-weight:600}
.portal-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}
.portal-footer{background:#111;color:#fff;padding:40px}
.portal-footer .portal-footer-inner{max-width:1280px;margin:auto}
@media(max-width:900px){.portal-main{padding:40px 25px}.portal-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:600px){.portal-main{padding:30px 18px}.portal-grid{grid-template-columns:1fr}.portal-form{padding:20px}.portal-footer{padding:30px 18px}}

/* Phase 2-5 portal UI */
.form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px;margin-bottom:20px}
.portal-form label{display:block;font-weight:600;margin-bottom:16px}
.portal-form input,.portal-form select,.portal-form textarea{display:block;width:100%;margin-top:7px;padding:12px 14px;border:1px solid #d8dee7;border-radius:6px;background:#fff;font:inherit;box-sizing:border-box}
.portal-form textarea{min-height:120px;resize:vertical}
.portal-form input:focus,.portal-form select:focus,.portal-form textarea:focus{outline:2px solid rgba(20,86,150,.18);border-color:#145696}
.portal-form .btn,.btn{display:inline-block;border:0;border-radius:6px;padding:12px 22px;cursor:pointer;font-weight:700;text-decoration:none}
.table-wrap{overflow-x:auto}
.portal-card h2,.portal-card h3{margin-top:0}
@media(max-width:768px){.form-grid{grid-template-columns:1fr;gap:0}}

/* ===== Expanded business navigation: compact desktop layout ===== */
@media (min-width: 851px) and (max-width: 1450px) {
  header .navbar { max-width: 1400px; padding: 12px 22px; }
  .navbar .logo { font-size: 1.35rem; letter-spacing: .6px; }
  .navbar .menu-links { gap: 8px; }
  .navbar .menu-links li a { font-size: .76rem; white-space: nowrap; }
  .navbar .join-btn a { padding: 7px 11px; }
  .navbar .dropdown-menu { min-width: 205px; }
}

@media (min-width: 851px) and (max-width: 1150px) {
  .navbar .menu-links { gap: 5px; }
  .navbar .menu-links li a { font-size: .68rem; }
  .navbar .join-btn a { padding: 6px 8px; }
}


/* ===== AIGLE ROYAL PROFESSIONAL NAVIGATION ===== */
.navbar .brand{display:flex;align-items:center;flex:0 0 auto;text-decoration:none}
.navbar .brand img{display:block;max-height:54px;width:auto;max-width:155px;object-fit:contain}
.navbar .menu-links{gap:clamp(12px,1.35vw,24px);white-space:nowrap}
.navbar .menu-links>li>a{font-size:.9rem;letter-spacing:.1px}
.navbar .menu-links>li.dropdown>a{padding:10px 0}
.navbar .join-btn a{padding:9px 16px;font-size:.82rem;border-radius:5px}
.navbar .dropdown-menu{width:255px}
@media (min-width:851px){
 .navbar{max-width:1440px;padding:12px 28px}
 .navbar .menu-links{margin-left:auto}
}
@media (max-width:1150px) and (min-width:851px){
 .navbar{padding-left:18px;padding-right:18px}
 .navbar .menu-links{gap:10px}
 .navbar .menu-links>li>a{font-size:.78rem}
 .navbar .brand img{max-width:125px}
 .navbar .join-btn a{padding:8px 11px;font-size:.75rem}
}
@media (max-width:850px){
 .navbar .brand img{max-height:48px;max-width:135px}
 .navbar .menu-links>li>a{font-size:1rem}
}

/* ===== AIGLE ROYAL PROFESSIONAL HEADER OVERRIDES ===== */
header { padding: 10px 0; }
header .navbar { max-width: 1380px; min-height: 78px; padding: 10px 28px; gap: 22px; }
.navbar .brand { display:flex; align-items:center; flex:0 0 auto; text-decoration:none; }
.navbar .brand img { width: 175px; max-height: 62px; height:auto; object-fit:contain; display:block; }
.navbar .menu-links { gap: 14px; margin-left:auto; }
.navbar .menu-links > li > a { font-size: .91rem; font-weight: 500; padding: 9px 5px; white-space:nowrap; }
.navbar .dropdown-menu { width: 250px; }
.navbar .join-btn a { padding: 9px 15px; font-size: .82rem; white-space:nowrap; }
@media (max-width: 1180px) and (min-width: 851px) { .navbar .brand img{width:150px;} .navbar .menu-links{gap:8px;} .navbar .menu-links > li > a{font-size:.82rem;padding:8px 3px;} .navbar .join-btn a{padding:8px 11px;} }
@media (max-width: 850px) { header{padding:8px 0;} header .navbar{min-height:68px;padding:8px 20px;} .navbar .brand img{width:155px;max-height:56px;} .navbar .menu-links{gap:14px;} }
body.menu-open { overflow:hidden; }


/* AIGLE ROYAL — MASTER FOOTER / NAVIGATION MATCH */
.footer {
  width:100%; margin-top:70px; background:#0b0d10; color:#fff; padding:58px 28px 24px;
  border-top:3px solid #aa8119; box-sizing:border-box;
}
.footer-container { max-width:1380px; margin:0 auto; }
.footer-row { display:grid; grid-template-columns:1.45fr repeat(4,1fr); gap:34px; align-items:start; }
.footer-col { min-width:0; }
.footer-col h4 { margin:0 0 17px; color:#aa8119; font-size:14px; font-weight:700; letter-spacing:.8px; text-transform:uppercase; }
.footer-col p { color:#bfc3c8; line-height:1.7; font-size:14px; margin:0 0 16px; }
.footer-col ul.links { list-style:none; padding:0; margin:0; }
.footer-col ul.links li { margin:0 0 10px; }
.footer-col ul.links li a { color:#d7d9dc; text-decoration:none; font-size:14px; transition:color .2s ease, padding-left .2s ease; }
.footer-col ul.links li a:hover { color:#fff; padding-left:4px; }
.footer-brand { padding-right:12px; }
.footer-brand h4 { color:#fff; font-size:17px; letter-spacing:.4px; }
.footer-cta { display:inline-flex; align-items:center; justify-content:center; padding:10px 17px; border:1px solid #aa8119; color:#fff !important; text-decoration:none; text-transform:uppercase; font-size:12px; font-weight:700; letter-spacing:.7px; border-radius:4px; }
.footer-cta:hover { background:#aa8119; color:#fff !important; }
.footer-note { margin-top:14px !important; font-size:13px !important; }
.footer-bottom { margin-top:38px; padding-top:19px; border-top:1px solid rgba(255,255,255,.12); display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.footer-bottom p { margin:0; font-size:12px; color:#92979d; }
.footer-bottom a { color:#c9cdd1; text-decoration:none; }
.footer-bottom a:hover { color:#fff; }
@media (max-width:1100px) { .footer-row { grid-template-columns:1.5fr repeat(2,1fr); } }
@media (max-width:768px) { .footer { padding:45px 20px 22px; margin-top:50px; } .footer-row { grid-template-columns:1fr 1fr; gap:30px 24px; } .footer-brand { grid-column:1 / -1; padding-right:0; } .footer-bottom { flex-direction:column; text-align:center; align-items:center; } }
@media (max-width:520px) { .footer-row { grid-template-columns:1fr; gap:24px; } .footer-brand { grid-column:auto; } .footer-col h4 { margin-bottom:12px; } }


/* MOBILE NAVIGATION FINAL FIX */
@media (max-width:850px){
  .navbar .menu-links .dropdown-menu{display:none !important; visibility:visible; opacity:1; position:static; transform:none;}
  .navbar .menu-links .dropdown.open > .dropdown-menu{display:block !important;}
  .navbar .menu-links .dropdown:hover > .dropdown-menu{display:none !important;}
  .navbar .menu-links .dropdown.open:hover > .dropdown-menu{display:block !important;}
  .navbar .menu-links .dropdown > a::after{content:"\25BC";}
  .navbar .menu-links .dropdown.open > a::after{transform:rotate(180deg);}
}


/* =========================================================
   AIGLE ROYAL — MOBILE SPACING & LAYOUT POLISH
   Keeps the existing style.css design while improving
   breathing room, touch targets and page rhythm on phones.
   ========================================================= */
@media (max-width: 850px) {
  header { padding: 0; }
  header .navbar {
    min-height: 70px;
    height: auto;
    padding: 10px 18px;
    gap: 12px;
  }
  .navbar .brand img {
    width: 148px;
    max-width: 148px;
    max-height: 52px;
  }
  #hamburger-btn {
    margin-left: auto;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 6px;
  }
  .navbar .menu-links {
    width: min(86vw, 340px);
    max-width: 340px;
    padding: 78px 20px 28px;
    gap: 0;
  }
  #close-menu-btn {
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
  }
  .menu-links > li {
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,.09);
  }
  .menu-links > li > a {
    min-height: 48px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 12px 2px;
    font-size: 15px;
    line-height: 1.3;
  }
  .menu-links > li.dropdown > a {
    padding-right: 4px;
  }
  .menu-links .dropdown-menu {
    width: 100%;
    box-sizing: border-box;
    margin: 0 0 10px;
    padding: 5px 12px 5px 16px;
    border-left-width: 2px;
    border-radius: 4px;
  }
  .menu-links .dropdown-menu li {
    padding: 0;
  }
  .menu-links .dropdown-menu li a {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 9px 5px;
    font-size: 14px;
    line-height: 1.35;
  }
  .menu-links .join-btn {
    margin-top: 14px;
    border-bottom: 0;
  }
  .menu-links .join-btn a {
    min-height: 46px;
    justify-content: center;
    padding: 11px 14px;
  }
  body { overflow-x: hidden; }
  main, .main-content, .container, .wrapper, .wrapper1 {
    width: 100%;
    box-sizing: border-box;
  }
  section {
    scroll-margin-top: 82px;
  }
  .hero-section {
    min-height: 420px;
    height: auto;
    padding: 72px 20px 58px;
    box-sizing: border-box;
  }
  .hero-content {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
  }
  .headline {
    margin: 0 0 14px;
    font-size: clamp(2rem, 8vw, 2.6rem);
    line-height: 1.15;
  }
  .subheadline {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
  }
  .hero-section2,
  .hero-section3,
  .hero-section4 {
    padding-left: 18px;
    padding-right: 18px;
  }
  .black-heading {
    margin: 18px 0;
    padding: 22px 20px;
    font-size: clamp(1.65rem, 7vw, 2.2rem);
    line-height: 1.2;
  }
  .card, .card1, .table3, .service-card {
    margin-bottom: 18px;
  }
  .footer {
    margin-top: 42px;
    padding: 40px 18px 20px;
  }
}

@media (max-width: 520px) {
  header .navbar { padding: 9px 15px; min-height: 66px; }
  .navbar .brand img { width: 138px; max-width: 138px; max-height: 48px; }
  #hamburger-btn { width: 42px; height: 42px; font-size: 26px; }
  .navbar .menu-links {
    width: min(88vw, 330px);
    padding: 72px 17px 24px;
  }
  #close-menu-btn { top: 15px; right: 15px; }
  .menu-links > li > a { min-height: 46px; font-size: 14.5px; }
  .menu-links .dropdown-menu li a { min-height: 40px; font-size: 13.5px; }
  .hero-section { min-height: 390px; padding: 58px 17px 48px; }
  .hero-content { text-align: center; }
  .headline { font-size: 2rem; }
  .subheadline { font-size: .98rem; }
  .black-heading { padding: 19px 16px; margin: 15px 0; }
  .footer { padding: 36px 16px 18px; }
}

@media (max-width: 380px) {
  .navbar .brand img { width: 126px; max-width: 126px; }
  .navbar .menu-links { width: 90vw; padding-left: 15px; padding-right: 15px; }
  .menu-links > li > a { font-size: 14px; }
  .menu-links .dropdown-menu li a { font-size: 13px; }
  .hero-section { padding-left: 14px; padding-right: 14px; }
}

/* ===== FINAL PROFESSIONAL PORTAL / RESPONSIVE FIXES ===== */
.site-header{background:#050505;border-bottom:1px solid rgba(170,129,25,.28);position:relative;z-index:2000}
.menu-toggle,.menu-close{border:0;background:transparent;padding:0;margin:0;color:#fff;font:inherit;line-height:1;cursor:pointer}
.menu-toggle{display:none}
.menu-close{display:none}
.portal-page{min-height:100vh;background:#f5f5f5;color:#171717}
.portal-main{width:100%;max-width:1400px;margin:0 auto;padding:64px 42px 80px;min-height:62vh}
.portal-container{max-width:1280px;margin:0 auto;width:100%}
.portal-section{width:100%}
.page-intro{margin-bottom:30px;max-width:900px}.eyebrow{display:inline-block;color:#8c6a12;font-size:.76rem;font-weight:800;letter-spacing:1.6px;margin-bottom:8px}.page-intro h1,.auth-heading h1{font-size:clamp(2rem,3vw,3rem);line-height:1.1;margin:0 0 12px;color:#111}.page-intro p,.auth-heading p{color:#60656b;max-width:760px;margin:0;line-height:1.7}
.portal-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:22px;margin:28px 0}.portal-card{background:#fff;border:1px solid #e2e2e2;border-radius:10px;padding:28px;box-shadow:0 8px 28px rgba(0,0,0,.06)}
.portal-card h2,.portal-card h3{color:#111;margin-top:0}.portal-card strong{color:#111}.portal-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:20px}.portal-btn,.btn{display:inline-flex;align-items:center;justify-content:center;min-height:44px;border:1px solid #aa8119;border-radius:5px;background:#aa8119;color:#fff!important;padding:10px 18px;font-weight:700;text-decoration:none;cursor:pointer}.portal-btn:hover,.btn:hover{background:#111;color:#fff!important}
.portal-form{width:100%;max-width:100%;background:#fff;border:1px solid #e1e1e1;border-radius:10px;padding:30px;box-shadow:0 8px 28px rgba(0,0,0,.05)}.portal-form label{display:block;color:#242424;font-weight:650;margin-bottom:17px}.portal-form input,.portal-form select,.portal-form textarea{width:100%;min-height:46px;padding:12px 14px;margin-top:7px;border:1px solid #cfd3d7;border-radius:5px;background:#fff;color:#111;font:inherit;box-sizing:border-box}.portal-form textarea{min-height:130px}.portal-form input:focus,.portal-form select:focus,.portal-form textarea:focus{outline:2px solid rgba(170,129,25,.22);border-color:#aa8119}.form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0 22px}
.portal-table-wrap,.table-wrap{width:100%;overflow-x:auto;border:1px solid #e1e1e1;border-radius:9px;background:#fff}.portal-table{width:100%;min-width:720px;border-collapse:collapse}.portal-table th,.portal-table td{padding:14px 16px;border-bottom:1px solid #ececec;text-align:left;vertical-align:middle}.portal-table th{background:#111;color:#fff;font-size:.82rem;letter-spacing:.4px}.portal-table tr:last-child td{border-bottom:0}.portal-table tr:hover td{background:#faf9f5}.portal-status{display:inline-flex;padding:5px 10px;border-radius:999px;background:#f3eee2;color:#6e5310;font-size:.8rem;font-weight:700}
.auth-card{max-width:720px;margin:10px auto 0;background:#fff;border:1px solid #e0e0e0;border-radius:12px;padding:42px;box-shadow:0 12px 35px rgba(0,0,0,.07)}.auth-heading{margin-bottom:25px}.auth-links{margin-top:18px;color:#666}.auth-links a{color:#72550d;font-weight:650}.portal-alert.error{border-left-color:#8d1d1d;background:#fff4f4}.portal-alert.success{border-left-color:#aa8119;background:#f7f2e4}
@media(max-width:1100px) and (min-width:851px){header .navbar{padding-left:20px;padding-right:20px}.navbar .menu-links{gap:7px}.navbar .menu-links>li>a{font-size:.78rem;padding-left:2px;padding-right:2px}.navbar .brand img{width:150px}.portal-main{padding:52px 28px 70px}.portal-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:850px){header.site-header{padding:0}.navbar{min-height:72px!important;padding:9px 18px!important}.navbar .brand img{width:150px;max-height:54px}.menu-toggle{display:block;font-size:32px;margin-left:auto}.menu-close{display:block;position:absolute;top:19px;right:18px;font-size:29px}.navbar .menu-links{padding:78px 20px 30px!important;gap:0!important;width:min(88vw,350px)!important;max-width:350px!important;left:-110%!important;right:auto!important;height:100vh!important;overflow-y:auto!important;background:#0b0b0b!important;box-shadow:10px 0 30px rgba(0,0,0,.55)!important}.site-header.show-mobile-menu .menu-links{left:0!important}.navbar .menu-links>li{width:100%;margin:0!important}.navbar .menu-links>li>a{font-size:15px!important;padding:14px 2px!important;min-height:48px;display:flex;align-items:center}.navbar .dropdown-menu{position:static!important;width:100%!important;display:none!important;opacity:1!important;visibility:visible!important;transform:none!important;margin:0 0 8px!important;padding:5px 0 5px 12px!important;background:#151515!important;border-left:2px solid #aa8119!important;border-radius:0!important;box-shadow:none!important}.navbar .dropdown.open .dropdown-menu{display:block!important}.navbar .dropdown-menu li{padding:0!important}.navbar .dropdown-menu li a{font-size:14px!important;padding:10px 10px!important;min-height:40px}.navbar .join-btn a{justify-content:center!important;margin-top:8px}.portal-main{padding:38px 18px 58px}.portal-container{max-width:none}.portal-grid{grid-template-columns:1fr;gap:16px}.portal-card{padding:22px}.form-grid{grid-template-columns:1fr;gap:0}.portal-form{padding:22px}.auth-card{padding:28px 20px;margin-top:0}.footer{margin-top:35px!important}}
@media(max-width:420px){.navbar{padding-left:14px!important;padding-right:14px!important}.navbar .brand img{width:138px}.menu-toggle{font-size:30px}.portal-main{padding-left:14px;padding-right:14px}.portal-card{padding:18px}.portal-form{padding:18px}.portal-table{min-width:650px}}
.metric{display:block;font-size:2.1rem;line-height:1.1;margin:5px 0 12px;color:#111}.metric.small{font-size:1.25rem}.portal-card .portal-btn{margin-top:8px}
.account-menu .dropdown-menu{right:0;left:auto}.account-menu>a{font-weight:650!important}.account-menu .dropdown-menu li a{font-size:.9rem}.portal-card small{color:#70757a}.portal-table select{min-width:130px;padding:8px;border:1px solid #ccc;border-radius:4px;background:#fff}.portal-table .portal-btn{min-height:36px;padding:7px 12px;font-size:.8rem;margin-left:5px}
@media(max-width:850px){.account-menu .dropdown-menu{right:auto;left:0}.account-menu>a{color:#aa8119!important}}

/* ===== CUSTOMER DASHBOARD DESKTOP / RESPONSIVE FIX ===== */
.customer-dashboard{width:100%;}
.dashboard-topbar{display:flex;justify-content:space-between;align-items:flex-end;gap:32px;margin-bottom:32px;}
.dashboard-topbar .page-intro{margin-bottom:0;max-width:820px;}
.dashboard-quick-actions{display:flex;gap:10px;flex:0 0 auto;padding-bottom:2px;}
.portal-btn-outline{background:#fff!important;color:#111!important;border-color:#c8c8c8!important;}
.portal-btn-outline:hover{background:#111!important;color:#fff!important;border-color:#111!important;}
.dashboard-kpis{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;margin-bottom:24px;}
.dashboard-kpi{background:#fff;border:1px solid #e1e1e1;border-top:3px solid #aa8119;border-radius:10px;padding:23px 24px;box-shadow:0 7px 22px rgba(0,0,0,.045);min-width:0;}
.dashboard-kpi span{display:block;color:#666;font-size:.78rem;font-weight:800;letter-spacing:1px;text-transform:uppercase;margin-bottom:10px;}
.dashboard-kpi strong{display:block;font-size:2rem;line-height:1.05;color:#111;margin-bottom:8px;word-break:break-word;}
.dashboard-kpi small{display:block;color:#7a7a7a;font-size:.82rem;line-height:1.4;}
.dashboard-main-grid{display:grid;grid-template-columns:minmax(0,1fr) 330px;gap:24px;align-items:start;}
.dashboard-panel{background:#fff;border:1px solid #e1e1e1;border-radius:10px;padding:26px;box-shadow:0 7px 22px rgba(0,0,0,.045);min-width:0;}
.dashboard-panel-heading{display:flex;justify-content:space-between;align-items:flex-end;gap:20px;margin-bottom:18px;}
.dashboard-panel-heading .eyebrow{margin-bottom:4px;}.dashboard-panel-heading h2{margin:0;font-size:1.3rem;}.dashboard-panel-heading>a{color:#765a12;font-weight:700;text-decoration:none;white-space:nowrap;}.dashboard-panel-heading>a:hover{text-decoration:underline;}
.dashboard-side{display:grid;gap:24px;min-width:0;}.dashboard-side h2{font-size:1.25rem;margin-bottom:18px;}.dashboard-link-list{border-top:1px solid #ececec;}.dashboard-link-list a{display:flex;justify-content:space-between;align-items:center;gap:12px;padding:14px 0;border-bottom:1px solid #ececec;color:#202020;text-decoration:none;font-weight:600;}.dashboard-link-list a:hover{color:#8a6810;}.dashboard-link-list b{font-size:1.3rem;color:#aa8119;font-weight:400;}.dashboard-support{background:#111;color:#fff;border-color:#111;}.dashboard-support h3{color:#fff;margin:0 0 10px;font-size:1.2rem;}.dashboard-support p{color:#c9c9c9;font-size:.92rem;line-height:1.65;}.dashboard-support .portal-btn{margin-top:8px;}.route-arrow{color:#999;margin:0 3px;}.empty-state{text-align:center!important;color:#777;padding:32px!important;}
@media(max-width:1100px) and (min-width:851px){.dashboard-kpis{grid-template-columns:repeat(2,minmax(0,1fr));}.dashboard-main-grid{grid-template-columns:minmax(0,1fr) 280px;}.dashboard-topbar{align-items:flex-start;}.dashboard-quick-actions{padding-top:5px;}}
@media(max-width:850px){.dashboard-topbar{display:block;margin-bottom:24px;}.dashboard-quick-actions{margin-top:18px;flex-wrap:wrap;}.dashboard-kpis{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;}.dashboard-kpi{padding:18px;}.dashboard-kpi strong{font-size:1.65rem;}.dashboard-main-grid{grid-template-columns:1fr;gap:18px;}.dashboard-panel{padding:20px;}.dashboard-side{gap:18px;}.dashboard-panel-heading{align-items:flex-start;}}
@media(max-width:520px){.dashboard-kpis{grid-template-columns:1fr;}.dashboard-quick-actions .portal-btn{flex:1;}.dashboard-panel-heading{display:block;}.dashboard-panel-heading>a{display:inline-block;margin-top:8px;}.dashboard-kpi strong{font-size:1.8rem;}}

/* =========================================================
   FINAL PORTAL DESKTOP CORRECTION
   Keep hamburger/close controls mobile-only and keep the
   customer portal content on a professional light canvas.
   ========================================================= */
body.portal-page {
  background: #f5f5f5 !important;
  color: #171717;
  min-height: 100vh;
  overflow-x: hidden;
}

body.portal-page #hamburger-btn,
body.portal-page #close-menu-btn,
body.portal-page .menu-toggle,
body.portal-page .menu-close {
  display: none !important;
}

body.portal-page .site-header {
  background: #050505 !important;
}

body.portal-page .portal-main {
  background: #f5f5f5;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 56px 40px 76px;
  min-height: calc(100vh - 150px);
}

body.portal-page .portal-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

body.portal-page .dashboard-main-grid {
  grid-template-columns: minmax(0, 1fr) 320px;
}

body.portal-page .dashboard-kpis {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) and (min-width: 851px) {
  body.portal-page #hamburger-btn,
  body.portal-page #close-menu-btn,
  body.portal-page .menu-toggle,
  body.portal-page .menu-close {
    display: none !important;
  }

  body.portal-page .portal-main {
    padding: 48px 28px 64px;
  }

  body.portal-page .dashboard-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.portal-page .dashboard-main-grid {
    grid-template-columns: minmax(0, 1fr) 280px;
  }
}

@media (max-width: 850px) {
  body.portal-page #hamburger-btn,
  body.portal-page .menu-toggle {
    display: inline-flex !important;
  }

  body.portal-page #close-menu-btn,
  body.portal-page .menu-close {
    display: inline-flex !important;
  }

  body.portal-page .portal-main {
    width: 100%;
    padding: 38px 18px 58px;
    min-height: 0;
  }
}

/* =========================================================
   AIGLE ROYAL — FINAL CLEAN RESPONSIVE SYSTEM
   Desktop: full navigation, no mobile controls.
   Mobile: hamburger + close controls only.
   Portal canvas: light professional background.
   ========================================================= */
html { background:#f4f4f4; }
body.portal-page { background:#f4f4f4 !important; color:#171717 !important; }

/* Desktop/tablet navigation */
@media (min-width:851px) {
  .site-header .menu-toggle,
  .site-header .menu-close,
  #hamburger-btn,
  #close-menu-btn { display:none !important; visibility:hidden !important; }

  .site-header .navbar { display:flex !important; align-items:center !important; }
  .site-header .menu-links { display:flex !important; position:static !important; visibility:visible !important; opacity:1 !important; transform:none !important; height:auto !important; width:auto !important; background:transparent !important; box-shadow:none !important; overflow:visible !important; }
  .site-header .overlay { display:none !important; }

  .site-header { background:#080808 !important; }
  .site-header .navbar { max-width:1380px; min-height:76px; padding:10px 28px; gap:22px; }
  .site-header .brand { flex:0 0 auto; display:flex; align-items:center; }
  .site-header .brand img { width:170px; height:auto; max-height:58px; object-fit:contain; }
  .site-header .menu-links { gap:10px !important; align-items:center !important; }
  .site-header .menu-links > li > a { font-size:14px !important; line-height:1.2; padding:9px 8px !important; }
  .site-header .join-btn a { font-size:13px !important; padding:10px 15px !important; }

  body.portal-page .portal-main { background:#f4f4f4 !important; }
}

/* Mobile navigation */
@media (max-width:850px) {
  html, body.portal-page { background:#f4f4f4 !important; }
  .site-header .menu-toggle { display:inline-flex !important; visibility:visible !important; }
  .site-header .menu-close { display:inline-flex !important; visibility:visible !important; }
  .site-header .navbar { min-height:72px !important; }
  .site-header .brand img { width:150px !important; max-height:54px; object-fit:contain; }
}

/* Dashboard canvas should never inherit the black site background. */
body.portal-page .portal-main,
body.portal-page .portal-container,
body.portal-page .customer-dashboard { background:#f4f4f4 !important; }
body.portal-page .dashboard-panel,
body.portal-page .dashboard-kpi { background:#fff !important; color:#171717; }

/* Prevent accidental horizontal overflow on every portal page. */
body.portal-page { overflow-x:hidden !important; }

/* =========================================================
   AIGLE ROYAL — CLEAN SITE-WIDE FOUNDATION
   One responsive navigation system for HTML and PHP.
   ========================================================= */
html{background:#f4f4f4}
body{background:#fff;color:#222;overflow-x:hidden}
.site-header{background:#080808!important;padding:0!important;border-bottom:1px solid rgba(184,139,32,.35);position:relative;z-index:2000}
.site-header .navbar{max-width:1380px!important;min-height:78px!important;margin:0 auto!important;padding:10px 28px!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:22px!important}
.site-header .brand{display:flex!important;align-items:center!important;flex:0 0 auto!important}
.site-header .brand img{width:172px!important;max-height:58px!important;height:auto!important;object-fit:contain!important;display:block!important}
.site-header .menu-links{display:flex!important;align-items:center!important;gap:8px!important;list-style:none!important;margin:0!important;padding:0!important}
.site-header .menu-links>li>a{color:#f5f5f5!important;font-size:14px!important;font-weight:600!important;line-height:1.2!important;text-decoration:none!important;padding:10px 8px!important;white-space:nowrap!important}
.site-header .menu-links>li>a:hover{color:#d4aa43!important}
.site-header .join-btn a{border:1px solid #b88b20!important;color:#d4aa43!important;background:transparent!important;padding:10px 15px!important;border-radius:5px!important}
.site-header .menu-toggle,.site-header .menu-close{border:0!important;background:transparent!important;color:#fff!important;padding:0!important;margin:0!important;line-height:1!important;cursor:pointer}
.site-header .menu-toggle,.site-header .menu-close{display:none!important;visibility:hidden!important}
.site-header .overlay{display:none}
.site-header .dropdown-menu{background:#111!important;border:1px solid rgba(184,139,32,.35)!important;border-radius:7px!important;box-shadow:0 16px 38px rgba(0,0,0,.35)!important}
table{width:100%;height:auto;background:#fff;border-collapse:collapse;color:#222;margin:20px 0;box-shadow:0 4px 16px rgba(0,0,0,.06)}
th,td{padding:12px 14px;text-align:left;color:#222}
th{background:#111;color:#fff}
td{background:#fff;border-bottom:1px solid #e9e9e9}
.footer{background:#080808!important;color:#ddd!important}
@media(min-width:851px){
 .site-header .menu-links{position:static!important;width:auto!important;height:auto!important;opacity:1!important;visibility:visible!important;transform:none!important;overflow:visible!important;background:transparent!important;box-shadow:none!important}
 .site-header .menu-toggle,.site-header .menu-close{display:none!important;visibility:hidden!important}
}
@media(max-width:1100px) and (min-width:851px){
 .site-header .navbar{padding-left:20px!important;padding-right:20px!important;gap:12px!important}
 .site-header .brand img{width:150px!important}
 .site-header .menu-links{gap:3px!important}
 .site-header .menu-links>li>a{font-size:12px!important;padding:8px 5px!important}
 .site-header .join-btn a{font-size:11px!important;padding:9px 10px!important}
}
@media(max-width:850px){
 .site-header .navbar{min-height:72px!important;padding:9px 18px!important}
 .site-header .brand img{width:150px!important;max-height:54px!important}
 .site-header .menu-toggle{display:inline-flex!important;visibility:visible!important;font-size:32px!important;margin-left:auto!important}
 .site-header .menu-close{display:block!important;visibility:visible!important;position:absolute!important;top:19px!important;right:18px!important;font-size:29px!important;z-index:1004}
 .site-header .menu-links{position:fixed!important;top:0!important;left:-110%!important;width:min(88vw,350px)!important;max-width:350px!important;height:100vh!important;padding:78px 20px 30px!important;display:flex!important;flex-direction:column!important;align-items:flex-start!important;justify-content:flex-start!important;gap:0!important;overflow-y:auto!important;background:#0b0b0b!important;box-shadow:10px 0 30px rgba(0,0,0,.55)!important;z-index:1003!important;visibility:visible!important;opacity:1!important;transform:none!important}
 .site-header.show-mobile-menu .menu-links{left:0!important}
 .site-header .menu-links>li{width:100%!important;margin:0!important;border-bottom:1px solid rgba(255,255,255,.08)!important}
 .site-header .menu-links>li>a{display:flex!important;align-items:center!important;width:100%!important;min-height:48px!important;padding:14px 2px!important;font-size:15px!important}
 .site-header .menu-links .dropdown-menu{position:static!important;display:none!important;width:100%!important;margin:0 0 8px!important;padding:5px 0 5px 12px!important;background:#151515!important;border-left:2px solid #b88b20!important;border-radius:0!important;box-shadow:none!important;opacity:1!important;visibility:visible!important}
 .site-header .menu-links .dropdown.open .dropdown-menu{display:block!important}
 .site-header .menu-links .dropdown-menu li{padding:0!important;width:100%!important}
 .site-header .menu-links .dropdown-menu li a{display:flex!important;align-items:center!important;min-height:40px!important;padding:10px!important;font-size:14px!important;color:#ddd!important}
 .site-header .menu-links .join-btn a{justify-content:center!important;margin:10px 0!important}
 .site-header .overlay{display:block!important;position:fixed!important;inset:0!important;background:rgba(0,0,0,.58)!important;opacity:0!important;visibility:hidden!important;z-index:1002!important}
 .site-header.show-mobile-menu .overlay{opacity:1!important;visibility:visible!important}
}
@media(max-width:520px){
 .site-header .navbar{padding:9px 14px!important}
 .site-header .brand img{width:138px!important}
}


/* 2026-08-31 FINAL NAVIGATION + DASHBOARD FIX */
@media (min-width:851px){
.site-header .menu-toggle,.site-header .menu-close,#hamburger-btn,#close-menu-btn{display:none!important;visibility:hidden!important;opacity:0!important;pointer-events:none!important}
.navbar .dropdown-menu,body.portal-page .dropdown-menu{top:100%!important;margin-top:0!important}
.navbar .dropdown:hover>.dropdown-menu,.navbar .dropdown:focus-within>.dropdown-menu,body.portal-page .dropdown:hover>.dropdown-menu,body.portal-page .dropdown:focus-within>.dropdown-menu{display:block!important;visibility:visible!important;opacity:1!important;pointer-events:auto!important}
.navbar .dropdown:after{content:"";position:absolute;left:0;right:0;top:100%;height:8px}
body.portal-page .mega-admin{right:0!important;left:auto!important;max-height:72vh!important;overflow:auto!important;min-width:260px!important}
}
@media (max-width:850px){
.site-header .menu-toggle,#hamburger-btn{display:inline-flex!important;visibility:visible!important;opacity:1!important;pointer-events:auto!important;align-items:center!important;justify-content:center!important}
.site-header .menu-close,#close-menu-btn{display:none!important;visibility:hidden!important}
.site-header.menu-open .menu-close,.site-header.menu-open #close-menu-btn,.site-header.show-mobile-menu .menu-close,.site-header.show-mobile-menu #close-menu-btn{display:inline-flex!important;visibility:visible!important;opacity:1!important;pointer-events:auto!important;align-items:center!important;justify-content:center!important}
.navbar .dropdown-menu{display:none!important;position:static!important;margin:0!important;visibility:visible!important;opacity:1!important;transform:none!important}
.navbar .dropdown.open>.dropdown-menu{display:block!important}
.navbar .dropdown:hover>.dropdown-menu{display:none!important}
.navbar .dropdown.open:hover>.dropdown-menu{display:block!important}
}
.dashboard-menu-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin:18px 0 0}
.dashboard-menu-grid>a{display:flex;flex-direction:column;gap:5px;min-height:104px;padding:18px;background:#fff;border:1px solid #e1e3e6;border-top:3px solid #b88b20;border-radius:8px;text-decoration:none!important;box-shadow:0 4px 14px rgba(0,0,0,.04)}
.dashboard-menu-grid>a:hover{transform:translateY(-1px);box-shadow:0 8px 20px rgba(0,0,0,.08)}
.dashboard-menu-grid b{color:#171717;font-size:15px}.dashboard-menu-grid span{color:#686d72;font-size:12px;line-height:1.45}
@media(max-width:850px){.dashboard-menu-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:520px){.dashboard-menu-grid{grid-template-columns:1fr}}

/* =========================================================
   2026-08-31 NAV ICON FINAL FIX
   Real CSS hamburger/X. Desktop controls are always hidden.
   Controls are after the menu list in DOM, so hamburger comes
   after Contact Us rather than between logo and Home.
   ========================================================= */
.site-header #hamburger-btn,
.site-header #close-menu-btn{
  display:none!important;
  visibility:hidden!important;
  opacity:0!important;
  pointer-events:none!important;
  width:44px!important;
  height:44px!important;
  border:0!important;
  background:transparent!important;
  padding:0!important;
  margin:0!important;
  color:#fff!important;
  align-items:center!important;
  justify-content:center!important;
  flex:0 0 44px!important;
  font-size:0!important;
  line-height:0!important;
  -webkit-appearance:none!important;
  appearance:none!important;
}
.site-header .hamburger-icon{
  width:27px!important;
  height:20px!important;
  display:flex!important;
  flex-direction:column!important;
  justify-content:space-between!important;
}
.site-header .hamburger-icon>span{
  display:block!important;
  width:100%!important;
  height:3px!important;
  border-radius:3px!important;
  background:#fff!important;
}
.site-header .close-icon{
  position:relative!important;
  display:block!important;
  width:28px!important;
  height:28px!important;
}
.site-header .close-icon::before,
.site-header .close-icon::after{
  content:""!important;
  position:absolute!important;
  left:13px!important;
  top:1px!important;
  width:3px!important;
  height:27px!important;
  border-radius:3px!important;
  background:#fff!important;
}
.site-header .close-icon::before{transform:rotate(45deg)!important}
.site-header .close-icon::after{transform:rotate(-45deg)!important}

@media (min-width:851px){
  .site-header #hamburger-btn,
  .site-header #close-menu-btn,
  .site-header .menu-toggle,
  .site-header .menu-close{
    display:none!important;
    visibility:hidden!important;
    opacity:0!important;
    pointer-events:none!important;
    position:absolute!important;
    width:0!important;
    height:0!important;
    overflow:hidden!important;
  }
}

@media (max-width:850px){
  .site-header .navbar{
    position:relative!important;
    justify-content:flex-start!important;
  }
  .site-header .brand{margin-right:auto!important}
  .site-header #hamburger-btn{
    display:inline-flex!important;
    visibility:visible!important;
    opacity:1!important;
    pointer-events:auto!important;
    position:relative!important;
    z-index:1001!important;
    order:99!important;
    margin-left:auto!important;
  }
  .site-header #close-menu-btn{
    display:none!important;
    visibility:hidden!important;
    opacity:0!important;
    pointer-events:none!important;
    position:fixed!important;
    top:14px!important;
    right:14px!important;
    z-index:1005!important;
  }
  .site-header.show-mobile-menu #hamburger-btn,
  .site-header.menu-open #hamburger-btn{
    display:none!important;
    visibility:hidden!important;
    opacity:0!important;
    pointer-events:none!important;
  }
  .site-header.show-mobile-menu #close-menu-btn,
  .site-header.menu-open #close-menu-btn{
    display:inline-flex!important;
    visibility:visible!important;
    opacity:1!important;
    pointer-events:auto!important;
  }
}
