* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0a1f44;
  --secondary-color: #1e3a5f;
  --accent-color: #d4af37;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background:#DF2325;
  color:white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.btn-primary {
  background:#DF2325;
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(10, 31, 68, 0.3);
}

.btn-primary:hover {
  background: var(--secondary-color);
  box-shadow: 0 6px 25px rgba(10, 31, 68, 0.5);
}

.btn-large {
  padding: 16px 40px;
  font-size: 18px;
}

.btn-small {
  padding: 8px 20px;
  font-size: 14px;
}

.marquee {
     background: #DF2325;
    color: var(--text-light);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

.marquee-content span {
  display: inline-block;
  padding: 0 50px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

#header {
  background:var(--primary-color);
  padding: 0px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

#header.scrolled {
  box-shadow: var(--shadow);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  
  font-weight: 700;
  color: var(--primary-color);
}

.call-now-btn {
  display: none;
}

.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
 background: url('slider-2.jpg') no-repeat center center/cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-content {
  text-align: center;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.counters {
  padding: 80px 0;
  background: var(--bg-light);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.counter-item {
  padding: 30px;
  background: var(--text-light);
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.counter-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.counter-number,
.counter-item span {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  display: inline-block;
}
.counter-item span{
  font-size: 28px;
}
.counter-label {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 500;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  text-align: center;
  color: var(--text-light);
}

.cta-section h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.about {
  padding: 100px 0;
  background: var(--text-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image .image-placeholder {
  width: 100%;
  height: 400px;
 background: url('bg1.jpg') no-repeat center center/cover;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.about-content h2 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #555;
}

.why-choose {
  padding: 80px 0;
  background: var(--bg-light);
  text-align: center;
}

.why-choose h2 {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-box {
  padding: 40px 20px;
  background: var(--text-light);
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
}

.feature-box h3 {
  font-size: 18px;
  color: var(--primary-color);
}

.services {
  padding: 100px 0;
  background: var(--text-light);
}

.services h2 {
  text-align: center;
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--text-light);
  border-radius: 15px;
      text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.service-image {
  width: 100%;
 
 
}

.service-card h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin: 20px 20px 10px;
}

.service-card p {
  color: #555;
  padding: 0 20px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-card .btn {
  margin: 0 20px 20px;
}

.brands-slider {
  padding: 60px 0;
  background: var(--bg-light);
  overflow: hidden;
}

.brands-slider h2 {
  text-align: center;
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 40px;
}

.brands-track {
  display: flex;
  animation: scroll 20s linear infinite;
  width: max-content;
}

.brand-logo {

  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--text-light);
  margin: 0 15px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-weight: 600;
  color: var(--primary-color);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.tools {
  padding: 100px 0;
  background: var(--text-light);
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tools-content h2 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.tools-list {
  list-style: none;
}

.tools-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: var(--bg-light);
  margin-bottom: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.tools-list li:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow);
}

.tools-list span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
}

.blink {
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.tools-image .image-placeholder {
  width: 100%;

  background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.reviews {
  padding: 100px 0;
  background: var(--bg-light);
  text-align: center;
}

.reviews h2 {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 60px;
}

.reviews-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  height: 300px;
}

.review-card {
  position: absolute;
  width: 100%;
  padding: 40px;
  background: var(--text-light);
  border-radius: 15px;
  box-shadow: var(--shadow);
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.review-card.active {
  opacity: 1;
}

.stars {
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.review-card p {
  font-size: 18px;
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

.review-card h4 {
  font-size: 20px;
  color: var(--primary-color);
}

.footer {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.footer-col p {
  margin-bottom: 10px;
  opacity: 0.9;
}

.footer-col h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color:#DF2325;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  opacity: 0.9;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .book-now-btn {
    display: none;
  }

  .call-now-btn {
    display: inline-block;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-slider {
    height: 450px;
  }

  .about-grid,
  .tools-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .about-content h2,
  .tools-content h2 {
    font-size: 28px;
  }

  .counter-grid {
    grid-template-columns: 1fr 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .tools-list li {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .slide {
    background-position: -1230px;
}
.hero-content {
    padding-top: 320px;
    text-shadow: 0px 0px 10px #000;
}
    .hero-slider {
        height: 780px;
    }
    .counter-grid {
    grid-template-columns: none;
  }
}