 #section-process {
     border-radius: 15px;
 }

 .navbar {
     position: fixed;
     transition: 1s;
 }

 /* Parallax Section Styles */
 .parallax-section {
     position: relative;
     height: 100vh;
     /* full-screen */
     background-image: url('../images/banner/banner-cover-photo9.jpg');
     /* your updated image */
     background-attachment: fixed;
     background-position: center;
     background-repeat: no-repeat;
     background-size: cover;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
 }

 .parallax-section .overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 70%;
     height: 70%;
     /* background-color: rgba(0,0,0,0.6); */
     z-index: 1;
 }

 .form-container {
     position: relative;
     z-index: 1;
     max-width: 500px;
     width: 90%;
     background-color: rgba(199, 191, 191, 0.1);
     padding: 30px;
     border-radius: 15px;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
     backdrop-filter: blur(10px);
 }

 .form-container .form-control {
     width: 100%;
     padding: 12px 15px;
     margin-bottom: 10px;
     border: none;
     border-radius: 8px;
 }

 .get-quote-btn {
     background-color: #FFD700;
     color: #000;
     font-weight: bold;
     padding: 12px;
     border-radius: 8px;
     border: none;
     transition: all 0.3s ease;
 }

 .get-quote-btn:hover {
     background-color: #e6c200;
     transform: scale(1.05);
 }

 @media (max-width: 768px) {
     .form-container {
         padding: 20px;
     }
 }

 .clients-slider {
     position: relative;
     overflow: hidden;
     width: 100%;
 }

 .clients-track {
     display: flex;
     width: calc(190px * 12 + 40px * 11);
     /* total width with gaps */
     gap: 40px;
     animation: scroll 30s linear infinite;
 }

 .client-item {
     flex: 0 0 190px;
 }

 .client-item img {
     width: 100%;
     height: 120px;
     object-fit: contain;
     filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.6));
 }

 @keyframes scroll {
     from {
         transform: translateX(0);
     }

     to {
         transform: translateX(-50%);
     }
 }

 @media (max-width: 480px) {
     .client-item {
         flex: 0 0 120px;
     }

     .client-item img {
         height: 70px;
     }

     .clients-track {
         animation: scroll 25s linear infinite;
     }
 }

 .testimonials-section {
     background-color: #F2F2F2;
     padding: 60px 0;
 }

 .quote-item {
     background: #fff;
     border-radius: 10px;
     padding: 25px 30px;
     border: solid 2px #ffcb00;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 }

 .quote-text {
     font-size: 16px;
     color: #333;
     line-height: 1.6;
     display: block;
 }

 .testimonial-thumb {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     object-fit: cover;
     border: 2px solid #fff;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
 }

 /* FAQ Section Styling */
 .accordion-group .card {
     background-color: #fceea7;
     border: none;
     border-radius: 0;
     margin-bottom: 12px;
     box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
     overflow: hidden;
     transition: all 0.3s ease;
 }

 .accordion-group .card-header button {
     background-color: #fceea7;
     color: #000;
     font-weight: 500;
     font-size: 15px;
     border: none;
     border-radius: 15px;
     width: 100%;
     text-align: left;
     padding: 14px 20px;
     transition: background-color 0.3s ease, color 0.3s ease;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .accordion-group .card-header button:hover {
     background-color: #fceea7;
     border-radius: 15px;
 }

 .accordion-group .card-header button:focus {
     outline: none;
     box-shadow: none;
 }

 .accordion-group .card-body {
     background-color: #fceea7;
     border-radius: 15px;
     padding: 14px 22px;
     font-size: 14px;
     color: #333;
     border-top: 1px solid #fceea7;
     line-height: 1.6;
     text-align: left;
 }

 /* + / - icon styling with perfect round yellow background */
 .accordion-group-faq .btn::after {
     content: '+';
     font-size: 18px;
     font-weight: 600;
     color: #000;
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background-color: #ffcb00;
     transition: transform 0.3s ease, background-color 0.3s ease;
     flex-shrink: 0;
 }

 .accordion-group-faq .btn[aria-expanded="true"]::after {
     content: '-';
     transform: rotate(180deg);
 }

 .collapse {
     transition: height 0.35s ease;
 }

 /* Mobile version adjustments */
 @media (max-width: 768px) {
     .accordion-group .card-header button {
         font-size: 13px;
         padding: 12px 16px;
         text-align: left !important;
     }

     .accordion-group .card-body {
         padding: 12px 16px;
         font-size: 13px;
     }

     .accordion-group .btn::after {
         font-size: 20px;
         width: 26px;
         height: 26px;
     }
 }