:root{
  --brand-blue:#0b63b3;
  --brand-pink:#ff2a8b;
  --bg-light:#ffffff;
  --text-dark:#0c1a2b;
}

body{
  background:var(--bg-light);
  color:var(--text-dark);
  font-family: "Segoe UI", sans-serif;
}

.brand-logo{
  height:40px;
  width:auto;
}

.hero-section {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.content-layer {
  position: relative;
  z-index: 3;
}


.nav-link{
  font-weight:500;
  margin:0 .4rem;
}

.btn-primary{
  background:var(--brand-blue);
  border:none;
}

.btn-outline-primary{
  color:var(--brand-blue);
  border-color:var(--brand-blue);
}

.btn-outline-primary:hover{
  background:var(--brand-blue);
  color:#fff;
}
/* ===== Products: 2-image hover, layout and filters ===== */
.product-img-wrap {
  position: relative;
  height: 180px;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.product-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: opacity .4s ease, transform 0.6s ease;
}

.back-img {
  opacity: 0;
  transform: scale(1.02);
}

.product-img-wrap:hover .back-img {
  opacity: 1;
  transform: scale(1);
}

.product-img-wrap:hover .front-img {
  opacity: 0;
  transform: scale(0.98);
}

/* Card hover elevation */
.product-card .card {
  transition: transform .28s ease, box-shadow .28s ease;
}
.product-card .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(9,30,66,0.08);
}

/* Filter buttons */
.filter-btn {
  background: var(--brand-blue);
  color: #fff;
  margin: 0.3rem;
  border-radius: 20px;
  padding: .4rem .9rem;
  transition: .18s;
  border: none;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--brand-pink);
  color: #fff;
}

/* Card body text */
.card-body h5 {
  margin-bottom: .4rem;
}
.card-body p.small {
  min-height: 3.2rem; /* keeps cards equal height with descriptions */
}

/* Buttons inside card */
.card-body .btn {
  border-radius: 8px;
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .product-img-wrap { height: 150px; }
}
.testimonial-card{
  transition:.25s;
  border:1px solid rgba(0,0,0,0.06);
}

.testimonial-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.testimonial-avatar{
  width:60px;
  height:60px;
  object-fit:cover;
  border:2px solid var(--brand-blue);
}

.stars{
  letter-spacing:2px;
  font-size:1.2rem;
}
/* ================= FAQ ================= */
.accordion-button {
  font-weight: 600;
  color: var(--text-dark);
}

.accordion-button:not(.collapsed) {
  background-color: rgba(11, 99, 179, 0.05);
  color: var(--brand-blue);
}

.accordion-button:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 0.2rem rgba(11, 99, 179, 0.25);
}
/* ================= CONTACT ================= */
#contactForm label {
  color: var(--brand-blue);
}

#contactForm input, #contactForm textarea {
  border: 1px solid rgba(0,0,0,0.1);
}

#contactForm input:focus,
#contactForm textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 0.15rem rgba(11,99,179,0.15);
}

#contact iframe {
  min-height: 350px;
}

/* ================= GALLERY ================= */
.gallery-card {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: .4s;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.gallery-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform .4s;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.12);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.85);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index: 9999;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow:0 0 20px rgba(255,255,255,0.2);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 2.5rem;
  cursor:pointer;
  color:white;
  font-weight: bold;
}
/* ================ FOOTER ================ */
.footer-section {
  background: var(--brand-blue);
}

.footer-logo {
  height: 52px;
  width: auto;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links li a {
  text-decoration: none;
  color: #ddd;
  transition: color .2s;
}

.footer-links li a:hover {
  color: var(--brand-pink);
}

/* Social Icons */
.social-icons a {
  font-size: 1.2rem;
  color: #fff;
  transition: .3s;
}

.social-icons a:hover {
  color: var(--brand-pink);
}

/* Developer Link */
.developer-link {
  color: #fff;
  text-decoration: underline;
}

.developer-link:hover {
  color: var(--brand-pink);
}

/* Responsive fix */
@media (max-width: 767px) {
  .footer-section {
    text-align: center;
  }
}

/* ===== THEME VARIABLES ===== */
:root {
  --brand-blue: #0b63b3;
  --brand-pink: #ff2a8b;
  --bg-light: #ffffff;
  --text-dark: #0c1a2b;
}

body.dark-mode {
  --bg-light: #0c1a2b;
  --text-dark: #ffffff;
  background: var(--bg-light);
  color: var(--text-dark);
}

/* Toggle Button Style */
.theme-toggle {
  border: none;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
  margin-left: 10px;
  color: var(--text-dark);
  transition: 0.3s;
}

.theme-toggle:hover {
  opacity: 0.7;
}

/* ---------- FLOATING WHATSAPP BUTTON ---------- */
.whatsapp-container {
  position: fixed;
  bottom: 90px;
  right: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9999;
}

.whatsapp-float {
  width: 62px;
  height: 62px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s;
  animation: pulse 2.2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15) rotate(4deg);
  box-shadow: 0 0 14px rgba(37, 211, 102, 0.7);
  color: #fff;
}

/* Tooltip */
.whatsapp-tooltip {
  background: #0c1a2b;
  color: #fff;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 12px;
  margin-top: 6px;
  opacity: 0;
  transform: translateY(5px);
  transition: 0.3s ease;
  pointer-events: none;
}

.whatsapp-container:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* Pulse Animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ✅ Better in Dark Mode */
.dark-mode .whatsapp-tooltip {
  background: #ffffff;
  color: #0c1a2b;
}

/* ✅ Mobile Optimization */
@media(max-width: 576px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
}
.whatsapp-float {
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.7),
              0 0 20px rgba(37, 211, 102, 0.5);
}
