body.main {
  position: relative;
  min-height: 100vh;
  background: #fff;
  font-family: 'Arial', sans-serif;
  color: #000;
}

.service-section {
    /* background-color: #FF6B35; */
    min-height: 100%;
    position: relative;
    overflow: hidden;
}

.service-title {
    font-family: Arial, sans-serif;
    font-weight: 900;
    font-size: 5rem;
    line-height: 0.85;
    margin: 0;
}

.servicesSectionCol {
    background-color: white;
}

.SecondServicesCol {
    background-color: #FF6B35;
}

.service-orange {
    color: #FF6B35;
}

.service-black {
    color: #000000;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-left: 1rem;
}

.service-icon .hand {
    font-size: 3rem;
    color: #000;
}

.service-icon .star {
    font-size: 1.5rem;
    color: #000;
    position: absolute;
    top: -10px;
    right: 10px;
}

.offerings-title {
    font-family: Arial, sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: #000;
    margin: 3rem 0 2rem 0;
    text-transform: uppercase;
}

.offerings-list {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

.offerings-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #000;
    font-weight: 500;
}

.offerings-list li i {
    margin-right: 1rem;
    font-size: 1.5rem;
    color: #000;
}

.service-description {
    color: #000;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.services-include {
    color: #000;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.services-list {
    color: #000;
    font-size: 1.1rem;
    line-height: 1.8;
}

.lightbulb-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 250px;
}

.checkboxIcons {
    height: 48px; /* bigger than text */
    width: auto;
    vertical-align: middle;
    margin-right: 8px;
}

.service-description {
    font-weight: 700;
}
.services-list{
    font-weight: 700;
}

.services-include{
    font-weight: 700;
}
/* Social Icons */
.socialIcons {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 2px solid #000;
    border-radius: 10px;
    color: #000;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none; 
}

.socialIcons:hover {
    background-color: #f58220;
    border-color: #f58220;
    color: #fff !important;
}
.whatsapp-float {   
    position: fixed;   
    bottom: 20px;   
    left: 20px;   
    background-color: #25D366;   
    color: white;   
    border-radius: 50%;   
    padding: 15px 18px;   
    font-size: 28px;   
    z-index: 1000;   
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);   
    transition: background-color 0.3s ease;   
    text-decoration: none;   
    display: flex;   
    align-items: center;   
    justify-content: center; 
}  

.whatsapp-float:hover {   
    background-color: #1ebe57; 
}

/* ===========================
   NAVBAR STYLES
   =========================== */
.navbar {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(206, 205, 205, 0.5) !important; /* default transparent */
    
}

/* Solid background after scroll */
.navbar.scrolled {
    background-color: rgba(206, 205, 205, 1) !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Nav Links */
.navbar .nav-link {
    font-weight: 500;
    color: #333 !important;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: #f58220 !important;
}

.navbar .nav-link.active {
    font-weight: 800 !important;
    color: #000 !important;
}

@media (max-width: 576px) {
    /* Body and background adjustments */
    body.main {
        background-attachment: scroll; /* Better performance on mobile */
    }

    /* Hide lightbulb image on mobile */
    .lightbulb-img {
        display: none !important;
    }
@media (max-width: 768px) {
    .service-title {
        font-size: 3rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .offerings-title {
        font-size: 1.5rem;
        margin: 2rem 0 1.5rem 0;
    }

    .service-description,
    .services-include,
    .services-list {
        font-size: 1rem;
    }
}
}