/* ================= GLOBAL ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  background: #f8fafc;
  color: #1f2933;
  padding-top: 90px;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ================= COLORS ================= */

:root {
  --primary-blue: #05a9e9;
  --primary-red: #ef1d26;
  --dark-text: #1f2933;
  --light-bg: #f8fafc;
}

/* ================= HEADER ================= */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Shrink on scroll */

.site-header.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* ================= LOGO ================= */

.site-logo img {
  height: 60px;
  transition: all 0.3s ease;
}

.site-header.scrolled .site-logo img {
  height: 50px;
}

/* ================= DESKTOP NAV ================= */

.site-nav .nav-list {
  display: flex;
  gap: 35px;
}

.site-nav .nav-list li a {
  color: var(--dark-text);
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

/* Hover + Active Underline */

.site-nav .nav-list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 0;
  height: 2px;

  background: var(--primary-blue);
  transition: width 0.3s ease;
}

.site-nav .nav-list li a:hover,
.site-nav .nav-list li a.active {
  color: var(--primary-blue);
}

.site-nav .nav-list li a:hover::after,
.site-nav .nav-list li a.active::after {
  width: 100%;
}

/* ================= ENQUIRY BUTTON ================= */

.enquiry-btn {
  background: var(--primary-red);
  color: #fff;

  padding: 9px 20px;
  border-radius: 6px;

  font-weight: 600;

  display: flex;
  align-items: center;
  gap: 8px;

  transition: all 0.3s ease;
}

.enquiry-btn:hover {
  background: #d8171f;
  transform: translateY(-2px);
}

.enquiry-btn i {
  font-size: 20px;
}

/* ================= MOBILE TOGGLE ================= */

.menu-toggle {
  font-size: 26px;
  cursor: pointer;
  color: var(--dark-text);
  transition: 0.3s;
}

.menu-toggle:hover {
  color: var(--primary-blue);
}

/* ================= MOBILE MENU ================= */

.mobile-nav {
  position: fixed;
  top: 0;

  /* Slide from LEFT */
  left: -100%;

  width: 75%;
  height: 100%;

  background: #ffffff;

  transition: left 0.4s ease;

  z-index: 9999;

  box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
}

/* Active State */

.mobile-nav.active {
  left: 0;
}

/* Mobile Header */

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px;

  border-bottom: 1px solid #eee;
}

.mobile-logo {
  height: 45px;
}

.close-btn {
  font-size: 32px;
  cursor: pointer;
  transition: 0.3s;
}

.close-btn:hover {
  color: var(--primary-red);
}

/* ================= MOBILE MENU LIST ================= */

.mobile-menu-list {
  padding: 25px 20px;
}

.mobile-menu-list li {
  margin-bottom: 18px;
}

.mobile-menu-list li a {
  font-size: 18px;
  font-weight: 600;

  color: var(--dark-text);

  display: block;

  transition: color 0.3s ease;
}

.mobile-menu-list li a:hover,
.mobile-menu-list li a.active {
  color: var(--primary-blue);
}

/* ================= MOBILE WHATSAPP ================= */

.mobile-whatsapp {
  background: var(--primary-red);
  color: #fff !important;

  padding: 10px;
  border-radius: 6px;

  display: block;
  text-align: center;

  font-weight: 600;

  transition: all 0.3s ease;
}

.mobile-whatsapp:hover {
  background: #d8171f;
  transform: translateY(-2px);
}

/* ================= FOOTER ================================================================================================================ */

.site-footer {
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  padding: 70px 0 35px;
  color: #cbd5e1;
  font-size: 15px;
}

/* Logo */

.footer-logo-img {
  height: 70px;
  width: auto;
}

/* About */

.footer-about {
  max-width: 260px;
  line-height: 1.7;
  color: #cbd5e1;
}

/* Titles */

.footer-title {
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--primary-blue);
  font-size: 18px;
}

/* General Links */

.site-footer a {
  color: #cbd5e1;
  transition: 0.3s;
}

.site-footer a:hover {
  color: var(--primary-blue);
}

/* ================= QUICK LINKS ================= */

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.footer-links li i {
  color: var(--primary-red);
  font-size: 13px;
}

/* ================= SOCIAL ================= */

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social .icon-box {
  height: 42px;
  width: 42px;
  background: var(--primary-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s;
}

.footer-social .icon-box:hover {
  background: var(--primary-red);
  color: #fff;
  transform: scale(1.1);
}

/* ================= CONTACT ================= */

.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.footer-contact .contact-icon {
  width: 22px;
  margin-right: 10px;
  padding-top: 4px;
}

.footer-contact .contact-icon i {
  color: var(--primary-blue);
  font-size: 16px;
}

.contact-address {
  line-height: 1.6;
}

/* ================= FOOTER BOTTOM ================= */

.footer-bottom {
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  color: #94a3b8;
  font-size: 14px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .footer-about {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .footer-logo-img {
    height: 55px;
  }
}

/* ================= PAGE BREADCRUMB ===================================================================================================================== */

.page-breadcrumb {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Parallax (Desktop Only) */
  background-attachment: fixed;

  padding: 80px 0 70px;

  position: relative;
  color: #ffffff;

  overflow: hidden;
  width: 100%;
}

/* Overlay */

.page-breadcrumb::before {
  content: "";
  position: absolute;
  inset: 0;

  /* Blue + Dark overlay */
  background: linear-gradient(rgba(2, 6, 23, 0.85), rgba(2, 6, 23, 0.7));

  z-index: 0;
}

/* Content Layer */

.page-breadcrumb .container {
  position: relative;
  z-index: 2;
}

/* Title */

.page-breadcrumb .breadcrumb-title {
  font-size: 46px;
  font-weight: 700;

  color: var(--primary-blue);

  margin-bottom: 12px;

  letter-spacing: 0.5px;
}

/* Navigation */

.page-breadcrumb .breadcrumb-nav {
  font-size: 18px;
  font-weight: 500;

  color: #e2e8f0;

  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Links */

.page-breadcrumb .breadcrumb-nav a {
  color: #ffffff;
}

.page-breadcrumb .breadcrumb-nav a:hover {
  color: var(--primary-red);
}

/* Separator */

.page-breadcrumb .separator {
  color: var(--primary-red);
  font-size: 14px;
}

/* Current Page */

.page-breadcrumb .current-page {
  color: #cbd5e1;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  /* Disable parallax */
  .page-breadcrumb {
    background-attachment: scroll;
    background-position: center top;

    padding-top: 90px;
    padding-bottom: 55px;
  }

  .page-breadcrumb .breadcrumb-title {
    font-size: 34px;
  }

  .page-breadcrumb .breadcrumb-nav {
    font-size: 16px;
  }
}

/* ================= HERO SLIDER ================= */

.hero-slider-section {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
}

/* Fix Slick Height */

.hero-slider,
.hero-slide,
.slick-list,
.slick-track {
  height: 100%;
}

/* Slide Wrapper */

.hero-slide {
  position: relative;
  overflow: hidden;
}

/* Images */

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* Default */
  transform: scale(1);

  /* Smooth Zoom */
  transition: transform 6s ease-in-out;
}

/* Zoom Only Active Slide */

.hero-slide.slick-active img {
  transform: scale(1.12);
}

/* Overlay */

.hero-slider-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(2, 6, 23, 0.6);

  z-index: 1;
}

/* ================= CENTER CONTENT ================= */

.hero-content {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  text-align: center;

  z-index: 2;

  color: #fff;

  max-width: 90%;
}

/* Logo */

.hero-logo {
  height: 90px;
  margin-bottom: 15px;
}

/* Heading */

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Text */

.hero-content p {
  font-size: 18px;
  margin-bottom: 22px;
  color: #e2e8f0;
}

/* Button */

.hero-btn {
  background: var(--primary-red);
  color: #fff;

  padding: 10px 26px;
  border-radius: 30px;

  font-weight: 600;

  transition: 0.3s;
}

.hero-btn:hover {
  background: #d8171f;
  transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .hero-slider-section {
    height: 75vh;
    min-height: 520px;
  }

  .hero-logo {
    height: 70px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

/* ================= HOME ABOUT ================= */

.home-about-img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.home-about h2 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 15px;
}

.home-about ul {
  margin: 20px 0;
}

.home-about li {
  margin-bottom: 8px;
  font-weight: 500;
}

.home-about li i {
  color: var(--primary-red);
  margin-right: 6px;
}




/* ================= 2 . ABOUT PAGE ===================================================================================================== */

/* About Section */

.about-section {
  background: #ffffff;
}

.about-image {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.about-image img {
  width: 100%;
  transition: 0.4s;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Content */

.about-content h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 18px;
}

.about-content p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* List */

.about-list {
  margin: 25px 0;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 10px;

  font-size: 15px;
  font-weight: 500;
  color: #1f2933;
}

.about-list li i {
  color: var(--primary-red);
}

/* Button */

.about-btn {
  display: inline-block;

  background: var(--primary-red);
  color: #fff;

  padding: 10px 25px;
  border-radius: 30px;

  font-weight: 600;

  transition: 0.3s;
}

.about-btn:hover {
  background: #d8171f;
  transform: translateY(-2px);
}

/* ================= WHY SECTION ================= */

.why-section {
  background: #f8fafc;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-blue);
}

.section-title p {
  color: #64748b;
  font-size: 16px;
  margin-top: 8px;
}

/* Box */

.why-box {
  background: #ffffff;
  padding: 30px 22px;

  text-align: center;

  border-radius: 12px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

  transition: 0.3s;
}

.why-box:hover {
  transform: translateY(-6px);
}

.why-box i {
  font-size: 34px;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.why-box h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.why-box p {
  font-size: 14px;
  color: #64748b;
}

/* ================= CTA ================= */

.about-cta {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));

  padding: 70px 0;

  color: #ffffff;
}

.about-cta h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-cta p {
  font-size: 17px;
  margin-bottom: 22px;
}

.cta-btn {
  display: inline-block;

  background: #ffffff;
  color: var(--primary-blue);

  padding: 11px 28px;

  border-radius: 30px;

  font-weight: 600;

  transition: 0.3s;
}

.cta-btn:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .about-content h2 {
    font-size: 32px;
    text-align: center;
  }

  .about-content p {
    text-align: center;
  }

  .about-list {
    text-align: left;
  }

  .about-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .about-cta h2 {
    font-size: 30px;
  }
}

/* ================= 4 .  CONTACT SECTION ====================================================================================================== */

.contact-section {
  background: #f8fafc;
  padding: 80px 0;
  color: var(--dark-text);
}

/* Headings */

.contact-section .contact-heading {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 18px;
}

/* Description */

.contact-section .contact-desc {
  font-size: 17px;
  color: #475569;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 35px;
}

/* ================= INFO BOX ================= */

.contact-info-box {
  margin-top: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

/* Icons */

.contact-info-item i {
  font-size: 22px;
  height: 52px;
  width: 52px;
  border-radius: 50%;
  background: rgba(5, 169, 233, 0.1);
  color: var(--primary-blue);

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  transition: 0.3s;
}

/* Hover */

.contact-info-item:hover i {
  background: var(--primary-blue);
  color: #fff;
  transform: scale(1.05);
}

/* Text */

.contact-info-item h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

.contact-info-item a:hover {
  color: var(--primary-red);
}

/* ================= FORM ================= */

.contact-form label {
  font-size: 15px;
  font-weight: 600;
  color: #1f2933;
  margin-bottom: 5px;
}

.contact-form .form-control {
  background: #ffffff;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 15px;

  border: 1px solid #cbd5e1;
  margin-bottom: 16px;

  transition: 0.3s;
}

.contact-form .form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: none;
}

.contact-form textarea.form-control {
  min-height: 140px;
}

/* Submit Button */

.submit-btn {
  background: var(--primary-red);
  width: 100%;
  padding: 13px;
  border-radius: 30px;

  font-size: 16px;
  font-weight: 600;

  color: #ffffff;
  border: none;

  transition: 0.3s;
}

.submit-btn:hover {
  background: #d8171f;
  transform: translateY(-2px);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-section .contact-heading {
    font-size: 34px;
    text-align: center;
  }

  .contact-section .contact-desc {
    text-align: center;
    margin: 0 auto 30px;
  }
}

/* ================= MAP SECTION ================= */

.map-section {
  padding: 70px 0;
  background: #ffffff;
}

.map-wrapper {
  position: relative;

  width: 100%;
  height: 420px;

  border-radius: 14px;
  overflow: hidden;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Iframe */

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  transition: 0.4s;
}

/* Hover Effect */

.map-wrapper:hover iframe {
  transform: scale(1.02);
}

/* ================= RESPONSIVE MAP ================= */

@media (max-width: 768px) {
  .map-section {
    padding: 55px 0;
  }

  .map-wrapper {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .map-wrapper {
    height: 260px;
  }
}


/* ================= LOGIN PAGE ================= */

.login-section {
    background: linear-gradient(
        135deg,
        rgba(5,169,233,0.08),
        rgba(239,29,38,0.08)
    );
}


/* Card */

.login-card {
    background: #ffffff;

    padding: 35px 30px;

    border-radius: 14px;

    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}


/* Logo */

.login-logo-img {
    height: 70px;
}


/* Heading */

.login-card h3 {
    font-weight: 700;
    color: var(--primary-blue);
}


/* Inputs */

.login-card label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}


.login-card .form-control {
    padding: 12px 14px;
    border-radius: 6px;

    border: 1px solid #cbd5e1;

    font-size: 15px;

    transition: 0.3s;
}


.login-card .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: none;
}


/* Password Toggle */

.toggle-password {
    position: absolute;

    right: 14px;
    top: 38px;

    cursor: pointer;
    color: #64748b;

    transition: 0.3s;
}

.toggle-password:hover {
    color: var(--primary-blue);
}


/* Forgot */

.forgot-link {
    font-size: 14px;
    color: var(--primary-blue);
}

.forgot-link:hover {
    text-decoration: underline;
}


/* Button */

.login-btn {
    width: 100%;

    background: var(--primary-red);

    color: #ffffff;

    border: none;

    padding: 12px;

    border-radius: 30px;

    font-weight: 600;

    font-size: 16px;

    transition: 0.3s;
}


.login-btn:hover {
    background: #d8171f;
    transform: translateY(-2px);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 576px) {

    .login-card {
        padding: 28px 22px;
    }

    .login-logo-img {
        height: 60px;
    }

}




.vehicle-card { border-radius:12px; overflow:hidden; transition:.3s; }
.vehicle-card:hover { transform:translateY(-5px); box-shadow:0 10px 25px rgba(0,0,0,0.15); }
.vehicle-img { height:220px; object-fit:cover; }


/* ADD VEHICLE */

/* ===== Add Vehicle Page ===== */

.page-breadcrumb{
    padding:80px 0;
    background-size:cover;
    background-position:center;
    position:relative;
}
.page-breadcrumb::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}
.page-breadcrumb .container{position:relative;z-index:2}
.breadcrumb-title{color:#fff;font-weight:700;letter-spacing:1px}

.card{
    border:none;
    border-radius:14px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.card h4{
    font-weight:600;
    color:#222;
}

.form-label{
    font-weight:600;
    font-size:14px;
    color:#444;
}

.form-control, .form-select{
    border-radius:10px;
    padding:10px 12px;
    border:1px solid #ddd;
    transition:all .25s ease;
    font-size:14px;
}

.form-control:focus, .form-select:focus{
    border-color:#0d6efd;
    box-shadow:0 0 0 3px rgba(13,110,253,0.15);
}

textarea.form-control{
    resize:none;
}

.btn-primary{
    border-radius:30px;
    padding:10px 28px;
    font-weight:600;
    letter-spacing:.5px;
    box-shadow:0 6px 15px rgba(13,110,253,0.25);
    transition:all .3s ease;
}

.btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(13,110,253,0.35);
}

.toast{
    border-radius:12px;
    font-weight:500;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

@media(max-width:768px){
    .page-breadcrumb{padding:60px 0}
}


/* ================= WHY CHOOSE US ================= */

.why-choose-section {
  padding: 80px 0;
  background: #ffffff;
}

.why-choose-section .section-title h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark-text);
}

.why-choose-section .section-title p {
  color: #6b7280;
  font-size: 16px;
}


/* Box */

.choose-box {
  background: var(--light-bg);
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;

  height: 100%;

  box-shadow: 0 6px 20px rgba(0,0,0,0.06);

  transition: 0.3s ease;
}

.choose-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}


/* Icon */

.choose-box i {
  font-size: 42px;
  color: var(--primary-blue);
  margin-bottom: 18px;
}


/* Title */

.choose-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark-text);
}


/* Text */

.choose-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

.remove-img{
    border-radius:50%;
    line-height:1;
}

/* ================= BRANDS SECTION ================= */

.brands-section {
  padding: 70px 0;
  background: #f8fafc;
}

.section-title h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--primary-blue);
}

.section-title p {
  color: #64748b;
}


/* ================= BRAND BOX ================= */

.brand-box {
  background: #fff;

  padding: 22px 18px 25px;

  text-align: center;

  border-radius: 14px;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);

  transition: 0.3s;

  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 15px;
}


/* Brand Image */

.brand-box img {
  width: 100%;
  max-width: 160px;
  height: 110px;

  object-fit: cover;

  border-radius: 8px;

  transition: 0.3s;
}


/* Brand Name */

.brand-box h6 {
  font-size: 15px;
  font-weight: 600;

  margin: 0;

  color: var(--dark-text);
}


/* Hover Effect */

.brand-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.brand-box:hover h6 {
  color: var(--primary-blue);
}

.brand-box:hover img {
  transform: scale(1.05);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .brand-box img {
    max-width: 140px;
    height: 95px;
  }

}


@media (max-width: 576px) {

  .brand-box {
    padding: 18px 14px 20px;
  }

  .brand-box img {
    max-width: 120px;
    height: 80px;
  }

  .brand-box h6 {
    font-size: 14px;
  }

}
