html {
    scroll-behavior: smooth;
}


:root {
    --primary-dark-color: #003046;
    --primary-color: #FC7837;
    --text-color: #ffffffcc;
    --default-color:#777;
    --primary-blue-light-color: #337AB7;
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: "Roboto", serif;
}

.bg-primay-blue-light {
    background: var(--primary-blue-light-color);
    color: #fff;
}

h1.heading-1 {
    font-size: 32px !important;
}

.welcome > h1 {
    padding: 35px auto;
}

h2.sub-heading {
    font-size: 24px !important;
    font-weight: 500 !important;
}

.btn  {
    border-radius: 0;
    padding:6px 25px !important;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    outline: none;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: #00000050;
    border: 2px solid var(--primary-color);
}

.btn-default {
    background-color: #e8e8e8;
    color: var(--primary-color);
    outline: none;
}

.btn-default:hover {
    /* background-color: #b3b3b3; */
    border: 2px solid var(--primary-dark-color);
    color: var(--primary-color);
    background:#ffffff;
    outline: none;
}

.breadcrumb-item > a {
    color: #938e8e !important;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-color) !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--primary-color) !important;
}

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

.label-bold {
    font-weight: 500 !important;
    line-height: 27px;
    letter-spacing: 5%;
    font-size: 18px;
}

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

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

.text-blue-primary {
    color: #003046 !important;
}

/* Animation */
.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .hidden.animate {
    opacity: 1;
    transform: translateY(0);
  }
  

/* End of Animation */

/* Topbar */
.topbar {
    color: var(--primary-dark-color) !important;
}

@media screen and (max-width:576px) {
    
.top-container {
    align-items: flex-start !important;
}
}


/* Topbar */

/* Nav css */

.jyomogang-bg {
    background: var(--primary-dark-color) !important;
}

/* Custom CSS to show dropdown on hover */
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Ensures the dropdown slides down smoothly */
    transition: all 0.3s ease-in-out;
}

/* Optional: Add a smooth slide-down effect */
.dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px); /* Starts slightly above the trigger */
    transition: all 0.3s ease-in-out;
}

.nav-item .dropdown-toggle::after {
    display: none;
}


.nav-link-item {
    position: relative;
    color: var(--text-color);
    transition: color 0.3s ease-in-out;
}

.nav-link-item:hover {
    color: var(--primary-color);
}

.nav-link-item::after {
    position: absolute;
    content: "";
    display: block;
    width: 0;
    height: 2px;
    margin-top: 8px;
    background: var(--primary-color);
    transition: width 0.3s ease-in-out;
    margin-left: -6px;
}

.nav-link-item:hover::after {
    width: 100%;
}


.nav-active {
    font-weight: 500;
    color: var(--primary-color) !important;
}

.nav-active::after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 8px;
    margin-left: -6px;
    background: var(--primary-color);
    transition: width 0.3s;
}


/* End of nav css */



/* Page context css */
.page-context {
    position: relative; /* Ensures the pseudo-element is positioned relative to this element */
    width: 100%;
    padding: 0;
    margin: 0;
    height: 30vh;
    background: url('../img/cover.webp');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.page-context::before {
    content: ''; /* Required for the pseudo-element */
    position: absolute; /* Position it over the background image */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 48, 70, 0.7); /* Add your color with opacity */
    z-index: 1; /* Ensure the overlay is on top of the background image */
}

.page-context > * {
    position: relative; /* Makes sure the content is above the overlay */
    z-index: 2; /* Content appears above the overlay */
}

.context-heading {
    position: relative;
    display: inline-block;
}

.context-heading::before {
    content:"";
    position: absolute;
    width: 90%;
    height: 1px;
    bottom: -10px;
    background-color: var(--default-color);
    transform: translateX(-50%);
    left:50%;
    

}

.context-heading::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 5px;
    background-color: var(--primary-color);
    left:50%;
    bottom: -12px;
    transform: translateX(-50%);
}

.context-heading.no-underline::after, .context-heading.no-underline::before {
    width:0;
    height:0;
    content:""
}

.subtitle {
    color: #777777 !important;
}

.extra-bold {
    font-weight: 700;
}

.xl {
    font-size: 25px !important;
    font-weight: 600;
}
/* End of page context */


/* Contact Page */
.contact-info-wrapper {
    border: 1px solid gray;
}


/* End of contact page */


/* Footer */
footer.footer {
    /* background: #dcdcdc66 !important; */
    background: var(--primary-dark-color);
}

.footer-cover {
    margin-top: 25px;
    margin-bottom: -15px;
    width: 100%;
    border: none;
}


@media screen and (max-width:992px) {
    .footer {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

}

a.footer-link {
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    position: relative;
    color: #ffffff !important;
    opacity: 0.7;
}

.footer-link::after {
    content:'';
    position: absolute;
    bottom:0;
    left:0;
    width:0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease-in-out;
}

.footer-link:hover {
    color: var(--primary-color) !important;
    opacity:1 !important;
    
}

.footer-link:hover::after {
    width:100%;
}
/* Footer ends here */



/* Testimonials page */


.feedback-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    
    margin-bottom: 20px;
}
.feedback-active-card {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.feedback-row {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; 
    position: relative;
  }
  
  .feedback-card {
    flex: 0 0 100%; 
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

  .feedback, .feedback-author {
    position: relative;
    font-size: 28px;
    margin: 20px 35px;
    color: var(--primary-dark-color);
  }

  .feedback::before {
    content:"\“";
    position: absolute;
    font-size: 80px;
    color: #a5a5a5;
    top: -35px;
    left: -30px;
  }
  
  .feedback::after {
    content:"\”";
    position: absolute;
    color: #a5a5a5;
    font-size: 80px;
  }

  .author-profile-image {
    max-width: 60px;
  }

  .author-info {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding-left: 20px;
    font-size: 18px;
  }

  .author-title {
    color: var(--default-color);
  }
  @media (min-width: 992px) { 
    .feedback-row {
      flex-wrap: nowrap; 
    }
  
    .feedback-card {
      flex: 0 0 50%; 
      max-width: 50%; 
    }
  
    .feedback-active-card {
      transform: translateX(0); 
      z-index: 2;
    }
  
    .feedback-card:not(.feedback-active-card) {
      opacity: 0.6; 
      z-index: 1;
    }
  }
  
  .feedback-card:hover {
    opacity: 1; 
  }

  @media screen and (max-width:992px) {

    .feedback-card {
        flex: 0 0 100%; 
        transition: transform 0.4s ease, opacity 0.4s ease;
        border: 1px solid #f1f1f1;
        background-color: #f1f1f1;
        margin-bottom: 30px;
    }
    .feedback-active-card {
        box-shadow: none !important;
    }
  }
 

   .carousel-item {
    max-height: 600px;
   }
/* End of testimonials */



/* Maps */
.gmnoprint {
    display: none !important;
}


/* our services */

.service-title {
    font-size: 20px;
}

/* end of our services */


/* our team */
.team-card  {
    margin-right: 30px;
    border: 1px solid rgb(175, 175, 175);
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    transition: all 0.4s ease-in-out;
}

.team-image-wrapper {
    width:100%;
    overflow: hidden;
}

.team-image-wrapper img {
    width:100%;
    height: auto;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.team-card h2 {
    font-size: 22px;
    margin-bottom: 0;
    color: var(--primary-color);
}

.team-card p {
    margin-top: 10px;
}

.address-wrapper {
    margin-top: 10px;
}

.email-wrapper {
    margin-top: 10px;
}

.team-info {
    padding: 12px 15px;
    padding-bottom: 15px;
    color: var(--primary-dark-color);
}

.team-card a {
    color: var(--primary-dark-color);
}

.team-card:hover {
    border-color: var(--primary-color);
    background: rgb(242, 242, 242);
    box-shadow: 2px 2px 15px 1px #3379b7a2;
}

.team-card:hover  img {
    transform: scale(1.1);
}



/* end of our team */