:root {
    --primary: rgb(16, 67, 134);
    --secondary: #757575;
    --light: #F3F6F8;
    --dark: #0C2B4B;
}

 
.text-primary {
    color: #0066cc !important;
}

.text-dark {
    color: #333333 !important; /* or your desired dark color */
}
.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


.parallax-bg {
    will-change: transform;
    transform: translateZ(0);
}



.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF; /* Text color */
    background-color: rgb(16, 67, 134); /* Background color */
    border-color: transparent; /* Set border color to transparent */
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}





/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar {
    height: 100px; /* Increased height to accommodate larger logo */
}

.navbar .navbar-brand {
    height: 100px; /* Adjust to match navbar height */
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.navbar-brand img {
    max-height: 100px;
    width: auto;
  }
.navbar .navbar-nav {
    margin-left: auto; /* Push nav items to the right */
}

.navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 0 15px;
    color: var(--dark);
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
    line-height: 100px; /* Match navbar height */
    transition: color 0.3s ease;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar {
        height: auto; /* Allow height to adjust on smaller screens */
    }

    .navbar .navbar-brand {
        height: 80px; /* Slightly increased for mobile */
    }

    .navbar .navbar-brand img {
        max-height: 60px; /* Adjusted for mobile */
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 15px;
        line-height: normal;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}
/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.212);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/* Facts Section Styles */
.facts {
    position: relative;
    z-index: 2;
    margin-top: -50px; /* Reduced from -100px to -50px */
}

.facts-container {
    position: relative;
}

.facts-cube {
    min-height: 300px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
}

.facts-content {
    max-width: 80%;
    margin: 0 auto;
}

.facts-content h5 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.facts-content p {
    color: var(--secondary);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .facts {
        margin-top: -25px; /* Adjusted for mobile */
    }

    .facts-cube {
        min-height: 250px;
    }
    
    .facts-content {
        max-width: 95%;
    }
}

/* CSS for Services Section */

#services {
    position: relative;
    overflow: hidden;
}

#services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: transform 0.5s ease;
}

.parallax-effect {
    transform: translateY(-50%);
}

#services {
    background-color: #ebebeb; /* Background color for services section */
    padding: 80px 0; /* Add padding to the top and bottom */
}

.card {
    transition: transform 0.3s, box-shadow 0.3s;
    height: auto;
    display: flex;
    flex-direction: column;
}


.card:hover {
    transform: translateY(-5px); /* Lift the card slightly on hover */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
}

.card-title {
    font-size: 24px;
    font-weight: bold;
    color: #333; /* Dark text color */
}

.card-text {
    font-size: 16px;
    color: #666; /* Medium text color */
}

.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}
/* Additional Styles for Services Section */
.card {
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1); /* Subtle box shadow */
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px); /* Lift the card slightly on hover */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
}



.card-text {
    font-size: 16px;
    color: #666; /* Medium text color */
}

#services {
    background-color: #f9f9f9; /* Light gray background */
}

.card {
    border: none;
    border-radius: 10px; /* Rounded corners */
    overflow: hidden; /* Hide any content that may overflow */
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}




/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    height: 40px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid var(--primary);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 40px;
    height: 40px;
    background: var(--primary);
}

.testimonial-carousel .owl-item img {
    width: 150px;
    height: 150px;
}



.testimonial-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--light);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #092139;
}

.copyright a {
    color: var(--primary);
}

.copyright a:hover {
    color: var(--light);
}

/* Our Full Cycle Process Section */
.full-cycle-bg {
    background-image: url('../img/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.content-box {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.process-image-container {
    max-width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

.process-image:hover {
    transform: scale(1.05);
}

@media (min-width: 992px) {
    .process-image {
        max-width: 120%;
        margin-left: -10%;
    }
}

@media (max-width: 991px) {
    .process-image-container {
        margin-top: 2rem;
    }
}


/* Features Section */
.features-section {
    background-image: url('../img/background-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.features-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 20, 60, 0.8); /* Dark blue overlay */
    z-index: 1;
}

.features-section .container {
    position: relative;
    z-index: 2;
}

.features-section .btn-square {
    background-color: #0d6efd;
}

.features-section .btn-square i {
    color: #ffffff;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.text-white-70 {
    color: rgb(255, 255, 255) !important;
}

.features-section h1.display-4 {
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Contact Us Section */
#contact-section {
    background-color: #f8f9fa;
}

#contact-section .card {
    border-radius: 15px;
    overflow: hidden;
}

#contact-section .form-control {
    border: 1px solid #ced4da;
}

#contact-section .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

#contact-section .btn-outline-light:hover {
    background-color: #fff;
    color: #0d6efd;
}


/* Testimonial Section */
.team-image-wrapper {
    width: 113px;
    height: 160px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.testimonial-item .position-relative {
    padding-bottom: 30px;
}

.testimonial-item .btn-square {
    bottom: 0;
}




/* Navbar Styles */
#mainNav {
    transition: all 0.3s ease;
    padding: 20px 0;
    background-color: transparent; /* Fully transparent for desktop */
}

#mainNav .navbar-brand {
    padding: 0;
}

.navbar-brand .logo {
    height: 120px; /* Larger logo size for desktop */
    padding: 10px;
    border-radius: 10px;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.8)) 
            drop-shadow(0 0 12px rgba(255,255,255,0.6))
            brightness(1.3);
    transition: filter 0.3s ease, height 0.3s ease;
}

.navbar-brand .logo:hover {
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.9)) 
            drop-shadow(0 0 15px rgba(255,255,255,0.7))
            brightness(1.4);
}

#mainNav .navbar-nav .nav-item .nav-link {
    color: #fff; /* White color for better visibility on transparent background */
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

#mainNav .navbar-nav .nav-item .nav-link:hover,
#mainNav .navbar-nav .nav-item .nav-link:focus {
    color: rgba(255, 255, 255, 0.8);
}

#mainNav.navbar-scrolled {
    background-color: #ffffff;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#mainNav.navbar-scrolled .navbar-brand .logo {
    height: 100px; /* Slightly smaller logo when scrolled, but still larger than before */
}

#mainNav.navbar-scrolled .navbar-nav .nav-item .nav-link {
    color: #333;
}

#mainNav.navbar-scrolled .navbar-nav .nav-item .nav-link:hover,
#mainNav.navbar-scrolled .navbar-nav .nav-item .nav-link:focus {
    color: #0d6efd;
}

#mainNav .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

#mainNav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #0059ff, #4b4b4b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

#mainNav.navbar-scrolled .navbar-accent {
    transform: scaleX(1);
}

@media (max-width: 991.98px) {
    #mainNav {
        background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background for mobile */
        padding: 10px 0;
    }

    #mainNav .navbar-brand .logo {
        height: 80px; /* Increased size for mobile, but still smaller than desktop */
    }

    #mainNav .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.9);
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 0.25rem;
    }

    #mainNav .navbar-nav .nav-item .nav-link {
        color: #333; /* Dark color for better visibility on semi-transparent background */
        padding: 0.75rem 0;
    }

    #mainNav .navbar-toggler {
        border-color: rgba(0, 0, 0, 0.5);
    }

    #mainNav .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
}


/* Carousel Styles */
#header-carousel .carousel-item {
    position: relative;
}

#header-carousel .carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

#header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    z-index: 1;
}

#header-carousel .carousel-caption h5 {
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    animation-duration: 1s;
}

#header-carousel .carousel-caption h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation-duration: 1s;
}

#header-carousel .carousel-caption h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 30px;
    animation-duration: 1s;
}

#header-carousel .btn-primary {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 0;
    border: 2px solid #fff;
    background-color: transparent;
    transition: all 0.3s ease;
    animation-duration: 1s;
}

#header-carousel .btn-primary:hover {
    background-color: #fff;
    color: var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-caption h5 {
        font-size: 1rem;
    }

    #header-carousel .carousel-caption h1 {
        font-size: 3rem;
    }

    #header-carousel .carousel-caption h2 {
        font-size: 1.5rem;
    }

    #header-carousel .btn-primary {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* About Section Styles */
#about-section {
    background-color: #ffffff;
}

.section-title {
    color: #333;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #0d6efd;
}

.card {
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

@media (max-width: 991px) {
    .about-content {
        margin-top: 30px;
    }
}

/* Services Section Styles */
.card-footer {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-out, visibility 0s linear 0.3s;
    visibility: hidden;
    padding: 0 10px;
}

.card-footer.show {
    height: auto;
    visibility: visible;
    transition: height 0.3s ease-out, visibility 0s linear 0s;
    padding: 10px;
}

/* Testimonial Section Styles */
.team-image-wrapper {
    width: 113px;
    height: 160px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.testimonial-item .position-relative {
    padding-bottom: 30px;
}

.testimonial-item .btn-square {
    bottom: 0;
}

#hero {
    position: relative;
    overflow: hidden;
}

#hero .hero-content {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

#hero .container {
    position: relative;
    z-index: 2;
}

#hero h5 {
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    animation-duration: 1s;
}

#hero h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation-duration: 1s;
}

#hero h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 30px;
    animation-duration: 1s;
}

#hero .btn-primary {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 0;
    border: 2px solid #fff;
    background-color: transparent;
    transition: all 0.3s ease;
    animation-duration: 1s;
}

#hero .btn-primary:hover {
    background-color: #fff;
    color: var(--primary);
}

@media (max-width: 768px) {
    #hero h5 {
        font-size: 1rem;
    }

    #hero h1 {
        font-size: 3rem;
    }

    #hero h2 {
        font-size: 1.5rem;
    }

    #hero .btn-primary {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* Ensure the go to top button stays on top */
.back-to-top {
    z-index: 1000;
    position: fixed;
    bottom: 30px;
    right: 30px;
}

/* Facts and About Us Section Styles */
#facts-about {
    background-image: url('img/background-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
    overflow: visible;
}

#facts-about::before {
    content: none; /* Remove the overlay */
}

#facts-about .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

#facts-about .section-heading {
    font-size: 3rem;
    font-weight: bold;
    color: #0056b3; /* Changed to blue */
    text-align: center;
    margin-bottom: 40px;
}

#facts-about .content-wrapper {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 40px;
}

#facts-about .facts-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#facts-about .fact-item {
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #ffffff; /* Changed to solid white */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#facts-about .fact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#facts-about .fact-item h3 {
    color: #0056b3; /* Changed to blue */
    margin-bottom: 10px;
    font-size: 1.5rem;
}

#facts-about .fact-item p {
    color: #0056b3; /* Changed to blue */
    margin: 0;
    font-size: 1rem;
}

#facts-about .about-column {
    background: #ffffff; /* Changed to solid white */
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#facts-about .about-column h2 {
    color: #0056b3; /* Changed to blue */
    margin-bottom: 20px;
    font-size: 2rem;
}

#facts-about .about-column p {
    color: #0056b3; /* Changed to blue */
    margin-bottom: 30px;
    line-height: 1.6;
}

#facts-about .stats-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

#facts-about .stat-item {
    text-align: center;
}

#facts-about .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0056b3; /* Changed to blue */
    line-height: 1;
}

#facts-about .stat-label {
    font-size: 1rem;
    color: #0056b3; /* Changed to blue */
    margin-top: 5px;
}

#facts-about .btn-primary {
    background-color: #0056b3;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    align-self: flex-start;
}

#facts-about .btn-primary:hover {
    background-color: #003d82;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgb(0, 87, 179);
}

@media (max-width: 991px) {
    #facts-about .content-wrapper {
        grid-template-columns: 1fr;
    }

    #facts-about .facts-column,
    #facts-about .about-column {
        margin-bottom: 40px;
    }

    #facts-about .fact-item:hover {
        transform: translateY(-5px);
    }
}


#facts-about {
    position: relative;
}

#facts-about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.8);
}

.content-wrapper {
    position: relative;
    display: flex;
    gap: 30px;
}

.facts-column, .about-column {
    flex: 1;
}

.fact-item {
    margin-bottom: 30px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
}

.project-history-container {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.1);
}

.project-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.project-list span {
    color: #007bff;
    transition: color 0.3s ease;
}

.project-list span:hover {
    color: #0056b3;
    text-decoration: none; /* This removes the underline on hover */
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    #hero .hero-content {
        height: auto;
        min-height: 100vh;
    }

    #facts-about .content-wrapper {
        flex-direction: column;
    }

    #facts-about .fact-item,
    #facts-about .about-column {
        margin-bottom: 20px;
    }

    .project-list {
        font-size: 0.9rem;
    }

    #services .card {
        margin-bottom: 20px;
    }

    .testimonial-section {
        padding-bottom: 80px; 
    }
}



















/* Project History Section Styles */
#project-history {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    padding: 60px 0;
}

/* Add this new rule for the dark overlay */
#project-history::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.212); /* Dark overlay */
    z-index: 1;
}

/* Update the container to be above the overlay */
#project-history .container {
    position: relative;
    z-index: 2;
}

.project-scroll-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

.project-scroll-container {
    overflow: hidden;
    padding: 20px 0;
    cursor: grab;
}

.project-scroll-container:active {
    cursor: grabbing;
}

.project-scroll {
    display: flex;
    gap: 20px;
    padding: 10px;
}

.project-item {
    flex: 0 0 auto;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 15px 25px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.project-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.project-item h3 {
    color: #007bff;
    margin-bottom: 0;
    font-size: 1rem;
    white-space: nowrap;
}

/* Update scroll arrows to be above the overlay */
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 123, 255, 0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    border-radius: 50%;
    user-select: none;
}

.scroll-left {
    left: 5px;
}

.scroll-right {
    right: 5px;
}

.scroll-arrow:hover {
    background-color: rgba(0, 123, 255, 0.9);
}

.scroll-arrow:active {
    background-color: rgba(0, 123, 255, 1);
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .project-scroll-wrapper {
        padding: 0 35px;
    }

    .project-item {
        padding: 10px 20px;
    }

    .project-item h3 {
        font-size: 0.9rem;
    }

    .scroll-arrow {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .scroll-left {
        left: 0;
    }

    .scroll-right {
        right: 0;
    }
}

