:root {
  --primary: #0056b3;
  --secondary: #ff9900;
  --dark: #333;
  --light: #f8f9fa;
  --gray: #6c757d;

  /* Consistent spacing scale (fluid) */
  --space-1: clamp(8px, 1.2vw, 12px);   /* [web:260] */
  --space-2: clamp(12px, 1.6vw, 18px);  /* [web:260] */
  --space-3: clamp(16px, 2.2vw, 28px);  /* [web:260] */
  --space-4: clamp(24px, 3vw, 44px);    /* [web:260] */
  --space-5: clamp(36px, 4vw, 64px);    /* [web:260] */

  --header-offset: 90px;
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html{
  scroll-padding-top: var(--header-offset);
}

body {
  font-family:  sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family:  sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo-img{
  max-height: 50px;
  height: auto;
  width: auto;
  display: block;
}

.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Header */
header {
  background-color: rgba(255, 255, 255, 0.95);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
padding: 10px
}



.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.header-container {
  transform-origin: top center;
  transition: transform 200ms ease;
}

.logo { display: flex; align-items: center; }

nav ul { display: flex; list-style: none; }
nav li { margin-left: 30px; }

nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s;
}
nav a:hover { color: var(--primary); }
nav a.active{ color: var(--primary); }

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  background: transparent;
  border: 0;
  color: var(--dark);
}

/* Hero */
.hero {
  min-height: 100svh;              /* stable viewport height on mobile */
  min-height: 100vh;               /* fallback */
  padding: 0 10vw;                 /* remove the 40vh top padding */
  display: flex;
  align-items: center;             /* vertical centering */
  justify-content: center;         /* horizontal centering */
  text-align: center;
  color: #fff;

  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../images/background.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 769px) {
.hero{
  	background-attachment: fixed !important;
        /* padding: 40vh 5vw 0 5vw; */
        min-height: 100vh;
        min-height: 100svh;
        align-content: center;
        justify-content: center;
        background-position: center;
        background-size: cover; }
	
}

.hero-content { max-width: 800px; margin: 0 auto; }



.hero h1 { font-size: 3.5rem; margin-bottom: 1.5rem; }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--secondary);
  color: var(--dark);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 900;
  transition: all 0.3s;
}
.btn:hover { background-color: #e58900; transform: translateY(-3px); }

/* Sections (consistent spacing) */
.section{
  padding: var(--space-5) 0;
}

.section h2{ margin-bottom: var(--space-2); }
.section p{ margin-bottom: var(--space-2); }
.section p:last-child{ margin-bottom: 0; }

/* Services */
.services { padding: var(--space-5) 0; background-color: var(--light); }

.section-title { text-align: center; margin-bottom: 50px; }

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.js .service-card{ opacity: 0; transform: translateY(50px); }
.js .service-card.visible{ opacity: 1; transform: translateY(0); }

.service-card:hover { transform: translateY(-10px); }

.service-img { height: 200px; overflow: hidden; }

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-card:hover .service-img img { transform: scale(1.1); }

.service-content { padding: 20px; }
.service-content h3 { color: var(--primary); font-size: 1.5rem; }

/* About */
.about { padding: var(--space-5) 0; }

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.about-text { flex: 1; min-width: 300px; }

.about-image {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-image img { width: 100%; height: auto; display: block; }

/* Quote */
.quote {
  padding: var(--space-5) 0;
  background: linear-gradient(to right, var(--primary), #003a75);
  color: white;
}

.quote h2{
	color: white!important;
}

.quote ul{
	padding-left: 20px;
}
.quote-container { display: flex; flex-wrap: wrap; gap: 50px; }
.quote-text { flex: 1; min-width: 300px; }

.quote-form {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: sans-serif;
  box-sizing: border-box;
}

textarea.form-control { min-height: 120px; resize: vertical; }

.btn-block {
  display: block;
  width: 100%;
  background-color: var(--secondary);
  color: var(--dark);
  border: none;
  padding: 15px;
  font-size: 1.1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.btn-block:hover { background-color: #e58900; }

.g-recaptcha { margin: 15px 0; }

/* Footer */
footer { background-color: var(--dark); color: white; padding: 60px 0 30px; }

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--secondary);
}

.footer-column p,
.footer-column a {
  color: white;
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
  transition: color 0.3s;
  font-size: smaller;
}

.footer-column a:hover { color: var(--secondary); }

.social-links { display: flex; gap: 15px; margin-top: 20px; }

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transition: all 0.3s;
  color: blue;
}
.social-links a:hover {
  background-color: blue;
  transform: translateY(-3px);
  color: #fff;
}

.shareButtonstyle {
  background-color: orange;
  padding: 5px !important;
  border-radius: 5px;
  color: var(--dark);
  font-weight: 900;
  border: 0;
  margin: 8px;
  cursor: pointer;
}

.no-break { white-space: nowrap; }

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #444;
  color: white;
  font-size: 0.9rem;
}

/* Modal */
.modal-overlay{
  display: none;
  position: fixed;
  z-index: 1050;
  inset: 0;
  background: rgba(0,0,0,0.6);
  align-items: center;
  justify-content: center;
}

.modal-content{
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 5px 30px rgba(0,0,0,0.2);
  text-align: center;
}

.text-success{ color: green; }
.modal-content .text-success{ font-size: 5rem; }

.thankyou-title{ color: green; margin-bottom: 0.5rem; }
.thankyou-note{ margin-top: 12px; }
.thankyou-urgent{
  font-size: 1.3rem;
  color: red;
  margin: 3rem 0;
  text-align: center;
}

h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin: 1rem;
  font-size: 30px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 { font-size: 2.8rem; }
}

/* Mobile nav + hero */
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll !important;
    background-size: cover;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
	  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url("../images/background-mobile.jpg")
                center / cover no-repeat !important;
  
  }

  .header-container { padding: 0px; position: relative; }

  .mobile-menu-btn {
    display: block;
    font-size: 1.6rem;
    line-height: 1;
    padding: 10px 12px;
    border-radius: 8px;
  }

  #menu{
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    z-index: 2000;

    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;

    padding: 0;
    transition: max-height 220ms ease, opacity 160ms ease, transform 160ms ease, padding 160ms ease;
  }

  #menu.active{
    max-height: 70vh;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    padding: 14px;
  }

  #menu li{ margin: 0; }
  #menu a{
    display: block;
    padding: 12px;
    border-radius: 10px;
  }
  #menu a:hover{ background: rgba(0, 86, 179, 0.08); }

  .hero h1 { font-size: 2.3rem; }
  .hero p { font-size: 1rem; }
}

@media (max-width: 576px) {
  .hero h1 { font-size: 2rem; }
  .section-title h2 { font-size: 2rem; }
  .btn { padding: 10px 20px; }
}

/* Fleet page */
.hero--small {
  height: auto;
  min-height: 300px;
  padding: calc(var(--header-offset) + var(--space-4)) 0 var(--space-4);
}

.hero__content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-3); /* consistent grid gutters */ /* [web:277] */
}

.fleet-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.fleet-card h2 {
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: capitalize;
}

.fleet-card p {
  margin-bottom: 12px;
  color: rgba(0,0,0,0.75);
}

.fleet-card ul {
  margin: 12px 0 0;
  padding-left: 1.1em;
}

.fleet-card li { margin: 0 0 10px 0; }

.section--cta { background: var(--light); text-align: center; }
.section--cta .btn { margin: 8px 10px 0 0; }

@media (max-width: 768px){
  .hero--small {
    padding: calc(var(--header-offset) + var(--space-3)) 0 var(--space-3);
    min-height: 300px;
  }
  .fleet-card { padding: 20px; }
  .section--cta .btn { display: block; width: 100%; margin: 10px 0 0; }
}

/* Gallery */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-2); /* [web:277] */
  margin-top: var(--space-3);
margin-bottom: var(--space-4);
}


.gallery-item{
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.10);
}

.gallery-item img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 200ms ease;
}
.gallery-item:hover img{ transform: scale(1.03); }

.gallery-status{
  margin-top: var(--space-2);
  color: rgba(0,0,0,0.7);
}

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 20px;
}
.lightbox.open{ display: flex; }

.lightbox img{
  max-width: min(1100px, 95vw);
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.lightbox-close{
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 0;
  background: rgba(255,255,255,0.9);
  cursor: pointer;
}
