.faqs-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faqs-title {
    font-family: Arial, sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: #000;
    margin-bottom: 1rem;
}

.faqs-underline {
    width: 150px;
    height: 8px;
    background-color: #FF6B35;
    margin-bottom: 3rem;
}

.faqs-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.faq-container {
    background-color: #E8A864;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-header:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: #fff;
    background-color: #FF6B35;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-content {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-content-inner {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.faq-content-inner h5 {
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #f58220; /* Azania orange highlight */
}

.faq-content-inner p {
  margin-bottom: 1rem;
}

.faq-content-inner ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.faq-content-inner ul li {
  margin-bottom: 0.5rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}


/* 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: 768px) {
    .faqs-title {
        font-size: 2.5rem;
    }

    .faq-content-inner {
    font-size: 0.95rem;
    text-align: left;
    padding: 0 10px;
  }
  
    .faq-container {
        padding: 1.5rem;
        height: auto;
    }
    
    .faqs-image {
        height: auto;
        margin-bottom: 2rem;
    }

    .faq-header {
        padding: 1rem 1.5rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-content {
        padding: 0 1.5rem;
    }
}