/* ===== 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);
}

           .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .header {
            text-align: center;
            margin-bottom: 50px;
        }

        .header h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #222;
            font-weight: 600;
        }

        .header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 1.8rem;
            color: #222;
            margin: 40px 0 25px;
            padding-bottom: 10px;
            border-bottom: 1px solid #ddd;
            font-weight: 500;
        }

        /* Combo Slider Styles */

        .individual{
            background:url('../assets/car6.jpg') no-repeat center center/cover;
            height: 70vh;
            align-items: center;
            text-align: center;
            position: relative;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);

        }
 
        
        .combo-slider {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .combo-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }

        .combo-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        }

        .combo-slideshow {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .combo-slides {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease;
        }

        .combo-slide {
            min-width: 100%;
            height: 100%;
        }

        .combo-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-nav {
            position: absolute;
            bottom: 10px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 8px;
        }

        .slide-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slide-dot.active {
            background: white;
            transform: scale(1.2);
        }


               @media (max-width: 768px) {
            .combo-slider, .individual-gallery {
                grid-template-columns: 1fr;
            }
            
            .header h1 {
                font-size: 2rem;
            }
        }
/* ===== 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: 768px) {
  .header-container {
    padding: 15px 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  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;
  }
  
  .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;
  }
}
  

@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;
  }
}

/* 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;
    }
}
    