
/*** 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 {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button 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);
    background: #dd0848;  /* Changed to the new color */
    border: none;
}

.btn.btn-primary:hover {
    background: #b20738;  /* Adjusted hover color if needed */
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: #dd0848;
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}



/*** Topbar Start ***/ 
.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);
}

.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: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 50px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 600px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.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 .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .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 .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}
/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    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-light);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-secondary);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}


@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: url(../img/contact-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}


.bg-header-about {
    position: relative;
    overflow: hidden;
    background: url(../img/business.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 90px 0 60px 0;
    transition: 0.5s;
}


.bg-header {
    position: relative;
    overflow: hidden;
    background: url(../img/sap-erp.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 90px 0 60px 0;
    transition: 0.5s;
}


.bg-header .breadcrumb {
    position: relative;
}

.bg-header .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header End ***/

/*** Feature Start ***/
.feature .feature-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: background 0.5s, box-shadow 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    /* Optional: Add a fixed height if needed */
    /* height: 350px; */
}

.feature .feature-item:hover {
    background: #dd0848; /* Pink background on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Shadow on hover */
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 100px;
    height: 100px; /* Ensure consistent height */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
    transition: background 0.5s, color 0.5s;
}

.feature .feature-item:hover .feature-icon {
    background: var(--bs-light); /* Ensure consistent background color on hover */
}

.feature .feature-item:hover .feature-icon i {
    color: #dd0848; /* Change icon color on hover */
}

.feature .feature-item .feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: height 0.5s;
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

.feature .feature-item h4,
.feature .feature-item p {
    transition: color 0.5s;
}

.feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: var(--bs-white); /* Change text color on hover */
}

.feature .feature-item:hover a.btn {
    background: #f0f0f0; /* Change button background on hover */
    color: #dd0848; /* Change button text color on hover */
}

.feature .feature-item:hover a.btn:hover {
    background: var(--bs-dark); /* Darken button background on hover */
    color: #dd0848; /* Change button text color on hover */
}

/*** Feature End ***/





/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: #dd0848;
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}
/*** Service End ***/


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(1, 95, 201, .8);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-primary);
    background: var(--bs-light);
}
/*** FAQs End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}
/*** Blog End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
} 

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}
/*** Team End ***/


/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Testimonial End ***/


/*** Contact Start ***/
.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s
}

@keyframes image-efects {
    0%  {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}

    25% {border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;}

    50% {border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;}

    75% {border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;}

    100% {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: #dd0848; /* Changed to the new color */
}

.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 .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

.footer .footer-item .footer-btn a {
    background: var(--bs-light);
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-white);
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.text-primary {
    color: #dd0848 !important; /* Replace with your desired color */
}

.dropdown-item:hover {
    background-color: #f0f0f0; /* Replace with your desired hover color */
    color: #dd0848; /* Optional: Change text color on hover */
}

/*** copyright end ***/


.side-by-side-container {
    display: flex;
    gap: 0.5rem; /* Adjust the gap as needed */
}

.side-by-side {
    white-space: nowrap; /* Ensure words don't wrap */
}


.bold-text {
    font-weight: bold;
    font-size: 1.2rem; /* Adjust size as needed */
    margin-bottom: 0.5rem; /* Reduced space below to fit closely */
}

.spaced-top {
    margin-top: 0.5rem; /* Reduced space above to fit closely */
    font-size: 1rem; /* Adjust size for consistency */
    line-height: 1.5; /* Adjust line height for better fit */
}

.about-item-content {
    padding: 2rem; /* Ensure there's enough padding around content */
}

@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem; /* Adjust heading size for smaller screens */
    }
    
    .about-item-content {
        padding: 1.5rem; /* Adjust padding for smaller screens */
    }
    
    .bold-text, .spaced-top {
        font-size: 1rem; /* Adjust text size for better fit on small screens */
    }
}

.about-item-content {
    padding: 2rem; /* Reduced padding for smaller box */
    margin: auto; /* Center horizontally */
    max-width: 100%; /* Ensure it doesn't exceed the container width */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow for better visibility */
}

.bold-text {
    font-weight: bold;
    margin-bottom: 1rem; /* Adjust margin as needed */
}

.spaced-top {
    margin-top: 1rem; /* Adjust margin as needed */
}

.expertise-section {
    padding: 50px;
    background-color: #f5f5f5;
    text-align: center;
}

.expertise-header {
    margin-bottom: 30px; /* Space between the header and the categories */
}

.expertise-title {
    font-size: 3rem; /* Adjust the size as needed */
    color: #444E91; /* Matching the theme color */
    margin-bottom: 20px;
}

.expertise-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

/* Categories Section Styling */
/* Container for the "Our Expertise" section */
.expertise-section {
    padding: 50px 0;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.expertise-container {
    background-color: white;
    border: 2px solid #dd0848; /* Pink border */
    border-radius: 10px;
    padding: 30px;
    max-width: 900px; /* Same max-width as "Excellence, Redefined" */
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Header for the "Our Expertise" section */
.expertise-header {
    margin-bottom: 30px; /* Space between the header and the categories */
    text-align: left; /* Align heading to the left */
}

/* Title text styling to match "Excellence, Redefined" */
.expertise-title {
    font-size: 2.5rem; /* Same as the "Excellence, Redefined" title */
    color: #444E91; /* Matching the theme color */
    margin-bottom: 20px;
    font-weight: bold; /* Match font weight */
}

/* Wrapper for the categories and information */
.expertise-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

/* Category section styling */
.expertise-categories {
    display: flex;
    flex-direction: column;
    background-color: #dd0848; /* Pink background */
    padding: 20px;
    border-radius: 10px;
    width: 250px; /* Adjust width for equal sizing */
}

.category-item {
    color: white;
    cursor: pointer;
    padding: 10px;
    border-bottom: 1px solid #bb073c;
    transition: background-color 0.3s;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-item:last-child {
    border-bottom: none;
}

.category-item:hover, .category-item.active {
    background-color: #bb073c;
    font-weight: bold;
}

.arrow-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.category-item.active .arrow-icon {
    transform: rotate(90deg);
}

/* Info section styling */
.expertise-info {
    flex: 1;
    margin-left: 20px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
}

.expertise-info .info-content {
    display: none;
}

.expertise-info .info-content.active {
    display: block;
}

/* CTA button styling */
.cta-button {
    background-color: #dd0848;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #bb073c;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .expertise-wrapper {
        flex-direction: column;
    }
    .expertise-categories {
        width: 100%; /* Full width on small screens */
        margin-bottom: 20px;
    }
    .expertise-info {
        margin-left: 0;
    }
}



.sap-practice-areas-img {
    width: 100%;
    max-width: 1200px; /* Adjust this max-width as needed */
    height: auto;
    margin: 0 auto; /* Center the image */
}




/* Dark background and white text */
.bg-dark {
    background-color: #10274c; /* Dark blue background */
    color: white;
    padding: 60px 0;
    border-radius: 15px; /* Optional rounded corners */
}

/* Large heading on the left */
.display-3 {
    font-size: 3.5rem; /* Adjust size if needed */
    font-weight: 700;
}

/* Text on the right */
.lead {
    font-size: 1.25rem;
    font-weight: 400;
}

/* Ensure proper alignment on smaller screens */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
        text-align: center;
    }

    .lead {
        text-align: center;
    }
}

/* .service-item {
    background-color: white;
    transition: background-color 0.3s ease;
}

.service-item:hover {
    background-color: #dd0848;
} */

/* Ensuring all devops service boxes are of equal height */
/* Ensuring all devops service boxes are of equal height */
.devops-services .devops-service-item {
    height: 100%;
    background-color: white; /* Initial background color */
    transition: background-color 0.3s ease; /* Smooth transition for background color */
    cursor: pointer; /* Change cursor to pointer on hover */
}

/* Styling the icons for devops services */
.devops-services .devops-service-icon {
    color: rgba(1, 95, 201, 0.2); /* Initial icon color */
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth transition for icon color and scaling */
}

/* Hover effect: change box background color while keeping text color */
.devops-services .devops-service-item:hover {
    background-color: #dd0848; /* Box background color on hover */
}

/* Change the icon color to white on hover */
.devops-services .devops-service-item:hover .devops-service-icon {
    color: white; /* Icon color on hover */
    transform: scale(1.2); /* Slightly increase the size of the icon */
}

/* Ensure the text color remains the same */
.devops-services .devops-service-item h4,
.devops-services .devops-service-item p {
    color: black; /* Text color should always be black */
    margin: 0;
}

/* Maintain the text color when hovering over the box */
.devops-services .devops-service-item:hover h4,
.devops-services .devops-service-item:hover p {
    color: black; /* Ensure text color remains unchanged on hover */
}




/* Styling for the container and text */
.container-fluid.bg-light {
    padding: 3rem 0;
}

.container h2 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.container p.lead {
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

/* Image and row styling */
.row.g-4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.row.g-4 .col-md-2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.grayscale {
    filter: grayscale(100%);
}

.img-fluid:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}


/* General styling */
.container-fluid.bg-light {
    padding: 3rem 0;
}

.container h2 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.container p.lead {
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

/* V-Box styling */
.v-box {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between rows */
}

/* Row styling inside the V-Box */
.v-box-row {
    display: flex;
    justify-content: center;
    gap: 15px; /* Space between images in a row */
}

.v-box-row .col-md-2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.grayscale {
    filter: grayscale(100%);
}

.img-fluid:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}



/* Common Service Item Styling */
.service-item {
    background-color: white;
    height: 100%; /* Ensures all service boxes have equal height */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth background and scaling transition */
    cursor: pointer; /* Pointer cursor on hover */
    border-radius: 8px; /* Optional: slightly rounded corners for a softer look */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Hover Effect for Service Boxes */
.service-item:hover {
    background-color: #dd0848; /* Background color change on hover */
    transform: translateY(-5px); /* Lift the box slightly on hover */
}

/* Service Icon Styling */
.service-icon {
    color: rgba(1, 95, 201, 0.2); /* Initial icon color */
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth color and scaling transition */
}

/* Hover Effect for Icons */
.service-item:hover .service-icon {
    color: white; /* Change icon color to white on hover */
    transform: scale(1.2); /* Slightly enlarge icon on hover */
}

/* Text Styling for Service Items */
.service-item h4,
.service-item p {
    color: black; /* Ensure text color is always black */
    margin: 0; /* Remove margin for clean layout */
}

/* Text Color should not change on hover */
.service-item:hover h4,
.service-item:hover p {
    color: black; /* Keep text black even when hovering */
}

/* Expertise Section */
.expertise-section .expertise-item {
    background-color: white;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    height: 100%;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.expertise-section .expertise-item:hover {
    background-color: #dd0848;
    transform: translateY(-5px);
}

.expertise-section .expertise-icon {
    color: rgba(1, 95, 201, 0.2); /* Light blue color */
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expertise-section .expertise-item:hover .expertise-icon {
    color: white; /* Icon color on hover */
    transform: scale(1.2);
}

.expertise-section .expertise-item h4,
.expertise-section .expertise-item p {
    color: black; /* Ensure text color is always black */
    margin: 0;
}

.expertise-section .expertise-item:hover h4,
.expertise-section .expertise-item:hover p {
    color: white; /* Text color changes to white on hover */
}

/* Expertise Section Header */
.expertise-section .expertise-header h2 {
    font-size: 3rem; /* Matches the display-4 font size */
    color: #444E91; /* Theme color */
    margin-bottom: 20px;
    font-weight: bold;
}

.expertise-section .expertise-header p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #555;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .expertise-section .expertise-item {
        margin-bottom: 20px;
    }
    
    .expertise-section .expertise-header h2 {
        font-size: 2.5rem; /* Smaller title for mobile */
    }
    
    .expertise-section .expertise-header p {
        font-size: 1.1rem; /* Adjusted for readability */
    }
}

/* Salesforce Services Section */
.salesforce-services .service-item {
    background-color: white;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    height: 100%;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.salesforce-services .service-item:hover {
    background-color: #dd0848;
    transform: translateY(-5px);
}

.salesforce-services .service-icon {
    color: rgba(1, 95, 201, 0.2); /* Initial light blue color */
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.salesforce-services .service-item:hover .service-icon {
    color: white; /* Icon color on hover */
    transform: scale(1.2);
}

.salesforce-services .service-item h4,
.salesforce-services .service-item p {
    color: black; /* Ensure text color is always black */
    margin: 0;
}

.salesforce-services .service-item:hover h4,
.salesforce-services .service-item:hover p {
    color: white; /* Text color changes to white on hover */
}

/* Salesforce Services Section Header */
.salesforce-services .text-center h4 {
    font-size: 1.5rem;
    color: #dd0848; /* Theme color */
    margin-bottom: 10px;
    font-weight: bold;
}

.salesforce-services .text-center h1 {
    font-size: 3rem; /* Matches the display-4 font size */
    color: #444E91; /* Theme color */
    margin-bottom: 20px;
    font-weight: bold;
}

.salesforce-services .text-center p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #555;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .salesforce-services .service-item {
        margin-bottom: 20px;
    }

    .salesforce-services .text-center h1 {
        font-size: 2.5rem; /* Smaller title for mobile */
    }

    .salesforce-services .text-center p {
        font-size: 1.1rem; /* Adjusted for readability */
    }
}


/* General Service Item Styles */
.service-item {
    height: 100%;
    background-color: white;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth background and scaling transition */
    cursor: pointer; /* Pointer cursor on hover */
    border-radius: 8px; /* Slightly rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.service-item:hover {
    background-color: #dd0848; /* Background color on hover */
    transform: translateY(-5px); /* Lift the box slightly on hover */
}

.service-icon {
    color: rgba(1, 95, 201, 0.2); /* Set icon color */
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth transition for color and scaling */
    margin-bottom: 20px;
    font-size: 2rem; /* Reduced icon size */
}

.service-item:hover .service-icon {
    color: white; /* Change icon color to white on hover */
    transform: scale(1.1); /* Slightly enlarge the icon on hover */
}

.service-item h4,
.service-item p {
    color: black; /* Ensure text color is always black */
    margin: 0; /* Remove margin for clean layout */
}

.service-item:hover h4,
.service-item:hover p {
    color: white; /* Change text color to white on hover */
}

/* Button Styling */
.service-item .btn {
    align-self: flex-start;
    background-color: #dd0848;
    border: none;
    color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.service-item .btn:hover {
    background-color: #b20738;
    color: white;
}



/* Careers Section */
.career-item {
    background-color: #ffffff; /* White background color */
    position: relative;
    overflow: hidden;
    text-align: left;
    border-radius: 10px; /* Curved corners */
    padding: 20px;
    transition: background-color 0.3s ease; /* Smooth transition for background color */
    border: 2px solid black; /* Black border */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Shadow for depth */
}

.career-item:hover {
    background-color: #dd0848; /* Pink background on hover */
    border-color: #dd0848; /* Change border color on hover */
}

.career-number {
    font-size: 60px;
    font-weight: bold;
    opacity: 0.1;
    position: absolute;
    top: 20px;
    left: 20px;
    transition: opacity 0.3s ease; /* Smooth transition for opacity */
}

.career-item:hover .career-number {
    opacity: 0.2; /* Slightly increase opacity on hover */
}

.career-title {
    font-size: 20px;
    font-weight: bold;
    color: #333; /* Dark text color */
    margin-top: 50px;
    margin-bottom: 20px;
    transition: color 0.3s ease; /* Smooth transition for text color */
}

.career-item:hover .career-title {
    color: #ffffff; /* Change text color to white on hover */
}

.career-link {
    display: inline-block;
    color: rgba(1, 95, 201, 0.2); /* Green link color */
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth transition for link color */
}

.career-item:hover .career-link {
    color: #ffffff; /* Change link color to white on hover */
}

.career-icon {
    font-size: 50px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    opacity: 0.2;
    transition: opacity 0.3s ease, color 0.3s ease; /* Smooth transition for icon color and opacity */
}

.career-item:hover .career-icon {
    color: #ffffff; /* Change icon color to white on hover */
    opacity: 0.5; /* Increase opacity on hover */
}

/* Apply Spontaneous Section */
.apply-spontaneous-box {
    border: 2px solid #333; /* Black border */
    border-radius: 15px; /* Curved box */
    background-color: #f8f9fa; /* Light background */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    max-width: 700px;
    margin: 0 auto; /* Center the box */
}

.apply-spontaneous-box h4 {
    color: #333; /* Dark heading */
}

.apply-spontaneous-box p {
    color: #666; /* Slightly lighter text */
}

.apply-spontaneous-box .btn-primary {
    background-color: #dd0848; /* Pink button color */
    border-color: #dd0848;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.apply-spontaneous-box .btn-primary:hover {
    background-color: #c3073f; /* Darker pink on hover */
    border-color: #c3073f;
}

.footer-item a {
    color: white; /* Set link color to white */
    text-decoration: none; /* Remove underline from links */
}

.footer-item a:hover {
    color: white; /* Keep the link color white on hover */
    text-decoration: underline; /* Optional: Add underline on hover for emphasis */
}
/* New class for the Leadership page breadcrumb */
.bg-leadership-breadcrumb {
    background-image: url('../img/bg1.jpg');
    background-size: cover; /* Ensures the image covers the entire container */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    min-height: 300px; /* Adjust this height based on your design needs */
    background-color: #333; /* Fallback color in case the image doesn't load */
}

/* Styling the text within the breadcrumb area */
.bg-leadership-breadcrumb .text-white {
    color: #fff;
    font-size: 3.5rem; /* Increased font size for the heading */
    font-weight: 700; /* Make the text bold */
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7); /* Add text shadow for contrast */
}

/* Optional: Modify padding for better spacing */
.bg-leadership-breadcrumb .py-5 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* Ensure specificity and use !important to override any conflicting styles */
.service-item:hover {
    background-color: #dd0848 !important; /* Pink background color */
    color: white !important; /* Change text color to white for better contrast */
    border-color: #dd0848 !important; /* Optional: Change border color */
}

.service-item:hover h4,
.service-item:hover p {
    color: white !important; /* Ensure text color changes to white */
}

.service-item:hover .service-icon i {
    color: white !important; /* Change icon color to white on hover */
}


/* Define a consistent size for all DevOps tool images */
.devops-tool-img {
    width: 100px; /* Set the desired width */
    height: 100px; /* Set the desired height */
    object-fit: contain; /* Ensures the aspect ratio is maintained */
    margin: 0 auto; /* Centers the image in its container */
}
