     :root {
            --brand-red: #ffc72c; /* Main color - red theme */
        }

        .main-header {
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo-text {
            color: #280d6e;
            font-weight: 800;
            font-size: 1.4rem;
            text-decoration: none;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            /* TODO: adjust font on mobile */
        }

        .logo-text:hover {
            color: #ffc72c;
        }

        .btn-call {
            background-color: #280d6e;
            color: #ffffff !important;
            font-weight: 700;
            border-radius: 50px;
            padding: 8px 20px;
            transition: all 0.3s ease;
            border: 2px solid #280d6e;
            text-transform: uppercase;
            font-size: 0.9rem;
            animation: blink 2s linear infinite !important;
            /* blinking call button - gets user attention */
        }

        .btn-call:hover {
            background-color: #ffc72c;
            color: #280d6e !important;
            transform: scale(1.05);
            animation: blink 1.5s linear infinite !important;
        }

        /* Mobile Adjustments for header */
        @media (max-width: 576px) {
            .logo-text {
                font-size: 1.1rem;
            }
            .btn-call {
                padding: 6px 15px;
                font-size: 0.8rem;
            }
            .call-text {
                display: none; /* hides text on mobile - too cramped */
            }
        }

                :root {
            --brand-pink: #d63384;
        }

        .hero-banner {
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                        url('banner-img.png');
            background-size: cover;
            background-position: center;
            min-height: 80vh;
            display: flex;
            align-items: center;
            color: #fff;
            /* padding: 40px 0; */
        }

        .btn-tollfree {
            background-color: #280d6e;
            color: white;
            padding: 12px 20px;
            font-weight: 700;
            border-radius: 8px;
            border: none;
            text-decoration: none;
            display: inline-block;
            /* transition: 0.3s;
            animation: blink 2s linear infinite !important; */
        }

        .btn-tollfree:hover {
            background-color: #ffc72c;
            color: #280d6e;
            transform: scale(1.05);
        }

        /* Toll Free Button Mobile Responsive */
        @media (max-width: 768px) {
            .btn-tollfree {
                padding: 10px 16px;
                font-size: 0.85rem;
                border-radius: 6px;
            }
        }

        @media (max-width: 480px) {
            .btn-tollfree {
                padding: 8px 12px;
                font-size: 0.75rem;
            }
        }

        /* Blink Animation - makes the toll free button blink */
        .blink a,
        .blink {
            /* animation: blink 2s linear infinite !important; */
        }
        /* using blink to draw attention - important for conversions */

        @keyframes blink {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.3;
            }
        }

        /* Features section - the 3 boxes under banner */
        .feature-box {
            transition: all 0.3s ease;
            text-align: center;
            /* FIXME: icons look small on very small phones */
        }

        .icon-circle {
            width: 55px; /* Mobile size */
            height: 55px;
            border: 2px solid rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            font-size: 1.2rem;
            transition: 0.3s;
        }

        .feature-box:hover .icon-circle {
            background-color: #ffc72c;
            border-color: #ffc72c;
            /* yellow on hover effect */
        }

        .feature-title {
            font-size: 11px; /* mobile size */
            font-weight: 600;
            line-height: 1.3;
            text-transform: uppercase;
            /* keep it small on mobile */
        }

        /* Desktop Adjustments */
        @media (min-width: 768px) {
            .icon-circle {
                width: 80px;
                height: 80px;
                font-size: 1.8rem;
                margin-bottom: 15px;
            }
            .feature-title {
                font-size: 15px;
            }
            /* .hero-banner {
                min-height: 650px;
            } */
        }

        /* Prevent text wrapping awkwardly on very small screens */
        @media (max-width: 360px) {
            .feature-title {
                font-size: 9px;
            }
            .icon-circle {
                width: 45px;
                height: 45px;
                font-size: 1rem;
            }
        }

        /* Mobile styles for hero section */
@media (max-width: 768px) {
  .hero-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('mobile-banner.png'); /* use mobile background image */
    background-size: cover;
    background-position: center top; /* portrait orientation */
    min-height: 60vh !important; /* reduce height on mobile */
    padding: 20px 15px;
  }
}

.section-padding {
            padding: 80px 0;
            background-color: #fcfcfc;
            /* why choose us section */
        }

        .section-title {
            color: var(--brand-blue);
            font-weight: 800;
            margin-bottom: 50px;
            position: relative;
            /* TODO: make this more responsive */
        }

        /* Feature Card Styling */
        .choose-card {
            background: #ffffff;
            border: none;
            border-radius: 12px;
            padding: 40px 25px;
            text-align: center;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-bottom: 4px solid transparent;
        }

        /* Hover effect - lift card up */
        .choose-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            border-bottom: 4px solid var(--brand-red);
            /* nice smooth animation */
        }

        .icon-wrapper {
            width: 70px;
            height: 70px;
            background-color: rgba(255, 199, 44, 0.1); /* Light yellow tint */
            color: #280d6e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 28px;
            transition: 0.3s;
        }

        .choose-card:hover .icon-wrapper {
            background-color: #ffc72c;
            color: #ffffff;
            transform: rotateY(360deg);
            /* icon rotates on hover */
        }

        .card-heading {
            color: var(--brand-blue);
            font-weight: 700;
            font-size: 1.25rem;
            margin-bottom: 15px;
        }

        .card-text {
            color: black;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .section-padding { padding: 50px 0; }
            .choose-card { padding: 30px 20px; }
        }

/* Services Section - Modern Design */
.services-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  padding: 60px 0;
  text-align: center;
  /* modern services area */
}

.section-header {
  margin-bottom: 50px;
}

.section-heading {
  color: #280d6e;
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: #666;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Modern Service Card - Premium Design */
.service-card-modern {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card-modern:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card-modern.featured {
  border: 2px solid #280d6e;
  transform: scale(1.02);
}

.service-card-modern.featured:hover {
  transform: scale(1.02) translateY(-12px);
}

/* Gradient Header */
.card-gradient-header {
  background: linear-gradient(135deg, #280d6e 0%, #3d1a8c 100%);
  padding: 10px 20px 10px;
  position: relative;
  overflow: hidden;
}

.card-gradient-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.card-gradient-header.gradient-blue {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
}

.card-gradient-header.gradient-teal {
  background: linear-gradient(135deg, #00897b 0%, #00695c 100%);
}

.card-gradient-header.gradient-orange {
  background: linear-gradient(135deg, #ff6b35 0%, #ff4500 100%);
}

/* Modern Service Icon */
.service-icon-modern {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Icon Image Styling */
.icon-image {
  width: 45px;
  height: 45px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.service-card-modern:hover .icon-image {
  transform: scale(1.2);
}

.service-card-modern:hover .service-icon-modern {
  transform: scale(1.15);
  background: rgba(255, 255, 255, 0.35);
}

/* Card Content */
.card-content {
  padding: 30px 25px;
}

.service-title {
  color: #280d6e;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 5px;
  letter-spacing: -0.3px;
}

.service-subtitle-small {
  color: black;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  /* text-transform: uppercase; */
}

/* Modern Service List */
.modern-service-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 25px 0;
  text-align: left;
}

.modern-service-list li {
  color: black;
  font-size: 0.75rem;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1;
  transition: all 0.3s ease;
}

.modern-service-list li:hover {
  color: #280d6e;
  transform: translateX(5px);
}

.list-icon {
  color: #280d6e;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.card-gradient-header.gradient-blue ~ .card-content .list-icon {
  color: #0066cc;
}

.card-gradient-header.gradient-teal ~ .card-content .list-icon {
  color: #00897b;
}

/* CTA Button */
.service-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #280d6e 0%, #3d1a8c 100%);
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

.service-cta-btn:hover {
  background: linear-gradient(135deg, #3d1a8c 0%, #280d6e 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(40, 13, 110, 0.3);
  color: white;
  text-decoration: none;
}

.card-gradient-header.gradient-blue ~ .card-content .service-cta-btn {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
}

.card-gradient-header.gradient-blue ~ .card-content .service-cta-btn:hover {
  background: linear-gradient(135deg, #0052a3 0%, #0066cc 100%);
  box-shadow: 0 8px 16px rgba(0, 102, 204, 0.3);
}

.card-gradient-header.gradient-teal ~ .card-content .service-cta-btn {
  background: linear-gradient(135deg, #00897b 0%, #00695c 100%);
}

.card-gradient-header.gradient-teal ~ .card-content .service-cta-btn:hover {
  background: linear-gradient(135deg, #00695c 0%, #00897b 100%);
  box-shadow: 0 8px 16px rgba(0, 137, 123, 0.3);
}

.card-gradient-header.gradient-orange ~ .card-content .list-icon {
  color: #ff6b35;
}

.card-gradient-header.gradient-orange ~ .card-content .service-cta-btn {
  background: linear-gradient(135deg, #ff6b35 0%, #ff4500 100%);
}

.card-gradient-header.gradient-orange ~ .card-content .service-cta-btn:hover {
  background: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
  box-shadow: 0 8px 16px rgba(255, 107, 53, 0.3);
}

/* Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
}

/* Tablet adjustments */
@media(max-width:991px){
  .services-section {
    padding: 50px 20px;
  }
  
  .section-heading {
    font-size: 2rem;
  }
  
  .service-title {
    font-size: 1.3rem;
  }
  
  .service-icon-modern {
    width: 70px;
    height: 70px;
  }
  
  .icon-image {
    width: 40px;
    height: 40px;
  }
  
  .card-content {
    padding: 25px 20px;
  }
}

/* Mobile adjustments - medium screens */
@media(max-width:767px){
  .services-section {
    padding: 40px 15px;
  }
  
  .section-heading {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .service-card-modern {
    border-radius: 12px;
  }
  
  .card-gradient-header {
    padding: 30px 15px 20px;
  }
  
  .service-icon-modern {
    width: 65px;
    height: 65px;
  }
  
  .icon-image {
    width: 36px;
    height: 36px;
  }
  
  .card-content {
    padding: 20px 18px;
  }
  
  .service-title {
    font-size: 1.2rem;
    margin-bottom: 3px;
  }
  
  .service-subtitle-small {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }
  
  .modern-service-list li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    gap: 10px;
  }
  
  .service-cta-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    margin-top: 8px;
  }
  
  .service-card-modern.featured {
    transform: scale(1);
  }
  
  .service-card-modern.featured:hover {
    transform: translateY(-12px);
  }
}

/* Extra small screens */
@media(max-width:575px){
  .services-section {
    padding: 30px 12px;
  }
  
  .section-header {
    margin-bottom: 30px;
  }
  
  .section-heading {
    font-size: 1.5rem;
    margin-bottom: 6px;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
  }
  
  .service-card-modern {
    border-radius: 10px;
    margin-bottom: 10px;
  }
  
  .card-gradient-header {
    padding: 25px 12px 15px;
  }
  
  .service-icon-modern {
    width: 60px;
    height: 60px;
  }
  
  .icon-image {
    width: 32px;
    height: 32px;
  }
  
  .card-content {
    padding: 18px 15px;
  }
  
  .service-title {
    font-size: 1.1rem;
  }
  
  .service-subtitle-small {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }
  
  .modern-service-list {
    margin: 15px 0 20px 0;
  }
  
  .modern-service-list li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    gap: 8px;
  }
  
  .list-icon {
    margin-top: 2px;
  }
  
  .service-cta-btn {
    padding: 9px 20px;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
  }
}

/* FAQ section */
.faq-section {
  background: #f4f7fb;
  padding: 60px 0;
}

.faq-section h2 {
    text-align: center;
    /* FIXME: add color to h2 */
}

/* Accordion Item */
.accordion-item {
  border: none;
  border-radius: 12px !important;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: 0.3s;
}

/* Header Button */
.accordion-button {
  background: #fff;
  color: #000;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 12px !important;
  transition: 0.3s;
}

/* Active accordion header - when open */
.accordion-button:not(.collapsed) {
  background: #ffc72c;  /* yellow background */
  color: black;
}

/* Hover effect */
.accordion-button:hover {
  background: #f1f1f1;
}

/* Remove focus shadow */
.accordion-button:focus {
  box-shadow: none;
}

/* Arrow color change */
.accordion-button::after {
  filter: brightness(0); /* black arrow */
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1); /* white arrow */
  transform: rotate(180deg);
}

/* Body */
.accordion-body {
  background: #fff;
  padding: 8px 16px 12px;
  color: black;
  font-size: 14px;
  border-top: 1px solid #eee;
}

/* Highlight open accordion items */
.accordion-item:has(.accordion-button:not(.collapsed)) {
  box-shadow: 0 10px 25px rgba(255, 199, 44, 0.2);
  /* adds yellow shadow effect */
}

/* Mobile FAQ section */
@media(max-width:768px){
  .faq-section {
    padding: 30px 10px;
  }
  /* reduce padding for small screens */

  .accordion-button {
    padding: 10px 12px;
    font-size: 14px;
  }

  .accordion-body {
    padding: 6px 12px 10px;
    font-size: 13px;
  }
}

/* Testimonials / Reviews section */
.testimonial-section {
  background: #f4f7fb;
  padding: 20px 0;
  text-align: center;
  /* customer reviews carousel */
}

.testimonial-section h2 {
  color: #280d6e;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Card */
.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  max-width: 600px;
  margin: auto;
  transition: 0.3s;
}

/* Star rating display */
.stars {
  color: #ffc107;
  margin-bottom: 15px;
  /* all 5-star reviews */
}

/* Content */
.testimonial-text {
  font-size: 15px;
  color: black;
  margin-bottom: 20px;
}

/* Name */
.testimonial-name {
  font-weight: 600;
  color: #000;
}

/* Dots */
.carousel-indicators [data-bs-target] {
  background-color: #280d6e;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.carousel-indicators {
  bottom: -40px;
  padding-bottom: 20px;
}

/* Hover */
.testimonial-card:hover {
  transform: translateY(-5px);
}

/* Mobile */
@media(max-width:768px){
  .testimonial-card {
    padding: 20px;
  }
}





.ban-bg{
    background: rgba(0,0,0,0.09);
    padding: 10px;
}


/* Footer section - at the bottom */
footer {
    background: #280d6e;
    color: #fff;
    padding: 50px 20px 20px !important;
    margin-top: 40px;
    /* dark background footer */
}

.footer-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-logo-wrap {
    margin-bottom: 14px;
}

footer h3 {
    margin: 0 0 15px;
    font-size: 18px;
}

footer p,
footer li,
footer a {
    font-size: 14px;
    line-height: 1.8;
    color: #fff;
    text-decoration: none;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer a:hover {
    color: #ffc72c;
    /* orange on hover */
}

.footer-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-list i {
    color: #ffc72c;
    margin-top: 4px;
    min-width: 16px;
    flex-shrink: 0;
    /* orange icon color */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
    line-height: 1.8;
}

/* Floating call button at bottom */
.support {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: black;
    color: #fff;
    text-align: center;
    padding: 14px 10px;
    font-weight: 700;
    font-size: 18px;
    z-index: 9999;
    /* always visible - helps with conversions */
}

.support a {
    color: white;
    text-decoration: none;
    display: block;
}

.support a:hover {
    color: #ffc72c;

    text-decoration: underline;
}



/* Bottom footer styles - copyright area */
.nfooter-section {
  background: #280d6e;
  color: #fff;
  text-align: center;
  padding: 25px 15px;
  /* footer bottom section */
}

/* Footer paragraph text */
.nfooter-section p {
  margin: 5px 0;
  font-size: 14px;
  color: #ddd;
  /* lighter gray text */
}

/* Copyright line styling */
.nfooter-section .copyright {
  font-weight: 600;
  color: #fff;
  /* bold white text for copyright */
}

/* Mobile footer adjustments */
@media(max-width:768px){
  .nfooter-section {
    padding: 20px 10px;
    /* reduced padding on mobile */
  }

  .nfooter-section p {
    font-size: 13px;
    line-height: 1.6;
  }
  /* adjust text size for small screens */
}




/* Terms Page */


/* Theme Color - main brand color */
:root {
  --main-color: #280d6e;
  /* dark purple color for our theme */
}

/* Terms section - main container */
.terms-section {
  background: #f4f7fb;
  padding: 60px 0;
  /* light background */
}

/* Page title */
.terms-title {
  text-align: center;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 10px;
  /* red title */
}

/* Company name under title */
.company-name {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
  /* gray text */
}

/* Terms card - each section */
.terms-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: 0.3s;
  /* white cards with shadow */
}

.terms-card:hover {
  transform: translateY(-5px);
  /* lift on hover */
}

/* Icon styling */
.terms-icon {
  font-size: 18px;
  color: var(--main-color);
  margin-right: 10px;
  /* red icons */
}

/* Card heading */
.terms-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
  /* bold section titles */
}

/* Card text */
.terms-card p {
  font-size: 14px;
  color: black;
  line-height: 1.6;
  /* readable text content */
}

/* Back button - go to home */
.back-btn {
  display: inline-block;
  margin-top: 30px;
  background: var(--main-color);
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  /* red button */
}

.back-btn:hover {
  background: #ffc72c;
  transform: scale(1.05);
  /* darker red on hover */
}

/* Button wrapper - center align */
.btn-wrap {
  text-align: center;
  /* centers the back button */
}

/* Mobile adjustments */
@media(max-width:768px){
  .terms-section {
    padding: 40px 15px;
  }
  /* reduce padding on mobile */

  .terms-card {
    padding: 20px;
  }

  .terms-card p {
    font-size: 13px;
  }
  /* FIXME: test on small phones */
}
