/* style.css */

/* Base Reset */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.7;
}

/* Navbar */
.navbar {
  background-color: #2b4eff;
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 1px;
  color: #fcb900;
}

.navbar-dark .navbar-nav .nav-link {
  color: #fff;
  margin-left: 15px;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: #fcb900;
}

/* Hero/Slider */
.carousel-item img {
  object-fit: cover;
}

/* Headings */
h2 {
  color: #2b4eff;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Cards */
.card {
  border: none;
  border-radius: 10px;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.card-title {
  color: #2b4eff;
  font-weight: 500;
}

/* Testimonials */
blockquote {
  border-left: 4px solid #fcb900;
  padding-left: 15px;
  font-style: italic;
  background-color: #fff;
  border-radius: 5px;
  padding: 20px;
}

/* Contact Form */
form .form-control {
  border-radius: 6px;
  border: 1px solid #ccc;
}

form .btn-primary {
  background-color: #2b4eff;
  border-color: #2b4eff;
  padding: 10px 25px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

form .btn-primary:hover {
  background-color: #233ccf;
}

/* Footer */
footer {
  background-color: #2b4eff;
  color: white;
}
#about img {
  object-fit: cover;
  width: 100%;
  max-height: 400px;
}

#about h2 {
  color: #2b4eff;
  font-weight: 600;
  margin-bottom: 20px;
}

#about p {
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
}
.testimonial {
  max-width: 800px;
  margin: 0 auto;
  padding: 10px;
  background-color: #fff;
  border-left: 8px solid #fcb900;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.testimonial p {
  color: #555;
}

.testimonial h6 {
  font-weight: 500;
}
.modern-heading {
  display: flex;
  align-items: center;
  background: #fdfdfd; /* very light warm background */
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.08);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #fcb900; /* updated color */
  max-width: max-content;
  margin-bottom: 1.5rem;
  border-left: 6px solid #fcb900; /* accent vertical bar */
}

.modern-heading i {
  margin-right: 12px;
  font-size: 1.8rem;
  color: #ff2b2b;
}

.modern-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #fcb900;
  border-radius: 2px;
  margin-left: 16px;
}
/* Icon Headings */
.icon-heading {
  font-weight: 600;
  color: #ff2b2b;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  justify-content: center; /* center the heading + icon */
  font-size: 1.8rem;
  position: relative;
  margin-right: 8px;
}

.icon-heading i {
  color: #fcb900; /* gold color */
  font-size: 2rem;
  /* subtle shadow to pop */
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Optional: Add a small underline bar below the heading */
.icon-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #fcb900;
  border-radius: 2px;
  margin: 8px auto 0;
}
  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

  .marquee-container {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(to right, #f7971e, #ffd200);
  padding: 5px 0; /* Reduced vertical padding */
  position: relative;
  z-index: 10;
  line-height: 1.2; /* Keep text tight but readable */
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  font-size: 0.95rem; /* Slightly smaller text */
  font-weight: 600;
  animation: scroll-left 30s linear infinite, colorChange 10s ease-in-out infinite;
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@keyframes colorChange {
  0%   { color: #000; }
  25%  { color: #1e3a8a; }
  50%  { color: #be123c; }
  75%  { color: #047857; }
  100% { color: #000; }
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}
