/* ===== 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;
  padding-top: 70px; /* matches header height */
}

.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;
}

/* ===== Common Section Styles ===== */
.section-title, .section-title2 {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title h2, .section-title2 h2 {
  font-size: 36px;
  color: var(--secondary);
  display: inline-block;
}

.section-title h2::after, .section-title2 h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--secondary);
  margin: 15px auto 0;
}

: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;
  height: 70px;
  padding: 0 30px;
}

/* LOGO */
.logo img {
  height: 70px;
  display: block;
}

/* NAVIGATION */
nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

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);
}

/* ===== Hero Section ===== */
.hero {
  height: 100vh;
  min-height: 700px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
              url('https://images.unsplash.com/photo-1502877338535-766e1452684a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* ===== Quote Box ===== */
.quote-box {
  background: linear-gradient(135deg, #0072ff, #00c6ff); 
  padding: 30px;
  height: 100%;
  border-radius: 13px;
  max-width: 400px;
  margin: 2px auto;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.quote-box h1 {
  font-size: 34px;
  margin-bottom: 20px;
  color: white;
}

.quote-button {
  background-color: rgb(10, 10, 77);
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.quote-button:hover {
  background-color: #0d47a1;
}

/* ===== Services Section ===== */
.services {
  background-color: var(--gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary), var(--dark-blue));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover .service-icon,
.service-card:hover h3,
.service-card:hover p {
  color: white;
}

.service-icon {
  font-size: 50px;
  color: var(--secondary);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.service-card p {
  color: var(--dark-gray);
  transition: all 0.3s ease;
}

/* ===== Guest Management Section ===== */
.guest-management {
  background-image: linear-gradient(rgba(0,0,0,0.60), rgba(0,0,0,0.60)), 
                   url("../assets/img.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.guest-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.guest-content p {
  font-size: 18px;
  color: white;
}

/* ===== Attributes Section ===== */
.attributes-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 90px;
  background-color: var(--gray);
  flex-wrap: wrap;
}

.content {
  max-width: 600px;
}

.subtitle {
  color: #1a73e8;
  font-weight: bold;
  margin-bottom: 10px;
}

.attributes-section h1 {
  font-size: 40px;
  margin: 0 0 30px;
}

.attributes {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 20px;
}

.attribute {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1a1a1a;
}

.attribute span {
  color: #f6a319;
  font-size: 24px;
}

.image-container img {
  max-width: 400px;
  width: 100%;
}

/* ===== Why Us Section ===== */
.why-us {
  background-color: white;
}

.why-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.why-text {
  flex: 1;
}

.why-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.why-image:hover img {
  transform: scale(1.05);
}

/* ===== Stats Section ===== */
.stats-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.stats-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 20px;
  flex: 1;
  min-width: 200px;
}

.stat-number {
  font-size: 60px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 18px;
  color: #7f8c8d;
}

/* ===== Fleet Section ===== */
.fleet {
  background-color: #f8fafc;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.fleet::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 0;
}

.section-subtitle {
  color: #64748b;
  font-size: 18px;
  margin-top: -15px;
  margin-bottom: 50px;
  text-align: center;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.fleet-card {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  transform: translateY(20px);
  opacity: 0;
}

.fleet-card.animate {
  transform: translateY(0);
  opacity: 1;
}

.fleet-card.featured {
  box-shadow: 0 15px 40px rgba(26, 115, 232, 0.15);
}

.fleet-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.fleet-card.featured:hover {
  box-shadow: 0 25px 50px rgba(26, 115, 232, 0.2);
}

.fleet-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.fleet-card:hover .fleet-img img {
  transform: scale(1.1);
}

.fleet-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #1a73e8;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fleet-badge.featured {
  background-color: #ff6b00;
}

.fleet-info {
  padding: 25px;
}

.fleet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.fleet-header h3 {
  font-size: 20px;
  margin-bottom: 0;
  color: #1e293b;
}

.fleet-rating {
  display: flex;
  align-items: center;
  background-color: #f8fafc;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.fleet-rating i {
  color: #f59e0b;
  margin-right: 5px;
  font-size: 12px;
}

.fleet-features {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.fleet-features span {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #64748b;
}

.fleet-features i {
  margin-right: 5px;
  color: #1a73e8;
  font-size: 14px;
}

.fleet-desc {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.fleet-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #f1f5f9;
}

/* ===== Partners Section ===== */
.partners {
  background-color: white;
}

.partners-grid, .client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  align-items: center;
}

.partner-logo, .client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.463);
  transition: all 0.3s ease;
}

.partner-logo , .partner-logo-center{
  height: 100%;
  width: 100%;
}

.client-logo {
  height: 75%;
  width: 90%;
}

.partner-logo:hover, .client-logo:hover {
  transform: scale(1.1);
}

.partner-logo img, .client-logo img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease;
}



.partner-logo-center {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.partner-logo-center img {
  width: 160px; 
  background: white;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.463);
  transition: all 0.3s ease;
  
}

.partner-logo-center img:hover {
  transform: scale(1.05);
}

/* ===== Testimonials Section ===== */
.testimonials {
  background-color: var(--light-blue);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: none;
}

.testimonial.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.testimonial-text {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 5px;
  font-size: 18px;
}

.author-info p {
  color: var(--dark-gray);
  font-size: 14px;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.testimonial-nav button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: #ccc;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-nav button.active {
  background-color: var(--secondary);
  transform: scale(1.2);
}

/* ===== 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;
  }
}

/* ===== Responsive Styles ===== */
@media (max-width: 1200px) {
  .attributes-section {
    padding: 80px 40px;
  }
}

@media (max-width: 992px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .fleet-card:nth-child(1) {
    grid-column: 1 / span 2;
  }
  
  .fleet-card:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  
  .fleet-card:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }
  
  .fleet-card:nth-child(4) {
    grid-column: 1 / span 2;
    grid-row: 3;
  }
  
  .why-content {
    flex-direction: column;
  }
  
  .attributes-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }
  
  .content {
    margin-bottom: 40px;
  }
  
  .image-container {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 15px 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 69px;
    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;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
    margin-bottom: 15px;
  }
  
  .section-title h2, .section-title2 h2 {
    font-size: 30px;
  }
  
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  
  .fleet-card:nth-child(1),
  .fleet-card:nth-child(2),
  .fleet-card:nth-child(3),
  .fleet-card:nth-child(4) {
    grid-column: 1;
    grid-row: auto;
  }
  
  .stats-row {
    flex-direction: column;
    align-items: center;
  }
  
  .stat-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 36px;
  }
  
  .section-title h2, .section-title2 h2 {
    font-size: 28px;
  }
  
  .service-card {
    padding: 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .attributes {
    grid-template-columns: 1fr;
  }
  
  .quote-box h1 {
    font-size: 28px;
  }
  
  .quote-button {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .testimonial-text {
    font-size: 16px;
  }
}

/* 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;
    }
}
