.scroll-navbar {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.scroll-navbar.sticky {
    position: fixed !important;
    background-color: white !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* WhatsApp Floating Button */
.whatsapp-fab{
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 1050; /* above most UI */
  width: 60px;
  height: 60px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #25D366; /* WhatsApp green */
  color: #fff;
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
  transition: transform .15s ease, box-shadow .15s ease, opacity .2s ease;
  text-decoration: none;
}
.whatsapp-fab:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0,0,0,.22);
}
.whatsapp-fab svg{
  width: 30px;
  height: 30px;
  display: block;
}

#main-page-bg {
    background-image:url(../images/home/hero-bg.png);
    background-size: cover;
}

/* Home Page */
#hero-section {
    padding: 7.5rem 0 2rem 0;
}

.logo-img {
    max-width: 180px; 
    height: auto;
}

#register-section,
#benefits-section {
    padding: 2rem 0;
}

#why-csn-section,
#get-quote-section,
#checklist-section {
    padding-top: 0;
    padding-bottom: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 4rem;
}

.home-btn-blue {
    border-radius: 50px;
    padding: 10px 50px;
    min-width: 200px;
    background-color: #4AA0B5;
    color: #fff;
    transition: all 0.3s ease;
}

.home-btn-blue:hover {
    background-color: #2E7E96;
    color: #e0e0e0;
}

.home-btn-white {
    border-radius: 50px;
    padding: 10px 50px;
    min-width: 200px;
    background-color: #fefffe;
    color: #000;
    transition: all 0.3s ease;
}

.home-btn-white:hover {
    background-color: #e6e6e6;
    color: #333;
}

.home-btn-gray {
    border-radius: 50px;
    padding: 10px 50px;
    min-width: 200px;
    background-color: #dfede8;
    color: #000;
    transition: all 0.3s ease;
}

.home-btn-gray:hover {
    background-color: #c5dbd1;
    color: #222;
}

.home-left-btn {
    float: left;
}

.step-listing {
    max-width: 400px; 
    margin-left:0 !important;
}


.nav-link {
    margin-right: 0.75rem;
    margin-left: 0.75rem;
}

.register-img {
    width: 100%;
    height: auto;
    display: block;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

.register-card {
    background-color: #fff;
    padding: 3rem;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

 .benefit-card {
    background-color: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    text-align: center;
  }

  .benefit-card img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    margin-bottom: 16px;
  }

  .benefit-card h5 {
    margin-bottom: 12px;
    min-height: 48px; /* helps align titles if some are shorter */
  }

  .benefit-card p {
    flex-grow: 1; /* makes paragraphs align to bottom if needed */
    color: #6c757d; /* matches Bootstrap's .text-muted */
  }

.why-csn-icons {
    width: 200px; 
    height: 200px; 
    object-fit: contain;
}

.get-quote-card {
    background-color: #fff;
    border-radius: 25px;
    padding: 2.5rem;
}

/* Services Page */
#services {
    padding: 7.5rem 0 3rem 0;
}

.services-building-icon {
    display: block;
    height: 50px;
    width: 50px;
    object-fit: contain;
}

/* Contact Page */
#contact-and-faq {
    padding: 7.5rem 0 3rem 0;
}

.contact-card {
    background-color: #fff;
    border-radius: 12.5px;
    padding: 5rem 3.5rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.contact-form-card {
    padding: 0 4rem;
}

.contact-form-card input,
.contact-form-card textarea {
    background-color: transparent !important;
    border: 1px solid #000 !important;
}

#contact-faq {
    padding: 4rem 0;
}

.accordion-border {
    border-radius: 30px !important;
}

/* Company Registration */
#company-registration-section {
    padding: 7.5rem 0 3rem 0;
}

#checklistAccordion .accordion-button,
#checklistAccordion .accordion-item {
    background-color: transparent !important;
    padding-left: 0 !important;
}

.steps-icon {
    width: 120px; 
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    margin-bottom: 1.25rem;
}


/* Extra Extra Large (XXL) */
@media (max-width: 1400px) {

}

/* Extra Large (XL) */
@media (max-width: 1200px) {

}


/* Large (LG) */
@media (max-width: 992px) {

    #contact-faq {
        padding: 2rem 0;
    }

    #contact-and-faq {
        padding: 7.5rem 0 2rem 0;
    }

    #checklist-section {
        text-align: center;
    }

    .home-left-btn {
        float: none;
        margin-bottom: 2rem;
    }

    .step-listing {
        max-width: initial; 
        margin-left:0 !important;
    }

    #benefits-section {
        padding-bottom: 0 !important;
    }

}



/* Medium (MD) */
@media (max-width: 768px) {
    .contact-form-card {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .right-img-register {
        max-width: 70%;
    }

    .steps-icon {
        width: 80px; 
    }

    footer .list-unstyled {
        padding-bottom: 0;
        margin-bottom: 0.5rem;
    }
    
}



/* Extra Small (XS) */
@media (max-width: 575px) {

}