:root {
    --primary-color: #fa7c1f;
    --default-color: #777777;
}

body {
    font-weight: 16px;
}

.text-primary {
    color: var(--primary-color) !important;
}

.context-heading {
    position: relative;
    display: inline-block;
}
.context-heading::after {
    content:"";
    position: absolute;
    width:80%;
    height:2px;
    background-color: #005e7c;
    left:50%;
    bottom:-10%;
    transform: translateX(-50%);
    
}

.btn {
    border-radius: 0 !important;
}


.btn-default {
    padding: 5px 25px;
    border-radius: 0 !important;
    font-weight: 500;
    cursor: pointer;
    background: transparent;
    border: 1px solid #777777;
    outline: none;
    transition: 0.4s ease-in-out;
    color:#777777;
}

  

  .btn-default:hover {
    background: var(--primary-color);
    color: white;
  }

  
.btn-primary {
    padding: 5px 22px;
    /* border-radius: 0 !important; */
    font-weight: 500;
    cursor: pointer;
    background: transparent;
    border: 1px solid transparent;
    outline: none;
    transition: 0.4s ease-in-out;
    color: #ffffff;
    background: var(--primary-color);
    border-radius: 70px;
}

  

  .btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
  }

  .btn-white {
    background: white;
    color: var(--primary-color);
  }

  .btn-white:hover {
    background: var(--primary-color);
    color: white;
  }
  
  
  .btn-alt {
     background: #103a5a;
     color: #ffffff;
     border-radius: 0;
     letter-spacing: 1px;
  }

  .btn-alt:hover {
    background: #ffffff;
    color: #103a5a;
    border-color: #103a5a;
  }

.navbar-brand-name{
    color: var(--primary-color);
}

li.nav-link {
    border-bottom: 2px solid transparent;
    transition: all 0.4s ease-in-out;
}



li > .nav-active {
    color: var(--primary-color);
    border-bottom: #fa7c1f 2px solid;
    transition: all 0.4s ease;

}

.nav-link:hover {
    color: var(--primary-color);
    border-bottom: #fa7c1f 2px solid;
}

a.link-body {
    color: var(--primary-color);
    /* text-decoration: none; */
}

a.link-body:visited {
    color: green;
}

a.footer-link {
    text-decoration: none;
}

a.footer-link:hover {
    text-decoration: underline;
}

.icon {
    filter: grayscale(20%) !important;
}

.heading-2xl{
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.footer-link {
    text-decoration: underline;
    text-decoration-color: initial; /* Default underline color */
    transition: text-decoration-color 0.3s ease !important /* Smooth transition */
}

.footer-link:hover {
    text-decoration-color: #000000 !important;
    color: #000000 !important;
}



/* Landing carousel */
#carouselGoldenDanphe {
    height: 75vh;
}

#carouselGoldenDanphe .carousel-inner {
    height: 100%;
}

#carouselGoldenDanphe .carousel-item {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#carouselGoldenDanphe .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    color: white;
}

#carouselGoldenDanphe .carousel-item img {
    height: 100%; /* Ensure images take the full height */
    object-fit: cover; /* Maintain the aspect ratio and cover the container */
    width: 100%; /* Responsive width */
}
#carouselGoldenDanphe .carousel-control-prev-icon,
#carouselGoldenDanphe .carousel-control-next-icon {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

/* Example for white arrows */
#carouselGoldenDanphe .carousel-control-prev-icon,
#carouselGoldenDanphe .carousel-control-next-icon {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

/* Example for red arrows */
#carouselGoldenDanphe .carousel-control-prev-icon,
#carouselGoldenDanphe .carousel-control-next-icon {
    filter: invert(23%) sepia(96%) saturate(7466%) hue-rotate(357deg) brightness(101%) contrast(106%);
}

@media only screen and (max-width: 768px) {
    #carouselGoldenDanphe {
        height: 35vh;
    }
}

/* End of landing Carousel */



/* Milestone container begins */
.milestone-container {
    background-color: #005e7c;
    color:#ffffff;
    padding-top: 3em;
    padding-bottom: 3em;
}

.milestones-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    gap:3em;
}

@media only screen and (max-width: 768px) {
    .milestone-container {
        padding-top: 2em;
        padding-bottom: 2em;
        text-align: center;
    }
}

@media screen and (max-width: 403px) {
    .milestones-items {
        flex-direction: column;
    }
    
}
/* End of Milestones */


/* Footer begins */
.footer-logo {
    height: 45px;
}

.footer-text {
    max-width: 415px;
    padding-top: 0.7em;
    padding-bottom: 1em;
    text-wrap: wrap;
}

@media screen and (max-width: 768px){
    .footer-logo {
        height: 35px;
    }
    
}

@media screen and (min-width: 992px) and (max-width: 1200px){
    .footer-text {
        max-width: 345px;
    }
    
}

@media screen and (max-width: 992px){
    .footer-text {
        max-width: 301px;
    }
    
}

@media screen and (max-width: 768px){
    .footer-text {
        max-width: 100%;
    }
    
}



/* End of Footer */


.contact-info-wrapper {
    border: 1px solid gray;
}

.label-bold {
    font-weight: bold;
    font-size: 18px;
    color: #444;
}

.contact-info-wrapper {
    padding:30px 40px;
}

.sub-heading {
    margin-bottom: 25px;
}


.contact-form-wrapper {
    background:linear-gradient(90deg, rgba(33,37,41,1) 0%, rgba(250,124,31,1) 0%, rgba(11,153,182,1) 100%) !important;
}


/* About us */
.about-img-wrapper {
    width: 40%;
    overflow: hidden;
    display: inline-block;
}

.about-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 50vh;
}


.about-content-wrapper {
    display: inline-block;
    width: 60%;
}

@media screen and (max-width:768px) {
    .about-img-wrapper {
        width: 100%;
        max-height: 70vh;
    }
    
    .about-content-wrapper {
        width: 100%;
    }
    
}

@media screen and (max-width:576px) {
    .about-img-wrapper {
        width: 100%;
        max-height: 50vh;
    }
    .about-content-wrapper {
        width: 100%;
    }
}
/* End of about us */

/* Our services */
h1.underline-border {
    position: relative;
    display: inline-block;
}
h1.underline-border::after {
    content:"";
    position: absolute;
    width:70%;
    height:3px;
    background-color: #005e7c;
    left:50%;
    bottom:-10%;
    transform: translateX(-50%);
    
}


.service-title {
    font-size: 35px;
    position: relative;
    /* padding-bottom: 30px; */
}

.service-title::before {
    content: "\260A";
    font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
    color: rgb(223, 223, 223);
    font-size: 60px;
    position: absolute;
    top:-150%;
    text-align: center;
    left:50%;
    transform: translateX(-50%);
}
.section-title {
    font-weight: medium;
    font-size: 35px;
    
    
}




.service-card {
    cursor: pointer;
    border: 1px solid #e1e1e1;
    min-height: 45vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    transition: all 0.6s ease-in-out;
}

.service-card img {
    margin-bottom: 15px;
}

.service-card p {
    color: #878787;
    font-size: 16px;
}

.service-card h4 {
    color: #484646;
    font-size: 20px;
}

@media screen and (max-width: 768px) {
    .service-card {
        margin-bottom: 20px;
    }
    
}

@media screen and (max-width: 576px) {
    .service-card {
        min-height: 40vh;
    }
    
}




.title-wrapper {
    margin-bottom: 20px;
    text-align: center;
}

.title-wrapper p {
    color: #878787;
    margin-top: 10px;
}

.service-card:hover  {
    border-color:#f07c0075;
    background: rgb(253, 253, 253);
    transform: scale(1.01);
}

.service-card:hover h4 {
    color: #f07b00;
}

.service-card:hover p {
    color: #000000;
}

/* end of our services */