.navbar {
  background: 
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('/images/red-and-black-eaiivsm48tbupy96.jpg') no-repeat center center/cover;

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;  /* REDUCED from 30px 80px to 20px 40px */
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  animation: dropDown 1.2s ease forwards;
  opacity: 0;
  z-index: 100;
}

a, a:visited, a:active, a:hover {
  color: white !important;
  text-decoration: none !important;
}


/* Apply the keyframe you already have */
@keyframes dropDown {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  60% {
    transform: translateY(20px);
    opacity: 0.8;
  }
  80% {
    transform: translateY(-10px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Animate each nav item with delay */
.navbar ul li {
  display: inline-block;
  margin: 0 20px;
  opacity: 0;
  animation: dropDown 1s forwards;
}

/* Staggered delays for cascade effect */
.navbar ul li:nth-child(1) {
  animation-delay: 0.2s;
}
.navbar ul li:nth-child(2) {
  animation-delay: 0.4s;
}
.navbar ul li:nth-child(3) {
  animation-delay: 0.6s;
}
.navbar ul li:nth-child(4) {
  animation-delay: 0.8s;
}
.navbar ul li:nth-child(5) {
  animation-delay: 1s;
}
/* Add more nth-child as needed depending how many you have */

/* Social icons LEFT */
.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  color: #fff;
  font-size: 24px;
  transition: 0.4s;
}

.social-icons a:hover {
  color: #FF1C1C;
  transform: scale(1.3);
}
/* LOGO CENTER - BIGGER, CLEANER, RESPONSIVE */
.logo {
  flex: none;
  position: relative;
  height: 160px; /* set exact height */
}

.logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 160px; /* or any height you want */
  width: auto;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.logo:hover img {
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}


 

/* Nav links RIGHT */
.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
  position: relative;
  transition: 0.4s;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  background-color: #FF1C1C;
  left: 0;
  bottom: -8px;
  transition: 0.4s ease;
  border-radius: 5px;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a:hover {
  color: #FF1C1C;
}









/* Carousel Container */
.carousel {
  position: relative;
  width: 100vw;
  height: 100vh; /* full screen */
  overflow: hidden;
  background-color: #1a1a1a; /* dark background */
  font-family: 'Poppins', sans-serif;
}
/* Each Slide */
.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  filter: brightness(0.75); /* subtle dark overlay */
  z-index: 0;
  object-fit: cover; /* THIS LINE ENSURES THE IMAGE STAYS WITHIN FRAME */
}


/* Active slide visible */
.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Dots Container */
.carousel-dots {
  position: absolute;
  bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 15px;
  z-index: 10;
}

/* Each dot */
.carousel-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #d6c6a7; /* beige */
  opacity: 0.6;
  cursor: pointer;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

/* Active dot */
.carousel-dot.active {
  background-color: #f5f1e9; /* lighter beige */
  opacity: 1;
  box-shadow: 0 0 8px #f5f1e9;
}




/* Contact Bar Styles */
.contact-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #111 0%, #222 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
  transform: translateY(50px);
  z-index: 10;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.4rem;
}

.contact-item.phone i {
  font-size: 2rem;
  color: #FF1C1C;
  animation: pulse 2s infinite;
}

.contact-btn {
  background: #FF1C1C;
  padding: 15px 30px;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: 0.4s ease;
  box-shadow: 0 0 15px rgba(255,28,28,0.5);
}

.contact-btn:hover {
  background: #fff;
  color: #FF1C1C;
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255,28,28,0.8);
}

/* Entrance Animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pulse Animation for phone icon */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}



.fullscreen-services {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1.2s ease forwards;
}

.fullscreen-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
  transition: filter 0.6s ease, transform 0.6s ease;
  z-index: 0;
}

.fullscreen-services:hover .fullscreen-bg {
  filter: brightness(0.6);
  transform: scale(1.05);
}

.overlay-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
  animation: contentFade 1.5s ease forwards;
}

.overlay-content h1 {
  font-size: 3rem;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.services-link {
  background: #FF1C1C;
  padding: 18px 50px;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.4rem;
  transition: 0.4s ease;
  box-shadow: 0 0 15px rgba(255,28,28,0.6);
}

.services-link:hover {
  background: #fff;
  color: #FF1C1C;
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(255,28,28,0.9);
}

/* Fade Up Animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Content slight fade with delay */
@keyframes contentFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


.mini-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(45deg, #1a1a1a, #111);
  padding: 20px 50px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  position: relative;
  z-index: 10;
  animation: miniFade 1.2s ease;
}

@keyframes miniFade {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.mini-left .phone-number {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
}

.mini-left i {
  color: #FF1C1C;
  margin-right: 8px;
}

.mini-center h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(0,0,0,0.5);
}

.faq-button {
  background: #FF1C1C;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s;
  box-shadow: 0 4px 15px rgba(255,28,28,0.4);
}

.faq-button:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(255,28,28,0.7);
}





.fullscreen-autoglass {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
}

.fullscreen-autoglass .fullscreen-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  transition: filter 0.5s ease;
  z-index: 0;
}

.fullscreen-autoglass:hover .fullscreen-bg {
  filter: brightness(0.65);
}

.autoglass-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none;
  z-index: 1;
}

.autoglass-text {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.6);
  padding: 30px 70px;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.autoglass-link:hover .autoglass-text {
  background: rgba(255, 28, 28, 0.85);
}




.site-footer {
  background: linear-gradient(135deg, #000000, #1a1a1a);
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
  box-shadow: 0 -8px 20px rgba(0,0,0,0.8);
  z-index: 10;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.footer-logo img {
  width: 150px;
  transition: transform 0.5s ease;
}

.footer-logo img:hover {
  transform: scale(1.1);
}

.footer-links a {
  display: block;
  margin: 10px 0;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: 0.4s;
}

.footer-links a:hover {
  color: #FF1C1C;
  transform: translateX(5px);
}

.footer-socials a {
  font-size: 26px;
  margin: 0 12px;
  color: #fff;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  color: #FF1C1C;
  transform: scale(1.3);
}

.footer-contact p {
  margin: 8px 0;
  font-size: 15px;
  opacity: 0.85;
}

.footer-contact i {
  color: #FF1C1C;
  margin-right: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  opacity: 0.6;
}


/* Entrance Animation */
.site-footer {
  animation: fadeInUp 1.5s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}



.carousel-info-box {
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  padding: 30px 40px;
  border-radius: 20px;
  color: #fff;
  max-width: 400px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  animation: fadeInRight 1.2s ease forwards;
  z-index: 20;
}

.carousel-info-box h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #FF1C1C;
}

.carousel-info-box ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.carousel-info-box ul li {
  margin-bottom: 10px;
  font-size: 18px;
  position: relative;
  padding-left: 20px;
}

.carousel-info-box ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #FF1C1C;
}

.carousel-info-box .phone-number {
  font-size: 20px;
  font-weight: bold;
  color: #FFD700;
}

/* Fade In Animation */
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px) translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
  }
}


/* GLOBAL RESET & CONTAINER FIX */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Optional container wrapper if you want extra safety */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}



.promo-banner {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-top: 2px solid #ffcc00;
  border-bottom: 2px solid #ffcc00;
}

.promo-banner a {
  color: #ffcc00;
  text-decoration: underline;
  font-weight: bold;
}

.promo-banner a:hover {
  color: #fff700;
  text-decoration: none;
}
