/* ============================================================
   1. GLOBAL ROOT + RESET + BASE
============================================================ */

@import url("https://fonts.googleapis.com/css?family=Raleway:400,500,700");

/* Root Variables */
:root {
  --brand-color: #FF5733;
  --heading-color: #292929;
  --text-color: #6f6f6f;
  --dark-bg: #1e1e1e;
  --light-bg: #f3f3f3;
  --transition: all .3s ease-in-out;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: var(--text-color);
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  transition: var(--transition);
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
input,
textarea,
select,
button {
  font-family: inherit;
  outline: none;
  border: none;
  transition: var(--transition);
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* ============================================================
   2. TYPOGRAPHY + UTILITIES
============================================================ */

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}
h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 24px; }
h5 { font-size: 22px; }
h6 { font-size: 18px; }

p {
  line-height: 1.8;
  margin: 0;
}

/* Utilities */
.p-color { color: var(--brand-color); }
.p-bg { background-color: var(--brand-color); }
.tran3s { transition: var(--transition); }
.tran4s { transition: all .4s ease-in-out; }

/* Theme title */
.theme-title {
  text-align: center;
  margin-top: 95px;
}
.theme-title h2 {
  position: relative;
}
.theme-title h2::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 3px;
  background: var(--brand-color);
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
}
.theme-title p {
  margin: 60px auto 0;
  width: 90%;
  font-size: 16px;
}

/* ============================================================
   3. HEADER + NAVIGATION (BOOTSTRAP 5 UPDATED)
============================================================ */

.theme-main-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 20px 0;
  z-index: 999;
}

/* Sticky */
.theme-main-header.fixed {
  position: fixed;
  background: #000;
  animation: menu_sticky .7s ease-in-out;
}

@keyframes menu_sticky {
  0% { margin-top: -120px; opacity: 0; }
  50% { margin-top: -64px; opacity: 0; }
  100%{ margin-top: 0; opacity: 1; }
}

/* Menu */
.theme-main-menu .nav-link {
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  padding: 9px 15px !important;
}

/* Active Nav Link Highlight */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:hover {
  color: var(--brand-color) !important;
}

/* Dropdown */
.theme-main-menu .dropdown-menu {
  background: #1e1e1e;
  margin-top: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.theme-main-menu li:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.theme-main-menu .dropdown-menu .dropdown-item {
  color: #fff;
  padding: 10px 18px;
}
.theme-main-menu .dropdown-menu .dropdown-item:hover {
  background: var(--brand-color);
  color: #000;
}

/* ============================================================
   4. MAIN BANNER / REV SLIDER
============================================================ */

.rev_slider_wrapper {
  background: #000;
}

.banner h1, 
.banner h6,
.banner .project-button {
  color: #fff;
}

.banner .project-button {
  width: 170px;
  line-height: 50px;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid var(--brand-color);
  transition: var(--transition);
}

.banner .project-button:hover {
  background: var(--brand-color);
  color: #000;
}

/* ============================================================
   5. ABOUT SECTION
============================================================ */

#about-us {
  padding: 10px 0;
  text-align: center;
}

#about-us .single-about-content {
  margin: 30px 0 50px;
}

#about-us .icon {
  width: 130px;
  height: 130px;
  line-height: 130px;
  font-size: 36px;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px solid var(--brand-color);
  color: var(--heading-color);
  transition: var(--transition);
}

#about-us .single-about-content:hover .icon {
  background: var(--brand-color);
  color: #000;
}

#about-us h5 a {
  color: var(--heading-color);
  margin-top: 20px;
}

#about-us a.more {
  width: 130px;
  line-height: 45px;
  border: 1px solid var(--brand-color);
  margin-top: 22px;
  transition: var(--transition);
}

#about-us a.more:hover {
  background: var(--brand-color);
  color: #000;
}

/* ============================================================
   6. SERVICES SECTION
============================================================ */

#services {
  background-color: var(--light-bg);
  padding: 80px 0;
}

#services .single-service {
  background: #fff;
  padding: 30px 25px;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: var(--transition);
}

#services .single-service:hover {
  transform: translateY(-10px);
}

#services .single-service i {
  font-size: 42px;
  color: var(--brand-color);
  margin-bottom: 20px;
}

#services .single-service h5 {
  margin-bottom: 15px;
  font-weight: 600;
}

#services .single-service p {
  font-size: 15px;
}

/* ============================================================
   7. PROJECTS SECTION
============================================================ */

#projects {
  padding: 80px 0;
  background: #fff;
}

#projects .project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

#projects .project-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

#projects .project-item img {
  transition: var(--transition);
}

#projects .project-item:hover img {
  transform: scale(1.05);
}

#projects .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

#projects .project-item:hover .overlay {
  opacity: 1;
}

#projects .overlay-text {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

/* ============================================================
   8. CLIENTS SECTION (BOOTSTRAP 5 CAROUSEL)
============================================================ */

#clients {
  background: var(--light-bg);
  padding: 80px 0;
  text-align: center;
}

#clients .carousel-item img {
  max-height: 70px;
  margin: 0 auto;
  opacity: 0.7;
  transition: var(--transition);
}

#clients .carousel-item img:hover {
  opacity: 1;
}

#clients .carousel-indicators [data-bs-target] {
  background-color: var(--brand-color);
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/* ============================================================
   9. CONTACT SECTION + FORMS
============================================================ */

#contact {
  padding: 80px 0;
  background: #fff;
}

#contact form {
  background: var(--light-bg);
  padding: 30px;
  border-radius: 5px;
}

#contact input,
#contact textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  border-radius: 4px;
  transition: var(--transition);
}

#contact input:focus,
#contact textarea:focus {
  border-color: var(--brand-color);
  background: #fff;
}

#contact button {
  background: var(--brand-color);
  border: none;
  padding: 12px 35px;
  color: #fff;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
  transition: var(--transition);
}

#contact button:hover {
  background: #000;
}

/* ============================================================
   10. FOOTER + MISC
============================================================ */

footer {
  background: var(--dark-bg);
  color: #ccc;
  padding: 50px 0;
}

footer h5 {
  color: #fff;
  margin-bottom: 20px;
}

footer ul li a {
  color: #ccc;
  font-size: 15px;
  display: block;
  margin-bottom: 10px;
  transition: var(--transition);
}

footer ul li a:hover {
  color: var(--brand-color);
}

footer .social-icons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  margin: 0 5px;
  background: #444;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
}

footer .social-icons a:hover {
  background: var(--brand-color);
  color: #000;
}

.copyright {
  text-align: center;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid #333;
  margin-top: 30px;
}

/* ================================
   11. Header & Logo Styling
================================== */
.navbar-brand.logo img {
  max-height: 60px;
  height: auto;
  width: auto;
}

.navbar {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* ============================================================
   12. SCROLL-TOP BUTTON
============================================================ */

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  width: 45px;
  height: 45px;
  background-color: var(--brand-color);
  color: #fff;
  border: none;
  outline: none;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 9999;
  cursor: pointer;
  transition: var(--transition);
}
.scroll-top:hover {
  background-color: #000;
}

/* ============================================================
   13. MAP ICON
============================================================ */

.icon-circle {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: var(--brand-color);
  color: #fff;
  font-size: 24px;
  border-radius: 50%;
  text-align: center;
}

.map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

/* ===============================
   14. Custom Styles for About Section
   =============================== */

.theme-title h2 {
  font-weight: 700;
  font-size: 2.2rem;
}

/* ===============================
   15. Contact Form Information
   =============================== */

.send-message {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.send-message .form-label {
  font-weight: 500;
  font-size: 15px;
  color: #333;
}

.send-message input.form-control,
.send-message select.form-select {
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: none;
  font-size: 15px;
  padding: 10px 14px;
  transition: border-color 0.3s ease;
}

.send-message input.form-control:focus,
.send-message select.form-select:focus {
  border-color: #ff5733;
  outline: none;
  box-shadow: none;
}

.send-message .custom-button {
  background-color: #ff5733;
  border: none;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.send-message .custom-button:hover {
  background-color: #e2471c;
  color: #fff;
}

/* Mobile spacing adjustments */
@media (max-width: 768px) {
  .send-message {
    padding: 25px;
  }

  .send-message .form-label {
    font-size: 14px;
  }

  .send-message input.form-control,
  .send-message select.form-select {
    font-size: 14px;
  }

  .send-message .custom-button {
    font-size: 15px;
    padding: 10px 30px;
  }
}

/* ===============================
   16. Product Card Section
   =============================== */

.single-service-content {
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.single-service-content .icon-heading h5 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
  color: #fff;
}

.single-service-content p {
  font-size: 14px;
  line-height: 1.6;
  margin: 15px 0 0;
}

.single-service-content .icon img {
  max-width: 48px;
  max-height: 48px;
}

.single-service-content h5 {
  color: gold;
}

/* Background color classes */
.product-red    { background-color: #E74C3C; }
.product-blue   { background-color: #2980B9; }
.product-green  { background-color: #27AE60; }
.product-orange { background-color: #F39C12; }
.product-purple { background-color: #8E44AD; }
.product-dark   { background-color: #34495E; }

/* Hover Effect */
.single-service-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive text alignment for small devices */
@media (max-width: 576px) {
  .single-service-content {
    text-align: center;
  }
}

/* === Updated Product Card Styles === */
.single-service-content {
  background-color: #000;              /* Black background */
  color: #fff;                         /* White text */
  text-align: center;                  /* Center align content */
  padding: 30px 20px;
  border-radius: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.single-service-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.single-service-content .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px auto;
  width: 60px;
  height: 60px;
  background-color: #222;
  border-radius: 50%;
}

.single-service-content .icon img {
  width: 28px;
  height: 28px;
}

.single-service-content h5 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.15rem;
}

.single-service-content p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

/* Make all service columns the same height */
.equal-height .col-lg-4 {
  display: flex;
  flex-direction: column;
}

.feature-box {
  background-color: transparent;
  border-radius: 10px;
  padding: 30px 20px;
  min-height: 260px;
  text-align: center;
}

.feature-box .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.feature-box .feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
}

.hero-section {
  background: url('images/slides/Asset-Tracking-Warehouse.png') center center / cover no-repeat;
  height: 500px;
  position: relative;
}

.tight-spacing .single-service-content {
  margin-bottom: 0 !important;
}

.feature-card {
  position: relative;
  overflow: hidden;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  color: white;
  transition: transform 0.3s ease;
}

/* ==============================
   FEATURE CARD
================================ */

.feature-card{
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    overflow: hidden;
}


/* ==============================
   OVERLAY TAB (DEFAULT STATE)
================================ */

.feature-overlay{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;

    /* BLUE COLOR */
    background:#000000;

    padding: 1.25rem;

    /* SHAPE */
    clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);

    /* SMALL "TITLE ONLY" STATE */
    transform: translateY(65%);
    transition: transform 0.4s ease;
}


/* ==============================
   HOVER – EXPAND TAB UP
================================ */

.feature-card:hover .feature-overlay{
    transform: translateY(0);
}


/* ==============================
   TITLE
================================ */

.feature-title{
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: bold;
    color: #fff;
}


/* ==============================
   HIDDEN DETAIL CONTENT
================================ */

.feature-details{
    margin-top: 10px;

    /* Hidden until hover */
    opacity: 0;
    transform: translateY(10px);
    transition: 0.35s ease;
}

/* Reveal content on hover */

.feature-card:hover .feature-details{
    opacity:1;
    transform: translateY(0);
}


/* ==============================
   READ MORE BUTTON
================================ */

.read-more-btn{
    display:inline-block;
    margin-top:10px;
    padding:6px 18px;

    background:#fff;
    color:#0c0c0c;
    text-decoration:none;
    font-size:0.85rem;
    font-weight:700;

    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);

    transition:0.3s ease;
}

.read-more-btn:hover{
    background:#dde1ff;
    color:#060606;
}
/* ----- PACKAGES HEADER ----- */
.pricing-header {
  font-weight: 800;
  font-size: 2rem;
}
.pricing-header span {
  color: #ff0000;
}
.pricing-subtext {
  color: #060505;
  font-size: 0.95rem;
}

.price-card {
  background: #fce70a;
  padding: 2rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-card h4 {
  font-weight: 400;
  color: #ff0000;
  margin-bottom: 0.75rem;
}

.price-card .package-desc {
  font-size: 0.9rem;
  color: #333333;
  min-height: 60px;
}

.price {
  font-size: 2rem;
  color: #00bfa6;
  font-weight: bold;
}
.price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #555555;
  display: block;
}

.note {
  font-size: 0.75rem;
  color: #c00;
  margin-top: 0.5rem;
}

/* Feature Box - angled bottom */
.features-box {
  background-color: #090909;
  color: white;
  margin-top: 1.5rem;
  padding: 1.5rem;
  clip-path: polygon(0 2%, 100% 0, 100% 100%, 0% 100%);
  border-radius: 4px;
}
.features-box h5 {
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.features-box ul {
  list-style: none;
  padding: 5px;
  margin: 0;
}
.features-box ul li {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
}
.features-box ul li::before {
  content: "●";
  color: #ffdb00;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.9rem;
}

/* ----- Line code next to picture ----- */
.support-line .vertical-line {
  width: 4px;
  height: 100%;
  background-color: #dc3545; /* Bootstrap danger red or change to match your brand */
  min-height: 60px;
}

/* ----- qoute block Fleet Management ----- */
.quote-block {
  background-color: #f9f9f9;
  border-left: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.quote-block .vertical-line {
  width: 4px;
  background-color: #dc3545; /* Your accent color */
  border-radius: 2px;
  min-height: 100%;
}

/* ----- block Fleet Management ----- */
.card-uniform {
  background-color: #000;
  color: #fff;
  padding: 0.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}


/* ... Paste the rest of the CSS from above ... */
