/* ================ BASE ================ */
:root {
    --primary-color: #60b358;
    --accent-color: #fcf350;
    --dark-color: #111;
    --light-bg: #f9fafb;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: Arial, sans-serif;
}

.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.hero {
  background: linear-gradient(135deg, #fcf350, #60b358);
  min-height: 60vh;
  color: #000;
}

.section-title {
  font-weight: 700;
  font-size: 2rem;
}

.section-subtitle {
  font-weight: bold;
  font-size: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
  width: 100%;
  height: 200px;
  transition: transform .3s ease, box-shadow .3s ease;
}

/* .card img {
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        } */
.card img {
  /* height: 180px; */
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* This is the key property */
  display: block;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  padding: 1rem;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .15);
}


/* Trust badges */
.brand-logo {
  max-height: 60px;
  filter: grayscale(100%);
  opacity: .7;
}

/* Counter */
.counter {
  font-size: 2.5rem;
  font-weight: 700;
  color: #60b358;
}

footer {
  text-align: left;
}

footer .row>div {
  margin-bottom: 20px;
}
.snapfix-footer {
    border-top: 1px solid rgba(0,0,0,0.06);
}

.footer-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.footer-logo {
    max-width: 170px;
    height: auto;
    display: block;
}

.footer-tagline {
    font-size: 0.95rem;
    color: #555;
    max-width: 320px;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111;
}

.footer-links li {
    margin-bottom: 0.55rem;
}

.footer-links a {
    color: #222;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
    color: #60b358;
    padding-left: 4px;
}

.footer-contact li {
    font-size: 0.95rem;
    color: #333;
}

.social-icon-link {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #f8f9fa;
    border: 1px solid rgba(0,0,0,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.social-icon-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    border-color: rgba(96,179,88,0.45);
}

.social-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

.bbb-logo {
    max-width: 135px;
    height: auto;
    display: block;
}

.bbb-badge-link {
    display: inline-block;
}

.footer-divider {
    border-color: rgba(0,0,0,0.08);
}

.navbar, .navbar .container {
    overflow: visible;
}

.navbar .navbar-brand img {
    max-height: 48px;
    height: auto;
    width: auto;
}

/* Dropdown menu styling */
.navbar .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1100;
}
.navbar .nav-link, .navbar .dropdown-toggle {
    line-height: 1.2;
    padding: 0.5rem 1rem;
}

.navbar .nav-link {
  font-weight: 500;
  padding: 10px 14px;
}

.dropdown-menu {
  min-width: 220px;
}

.dropdown-item {
  padding: 10px 16px;
  font-weight: 500;
}

.dropdown-item:hover {
  background: #f8f9fa;
}


/* WhatsApp */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  z-index: 999;
}
.whatsapp-btn a {
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.6);
}
.whatsapp-btn a:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
    transform: translateY(-3px);
}

.whatsapp-btn img {
  width: 100%;
}

/* Testimonials */
.testimonial {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

/* ===== Scroll Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.9s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.9s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Scale animation (cards, counters) */
.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.8s ease;
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger effect */
.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

.delay-3 {
  transition-delay: 0.45s;
}

.delay-4 {
  transition-delay: 0.6s;
}

.hero-gadget-img {
  max-width: 70%;   /* adjust size */
  height: auto;
  display: block;
  height: auto;
  animation: float 4s ease-in-out infinite;
}

.logo {
  width: 150px;
  height: auto;
  display: block;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  z-index: 0;
}

/* Yellow blob */
.shape-yellow {
  width: 420px;
  height: 420px;
  background: #fcf350;
  top: -120px;
  left: -120px;
}

/* Green blob */
.shape-green {
  width: 360px;
  height: 360px;
  background: #60b358;
  bottom: -120px;
  right: -120px;
}

.scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid #000;
  border-radius: 20px;
  opacity: 0.7;
}

.scroll-indicator span {
  display: block;
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
  margin: 6px auto;
  animation: scrollDown 1.6s infinite;
}

.logo-marquee {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  gap: 60px;
  animation: scroll-logos 25s linear infinite;
  align-items: center;
}

.brand-logo {
  height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .7;
  transition: all .3s ease;
}

.brand-logo:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.1);
}

/* Pause animation on hover */
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.about-section {
  position: relative;
  padding: 40px 0;
  background: #fff;
  overflow: hidden;
}

/* Decorative background shape */
.about-section::before {
  content: "";
  position: absolute;
  right: -120px;
  top: 50%;
  width: 420px;
  height: 420px;
  background: linear-gradient(135deg, #fcf350, #60b358);
  border-radius: 50%;
  opacity: .15;
  transform: translateY(-50%);
}

/* Badge */
.about-badge {
  display: inline-block;
  background: rgba(96, 179, 88, 0.12);
  color: #60b358;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
}

/* Bullet list */
.about-points {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.about-points li {
  margin-bottom: 10px;
  font-weight: 500;
}

/* Image */
.about-image-wrapper {
  position: relative;
  padding: 20px;
}

.about-image {
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.owner-section {
  padding: 90px 0;
}

.owner-img {
  max-width: 420px;
}

.mission-quote {
  font-size: 1.1rem;
  font-style: italic;
  border-left: 4px solid #60b358;
  padding-left: 16px;
  margin: 20px 0;
  color: #333;
}

.badge,
.brand-logo,
.btn {
  transition: transform .25s ease;
}

.badge:hover,
.brand-logo:hover,
.btn:hover {
  transform: translateY(-2px);
}

.carousel-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.custom-carousel-btn {
  width: 8%;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.custom-carousel-btn:hover {
  opacity: 1;
}

.custom-carousel-btn .carousel-control-prev-icon,
.custom-carousel-btn .carousel-control-next-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background-size: 60% 60%;
}

.repair-card {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  min-height: 450px;
  border-top: 5px solid var(--snap-blue);
}

/* Customizing the Dots (Indicators) */
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  /* Makes them dots */
  background-color: var(--snap-blue);
  margin: 0 6px;
}

.carousel-indicators {
  bottom: -60px;
  /* Moves dots below the card */
}

.carousel-indicators {
  bottom: -60px;
}

.carousel-item {
  padding-bottom: 20px;
}

/* Ensure images are consistent height */
.carousel-item img {
  height: 450px;
  object-fit: cover;
  width: 100%;
}

/* About US  */
.about-hero {
    background: url('../assets/images/about-banner.jpg') center/cover no-repeat;
    height: 350px;
    position: relative;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.cta-section {
  background: linear-gradient(135deg, #fcf350, #60b358);
  padding: 80px 0;

}

/* Contact us page */

.contact-section {
    padding: 80px 20px;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: #666;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-form,
.contact-info {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    border: 1px solid #c6c6c6;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.contact-form h2,
.contact-info h2 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(96, 179, 88, 0.2);
}

.btn-primary {
    background: #60b358;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.btn-primary:hover {
    background: #60b358;
}
.phone-link {
    color: var(--bs-success);
    font-weight: 600;
    text-decoration: none;
}

.phone-link:hover {
    text-decoration: underline;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
}


.business-hours {
    /* margin-top: 25px;
    padding-top: 20px; */
    border-top: 1px solid #eee;
}

.page-hero {
  background: linear-gradient(135deg, #fcf350, #60b358);
  padding: 80px 0;
}

.accessory-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    height: 100%;
}

.accessory-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.accessory-card img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

.accessory-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* HERO */
.billpay-hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('assets/images/billpay.jpg') center/cover no-repeat;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

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

.glass-card:hover {
    transform: translateY(-8px);
}

/* ICON */
.icon {
    font-size: 35px;
    margin-bottom: 10px;
}

/* BRANDS */
.brand-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.brand {
    background: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* STEPS */
.step {
    margin-bottom: 30px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    line-height: 50px;
    margin: 0 auto 10px;
}

/* FAQ */
.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 15px;
    border: none;
    background: #fff;
    font-weight: bold;
}

.faq-answer {
    display: none;
    padding: 15px;
    background: #f1f1f1;
}

#faqAccordion .accordion-item {
    border: none;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

#faqAccordion .accordion-button {
    background-color: #fff;
    font-weight: 600;
}

#faqAccordion .accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #000;
}

#faqAccordion .accordion-body {
    background-color: #fff;
}
.accordion-button:focus {
    box-shadow: none;
}
/* BUTTON */
.btn-glow {
    background: #fff;
    color: #000;
    border-radius: 30px;
    padding: 10px 25px;
    transition: 0.3s;
}

.btn-glow:hover {
    background: #000;
    color: #fff;
}

/* CARRIER GRID */
.carrier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.carrier {
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.carrier:hover {
    transform: translateY(-5px);
}

/* MODAL STYLING */
.modal-content {
  border-radius: 20px;
}

.modal-header h5 {
  font-size: 1.4rem;
}

/* INPUT STYLE */
.form-control,
.form-select {
  border-radius: 10px;
  padding: 10px;
  transition: all 0.25s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.15rem rgba(25, 135, 84, 0.2);
}

/* BUTTON */
.modal .btn-success {
  transition: all 0.3s ease;
}

.modal .btn-success:hover {
  transform: translateY(-2px);
}

/* TOP BAR */
/* TOP BAR BASE */
.top-bar {
  background: #198754;
  color: #fff;
  font-size: 13px;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
}

/* MOBILE BUTTON STYLE */
.mobile-call,
.mobile-whatsapp {
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

/* LEFT (CALL) */
.mobile-call {
  background: rgba(255,255,255,0.15);
}

/* RIGHT (WHATSAPP) */
.mobile-whatsapp {
  background: #25D366;
  color: #fff;
}

/* HOVER */
.mobile-call:hover {
  background: rgba(255,255,255,0.25);
}

.mobile-whatsapp:hover {
  background: #1ebe5d;
}

.top-bar a:hover {
  opacity: 0.8;
}
.top-bar i {
  font-size: 14px;
}

/* .top-bar .bi-whatsapp {
  color: #25D366;
}

.top-bar a[href^="tel"] {
  font-weight: 600;
} */
/* MOBILE CLEANUP */
@media (max-width: 576px) {
  .top-bar {
    font-size: 12px;
  }

  .top-bar .row {
    gap: 4px;
  }
  .topbar-inner {
    flex-direction: column;
    gap: 6px;
  }

  /* HIDE EMAIL */
  .top-left .email {
    display: none;
  }

  /* ADDRESS ON TOP */
  .top-left {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .top-left .address {
    width: 100%;
    font-size: 12px;
  }

  /* CALL + WHATSAPP BELOW */
  .top-right {
    width: 100%;
    justify-content: space-between;
  }

  /* BUTTON STYLE */
  .phone a,
  .whatsapp {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
  }

  .phone a {
    background: rgba(255,255,255,0.15);
  }

  .whatsapp {
    background: #25D366;
  }
}

/* MOBILE */
@media(max-width:768px) {
    .hero-title {
        font-size: 2rem;
    }

    .billpay-hero {
        height: 70vh;
    }
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .carousel-item img {
    height: 300px;
    margin-top: 20px;
  }

  .custom-carousel-btn .carousel-control-prev-icon,
  .custom-carousel-btn .carousel-control-next-icon {
    width: 4.5rem;
    height: 4.5rem;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .about-section {
    padding: 70px 0;
  }

  .about-section::before {
    display: none;
  }

  .about-image {
    margin-top: 30px;
  }

  .shape-yellow,
  .shape-green {
    display: none;
  }

  .footer-card {
        padding: 20px;
    }

    .footer-logo {
        max-width: 150px;
    }
}


@keyframes scroll-logos {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .brand-logo {
    height: 45px;
  }

  .section-title {
    font-size: 1.6rem;
  }
}

@keyframes scrollDown {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
  }

  80% {
    opacity: 0;
    transform: translateY(14px);
  }

  100% {
    opacity: 0;
  }
}

/* Hide on mobile */
@media (max-width: 576px) {
  .scroll-indicator {
    display: none;
  }
}


/* Mobile resize */
@media (max-width: 768px) {

  .shape-yellow,
  .shape-green {
    width: 260px;
    height: 260px;
    filter: blur(60px);
  }
}



/* Floating animation */
@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Mobile tweaks */
@media (max-width: 991px) {
  .hero {
    text-align: center;
  }

  .hero-gadget-img {
    max-width: 85%;
    margin: 0 auto;
  }
}