
/* ===== Base Styles ===== */
:root {
  --primary: #ffffff;
  --secondary: #1a73e8;
  --dark-blue: #0d47a1;
  --light-blue: #e8f0fe;
  --text: #333333;
  --gray: #f5f5f5;
  --dark-gray: #757575;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 80px 0;
}

h1, h2, h3, h4 {
  margin-bottom: 20px;
  line-height: 1.2;
}

p {
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--secondary);
  color: white;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.btn:hover {
  background-color: var(--dark-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background-color: var(--secondary);
  color: white;
}


:root {
  --primary: #ffffff;
  --secondary: #0044cc; /* your theme color */
}

.brand-name {
  font-size: 1.25rem;
  font-weight: bold;
  margin-left: -30px; /* Default for mobile */
  display: block; /* Show on all screens */
}

@media (min-width: 640px) {
  .brand-name {
    margin-left: -400px; /* Only shift on desktop */
  }
}

.blue {
  color: #1A237E;
}

/* HEADER BASE */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* SCROLLED HEADER */
header.scrolled {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* HEADER CONTAINER */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}

/* LOGO */
.logo img {
  height: 70px;
  display: block;
}

/* NAVIGATION */
nav ul {
  display: flex;
  list-style: none;
 
}


nav ul li {
  margin-left: 30px;
  display: flex;
  align-items: center;
}

nav ul li a {
  font-weight: 600;
  text-decoration: none;
  color: #000;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width 0.3s;
}

nav ul li a:hover::after {
  width: 100%;
}

nav ul li a.active {
  color: var(--secondary);
}

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--secondary);
}

   /* fleet page styling */

.section {
      margin-bottom: 50px;
       padding: 40px;
      color: #343a40;
    }
    .section h2 {
      margin-bottom: 15px;
      font-size: 1.5rem;
      color: white;
    }
    .note {
      font-size: 0.9rem;
      color: white;
      margin-bottom: 15px;
    }
    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
    
    }
    .flee-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.518);
      padding: 20px;
      text-align: center;
      transition: transform 0.3s ease;
    }
    .flee-card:hover {
      transform: translateY(-5px);
    }
    .flee-card img {
      width: 150px;
      height: auto;
      margin-bottom: 10px;
    }
    .flee-card h3 {
      font-size: 1.5rem;
      margin-bottom: 8px;
      color: #0d1b2a;
    }
    .flee-card p {
      font-size: 1.2rem;
      color: #1a73e8;
      font-weight: 600;
      margin: 4px 0;
    }

    .fcont {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: auto;
    }
    .fcard {
      background-color: #fff;
      border-radius: 16px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.295);
      overflow: hidden;
      transition: transform 0.3s ease;
    }
    .fcard:hover {
      transform: translateY(-5px);
    }
    .fcard img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .fcontent {
      padding: 20px;
    }
    .ftitle {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 8px;
      color: #1f2d3d;
    }
    .fmodels {
      color: #1462a6;
      font-size: 0.95rem;
      line-height: 1.5;
    }
    

     .abt {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('../assets/bg.jpg') no-repeat center center/cover;
            height: 85vh;
            
            align-items: center;
            text-align: center;
            color: white;
            position: relative;
        }
        
      
        
        .abt h1 {
            font-size: 3.5rem;
            margin-top: 100px;
            animation: fadeInUp 1s ease;
        }

       .pricing {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),url('https://images.unsplash.com/photo-1506744038136-46273834b3fb') no-repeat center center fixed;
    background-size: cover;
    color: white; /* Optional: ensures text is visible on dark image */
    background-attachment: fixed;

}

/* ===== Footer ===== */
footer {
  background-color: #1a1a2e;
  color: white;
  padding: 80px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column h3 {
  color: white;
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #bbb;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: var(--secondary);
}

.footer-column p {
  color: #bbb;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--secondary);
  transform: translateY(-5px);
}


.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #bbb;
  font-size: 14px;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


/* ===== Base Responsive Styles ===== */
@media (max-width: 1200px) {
  .container {
    width: 95%;
  }
}

@media (max-width: 768px) {
  /* General styles */
  section {
    padding: 60px 0;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  /* Header & Navigation */
  .header-container {
    padding: 10px 0;
  }
  
  .logo {
    font-size: 24px;
    margin-left: 15px;
  }
  
  .mobile-menu-btn {
    display: block;
    margin-right: 15px;
  z-index: 1001;
  }
  
  nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: white;
    transition: all 0.3s ease;
    z-index: 999;
  }
  
  nav.active {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
    padding: 30px;
  }
  
  nav ul li {
    margin: 15px 0;
  }
  
  /* Fleet page */
  .section {
    padding: 30px 20px;
  }
  
  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .flee-card img {
    width: 120px;
  }
  
  .flee-card h3 {
    font-size: 1.3rem;
  }
  
  .flee-card p {
    font-size: 1rem;
  }
  
  .fcont {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 15px;
  }
  
  /* About section */
  .abt h1 {
    font-size: 2.5rem;
    margin-top: 80px;
  }
  
  /* Pricing section */
  .pricing {
    height: auto;
    padding: 60px 0;
    background-attachment: scroll;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  /* General styles */
  section {
    padding: 50px 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  /* Header */
  .logo {
    font-size: 22px;
  }
  
  /* Fleet page */
  .section {
    padding: 25px 15px;
  }
  
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .flee-card {
    padding: 50px;
  }
  
  .flee-card img {
    width: 100px;
  }
  
  .flee-card h3 {
    font-size: 1.1rem;
  }
  
  .flee-card p {
    font-size: 0.9rem;
  }
  
  /* About section */
  .abt {
    height: 60vh;
  }
  
  .abt h1 {
    font-size: 2rem;
    margin-top: 70px;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-column {
    margin-bottom: 20px;
  }
  
  .footer-column h3 {
    margin-bottom: 15px;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* Very small devices (phones, 400px and down) */
@media (max-width: 400px) {
  /* Fleet page */
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .flee-card {
    max-width: 200px;
    margin: 0 auto;
  }
  
  /* About section */
  .abt h1 {
    font-size: 1.8rem;
  }
}

/* WhatsApp Icon */
.whatsapp-float {
    position: fixed; 
    margin-bottom: 20px;
    bottom: 20px; 
    right: 20px; 
    width: 60px;
    height: 60px; 
    transition: transform 0.3s ease;
    cursor: pointer; 
    overflow: visible;
    z-index: 9999; /* Add this line */
}

.whatsapp-float:hover {
    transform: scale(1.1);
    
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
}

@media screen and (max-width: 480px) {
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 10px;
        right: 10px;
    }
}

