/********** Template CSS **********/

/*** Spinner ***/
/* Smooth fade and slide-in animation */
/* Brand heading container */

.sticky-top {
  position: sticky !important;
  top: 0;
  z-index: 1030; /* keeps it above other sections */
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* adjust based on navbar height */
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

.sticky-top {
  position: sticky !important;
  top: 0;
  z-index: 1030;
}

.brand-heading {
    display: flex;          /* Align logo and text horizontally */
    align-items: center;    /* Vertically center logo with text */
    gap: 10px;              /* Space between logo and text */
    color: rgb(3, 75, 28);           /* Keep text white */
}
body {
    margin: 0;
    padding: 0;
}
.container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.bg-green {
    background-color: #071a18 !important; /* Replace with your favorite color */
}




/* Logo image */
/* Bigger logo */
/* Bigger logo */
.logo {
  height: 70px; /* bigger than before */
}
.company-heading p {
    font-size: 50px; /* Change size here */
    font-weight: bold; /* Optional */
    color: rgb(17, 90, 46); /* Keep your color */
    margin: 0; /* Optional: remove default p spacing */
}




/* Hover effect */
.logo-link:hover .logo {
  transform: scale(1.2) /* grows and slightly rotates */
}




/* Optional: smooth transitions for everything */
* {
  transition: all 0.1s ease-in-out;
}


:root {
  --bs-primary: #FFC000; /* YELLOW */
}

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

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

.btn-primary {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
}

.btn-outline-primary {
  color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
}


.brand-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; /* Bold for emphasis */
    letter-spacing: 1px; /* Optional: makes it look more premium */
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .1s 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;
}

.advantage-item {
  background: #ffffff;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.advantage-item i {
  font-size: 2.5rem; /* Adjust icon size here */
  transition: transform 0.3s ease;
}

.advantage-item:hover i {
  transform: scale(1.1);
}

/*** Button ***/
.btn {
    transition: .5s;
}

.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-nav .nav-link {
    color: #0a451a !important; /* Green color for all links */
    font-weight: 600;
}

.navbar-nav .nav-link:hover {
    color: #fffb07 !important; /* Optional brighter green on hover */
}
.sticky-top {
    top: -150px;
    transition: .5s;
}



/* Slide-in menu from right on mobile */
@media (max-width: 991.98px) {
  .offcanvas-end-custom {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background-color: #001f3f; /* same as bg-navy */
    transition: right 0.3s ease-in-out;
    padding-top: 4rem;
    z-index: 1050;
  }

  
  .offcanvas-end-custom.show {
    right: 0;
  }

  /* Make links larger and easy to tap */
  .offcanvas-end-custom .nav-link {
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
  }
}


.navbar {
    padding: 5px 0; /* Reduced from 15px */
    min-height: 60px; /* Optional: control height */
}
/* Adjust logo size if needed */
.logo {
    height: 45px; /* reduce logo height */
    width: auto;
}

/* Move navbar toggler button slightly left */

.navbar .nav-link {
    padding-top: 8px;
    padding-bottom: 8px;
}

/* Keep consistent spacing in smaller screens */
@media (max-width: 991.98px) {
    .navbar {
        padding: 8px 0;
    }
}
.navbar .navbar-nav .nav-link {
    margin-left: 30px;
    padding: 0;
    outline: none;
    color: var(--bs-dark);
}

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

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

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item.active {
    color: var(--bs-white);
    background: var(--bs-primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}

@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;
    }
}


/*** Hero Header ***/

.About-us {
  padding-top: 10px;   /* reduce top space */
  padding-bottom: 100px; /* reduce bottom space */
  min-height: auto;    /* remove fixed large height if any */
}

.About-us.container {
  padding-top: px;
  padding-bottom: 20px;
  margin-left: 100px;
}
.About-us{
    margin-top: -100px;
    padding-top: 150px;
    background: url(img1.jpg) top center no-repeat;
    background-size: cover;
}


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

.header-carousel {
    position: relative;
    padding: 45px 90px 45px 0;
}
.header-carousel img {
    width: 100%;        /* full width of the carousel item */
    height: 400px;      /* set same height for all images */
    object-fit: cover;  /* crop & fill without stretching */
    display: block;
    margin: 0 auto;     /* center horizontally */
}

.header-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--bs-primary);
    z-index: -1;
}

.header-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: 38px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    border: 2px solid var(--bs-white);
    transition: .5s;
}

.header-carousel .owl-dot.active {
    height: 30px;
    background: var(--bs-white);
}

/* Panel background */
/* Panel background */
.bg-navy {
    background-color: #ffffff !important; /* CONTAINER BAR  */ 
}
.company-heading {
    display: inline-block;        /* So it sits beside your logo */
    text-align: left;             /* Align text neatly beside logo */
    line-height: 1.2;             /* Tightens line spacing */
    margin-left: 10px;            /* Space from the logo */
    vertical-align: middle;       /* Aligns with logo height */
}

.company-heading p {
    margin: 0;                    /* Removes extra gaps between lines */
    font-size: 30px;              /* Small, professional size */
    font-weight: 600;
}


/* Cream text */
.text-cream {
    color: #ffd414 !important; /* Cream */
}

/* Navy text for span */
.text-navy {
    color: #ffd414 !important; /* Navy Blue */
}

/* Cream background for span */
.bg-cream {
    background-color: #62af67 !important; /* Cream */
    border-radius: 4px; /* Optional rounded edges */
}


/* Optional: Styling for the "Projects" span */
h1 span {
    font-weight: 700;
    border-radius: 4px;
}

.bg-lightblue {
    background-color: #5bdaa7 !important; /* Light blue background */
    border-radius: 4px; /* Optional: rounded edges */
}

.text-darkblue {
    color: #078e36 !important; /* Dark navy blue text */
}

/*** About ***/
/* SERVICES SECTION */
#services {
  background-color: #ffffff; /* light background */
}

.service-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background-color: #01544A;
  padding-bottom: 10px;
}

.service-item img {
  width: 100%;
  height: 200px;  /* uniform height */
  object-fit: cover;
  border-bottom: 3px solid #01544A; /* matches brand color */
}

/* Hover animation */
.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Service title */
.service-item h4 {
  font-weight: 700;
  color: #ffdd01;
  margin-top: 15px;
  text-transform: uppercase;
  font-size: 1.1rem;
}

/* Description */
.service-desc {
  font-size: 0.9rem;
  color: #333;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

.service-column {
  margin-left: -20px;
}

.service-column {
  margin-left: -50px; /* increase negative value for more left shift */
}

@media (max-width: 991px) {
  /* Reset margin on smaller screens so it stays centered */
  .service-column {
    margin-left: 0;
  }
}


/*** Our Team ***/

.team-item img {
    width: 100%;
    height: 250px; /* or whatever height you want */
    object-fit: cover; /* keeps the image proportional and crops excess */
}
.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(231, 212, 8, 0.842); /* optional semi-transparent overlay */
    opacity: 0;
    transition: 0.3s;
}

.team-item:hover .team-overlay {
    opacity: 1;
}

.team-item img {
    transition: .5s;
}
  
.team-item:hover img {
    transform: scale(1.2);
}
  
.team-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(255, 255, 255, .1) 50%, var(--bs-dark));
    z-index: 1;
}

.team-overlay small {
    display: inline-block;
    padding: 3px 15px;
    color: var(--bs-white);
    background: var(--bs-primary);
}
/**map starts**/
.flag-icon {
  width: 50px;       /* adjust size */
  height: auto;
  border-radius: 5px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.flag-icon:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

#warehouses p {
  margin-top: 5px;
  font-weight: 500;
}
#warehouses {
  scroll-margin-top: 100px; /* adjust to navbar height */
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    padding: 45px 0 45px 90px;
}

.testimonial-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--bs-primary);
    z-index: -1;
}

.testimonial-text h5 {
    position: relative;
    padding-left: 45px;
}

.testimonial-text h5::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots {
    position: absolute;
    height: 17px;
    bottom: 0;
    right: 0;
    left: auto;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin-left: 10px;
    width: 15px;
    height: 15px;
    background: var(--bs-white);
    border: 2px solid var(--bs-primary);
    transition: .5s;
}

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

@media (max-width: 768px) {
    .testimonial-carousel .owl-dots {
        left: 0;
        right: auto;
    }

    .testimonial-carousel .owl-dot {
        margin-right: 10px;
        margin-left: 0;
    }
}


.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 40px 0 40px 0; /* Unique shape */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.fancy-image {
  width: 100%;
  height: auto;
  border-radius: 40px 0 40px 0;
  transition: transform 0.8s ease, filter 0.6s ease;
}

/* Animation on hover */
.fancy-image:hover {
  transform: scale(1.05) rotate(1deg);
  filter: brightness(1.1) contrast(1.05);
}

/* Optional floating animation */
@keyframes floatImage {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.image-wrapper:hover .fancy-image {
  animation: floatImage 3s ease-in-out infinite;
}

.btn-send:hover {
    background-color: #d9d209; /* Darker blue on hover */
    transform: scale(1.1);
}

/* Combined Global Section Styling */
#global-section {
  background-color: #ffffff;
  padding: 80px 0;
}

#global-section h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}

#global-section p {
  font-family: 'Poppins', sans-serif;
  color: #555;
  font-size: 15px;
}

/* Flags */
.flag-icon {
  width: 60px; /* slightly larger for balance with icons */
  height: auto;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.flag-icon:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

#global-section p {
  margin-top: 6px;
  font-weight: 500;
}

/* Advantages */
.advantage-item {
  background: #f9f9f9;
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.advantage-item i {
  color: #FFC000;
}

.advantage-item h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #333;
}

/* Equal height for both columns */
#global-section .col-lg-6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content{
  margin-top: 4em;
}
/* Responsive tuning */
@media (max-width: 991px) {
  #global-section {
    padding: 60px 0;
  }
  #global-section .col-lg-6 {
    margin-bottom: 40px;
  }
  .flag-icon {
    width: 50px;
  }
  .text-cream {
    color: #F3EED9 !important;
    font-size: 11px !important;
  }
  .about-content{
  margin-top: 1em;
}
}

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

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

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

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: rgba(255,255,255,.5);
}

.footer .copyright a:hover {
    color: var(--bs-white);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
/* Add top border to copyright section */
.footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2); /* subtle white line */
    padding-top: 15px;  /* space above text */
    padding-bottom: 15px; /* optional: space below text */
}
