:root{
    --primary-color: #a90000;
    --secondary-color: #0059a9;
    --primary-light: #feecdd;
    --white-color: #fff;
    --black-color: #333;
    --light-color: #f8f8f8;
}
label{
  display: block;
  text-align: left;
}
#hero-bg{
    background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('./../images/steptodown.com881723.jpg');
    padding: 200px 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.heading-1{
    font-size: 48px;
    font-weight: 800;
}

.heading-2{
    font-size: 30px;
    font-weight: 600;
}

.heading-4{
    font-size: 28px;
    font-weight: 400;
}

.btn-theme-primary {
    background: linear-gradient(135deg, var(--primary-color), #6e00ff);
    color: #fff;
    padding: 15px 46px;
    display: inline-block;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: 0.35s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* Shine animation overlay */
.btn-theme-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transform: skewX(-25deg);
    transition: 0.6s;
}

.btn-theme-primary:hover::before {
    left: 150%;
}

/* Hover animation + Glow + Floating effect */
.btn-theme-primary:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    cursor: pointer;
}

/* Click Effect */
.btn-theme-primary:active {
    transform: scale(0.96);
}


#about{
    background: var(--light-color);
}

.service-box{
    background: var(--light-color);
    box-shadow: 0 10px 10px rgba(0,0,0,0.2);
    border-radius: 10px;
    overflow: hidden;
}

.service-box .body{
    padding: 10px;
    text-align: center;
}

#stats{
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.5)), url('./../images/stats-bg.png');
    padding: 80px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
}

.stat-box-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box{
    background: var(--primary-light);
    padding: 20px;
    color: var(--primary-color);
    border-radius: 10px;
}

.reviews-section {
  background: var(--light-color);
  padding: 70px 20px;
}

.review-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--black-color);
}

.section-subtitle {
  font-size: 17px;
  color: #666;
  margin-bottom: 45px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 25px;
}

.review-card {
  background: var(--white-color);
  border-radius: 14px;
  padding: 25px 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
  border-top: 6px solid var(--primary-color);
  transition: .4s;
  position: relative;
  overflow: hidden;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .16);
}

.review-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-light);
  transition: .4s;
  z-index: 0;
}

.review-card:hover::before {
  top: 0;
}

.client-img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
  border: 3px solid var(--secondary-color);
  position: relative;
  z-index: 9;
}

.client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stars {
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 600;
  margin-top: 15px;
  z-index: 1;
  position: relative;
  z-index: 9;
}

.review-text,
.review-author,
.review-role {
  position: relative;
  z-index: 1;
}

.review-text {
  font-size: 16px;
  color: #555;
  margin: 14px 0 18px;
}

.review-author {
  margin: 0;
  font-weight: 700;
  color: var(--black-color);
}

.review-role {
  font-size: 14px;
  color: var(--primary-color);
}

.why-us-section {
  background: var(--white-color);
}

.why-us-section .section-subtitle {
  color: #666;
  margin-top: 5px;
}

.why-box {
  background: var(--white-color);
  padding: 35px 25px;
  border-radius: 14px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 5px 18px rgba(0,0,0,0.08);
  height: 100%;
  border-top: 6px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.why-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.16);
}

.why-box .icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: var(--primary-light);
  color: var(--primary-color);
  margin-bottom: 18px;
  transition: 0.4s;
}

.why-box:hover .icon {
  background: var(--primary-color);
  color: var(--white-color);
  transform: rotate(360deg);
}

.why-box h4 {
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black-color);
}

.why-box p {
  font-size: 15px;
  color: #555;
  margin: 0;
}

.packages-section {
  background: var(--light-color);
}

.packages-section .section-subtitle {
  color: #666;
  margin-top: 5px;
}

.package-card {
  background: var(--white-color);
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .09);
  border-top: 6px solid var(--primary-color);
  transition: .4s;
  position: relative;
  height: 100%;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .18);
}

.package-card.popular {
  border-top-color: var(--secondary-color);
}

.package-card .tag {
  position: absolute;
  top: -12px;
  right: 22px;
  background: var(--secondary-color);
  color: var(--white-color);
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 50px;
}

.package-card .title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--black-color);
  text-align: center;
}

.features {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.features li {
  font-size: 15px;
  margin: 9px 0;
  color: #444;
  display: flex;
  align-items: center;
}

.features li i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 17px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #130b32, #3f0071);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Glow Circles Background */
.cta-section::before,
.cta-section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    z-index: 1;
    filter: blur(140px);
    opacity: 0.4;
}

.cta-section::before {
    background: #ff00ea;
    top: -60px;
    left: -80px;
}

.cta-section::after {
    background: #009dff;
    bottom: -70px;
    right: -70px;
}

.cta-content {
    position: relative;
    z-index: 2;
    animation: fadeUp 1.2s ease;
}

.cta-content h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 18px;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Text Animation */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(35px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-float {
    position: fixed;
    bottom: 22px;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    color: #fff;
    font-size: 26px;
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    z-index: 99;
    cursor: pointer;
    transition: 0.4s ease;
    animation: pulse 1.8s infinite;
}
.btn-float:hover { transform: scale(1.12) rotate(6deg); }
.btn-float.call { left: 22px; background: #2ed573; }
.btn-float.whatsapp { right: 22px; background: #0abf61; }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(10,191,97,.6); }
    70% { box-shadow: 0 0 0 15px rgba(10,191,97,0); }
    100% { box-shadow: 0 0 0 0 rgba(10,191,97,0); }
}

/* Popup */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 92vw;
    max-width: 520px;
    max-height: 90vh;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 30px;
    transform: translate(-50%, -200%);
    transition: 0.7s ease;
    z-index: 99;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.popup.active { transform: translate(-50%,-50%); }

.popup label { margin-top: 8px; font-weight: 600; }
.popup input, .popup select {
    border: 2px solid var(--light-color);
    border-radius: 8px;
    padding: 10px;
    width: 100%;
    margin-bottom: 10px;
}
.popup .close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 42px;
    height: 42px;
    font-size: 26px;
    background: var(--primary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    color: #fff;
    cursor: pointer;
}

/* Overlay */
.overlay {
    background: rgba(0,0,0,0.55);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 90;
    transform: translateX(-100%);
    transition: 0.5s ease;
}
.overlay.active { transform: translateX(0); }

/* Footer */
#footer {
    background: #101010;
    color: #fff;
    padding: 60px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}
.footer-box h4 {
    margin-bottom: 14px;
    font-size: 21px;
    font-weight: 600;
    color: var(--primary-color);
}
.footer-box a {
    display: block;
    color: #cfcfcf;
    margin: 5px 0;
    transition: 0.3s ease;
    text-decoration: none;
}
.footer-box a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}
.footer-box p i { margin-right: 8px; }

/* Copyright */
#copyright {
    background: #0a0a0a;
    color: #ddd;
    text-align: center;
    padding: 14px 0;
    font-size: 15px;
}

#breadcrumb{
  background: var(--primary-color);
  color: var(--white-color);
}

/* Responsive */
@media (max-width: 767px) {
    .cta-content h1 {
        font-size: 32px;
    }
    .cta-content p {
        font-size: 16px;
        line-height: 1.6;
    }
    .footer-grid { grid-template-columns: repeat(1, 1fr); text-align: center; }
    .btn-float { width: 52px; height: 52px; font-size: 22px; }
}
