/* ===============================
   Global Styles
================================= */
body {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  color: #4A4A4A;
  background-color: #fff;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

h4 { font-weight: 800; }

/* ===============================
   Brand Colors
================================= */
.btn-primary {
  background-color: #38B6FF;
  border: none;
}
.btn-primary:hover {
  background-color: #199CE5;
}
.text-primary { color: #182F89 !important; }
.text-blue { color: #38B6FF !important; }
.bg-dark-blue {
  background: linear-gradient(135deg, #182F89 0%, #3A57E8 100%);
}

/* ===============================
   Layout Spacing
================================= */
.section-padding, .product-hero { padding: 3rem 0; }

/* ===============================
   Navbar
================================= */
.navbar-toggler { border: none; }
.navbar-toggler:focus { box-shadow: none; }

.phone-mobile-icon {
  width: 40px;
  height: 40px;
  background-color: #25D366; /* Green */
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.phone-mobile-icon:hover {
  transform: scale(1.1);
}

/* ===============================
   Hero Section
================================= */
.hero-section {
  position: relative;
  background: url('images/hero-fallback.png') center/cover no-repeat;
  color: #fff;
}
.hero-bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}
.hero-section .container { position: relative; z-index: 2; }
@media (max-width: 767px) {
  .hero-bg-video { display: none !important; }
}

/* ===============================
   Product Cards
================================= */
.product-card {
  transition: transform 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card img {
  height: 200px;
  object-fit: cover;
}
.product-card .card-body { text-align: left; }


/* Product Page Hero Section */
.product-hero {
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  display: flex;
  align-items: center;
}

/* Overlay with gradient */
.product-hero-overlay {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: linear-gradient(to right, #182F89BF 0%, #182F89F2 100%);
  /* BF = 75% opacity, F2 = 95% opacity */
}

/* Product Highlights */
.product-highlight {
  background: rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
}
.product-highlight i {
  color: #ffffff;
  width: 40px;
  height: 40px;
}
.product-highlight h3 {
  font-size: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
  color: #ffffff;
}



/* ===============================
   CTA Sections
================================= */
.cta-section-dark {
  background: linear-gradient(135deg, #182F89 0%, #0D1B2A 100%);
}
.cta-section-dark h5 {
  font-weight: 600;
  margin: 0;
}
.cta-section-dark .btn-primary {
  background-color: #38B6FF;
  border: none;
  transition: background 0.3s ease;
}
.cta-section-dark .btn-primary:hover {
  background-color: #199CE5;
}
@media (max-width: 768px) {
  .cta-section-dark .container { text-align: center; }
}

/* ===============================
   Footer
================================= */
footer {
  background-color: #0D1B2A;
  color: #ffffff;
}
.social a {
  color: #38B6FF;
  margin-right: 15px;
  font-size: 1.2rem;
}

/* ===============================
   Testimonials
================================= */
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}
.stars {
  color: #FFC107;
  font-size: 1.1rem;
}

/* ===============================
   Video Cards
================================= */
.video-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .video-card { border-radius: 8px; }
}

/* ===============================
   Floating WhatsApp
================================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 60px; height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102, 0); }
}

/* ===============================
   Animations (Optional)
================================= */
.fadeInUp {
  animation: fadeInUp 0.8s ease-in-out;
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
