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

/* NAVBAR */
.navbar-brand { font-size: 20px; }
.nav-link { font-weight: 500; transition: 0.3s; }
.nav-link:hover { color: #0d6efd !important; }

/* HERO */

.hero {
    min-height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
                url('../images/cleaning.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
}

/* BUTTON HOVER */
.btn-success:hover { background-color: #198754; }
.btn-light:hover { background-color: #e2e6ea; }

/* SERVICE CARD */
.service-card {
    transition: 0.3s;
}
.service-card:hover {
    transform: translateY(-8px);
}

/* AREA BOX */
.area-box {
    display: block;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.area-box:hover {
    background: #0d6efd;
    color: #fff;
    transform: translateY(-5px);
}

/* FOOTER LINKS */
.footer-box {
    display: block;
    background: #1f2937;
    padding: 14px;
    border-radius: 8px;
    color: #ddd;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}
.footer-box:hover {
    background: #0d6efd;
    color: #fff;
    transform: translateY(-4px);
}

/* FLOAT ICONS */
.social-icons {
    position: fixed;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}
.social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: 0.3s;
}
.call { background: #0d6efd; }
.wa { background: #25d366; }
.fb { background: #1877f2; }
.insta { background: #e1306c; }
.social-icons a:hover {
    transform: scale(1.15);
}




/* SECTION */
.section-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* ICON BOX */
.call { background: #0d6efd; }
.wa { background: #25d366; }
.fb { background: #1877f2; }
.insta { background: #e1306c; }


.about-box {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* LINE UNDER HEADING */
.line {
    width: 60px;
    height: 3px;
    background: #0d6efd;
    border-radius: 5px;
}

/* HIGHLIGHT BOX */
.about-highlight {
    background: #f8f9fa;
    border-radius: 10px;
    transition: 0.3s;
}

.about-highlight:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* ICON STYLE */
.stat-card .icon {
    font-size: 28px;
}

/* MOBILE SPACING */
@media(max-width:768px){
    .stat-card {
        padding: 25px 15px;
    }
}

.story-box {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}



/* STORY STEP BOX */
.story-step {
    background: #f8f9fa;
    border-radius: 10px;
    transition: 0.3s;
}

.story-step:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.why-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* ICON CIRCLE */
.icon-circle {
    width: 60px;
    height: 60px;
    margin: auto;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* ICON COLORS VARIATION */
.why-card:nth-child(2) .icon-circle {
    background: #198754;
}

.why-card:nth-child(3) .icon-circle {
    background: #ffc107;
    color: #000;
}

.service-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
    border: 1px solid #eee;
}
.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* ICON */
.service-box .icon {
    font-size: 30px;
}

.review-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* STAR COLOR */
.stars {
    color: #ffc107;
    font-size: 18px;
}


































/* HERO (FINAL APPLY - last wala priority) */

/* INTRO */
.intro-box {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.intro-side-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* WHY BOX */
.why-box {
    background: #fff;
    padding: 25px 15px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
    border: 1px solid #eee;
}
.why-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* HERO BOX */
.hero-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* CTA BOX */
.cta-box {
    background: linear-gradient(135deg,#0d6efd,#0b5ed7);
    color: #fff;
    padding: 50px 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* ICON */
.icon {
    font-size: 40px;
}

/* TRUST STRIP */
.trust-strip {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

/* BUTTON HOVER */


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

/* HEADING */
h2 {
    letter-spacing: -0.5px;
}

.price-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    border: 1px solid #eee;
    position: relative;
}

.price-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* PRICE */
.price {
    font-size: 28px;
    font-weight: bold;
    color: #198754;
}

/* FEATURED PLAN */
.featured {
    border: 2px solid #0d6efd;
    transform: scale(1.05);
}

.featured .price {
    color: #0d6efd;
}

/* BADGE */
.badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: #0d6efd;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 5px;
}














/* CTA */
.cta {
    background: linear-gradient(135deg,#0d6efd,#0b5ed7);
    color: #fff;
    padding: 50px;
    border-radius: 15px;
}

/* ICON BOX */
.icon-box {
    padding: 25px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}
.icon-box:hover {
    transform: translateY(-6px);
}


.hover-card{
  transition: all 0.3s ease;
}
.hover-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.include-card{
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.include-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  border-color: #0d6efd;
}


.price-card{
  transition: all 0.3s ease;
}

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

.service-area-box{
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.service-area-box:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

















    .section-title {
      font-weight: 700;
    }

    .card-hover {
      transition: 0.3s;
      border: 1px solid rgba(0,0,0,0.05);
    }

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


	
	
.about-box{
  border: 1px solid rgba(13,110,253,0.15);
  transition: all 0.3s ease;
}

.about-box:hover{
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: #0d6efd;
}








  
	
	.about-card{
  border: 1px solid rgba(13,110,253,0.12);
  transition: all 0.3s ease;
}

.about-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
  border-color: #0d6efd;
}






















  /* Glow circles */
 
  .hero-badge{
    display:inline-block;
    background:rgba(255,255,255,0.15);
    padding:6px 14px;
    border-radius:50px;
    font-size:13px;
    margin-bottom:15px;
    backdrop-filter: blur(6px);
  }

  .hero h1{
    font-weight:800;
    font-size:42px;
    line-height:1.2;
  }

  .hero p{
    max-width:720px;
    margin:15px auto 0;
    color:rgba(255,255,255,0.85);
    line-height:1.7;
  }

  .hero-btns{
    margin-top:30px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
  }

  .btn-glass{
    background:#fff;
    color:#0d6efd;
    border-radius:50px;
    padding:12px 25px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
  }

  .btn-glass:hover{
    transform:translateY(-3px);
  }

  .btn-outline-glass{
    border:2px solid #fff;
    color:#fff;
    border-radius:50px;
    padding:12px 25px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
  }

  .btn-outline-glass:hover{
    background:#fff;
    color:#0d6efd;
  }

  /* Trust line */
  .hero-trust{
    margin-top:25px;
    font-size:13px;
    color:rgba(255,255,255,0.8);
	opacity:0.85;
  }
  
  
  .about-box{
  border: 1px solid rgba(13,110,253,0.12);
  transition: all 0.3s ease;
}

.about-box:hover{
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
  border-color: #0d6efd;
}

















  



    
	
	.about-card{
  border: 1px solid rgba(13,110,253,0.12);
  transition: all 0.3s ease;
}

.about-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
  border-color: #0d6efd;
}


.choose-card{
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.choose-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
  border-color: #0d6efd;
}

















 

  /* Badge */


 


  .btn-primary-custom{
    background:#fff;
    color:#0d6efd;
    padding:12px 26px;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    transition:0.3s;
  }

  .btn-primary-custom:hover{
    transform:translateY(-3px);
  }

  .btn-outline-custom{
    border:2px solid #fff;
    color:#fff;
    padding:12px 26px;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
  }

  .btn-outline-custom:hover{
    background:#fff;
    color:#0d6efd;
  }

  /* Trust line */
 
 
 
 
 
 
 
 
 
 
 /* CONTENT BOX (glass effect) */
.hero-box {
    max-width: 650px;
    margin: auto;
}

/* BUTTON */
.btn {
    transition: all 0.3s ease;
    border-radius: 8px;
}
.btn:hover {
    transform: translateY(-2px);
}

/* BUTTON STYLE */
.btn-success {
    box-shadow: 0 4px 15px rgba(25,135,84,0.3);
}
.btn-light {
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

/* TEXT IMPROVE */
.hero h1 {
    font-size: 40px;
}
.hero p {
    opacity: 0.9;
}

/* MOBILE */
@media (max-width: 576px) {
    .hero {
        min-height: 50vh;
    }
    .hero h1 {
        font-size: 26px;
    }
}


/* CONTACT BOX */
.contact-box {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
}
.contact-box:hover {
    transform: translateY(-4px);
}

/* SMALL INFO BOX */
.info-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-icon {
    font-size: 20px;
    width: 45px;
    height: 45px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* FORM */
.form-control {
    border-radius: 8px;
    padding: 12px;
}
.form-control:focus {
    box-shadow: none;
    border-color: #0d6efd;
}

/* BUTTON */
.btn {
    border-radius: 8px;
    padding: 12px;
    transition: 0.3s;
}
.btn:hover {
    transform: translateY(-2px);
}

/* MAP SECTION */
.map-box {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* TITLE */
.map-title {
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* OPTIONAL SUBTEXT */
.map-subtext {
    color: #6c757d;
    font-size: 15px;
}

/* CTA SECTION */
.cta-section {
    color: #fff;
    border-radius: 20px;
    padding: 50px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* BUTTON */
.cta-btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s;
}
.cta-btn:hover {
    transform: translateY(-2px);
}

/* TRUST LINE */
.cta-trust {
    font-size: 14px;
    opacity: 0.9;
}

/* MOBILE */
@media (max-width: 576px) {
    .cta-section {
        padding: 40px 15px;
    }
}

