/********** Template CSS **********/
:root {
    --primary: #101e43;
    --secondary: #101e43;
    --light: #F8F8F8;
    --dark: #eb7515;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** 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 {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
color: #FFFFFF;
}

.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 .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}
.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 20px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--dark);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 8px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid rgba(256, 256, 256, .1)
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/


#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

#header-carousel .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    text-indent: 0;
    margin-bottom: 15px;
    border: 2px solid #FFFFFF;
    border-radius: 60px;
    overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*.page-header {*/
/* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/carousel-1.jpg) center center no-repeat;    */
/* size: cover;*/
/*}*/

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 4px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}



/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
    border-radius: 6px;
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
    border-radius: 6px;
}


/*** Facts ***/
.fact-item {
    transition: .5s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    box-shadow: none;
    border: 1px solid #DEE2E6;
}


/*** Feature ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Project ***/
.project-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .5);
    border-radius: 6px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover a {
    opacity: 1;
}

.project-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project-carousel .owl-dot {
    width: 35px;
    height: 35px;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 35px;
    transition: .5s;
}

.project-carousel .owl-dot:hover,
.project-carousel .owl-dot.active {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-text {
    position: relative;
    height: 65px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

/*.team-item:hover .team-title {*/
/*    top: -65px;*/
/*}*/

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 65px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

/*.team-item:hover .team-social {*/
/*    top: 0;*/
/*}*/


/*** Testimonial ***/

.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    /*color: var(--secondary);*/
    color:white;
    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;
    /*color: var(--secondary);*/
    color:white;
    margin-right: 10px;
}
/*.footer .bi{*/
/*   color:#eb7515; */
/*}*/

.footer .btn.btn-link:hover {
    /*color:white;*/
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}



.abouttitle{
    color:#eb7515;
}

li.breadcrumb-item.active{
    color: #eb7515 !important;
}

.card-header{
    background-color:#eb7515;
}

.icon-custom-color {
    color: #101e43;
}
/***Title Underline start***/

.continuous-underline {
    display: inline-block; 
    position: relative; 
    font-weight: bold; 
    font-size: 2rem;
}

.continuous-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px; 
    background-color: #eb7515; 
    animation: growFromCenter 1.5s ease-in-out infinite; 
}

@keyframes growFromCenter {
    0% {
        width: 0;
        left: 50%;
    }
    50% {
        width: 100%;
        left: 0;
    }
    100% {
        width: 0;
        left: 50%;
    }
}
/***Title Underline end***/

.card-hover-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.row.card-hover-effect:hover {
    background-color: #101e43 !important; 
    transform: translateY(-10px); 
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    color:white;
}

.row.card-hover-effect:hover h3 {
    color: white;
}

.fas.fa-check-circle {
    color: #eb7515; 
}

/***Title start***/
.bounce-text {
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}
/***Title end***/

.hrms:hover {
    background-color: #eb7515;  
    transition: background-color 0.3s ease; 
    color: white; 
}
.hrms:hover h5 {
    color: white !important;  
}

.check-icon{
    color:#eb7515;
}

/* Shake Animation */
@keyframes shake {
  0% { transform: translateX(-10px); }
  25% { transform: translateX(10px); }
  50% { transform: translateX(-10px); }
  75% { transform: translateX(10px); }
  100% { transform: translateX(0); }
}

/* Apply the shake animation on hover */
.table tbody tr:hover {
  animation: shake 0.5s ease-out forwards;
}

/* Stagger the animation with a delay when hovered */
.table tbody tr:nth-child(1):hover { animation-delay: 0s; }
.table tbody tr:nth-child(2):hover { animation-delay: 0.2s; }
.table tbody tr:nth-child(3):hover { animation-delay: 0.4s; }
.table tbody tr:nth-child(4):hover { animation-delay: 0.6s; }
.table tbody tr:nth-child(5):hover { animation-delay: 0.8s; }

.custom-card-header {
    background-color: #eb7515;
}

.custom-card-header h5 {
    color: white;
}

.custom-card-body {
    transition: background-color 0.3s ease;
}

.custom-card-body:hover {
    background-color: #101e43; 
    color:white;
}

.crewing:hover {
    background-color: #101e43;  
    transition: background-color 0.3s ease;  
    color: white;  
}
.crewing:hover h6 {
    color: white !important;  
}

.transportmodulecard {
    border: none;  
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  
    transition: transform 0.3s ease, box-shadow 0.3s ease;  
    margin-bottom: 30px; 
    background-color: #ffffff;  
}

.transportmodulecard:hover {
    transform: translateY(-10px);  
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);  
}

.service-box {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.service-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.service-description {
    font-size: 14px;
    color: #666;
}

.cloudserver-card-header{
    background-color: #101e43; 
}

/* Hover effect for card */
.cloudservercard:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

/* Optional: Add shadow to card on hover */
.cloudservercard:hover {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}


/* Card Styling */
.cloudservercard {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    height: 100%;  
}

/* Styling for Smaller Screens */
@media (max-width: 768px) {
    .col-lg-6 {
        width: 100%;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .col-sm-3 {
        text-align: center;
    }
    .col-sm-9 {
        text-align: left;
    }
}

.scale-animation {
  transition: transform 0.3s ease-in-out;
}

.scale-animation:hover {
  transform: scale(1.1);
}

/****Contact start*****/
.input-group-text {
    background-color: #101e43;
}

.input-group-text i {
    color: white;
}

.contact-input {
    border: 1px solid #101e43; /* Light purple border */
    color: #000; /* black text */
    transition: all 0.3s ease-in-out;
    padding: 10px;
    border-radius: 25px; /* Rounded corners */
}

.contact-input:hover,
.contact-input:focus {
    border: 1px solid #101e43; /* Purple neon glow on hover/focus */
    box-shadow: 0 0 15px 5px #101e43; /* Stronger purple glow */
}

.input-group-text {
    color: #fff;
    border: 1px solid #101e43;
    border-radius: 25px 0 0 25px; /* Rounded left side of input group */
}

.contact-btn-primary {
    background-color: #101e43;
    border-color: #101e43;
    border-radius: 25px; /* Rounded button */
    transition: background-color 0.3s ease-in-out;
}

.contact-btn-primary:hover {
    background-color: #eb7515; /* Lighter purple on hover */
    border-color: #eb7515;
}

.contact-input.rounded-3 {
    border-radius: 12px;
}

.card-container {
    transition: background-color 0.3s ease-in-out; /* Smooth transition for background color */
}

.card-container {
    transition: box-shadow 0.3s ease-in-out; 
}

.card-container:hover {
    box-shadow: 0 0 15px 5px #101e43; 
}
/****Contact end*****/

.card-img-top img {
  transition-duration: 0.5s;
}

.card-img-top img:hover {
  width: 200px; 
  height: auto;
}

/****mail start*****/
.flip-card {
  background-color: transparent;
  width: 1000px;
  height:400px;
  perspective: 1000px;
  margin-left:130px;
}

/* The flip card inner container */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

/* The front side of the card (image content) */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden; 
}

/* Front side (image content) */
.flip-card-front {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white; 
}

.flip-card-front img{
    width: 30%;
    height: 30%;
  }

.flip-card-back {
  background-color: white;
  color: white;
  text-align: center;
  transform: rotateY(180deg); 
  display: flex;
  flex-direction: row; 
  justify-content: space-between; 
  align-items: center;
  padding: 20px; 
}

/* Flip the card when hovering */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

@media (max-width: 768px) {
  .flip-card {
    width: 100%; 
    margin-left: 3%;
    height:360px;
  }

  .flip-card-inner {
    width: 94%; 
    height:300px;
    transition: transform 0.4s; 
  }
  
  .flip-card-front img{
    width: 70%;
    height: 70%;
  }
  
  .flip-card-front, .flip-card-back {
    font-size: 14px; 
    padding: 10px; 
    margin-top:0px;
  }
  
  .flip-card-back {
    background-color: white;
    height: auto;
    color: white;
    overflow-y: auto; 
    max-height: 400px; 
    padding-right: 15px;
  }
}
/****mail end*****/

/***payroll start**/
.payrollcard .card-img-top {
    border-radius: 8px; 
    margin-bottom: 15px; 
    margin-top: 10px; 
}

.payrollcard .card-body {
    padding: 25px;  
    background-color:white;  
    border-radius: 10px;  
}

.payrollcard{
    border: none;  
    border-radius: 10px;  
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  
    transition: transform 0.3s ease, box-shadow 0.3s ease;  
    margin-bottom: 30px;  
    background-color: #ffffff;  
}

.payrollcard:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);  
}

.card-img-top {
    transition: transform 0.3s ease-in-out; 
}

.payrollcard.card:hover .card-img-top {
    transform: scale(1.1);
}

.payrollcard .card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); 
}
/***payroll end**/

 .page-header {
    background-image: url('../images/about2.png'); /* Path to your image */
    background-size: cover;
    background-position: center;
    max-width: 300%;
    /*border-bottom:4px solid #eb7515;*/
}
