/********** Template CSS **********/




:root {
    --primary: #77ccff;
    --secondary: #F57E57;
    --light: #EEF9FF;
    --dark: #091E3E;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}


h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
 
}




.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

#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;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: var(--primary);
    transform: skew(40deg);
    
}





.img-About
{
    margin-top: 70px;
}


#about
{
    margin-top: -120px;
}

   /* Ensure margin is properly adjusted for smaller screens */
   @media (max-width: 780px) {
    #about
     {
        margin-top: -150px !important; /* Reduce margin for smaller screens */
    }

    .col-lg-7, .col-lg-5 {
        text-align: center; /* Center-align content on smaller screens */
    }

    .section-title {
        padding: 2rem 1rem; /* Adjust padding for small screens */
    }

    .col-lg-5 img {
      
        width: 80%; /* Ensure image fits within smaller screens */
        margin-top: -120px !important;
    }
}

@media (max-width: 768) {
    #about 
    {
        margin-top: -0px !important; /* Further reduce margin on very small screens */
        
    }

    .section-title h3 {
        font-size: 1.1rem; /* Adjust font size for headings on smaller screens */
       
    }

    .section-title h5 {
      margin-left: -20px;
       
    }

    .col-lg-5 img {
        width: 100%; /* Ensure image takes full width */
        /* margin-top: -150px !important; */
        margin-left: 0px;
    }

    .view-more a {
        font-size: 0.7rem; /* Adjust link size */
    }
}




.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(9, 30, 62, .85); */
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 100%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    
}

@media (min-width: 991.98px) {
    .banner {
        position: relative;
        margin-top: -90px;
        z-index: 1;
    }
}

.section-title h5::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 3px;
    right: -55px;
    bottom: 11px;
    background: var(--primary);
}

.section-title h5::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 3px;
    right: -75px;
    bottom: 11px;
    background: var(--secondary);
}

.twentytwenty-wrapper {
    height: 100%;
}

.hero-header {
    background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.bg-appointment {
    background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.appointment-form {
    background: rgba(6, 163, 218, .7);
}

/* About boxes start */

/* stakeholders start */

/* Slider Container */
.slider-container {
    width: 80%;
    overflow: hidden;
    border: 2px solid #008000;
    border-radius: 10px;
    background: white;
    padding: 10px;
}

/* Slider */
.slider {
    display: flex;
    gap: 20px;
    animation: scroll 10s linear infinite; /* Smooth scrolling effect */
}

/* Slide Items */
.slide {
    min-width: 150px; /* Adjust as needed */
    transition: transform 0.3s ease-in-out;
}

.slide img {
    width: 100%;
    height: auto;
    max-height: 80px;
}

/* Hover Effect */
.slide:hover {
    transform: scale(1.1);
}

/* Scrolling Animation */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* stakeholders end */

/* Container Styling */
.container {
    display: flex;
    flex-direction: row; /* Vertical layout */
    align-items: center;
    gap: 20px;
}

/* Individual Box Styling */
.box {
    width: 300px;
    padding: 20px;
    background: #fff;
    border: 2px solid  #00008B;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 2px 2px #00008B;
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-top: 50px;
}

/* Icon Styling */
.icon {
    font-size: 30px;
    color: rgba(6, 163, 218, .7);
    margin-bottom: 10px;
}

/* Hover Effect */
.box:hover {
    box-shadow: 0px 0px 10px #00008B;
}

/* Heading and Paragraph Styling */
h3 {
    color: #333;
    margin-bottom: 10px;
}

p {
    font-size: 14px;
    color: #666;
}


/* About boxes end */


.service-item img,
.service-item .bg-light,
.service-item .bg-light h5,
.team-item .team-text {
    transition: .5s;
}

.service-item:hover img {
    transform: scale(1.15);
}

.team-item .team-text::after,
.service-item .bg-light::after {
    position: absolute;
    content: "";
    top: 50%;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-radius:100px / 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .7);
    opacity: 0;
    transition: .5s;
    z-index: -1;
}

.team-item:hover .team-text::after,
.service-item:hover .bg-light::after {
    opacity: 1;
}

.bg-offer {
    background:url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.offer-text {
    background: rgba(6, 163, 218, .85);
}



.price-carousel .owl-nav {
    position: absolute;
  
    width: calc(100% + 45px);
    height: 45px;
    top: calc(50% - 22.5px);
    left: -22.5px;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    
}

.price-carousel:hover .owl-nav {
    opacity: 1;
}

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.bg-testimonial {
    background: url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    background: rgba(6, 163, 218, .85);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 46px);
    height: 46px;
    top: calc(50% - 23px);
    left: -23px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.testimonial-carousel .owl-item img {
    width: 120px;
    height: 120px;
}


/* TENDERS*/

.table-container {
    margin-bottom: 6rem; /* Adjust this value as needed */
}
.bg-tender {
    background-color: rgba(128, 0, 0, 0.6); /* 0.5 represents 50% transparency */
    color: #77ccff;
    padding: 15px;
}
.table thead th {
    background-color: #616161;
    color: white;
    font-size: 1.1rem;
    height: 60px; /* Adjust the height as needed */
}

.table {
    background-color: #ffffff; /* White background for the whole table */
}
.table tbody tr td {
    background-color: #ffffff !important; /* White background for table cells */
    border-left: 1px solid #ddd; /* Left border for table cells */
    border-right: 1px solid #ddd; /* Right border for table cells */
}
/* Custom styles for the table rows */
.table tbody tr {
    height: 60px; /* Adjust the height as needed */
}
.dataTables_wrapper .dataTables_paginate .paginate_button a {
    color: #1c0963 !important; /* Maroon color for pagination buttons */
}
.dataTables_wrapper .dataTables_info, 
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
    color: #1c0963!important; /* Maroon color for info text, length menu, and search input */
}

th.description-col {
    min-width: 500px; /* Adjust the width as needed */
}

.table a {
    color: inherit; /* Inherit color from parent element */
    text-decoration: none; /* Remove underline */
}
.table a:hover {
    text-decoration: underline; /* Add underline on hover */
    color: #007bff;
}

/*news*/
.publications {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 50px; 
}

.publications h1 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
}

.newsletter-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    white-space: nowrap;
}

.newsletter-item {
    display: inline-block; /* Ensure items are displayed in a line */
  
    margin-right: 10px; /* Adjust margin between items as needed */
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    width: 200px; /* Adjusted width */
    height: 300px; /* Adjusted height */
    display: flex;
    flex-direction: column;
}

.newsletter-item img {
    width: 100%;
    height: 160px; /* Adjusted height */
    object-fit: cover;
}

.newsletter-content {
    padding: 5px; 
    display: flex;
    flex-direction: column;
    flex: 1;
}

.newsletter-content h2 {
    font-size: 1em; /* Adjusted font size */
    margin: 0 0 5px 0;
}

.newsletter-content p {
    font-size: 0.8em; /* Adjusted font size */
    color: #666;
    margin-bottom: 5px;
}

.newsletter-content .date {
    font-size: 0.7em; /* Adjusted font size */
    color: #999;
    margin-bottom: 10px;
}

.newsletter-content .icons {
    display: flex;
    justify-content: space-around;
    margin-top: auto;
}

.newsletter-content .icons a {
    text-decoration: none;
    color: #333;
    font-size: 1.2em;
}
.view-more-container {
        text-align: center; /* Center align the button */
        margin-top: 20px; /* Adjust margin as needed */
    }

    .view-more-btn {
        padding: 10px 20px; /* Padding for button */
        font-size: 16px; /* Font size */
        background-color: #007bff; /* Button background color */
        color: #fff; /* Button text color */
        border: none; /* Remove border */
        cursor: pointer; /* Pointer cursor on hover */
        border-radius: 4px; /* Rounded corners */
        text-decoration: none; /* Remove underline */
        display: inline-block; /* Ensure it behaves like a block element */
    }

    .view-more-btn:hover {
        background-color: #0056b3; /* Darker background color on hover */
    }


    /*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
  }
  
  .portfolio .portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 20px 10px 20px;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    font-family: var(--heading-font);
  }
  
  .portfolio .portfolio-filters li:hover,
  .portfolio .portfolio-filters li.filter-active {
    color: var(--contrast-color);
    background-color: var(--accent-color);
  }
  
  .portfolio .portfolio-filters li:first-child {
    margin-left: 0;
  }
  
  .portfolio .portfolio-filters li:last-child {
    margin-right: 0;
  }
  
  @media (max-width: 575px) {
    .portfolio .portfolio-filters li {
      font-size: 14px;
      margin: 0 0 10px 0;
    }
  }
  
  .portfolio .portfolio-item {
    position: relative;
    overflow: hidden;
  }
  
  .portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -100%;
    z-index: 3;
    transition: all ease-in-out 0.5s;
    background: color-mix(in srgb, var(--background-color), transparent 10%);
    padding: 15px;
  }
  
  .portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    font-weight: 600;
    padding-right: 50px;
  }
  
  .portfolio .portfolio-item .portfolio-info p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
    margin-bottom: 0;
    padding-right: 50px;
  }
  
  .portfolio .portfolio-item .portfolio-info .preview-link,
  .portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 50px;
    font-size: 24px;
    top: calc(50% - 14px);
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    transition: 0.3s;
    line-height: 0;
  }
  
  .portfolio .portfolio-item .portfolio-info .preview-link:hover,
  .portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: var(--accent-color);
  }
  
  .portfolio .portfolio-item .portfolio-info .details-link {
    right: 14px;
    font-size: 28px;
  }
  
  .portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
    bottom: 0;
  }
  
