        :root {
            --primary-color: #C29406;
            --primary-dark: #C29406;
        }

        body {
            font-family: 'Jost', sans-serif;
            margin: 0;
            padding: 0;
        }
         .text-primary-color{
            color: var(--primary-color);
         }

         .bg-primary-color{
            background-color: var(--primary-color);
         }

        .heading-decorator::before,
        .heading-decorator::after {
        content: "▬▬"; /* Repeat the character for a longer dash */
        margin: 0 10px; /* Adjust spacing */
        color: inherit; /* Inherits text color */
        }

        .heading-decorator-two::after {
        content: "▬▬"; /* Repeat the character for a longer dash */
        margin: 0 10px; /* Adjust spacing */
        color: inherit; /* Inherits text color */
        }

        /* Navbar Styles */
        .navbar {
            transition: all 0.3s ease;
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .navbar.transparent {
            background-color: transparent;
           border-bottom: 1px solid rgba(162, 162, 163, 0.2)
        }

        .navbar.transparent .nav-link {
            color: white !important;
        }

        .navbar.scrolled {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .navbar.scrolled .nav-link {
            color: black !important;
        }


        .navbar-nav {
            margin: 0 auto;
            gap: 1.2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            font-size: 20px;
        }

        .nav-link {
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .contact-btn {
            background-color: var(--primary-color);
            color: white !important;
            padding: 8px 23px;
            border-radius: 25px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .contact-btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                        url('../img/sub_bg.jpg');
            background-size: cover;
            background-position: center;
            color: white;
/*            padding: 200px 0 200px 0;*/
            padding-top: 20rem;
            padding-bottom: 14rem;
            margin-top: -76px;
            text-align: center; /* Align content to the right */
        }

        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .hero-btn {
            padding: 10px 35px;
            font-size: 1.1rem;
            border-radius: 30px;
            background-color: var(--primary-color);
            border: none;
        }

        .hero-btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
        }

        .hero-two-btn {
            padding: 10px 35px;
            font-size: 1.1rem;
            border-radius: 30px;
            background-color: white;
            border: none;
        }

        .hero-two-btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
        }

        /* Pricing Section */
        .pricing-card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            overflow: hidden;
            margin-bottom: 30px;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
        }

        .normal-card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            overflow: hidden;
            margin-bottom: 30px;
            padding: 20px;
            background-color: rgba(162, 162, 163, 0.2);
        }

        .normal-card:hover {
            transform: translateY(-10px);
            background-color: var(--primary-color);
            color: white;
        }

        .normal-card-inverse {
            border: none;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            overflow: hidden;
            margin-bottom: 30px;
            padding: 20px;
            background-color: var(--primary-color);
            color: white;
        }

        .normal-card-inverse:hover  {
            transform: translateY(-10px);
            background-color: rgba(162, 162, 163, 0.2);
            color: black;
                }

        .pricing-image {
            height: 200px;
            object-fit: cover;
        }

        .card-body {
            padding: 2rem;
        }

        .pricing-card h3 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        /* Testimonial Section */
/* Testimonial Section */
.testimonial-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    margin: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.testimonial-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.testimonial-card p {
    font-style: italic;
    color: #666;
    margin-bottom: 0;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

/* Responsive Styles */
@media (max-width: 767.98px) {
    .testimonial-card {
        margin: 10px auto; /* Center cards on mobile */
    }

    .carousel-item .row {
        flex-direction: column;
    }

    .carousel-item .col-md-6 {
        max-width: 100%; /* Full width on mobile */
    }
}

        /* Portfolio Section */
        .portfolio-section {
            padding: 80px 0;
            background-color: #000;
            color: white;
        }

        .portfolio-section img {
            border-radius: 15px;
            margin-bottom: 15px; /* Space between rows on mobile */
        }

        /* Carousel Controls */
        .carousel-control-prev, .carousel-control-next {
            width: 5%;
            background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for controls */
            border-radius: 50%;
            height: 40px;
            width: 40px;
            top: 50%;
            transform: translateY(-50%);
        }

        .carousel-control-prev-icon, .carousel-control-next-icon {
            filter: invert(1); /* Make arrows white */
        }

        /* Responsive Styles */
        @media (max-width: 991px) {
            .navbar-nav {
                justify-content: flex-start;
                align-items: flex-start;
                padding-left: 1rem;
            }

            .navbar-collapse {
                background-color: white;
                padding: 1rem 0;
            }

            .navbar.transparent .navbar-collapse .nav-link {
                color: #000 !important;
            }

            .contact-btn {
                margin-left: 1rem;
                margin-right: 1rem;
                display: inline-block;
            }

            .hero-section {
                padding-top: 13rem;
                padding-bottom: 9rem;
                margin-top: -76px;
            }

            .hero-section h1 {
                font-size: 2.5rem;
                font-weight: 600;
                margin-bottom: 1.5rem;
            }
            .navbar-nav {
            gap: 0.5rem;
            width: 100%;
            font-size: 17px;
            }
            .contact-btn{
                width: 92%;
                margin-top: 10px;
            }
        }

        /* Footer General Styling */
footer {
    background-color: #000000; /* Darker background */
    color: #fff;
    padding: 40px 0 40px;
}

footer h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

footer ul.footer-links {
    list-style: none;
    padding: 0;
}

footer ul.footer-links li {
    margin-bottom: 0.5rem;
}

footer ul.footer-links a {
    color: #adb5bd; /* Light gray */
    text-decoration: none;
    transition: color 0.3s ease;
}

footer ul.footer-links a:hover {
    color: #007bff; /* Bootstrap primary blue */
}

footer .social-icons a {
    color: #adb5bd; /* Light gray */
    font-size: 1.25rem;
    transition: color 0.3s ease;
    gap: 2rem;
}

footer .social-icons a:hover {
    color: #007bff; /* Bootstrap primary blue */
}

footer .footer-bottom {
    border-top: 1px solid #495057; /* Subtle divider */
    padding-top: 15px;
    margin-top: 20px;
}

footer .footer-bottom p {
    font-size: 0.875rem;
    color: #adb5bd; /* Light gray */
}

/* Scroll to Top Button Styling */
#scroll-to-top {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 20px;
  right: 20px; /* Positioned on the right */
  z-index: 999;
  border: none;
  outline: none;
   background-color: var(--primary-color); /* Bootstrap primary blue */
  color: white;
  cursor: pointer;
  padding: 9px 16px;
  border-radius: 50%; /* Circular button */
  font-size: 18px;
  transition: background-color 0.3s ease;
}

#scroll-to-top:hover {
  background-color: rgba(162, 162, 163, 0.2); /* Darker shade on hover */
}

/* Show the button when scrolling down */
#scroll-to-top.show {
  display: block;
}
.features-section {
    background-color: #000000;
}

.progress-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px; /* Space between step label, progress bar, and percentage */
  margin-bottom: 15px;
}

.progress {
  height: 7px;
  width: 100%; /* Full width */
  border-radius: 10px;
  background-color: #e9ecef;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
}

.progress-bar {
  border-radius: 10px;
  transition: width 1s ease-in-out;
}

.step-label,
.percentage {
  font-size: 14px;
  font-weight: bold;
  color: black;
}

.section-devider {
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
        url('../img/main_bg.jpg');
        background-size: cover;
        background-position: center;
        color: white;
        margin-top: -76px;
        text-align: center;
        }

.accordion-button{
    background-color: var(--primary-color);
    color: white;
}

/* General Styles */
.blockquote {
  border: none;
/*  font-style: italic;*/
  font-size: 1.25rem; /* Larger quote text */
}

.blockquote p::before {
  content: '“'; /* Large opening quote */
  font-size: 4rem;
  color: #007bff; /* Bootstrap primary blue */
  display: block;
  margin-bottom: 10px;
}

.blockquote-footer {
  font-size: 1rem;
  color: #6c757d; /* Grayish text */
}

.blockquote-footer img {
  margin-right: 10px; /* Space between avatar and name */
}

/* Carousel Controls */
.carousel-controls {
  gap: 10px; /* Space between arrows */
}

.carousel-button {
  background-color: var(--primary-color); /* Bootstrap primary blue */
  color: white;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 50%;
  height: 45px;
}

.carousel-button:hover {
  background-color: rgba(162, 162, 163, 0.2); 
  color: black;
}

.customer-name-slide{
margin-top: -40px;
}

a, li a {
    text-decoration: none!important;
    color: inherit;
}

.modern-underline {
  text-decoration: underline;
  text-decoration-color: inherit;
  text-decoration-thickness: 3px; /* Thickness of the underline */
  text-underline-offset: 15px;
}

#whatapp-icon {
position: fixed;
bottom: 20px;
left: 20px; /* Positioned on the right */
z-index: 999;
padding: 5px 25px;
font-size: 1.1rem;
border-radius: 30px;
background-color:  #25D366;
border: none;
color: white;
}

    #whatapp-icon i {
font-size: 1.8rem;
margin-bottom: 5px;
top: -30px;
}

        .job-card {
            border-radius: 10px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 20px;
            margin: 20px;
        }
        
        
        .job-title {
            color: #dc3545;
            font-size: 24px;
            margin-bottom: 10px;
        }
        
        .location {
            color: #6c757d;
            font-size: 16px;
        }
        
        .salary {
            font-weight: 500;
            color: #495057;
        }
        
        .job-type {
            color: #495057;
        }
        
        .no-deadline {
            color: #dc3545;
            font-size: 14px;
        }