
body {
  font-family: 'Inter', sans-serif;
  background: #f5f7fa;
}

/* NAV */
.navbar {
  background: white;
  padding: 15px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 22px;
}

/* NAV LINKS HOVER */
.nav-link {
  color: #444 !important;
  transition: 0.3s;
}

.nav-link:hover {
  color: #E50914 !important; /* red color */
}

/* ACTIVE LINK (optional premium feel) */
.nav-link.active {
  color: #E50914 !important;
  font-weight: 600;
}

.btn-red {
  background: #E50914;
  color: white;
  border-radius: 8px;
}
.nav-link:hover {
  color: #E50914 !important;
  transform: translateY(-1px);
}

/* MEGA MENU */
.mega-menu {
  width: 100%;
  left: 0;
  right: 0;
  border-radius: 10px;
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* COLUMN HEAD */
.mega-menu h6 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* LINKS */
.mega-menu a {
  display: block;
  color: #333;
  padding: 5px 0;
  text-decoration: none;
  font-size: 14px;
}

.mega-menu a:hover {
  color: #E50914;
}

/* SHOW ON HOVER (optional) */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.mega-menu {
  transition: 0.3s;
}

.nav-item.dropdown:hover .mega-menu {
  margin-top: 10px;
}



/* HERO */
.hero {
  padding: 80px 0;
  background: white;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
}

.hero p {
  color: #666;
}

/* NEW HERO FULL IMAGE */
.hero-new {
  /* background: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952') center/cover no-repeat; */
  background: url('../images/hero.png') center/cover no-repeat;
  height: 500px;
  position: relative;
}
/* DARK OVERLAY */
.hero-new .overlay {
  background: rgba(0,0,0,0.0);
  height: 100%;
  display: flex;
  align-items: center;
}

/* CONTENT */
.hero-content {
  color: white;
  max-width: 500px;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
}

.hero-content p {
  color: #ddd;
}

/* SEARCH FIX */
.search-box input {
  border-radius: 10px 0 0 10px;
}

.search-box button {
  border-radius: 0 10px 10px 0;
}

/* SEARCH */
.search-box {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.search-box input {
  flex: 1;
  padding: 12px;
  border: none;
}

.search-box button {
  background: #E50914;
  color: white;
  border: none;
  padding: 0 20px;
}

/* SERVICE CARD */
.service-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
}

/* .service-card img {
  width: 60px;
} */

/* ARROW */
.arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 20px;
  opacity: 0;
  transition: 0.3s;
}

/* HOVER EFFECT */
.service-card:hover {
  background: #a10109;
  color: white;
  transform: translateY(-5px);
}

.service-card:hover p {
  color: #eee;
}

.service-card:hover .arrow {
  opacity: 1;
  transform: translateX(5px);
}

/* SERVICE IMAGE */
.service-card img {
  width: 200px;
  object-fit: contain;
  border-radius: 20px; /* 🔥 rounded corner */
  padding: 10px;
  background: #f5f5f5; /* light background */
  transition: 0.3s;
}

/* HOVER EFFECT */
.service-card:hover img {
  transform: scale(1.1);
  background: rgba(229,9,20,0.1); /* red tint */
}

/* CARDS */
.card-custom {
  background: white;
  padding: 25px;
  border-radius: 15px;
  transition: 0.3s;
}

.card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* TRUST */
.trust {
  background: white;
}

/* BACKGROUND IMAGE */
.trust-fancy {
  background: url('https://images.unsplash.com/photo-1521791136064-7986c2920216') center/cover no-repeat;
  position: relative;
  padding: 80px 0;
}

/* DARK OVERLAY */
.trust-fancy .overlay {
  background: rgba(0,0,0,0.6);
  padding: 80px 0;
}

/* CARD */
.trust-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  color: white;
  transition: 0.3s;
}

.trust-card img {
  width: 50px;
  margin-bottom: 10px;
}

/* HOVER */
.trust-card:hover {
  transform: translateY(-8px);
  background: rgba(229,9,20,0.8);
}

.trust-card:hover {
  box-shadow: 0 10px 30px rgba(229,9,20,0.5);
}

/* SECTION */
.why {
  background: #f8f9fb;
}

/* BOX */
.why-box {
  background: white;
  padding: 40px 20px;
  border-radius: 20px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* NUMBER */
.why-box .count {
  font-size: 40px;
  font-weight: 700;
  color: #E50914;
}

/* TEXT */
.why-box p {
  color: #555;
  margin-top: 10px;
}

/* HOVER */
.why-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* RED GLOW EFFECT */
.why-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background: #E50914;
  bottom: 0;
  left: 0;
}
.why {
  background: linear-gradient(to right, #fff, #f3f3f3);
}
.why-box .count {
  position: relative;
}

.why-box .count::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(206, 165, 165, 0.288);
  border-radius: 30%;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* CARD */
.why-box {
  background: white;
  padding: 40px 20px;
  border-radius: 20px;
  transition: 0.3s;
}

/* ICON */
.why-box .icon {
  font-size: 35px;
  color: #E50914;
  margin-bottom: 10px;
}

/* NUMBER */
.why-box .count {
  font-size: 40px;
  font-weight: 700;
  color: #E50914;
}

/* TEXT */
.why-box p {
  color: #555;
}

/* HOVER */
.why-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* SECTION */
.how {
  background: #f8f9fb;
}

/* CARD */
.how-box {
  padding: 30px;
  border-radius: 20px;
  background: white;
  transition: 0.3s;
}

/* ICON CIRCLE */
.icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background: rgba(229,9,20,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ICON */
.icon-circle i {
  font-size: 28px;
  color: #E50914;
}

/* TEXT */
.how-box h5 {
  margin-top: 10px;
}

.how-box p {
  color: #666;
  font-size: 14px;
}

/* HOVER */
.how-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}



/* PROMO SECTION */
.promo-section {
  padding: 60px 0;
}

/* BANNER */
.promo-banner {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* IMAGE */
.promo-banner img {
  width: 100%;
  height: auto;
  display: block;
  transition: 0.4s;
}

/* HOVER EFFECT */
.promo-banner:hover img {
  transform: scale(1.03);
}

/* IMAGE HEIGHT FIX */
.promo-img {
  /* height: 250px; */
  object-fit: cover;
  border-radius: 15px;
}

/* CONTROLS STYLE */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0,0,0,0.5);
  border-radius: 50%;
}


/* SECTION */
.testimonial {
  background: #f8f9fb;
}

/* CARD */
.testimonial-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  transition: 0.3s;
  border: 1px solid #eee;
}

/* HOVER */
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* PROFILE IMAGE */
.profile {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

/* STARS */
.stars {
  color: #E50914;
  font-size: 14px;
}

.rating-box {
  background: white;
  padding: 20px;
  border-radius: 15px;
  transition: 0.3s;
}

.rating-box img {
  width: 40px;
  margin-bottom: 10px;
}

.rating-box h5 {
  color: #E50914;
}

.rating-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* SLIDER */
.partners-slider {
  overflow: hidden;
  position: relative;
}

.logos {
  display: flex;
  gap: 50px;
  animation: scroll 15s linear infinite;
}

.logos img {
  height: 80px;
  opacity: 0.7;
  transition: 0.3s;
}

.logos img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* ANIMATION */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partners-slider:hover .logos {
  animation-play-state: paused;
}

.head{color:#E50914;}

/* BLOG CARD */
.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
}

/* IMAGE */
.blog-card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

/* CONTENT */
.blog-content {
  padding: 20px;
}

.blog-content h5 {
  margin-bottom: 10px;
}

.blog-content p {
  color: #666;
  font-size: 14px;
}

/* LINK */
.blog-content a {
  color: #E50914;
  text-decoration: none;
  font-weight: 500;
}

/* HOVER */
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* SECTION FULL WIDTH */
.partner-section {
  width: 100%;
  padding: 0;
  margin: 0;
}

/* IMAGE */
.partner-banner img {
  width: 100%;
  /* height: 600px;  */
  object-fit: cover;
}

.partner-banner {
  width: 100%;
  /* max-width: 1200px; */
  margin: auto;
  /* border-radius: 20px; */
  overflow: hidden;
}


/* BACKGROUND */
.app-section {
  background: linear-gradient(135deg, #0f2027, #1a2a3a, #E50914);
  padding: 80px 0;
}

/* TEXT */
.app-section h2 {
  font-size: 40px;
  font-weight: 700;
}

/* POINTS */
.app-points {
  list-style: none;
  padding: 0;
}

.app-points li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* INPUT */
.app-input {
  display: flex;
  max-width: 400px;
}

.app-input input {
  flex: 1;
  padding: 12px;
  border: none;
  outline: none;
  border-radius: 8px 0 0 8px;
}

.app-input button {
  background: #E50914;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 0 8px 8px 0;
  transition: 0.3s;
}

.app-input button:hover {
  background: #b00610;
}

/* STORE BUTTONS */
.store-buttons img {
  height: 45px;
  margin-right: 10px;
}

/* IMAGE */
.app-img {
  width: 280px;
  transition: 0.3s;
}

.app-img:hover {
  transform: scale(1.05);
}

.highlight {
  border: 2px solid #E50914;
}

/* FOOTER */
footer {
  background: #111;
  color: #ccc;
}

footer a {
  color: #aaa;
  text-decoration: none;
}

footer a:hover {
  color: white;
}

.footer {
  background: #111;
  color: #ccc;
  padding: 60px 0;
}

.footer h4.logo {
  color: white;
  font-weight: 700;
}

.footer h4.logo span {
  color: #E50914;
}

.tagline {
  color: #aaa;
  margin-bottom: 10px;
}

.company {
  color: #888;
  margin-bottom: 15px;
}

/* CONTACT */
.contact p {
  font-size: 14px;
  margin-bottom: 10px;
}

.contact i {
  color: #E50914;
  margin-right: 8px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
}

.footer-links a:hover {
  color: #E50914;
}

/* SOCIAL */
.social a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #ccc;
  transition: 0.3s;
}

.social a:hover {
  color: #E50914;
  transform: translateY(-2px);
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 15px;
  color: #777;
}
.social a:hover {
  text-shadow: 0 0 10px #E50914;
}