/********** Template CSS **********/
:root {
    --primary: #7a7a7a;
    --secondary: hsl(0, 0%, 8%);
    --light: #ffffff;
    --dark: #282828;
}

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

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** 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;
}


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

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.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;
    z-index: 1030;
    /* Ensure it stays above other elements */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Optional shadow for effect */


}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.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 .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .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(27, 27, 27, 0.6);
    z-index: 1;
}

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

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 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(15, 66, 41, .6), rgba(15, 66, 41, .6)),;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Top Feature ***/
@media (min-width: 991.98px) {
    .top-feature {
        position: relative;
        margin-top: -80px;
        z-index: 1;
    }
}


/*** Facts & Quote ***/
.facts,
.quote {
    background: rgba(26, 29, 27, 0.6);
}


/*** Service ***/
.service-item {
    background-color: transparent;
    /* Prevent green background */

    position: relative;
    text-align: center;
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: .3s;
    z-index: -1;
}

.service-item:hover .service-img img {
    transform: scale(1);
}

.service-item .service-text {
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .3s;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, 0.826);
}

.service-item .service-text h4,
.service-item .service-text p {
    transition: .3;
}

.service-item:hover .service-text h4 {
    color: #FFFFFF;
}

.service-item:hover .service-text p {
    color: var(--light);
}

.service-item .service-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: .5s;
}

.service-item:hover .service-text .btn-square {
    background: var(--light);
}

.service-item .service-text .btn {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: var(--light);
    white-space: nowrap;
    overflow: hidden;
    transition: .3s;
}

.service-item:hover .service-text .btn {
    width: 112px;
}



/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
}

.team-item .team-text {
    position: absolute;
    width: calc(100% - 45px);
    left: -100%;
    bottom: 45px;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    left: 0;
    opacity: 1;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}


/*** Testimonial ***/

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

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 4px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** 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;
    margin-right: 10px;
}

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

.copyright {
    color: var(--light);
    background: #040404;

}

.copyright a {
    color: #FFFFFF;
}

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

.container-fluid a {
    color: #FFFFFF;
    /* Ensures links are white */
}

.custom-dropdown {
    background-color: #f3f3f3 !important;
    color: rgb(28, 25, 25);
    border: none;
    width: 100%;
    padding: 10px;
    cursor: pointer;
}

.custom-dropdown option {
    background-color: #f3f3f3 !important;
    color: rgb(28, 25, 25);
}

.custom-dropdown:focus {
    box-shadow: none;
}

.custom-dropdown-container {
    width: 100%;
    max-width: 400px;
}

/* Additional styles for the search input */
#countrySearch {
    width: calc(100% - 22px); /* Adjust for padding and borders */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
}

.no-copy {
    user-select: none;
    /* Standard syntax */
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
}

/* Ensure there's no extra margin or padding at the bottom */
/* Remove default margin and padding */

body,
html {
    height: 100%;
}

/* Footer specific adjustments */
.footer {
    padding: 0;
    margin: 0;
}

.container-fluid.bg-dark {
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Ensure full width for the copyright section */
.container-fluid.bg-dark.text-light {
    margin: 0;
    padding: 0;
}

/* Adjust inner container for consistent alignment */
.container.d-flex {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    text-align: center;
}

/* Ensure copyright section has no additional space */


/* Ensure the back-to-top button does not interfere with footer placement */
.back-to-top {
    bottom: 20px;
    position: fixed;
}

.round-image {
    width: 64px;
    /* Set a fixed width */
    height: 64px;
    /* Set a fixed height, same as width for a perfect circle */
    border-radius: 50%;
    /* Makes the image round */
    object-fit: fill;
    /* Ensures the image covers the entire area without distortion */
}


.loader-h {
    font-size: 5rem; /* Adjust the size of the letter */
    font-weight: 400; /* Make the letter bold */
    color: #000; /* Change the color of the letter */
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3); /* Add shadow for depth */

    animation: wave 1.5s infinite; /* Add wave animation */
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px); /* Adjust this value for the wave effect */
    }
}

/* Loader Styles */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9); /* Light background with some transparency */
    z-index: 9999; /* Ensure it's on top */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Content Styles */
.content {
    display: none; /* Initially hide the content */
}
.text-muted {
    font-size: 0.775em; /* Smaller font size */
    color: #6c757d; /* Bootstrap's muted text color */
}.small-label {
    font-size: 0.8em; /* Adjust this value as needed */
    transition: font-size 0.2s ease; /* Smooth transition for font size */
}

/* .form-floating input:focus + .small-label, */
.form-floating textarea:not(:placeholder-shown),

.form-floating input:not(:placeholder-shown)  {
    /* Smaller font when focused or filled */
 /* Adjust position if necessary */
    color: #000000; 
    font-weight: 600;
    /* Muted color for better visibility */
}
.custom-dropdown:focus,

.custom-dropdown:not([value=""])  {
    font-weight: 600; /* Bold font */
    color: #000000; /* Change label color */
}
@keyframes bounceIn {
    0% { transform: scale(0.9); }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.modal.show .modal-dialog {
    animation: bounceIn 0.5s;
}
.modal.fade .modal-dialog {
    transform: translate(0, -50%);
    transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: translate(0, 0);
}
.custom-navbar {
    background: #202020; /* Dark background */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, box-shadow 0.3s;
}

.custom-navbar .navbar-brand h1 {
    font-size: 28px; /* Increase brand size */
    font-weight: bold;
    color: white; /* Brand color */
    transition: color 0.3s;
}

.custom-navbar .navbar-nav .nav-link {
    color: white; /* Link color */
   
    font-weight: 500; /* Make links bold */
    transition: color 0.3s, transform 0.3s; /* Transition for hover effects */
}

.btn-wrapper {
    background-color: #ffffff; /* White background */
    transition: background-color 0.3s; /* Transition for hover */
}

.btn-custom {
    background-color: #202020; /* Custom button color */
    color: rgb(255, 255, 255); /* Button text color */
    font-weight: bold; /* Bold text */
    transition: background-color 0.3s, transform 0.3s; /* Transition for button effects */
    padding: 1rem 2rem; /* Match the padding (py-4 px-lg-4) */
}

.btn-custom:hover {
    background-color: #ffffff; /* Button color on hover */
    color: rgb(0, 0, 0); /* Button text color */
}

/* Ensure the button wrapper has the same height as the button */
.btn-wrapper:hover {
    background-color: #ffffff; /* Background color on hover */
}

/* Responsive design for mobile */
@media (max-width: 767px) {
    .navbar-nav {
        background-color: #202020; /* Background for mobile view */
    }

    .navbar-nav .nav-link {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Separator for links */
    }
}
.navbar-nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Change the menu icon color to white */
.custom-navbar .navbar-toggler {
    border: none; /* Remove border */
    outline: none; /* Remove outline */
    background-color: transparent; /* Make background transparent */
}

.custom-navbar .navbar-toggler:focus {
    box-shadow: none; /* Remove any focus shadow */
}
.custom-navbar .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(255,255,255, 1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    /* White hamburger icon */
    transition: background-image 0.3s ease;
}

/* Close icon style */
.custom-navbar .navbar-toggler.open .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(255,255,255, 1)' stroke-width='2' d='M4 7l22 22M4 29l22-22'/%3E%3C/svg%3E");
    /* White close 'X' icon */
}
@media (max-width: 768px) { /* Adjust breakpoint as necessary */
    .custom-navbar .navbar-toggler {
        margin: auto; /* Center the toggler */
    }

    /* Center social icons */
    .footer .d-flex {
        justify-content: center; /* Center content horizontally */
    }
}
.custom-navbar .navbar-toggler {
    width: 40px; /* Adjust as necessary */
    height: 40px; /* Adjust as necessary */
}


.container-xxl {
    padding: 0 15px; /* Standard container padding */
    margin: 0 auto;
    /* padding-top: 3rem; Optional: Adjust top padding */
}

.row.g-5 {
    margin-bottom: 1rem; /* Optional: Adjust bottom spacing for rows */
}

@media (max-width: 768px) {
    .col-lg-3, .col-md-5 {
        text-align: center; /* Center align for mobile */
        height: auto; /* Set height to auto for better spacing */
    }

    .col-lg-3 img {
        max-height: 50vh; /* Limit image height on smaller screens */
        width: auto; /* Ensure the image scales properly */
    }

    .display-5 {
        font-size: 1.5rem; /* Adjust heading size */
    }

    p {
        font-size: 0.9rem; /* Adjust paragraph font size */
    }

    .col-md-7 {
        margin-bottom: 20px; /* Add some space below text on mobile */
    }
}
.contact-info {
        text-align: left;
    }


.footer .col-lg-3 p {
    padding-left: 15px; /* Adjust the padding as needed */
    text-align: left;   /* Align text to the left */
}

.footer .col-lg-3 {
    padding-right: 0; /* Optional: Adjust the right padding to keep alignment */
}

body {
     font-family: 'Jost', sans-serif;
    overflow-x: hidden;
}/* General active state styling */
.navbar-nav .nav-link.active {
    color: #fff; /* Change text color */
    border-radius: 5px; /* Optional: Add rounded corners */
}

/* Mobile view active tab styling */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link.active {
       
        color: #fff; /* Text color for mobile */
        font-weight: bold; /* Make it more distinct */
    }
}
@media (max-width: 768px) {
    .contact-info {
        text-align: left; /* Ensure left alignment on mobile */
    }
}
.social-icons {
    display: flex;
    justify-content: center; /* Center icons horizontally */
    flex-wrap: wrap; /* Wrap icons if necessary */
}

@media (max-width: 768px) { /* Adjust for mobile view */
    .social-icons {
        margin: 0 auto; /* Center the div itself */
    }
}

.features-section {
  background-color: #f9f9f9;
}

.feature-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background: #e9ecef;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  color: #0d6efd;
  transition: background 0.3s, transform 0.3s;
}

.feature-card:hover .feature-icon {
  background: #0d6efd;
  color: #fff;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .portfolio-hover {
    opacity: 1 !important;
    visibility: visible !important;
  }
}


.portfolio-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

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

.portfolio-image-wrapper {
  position: relative;
  overflow: hidden;
}

.portfolio-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.05);
}

.portfolio-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-hover {
  opacity: 1;
  visibility: visible;
}

.portfolio-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 2;
}

.portfolio-card:hover .portfolio-hover {
  opacity: 1;
  visibility: visible;
}

.portfolio-hover a {
  color: #fff;
  font-size: 22px;
  background: rgba(0, 0, 0, 0.6);
  padding: 12px;
  border-radius: 50%;
  transition: transform 0.2s, background 0.3s;
}

.portfolio-hover a:hover {
  background: #fff;
  color: #000;
  transform: scale(1.2);
}

/* Optional dim background on hover */
.portfolio-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-image-wrapper::after {
  opacity: 1;
}


.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding-bottom: 30px;
  flex-wrap: wrap;
}

.portfolio-filters li {
  list-style: none;
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.portfolio-filters li.filter-active,
.portfolio-filters li:hover {
  background: #000;
  color: #fff;
  border-color: transparent;
}

.features-section {
  background-color: #f9f9f9;
}

.feature-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background: #e9ecef;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  color: #0d6efd;
  transition: background 0.3s, transform 0.3s;
}

.feature-card:hover .feature-icon {
  background: #0d6efd;
  color: #fff;
  transform: scale(1.1);
}

.service-card {
  background: #fff;
  border-radius: 15px;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.service-icon img {
  filter: grayscale(0%) brightness(90%);
  transition: 0.3s ease;
}

.service-card:hover .service-icon img {
  transform: scale(1.1);
  filter: brightness(100%);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-tags li {
  background: #f1f3f5;
  padding: 4px 10px;
  font-size: 12px;
  color: #333;
  border-radius: 5px;
}
.founder-img {
    
  max-width: 250px;
  border: 5px solid white;
  transition: transform 0.3s ease;
}

.founder-img:hover {
  transform: scale(1.05);
}

.founder-section .btn i {
  vertical-align: middle;
}

