/**** Spinner Start ****/
#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;
}
/**** Spinner End ****/

/**** Back-to-top button ****/
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/**** Button Size Classes Start ****/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}

/**** Topbar Start ****/
.topbar {
    padding: 15px 20px; /* Increased padding for the top bar */
    height: auto; /* Adjust as needed */
}

.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
    font-size: 1.5em; /* Increased icon size */
}

.topbar .dropdown .dropdown-menu a {
    font-size: 1.2em; /* Increased text size in the dropdown */
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 15px; /* Increased padding for the dropdown */
    padding-bottom: 15px; /* Optional, added padding for better spacing */
    border: 0;
    transition: .5s;
    opacity: 1;
    font-size: 1.2em; /* Increased font size for menu items */
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-white);
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link,
.sticky-top.navbar-light .navbar-nav .nav-item .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-item .nav-link {
    color: var(--bs-white);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item .nav-link.active  {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark);
    }

    .navbar-light .navbar-nav .nav-item .nav-link {
        color: var(--bs-dark);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link::after {
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        width: 2px;
        height: 12px;
    }
}
/*** Navbar End ***/

/**** Carousel Hero Header Start ****/
.header-carousel .header-carousel-item img {
    object-fit: cover;
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
    height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 30px;
    margin-left: 90px;
}

.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    left: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-light);
    color: var(--bs-primary);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    padding-top: 120px;
    background: rgba(0, 0, 0, .30);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }
}

@media (max-width: 767px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        position: absolute;
        width: 40px;
        height: 40px;
        border-radius: 40px;
        background: var(--bs-primary);
        color: var(--bs-white);
        font-size: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: 20px;
        left: 10px;
        margin-left: 50px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: 20px;
        left: 10px;
    }
}

/* Carousel Hero Header End ***/
/**** About Section Start ****/
.about {
    padding-top: 50px;
    padding-bottom: 50px;
}

/**** About Titles and Text ****/
.about h1, .about h4, .about h2 {
    color: var(--bs-dark);
    font-weight: bold;
}

.about p {
    color: #555;
    line-height: 1.7;
    font-size: 1.1em;
}

/**** About Buttons ****/
.about .btn {
    font-weight: 600;
    transition: .5s;
}

.about .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.about .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/**** About Icons and Text ****/
.about .d-flex {
    align-items: center;
}

.about .d-flex .fa-3x,
.about .d-flex .bi-3x {
    color: #007bff;
}

/**** About Images Section (responsive for single image) ****/
.about .col-xl-5 img {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Rounded corners for the image */
}

/**** Image Container (Position and Style) ****/
.about .bg-primary {
    position: relative;
    overflow: hidden;
    border-radius: 10px; /* Add rounded corners to the image container */
}

/**** Responsive Styling ****/
@media (max-width: 991px) {
    .about .col-xl-7 {
        margin-bottom: 30px;
    }

    .about .row.g-4 {
        margin-top: 20px;
    }

    .about .btn {
        font-size: 1.2em;
        padding: 12px 25px;
    }
}

@media (max-width: 767px) {
    .about h1 {
        font-size: 1.5rem;
    }

    .about p {
        font-size: 1em;
    }

    .about .d-flex .ms-4 {
        margin-left: 10px;
    }
}
/* What We Do Section */
.what-we-do {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://i.postimg.cc/zDCt7xzt/Pngtree-3d-rendering-of-a-logistics-5835460.jpg') no-repeat center/cover;
    color: white;
  }
  
  .what-we-do h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    
  }
  
  .what-we-do h4 {
    font-size: 1.25rem;
    color: #007bff;
  }
  
  /* Service Cards */
  .service {
    background: white;
    color: #333;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .service .icon img {
    width: 90px;
    margin-bottom: 20px;
  }
  
  .service h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #007bff;
  }
  
  .service p {
    font-size: 1rem;
    color: #555;
  }
  
  .service a {
    color: #007bff;
    text-decoration: none;
  }
  
  .service a:hover {
    text-decoration: underline;
  }
  
  /* Responsive Layout */
  @media (max-width: 768px) {
    .what-we-do h1 {
      font-size: 2rem;
    }
  
    .services {
      gap: 15px;
    }
  
    .service h2 {
      font-size: 1.25rem;
    }
  
    .service p {
      font-size: 0.9rem;
    }
  }


/*** Service Start ***/
.service .service-item {
    background: var(--bs-light);
    border-radius: 10px;
    transition: 0.5s;
    overflow: hidden; /* Prevents overflow from images or content */
}

.service .service-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2); /* Adds shadow on hover */
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
    height: 200px; /* Sets consistent image height */
}

.service .service-item .service-img img {
    width: 100%; /* Stretches to full width */
    height: 100%; /* Fills the height */
    object-fit: cover; /* Maintains aspect ratio while filling */
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.2); /* Zoom effect on hover */
}
/*** Service End ***/

/* Feature Section */
.feature {
    background-color: #fff; /* Full white background */
    padding-bottom: 50px; /* Adds space below content */
}

.feature-item {
    background: #f9f9f9; /* Light background */
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s; /* Hover animation */
}

.feature-item:hover {
    transform: translateY(-10px); /* Lift effect */
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

.feature-icon {
    background: #eef2f7; /* Subtle icon background */
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px; /* Center alignment */
}

.feature-icon i {
    font-size: 2.5rem; /* Icon size */
    color: #007bff; /* Primary color */
}

h4, h1 {
    margin-bottom: 20px;
    color: #333; /* Improved readability */
}

/* Remove Unwanted Border */
.container-fluid.feature {
    border-top: none !important; /* Removes any border-top */
    margin-top: 0 !important; /* Ensures no extra spacing above */
}

/*** Features Start ***/
.feature .feature-item {
    text-align: center;
    border-radius: 10px;
    background:#fff4e7;
    border: 1px solid transparent;
    transition: 0.5s;
}

.feature .feature-item:hover {
    border: 1px solid var(--bs-primary); /* Border color on hover */
}

.feature .feature-item .feature-icon {
    background: var(--bs-white);
    border-radius: 10px;
    display: inline-block;
}
/*** Features End ***/
/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/slider/slider.JPG);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0 60px 0;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .bg-breadcrumb {
        padding: 140px 0 60px 0;
    }
}

@media (max-width: 991px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/
/* Styling the Membership & Certification Section */
.membership h4 {
    font-size: 1.5rem;
    color: var(--bs-primary); /* Primary color for subheadings */
    margin-bottom: 20px;
}

.membership h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333; /* Dark text for readability */
    margin-bottom: 30px;
}

/* Marquee Section with White Background */
.placement {
    width: 100%;
    overflow: hidden;
    
    padding: 20px 0;
    background: #fff; /* Changed to white background */
}

/* Certificate Image Container */
.certificates {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.cert-img {
    margin: 0 20px;
    width: auto;
    height: 200px; /* Uniform height for all images */
    object-fit: contain; /* Ensures images retain aspect ratio */
    transition: transform 0.3s ease;
}

/* Hover Effect for Image */
.cert-img:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Ensure images are the same size */
@media (max-width: 768px) {
    .cert-img {
        height: 80px; /* Slightly smaller size on smaller screens */
    }
}
/* Custom Styling */
.products {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.product-card {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.product-card img:hover {
    transform: scale(1.05);
}

.product-card h5 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.product-card:hover h5 {
    color: #007bff;
}

.product-card p {
    font-size: 0.9rem;
    color: #666666;
    margin: 0 0 10px;
}

.btn-inquiry {
display: inline-flex;
align-items: center;
background-color: #00d084; /* Updated to the #00d084 color */
color: #ffffff;
font-size: 0.9rem;
font-weight: 600;
padding: 8px 16px;
border-radius: 6px;
box-shadow: 0 4px 6px rgba(0, 208, 132, 0.3);
text-decoration: none;
transition: all 0.3s ease-in-out;
font-family: 'Roboto', sans-serif;
position: relative;
overflow: hidden;
}

.btn-inquiry:hover {
background-color: #00b073; /* A slightly darker green for hover */
box-shadow: 0 6px 12px rgba(0, 208, 132, 0.4);
transform: translateY(-3px);
}

.btn-inquiry i {
font-size: 1.2rem;
margin-right: 8px;
transition: transform 0.3s ease-in-out;
}

.btn-inquiry:hover i {
transform: scale(1.1);
}

/* Modal styling */
.modal-header {
    background-color: #28a745;
    color: white;
}
.modal-footer {
    border-top: 1px solid #e9ecef;
}
/* leadership*/
/* Center the text in the paragraph */
.leadership_p {
    text-align: justify; /* Justify the text */
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-top: 15px;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
}

/* Style for the leader cards */
.leader-card {
    border: 2px solid black; /* Black border for the card */
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth animation effect */
}

/* Click Animation */
.leader-card:active {
    transform: scale(0.95); /* Shrink effect when clicked */
    box-shadow: 0 5px 4px rgba(0, 0, 0, 0.2); /* Reduced shadow */
}

/* Styling for the images inside leader cards */
.leader-card img {
    border-radius: 8px;
    width: 150px; /* Fixed width */
    height: 150px; /* Fixed height */
    object-fit: cover; /* Crops the image to fit */
    margin-bottom: 15px; /* Spacing below the image */
}

/* Leader's title styling */
.leader-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 10px;
    color: green;
}

/* Leader's subtitle styling */
.leader-subtitle {
    font-size: 1rem;
    font-weight: bold;
    color: orange;
}

/* Styling for social icons */
.social-icons a {
    color: #555;
    margin: 0 5px;
    font-size: 1.2rem;
}

/* Hover effect for social icons */
.social-icons a:hover {
    color: #007bff;
}


/*** Footer Start ***/
.footer {
    background: var(--bs-secondary);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
}
/*** copyright end ***/


