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

:root {
    --primary: #FF5E14;
    --secondary: #5F656F;
    --light: #F5F5F5;
    --dark: #02245B;
}

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

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

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

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

/*** Spinner ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/

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

.btn-primary,
.btn-outline-primary:hover {
    color: #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;
}

.topbar-right {
    position: relative;
    background: var(--primary);
}

.topbar-right::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 100%;
    top: 0;
    left: -15px;
    transform: skewX(-30deg);
    background-color: var(--primary);
}

/*** Navbar ***/

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    position: relative;
    padding-right: 50px;
    height: 75px;
    display: flex;
    align-items: center;
    background: var(--primary);
}

.navbar .navbar-brand::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 100%;
    top: 0;
    right: -25px;
    transform: skewX(-30deg);
    background-color: var(--primary);
}

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

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

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

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

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/*** Header ***/

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    /* background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%); */
    z-index: 1;
}

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

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 3.5rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

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

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

.page-header1 {
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), url(../img/carousel-3.jpg) center center no-repeat;
    background-size: cover;
}

.page-header2 {
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), url(../img/carousel-4.jpg) center center no-repeat;
    background-size: cover;
}

.page-header3 {
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), url(../img/carousel-5.jpg) center center no-repeat;
    background-size: cover;
}

.page-header4 {
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), url(../img/carousel-6.jpg) center center no-repeat;
    background-size: cover;
}

.page-header5 {
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), url(../img/carousel-7.jpg) center center no-repeat;
    background-size: cover;
}

/*** Facts ***/

.facts {
    position: relative;
    margin: 6rem 0;
    background: var(--dark);
}

.facts .border {
    border-color: rgba(255, 255, 255, .1) !important;
}

/*** Features ***/

.btn-play {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

@media (max-width: 992px) {
    .btn-play {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
    }
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid #FFFFFF;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

/*** Service ***/

.service-item {
    position: relative;
    margin: 65px 0 25px 0;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
    position: absolute;
    padding: 12px;
    width: 130px;
    height: 130px;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

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

.service-item .service-title {
    position: absolute;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover .service-title {
    top: -100%;
}

.service-item .service-text {
    position: absolute;
    overflow: hidden;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    display: flex;
    align-items: center;
    text-align: center;
    background: rgba(2, 36, 91, .7);
    transition: .5s;
}

.service-item:hover .service-text {
    top: 0;
}

.service-item .service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100px;
    top: -100%;
    left: 0;
    transform: skewY(-12deg);
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover .service-text::before {
    top: -55px;
}

.service-item .btn {
    position: absolute;
    width: 130px;
    height: 50px;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    background: #FFFFFF;
    border: none;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

.service-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

/*** Project ***/

.project-carousel {
    position: relative;
    background: var(--dark);
}

.project-item {
    position: relative;
    display: block;
}

.project-item img {
    transition: .5s;
}

.project-item:hover img,
.project-carousel .owl-item.center img {
    margin-top: -60px;
}

.project-item .project-title {
    position: absolute;
    padding: 0 15px;
    width: 100%;
    height: 80px;
    bottom: -110px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--dark);
    transition: .5s;
}

.project-item:hover .project-title,
.project-carousel .owl-item.center .project-title {
    bottom: -60px;
}

.project-item .project-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 30px;
    top: -15px;
    left: 0;
    transform: skewY(-5deg);
    background: var(--dark);
    transition: .5s;
}

.project-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    transition: .5s;
    opacity: 0;
    z-index: 1;
}

.project-carousel:hover .owl-nav {
    opacity: 1;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

/*** Team ***/

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    display: flex;
    align-items: center;
    background: var(--primary);
    transition: .5s;
}

.team-item:hover .team-social {
    left: 0;
}

/*** Testimonial ***/

.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

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

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

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}

.copyright {
    color: #B0B9AE;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.main_home a {
    font-size: 13px !important;
}

.navbar .navbar-brand {
    position: relative;
    padding-right: 50px;
    height: 100px;
    display: flex;
    align-items: center;
    background: var(--primary);
}

.about-section {
    padding: 50px 0;
}

.about-section h2 {
    font-weight: bold;
    color: #3b3b98;
}

.about-section p {
    font-size: 16px;
    color: #555;
}

.about-section .mission,
.about-section .vision {
    margin-top: 20px;
}

.about-section .image-container img {
    width: 100%;
    border-radius: 8px;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.services-title {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
    font-size: 2em;
    position: relative;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #ff6b00;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
}

.service-box {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.5s ease;
}

.service-box:hover .service-image {
    transform: rotateY(360deg);
}

.service-title {
    color: #333;
    font-size: 1.2em;
    margin: 15px 0;
    font-weight: bold;
}

.service-description {
    color: #666;
    font-size: 0.9em;
    line-height: 1.6;
}

/* Color variations for different service types */

.service-box:nth-child(odd) {
    border-top: 4px solid #4a3d8f;
}

.service-box:nth-child(even) {
    border-top: 4px solid #ff6b00;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
    padding: 15px;
    background: #fff;
    transition: all 0.3s ease;
}

.team-member:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.section-title {
    text-align: center;
    margin: 50px 0;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #f0ad4e;
    margin: 10px auto;
}

.logo img {
    width: 150px;
}

.quick-links ul {
    list-style: none;
    padding: 0;
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links a {
    color: white;
    text-decoration: none;
}

.company-card {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.copyright {
    background-color: white;
}

.whatsapp-float img {
    width: 50px;
    position: fixed;
    bottom: 40px;
    left: 20px;
    border-radius: 10px;
    z-index: 1;
}

.logo img {
    width: 201px;
}

.navbar .navbar-brand {
    position: relative;
    padding-right: 50px;
    height: 70px;
    display: flex;
    align-items: center;
    background: var(--primary);
}

.mainlogosr {
    height: 124px;
    width: 136px;
    /* padding-top: 10px; */
}

.navbar .navbar-brand {
    position: relative;
    padding-right: 50px;
    height: 70px;
    display: flex;
    align-items: center;
    background: white;
}

.navbar .navbar-brand::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 100%;
    top: 0;
    right: -25px;
    transform: skewX(-30deg);
    background-color: white;
}

.mainlogosr {
    margin-top: -30px;
    /* height: 175px; */
    width: 100%;
    /* padding-top: 10px; */
}

.top-bar {
    background-color: #2D2654;
    padding: 10px 0;
    color: white;
}

.logo img {
    max-height: 60px;
    width: auto;
}

.helpline {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.helpline-text {
    color: #fff;
    font-size: 14px;
}

.helpline-number {
    color: #FF7F27;
    font-weight: bold;
}

.action-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.consultant-form {
    background-color: white;
    color: #2D2654;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.book-consultation {
    background-color: #FF7F27;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.top-bar {
    background-color: #2D2654;
    padding: 7px 0;
    color: white;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 301px;
    border-top: 62px solid #fff;
    border-right: 75px solid #2c2555;
    width: 0;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.logo img {
    max-height: 60px;
    width: auto;
}

.helpline {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.helpline-text {
    color: #fff;
    font-size: 14px;
}

.helpline-number {
    color: #FF7F27;
    font-weight: bold;
}

.action-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.consultant-form {
    background-color: white;
    color: #2D2654;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.book-consultation {
    background-color: #FF7F27;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.logo img {
    max-height: 180px;
    width: auto;
}

.footer-section11 {
    background-color: #2D2654;
    color: white;
    padding: 50px 0;
}

.logo-section img {
    max-width: 200px;
    margin-bottom: 20px;
}

.company-name {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 15px;
}

.company-description {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: justify;
}

.section-title11 {
    color: #FF7F27;
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.section-title11::before {
    content: '';
    position: absolute;
    left: 0;
    height: 100%;
    width: 4px;
    background-color: #FF7F27;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FF7F27;
}

.contact-info-home {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-icon {
    background-color: #FF7F27;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    background-color: white;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2D2654;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: #FF7F27;
    color: white;
}

.facebook {
    height: 25px;
    width: 25px;
}

.location {
    height: 40px;
    width: 75px;
}

.carousel-item img {
    /* height: 500px ; */
    object-fit: cover;
}

.phone i {
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid white;
    border-radius: 10px;
}

/* pop up section
    */

.book-consultation {
    padding: 9px 30px;
    background-color: #ff5e14;
    color: #fff;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    font-size: 14px;
}

.book-consultation i {
    margin-left: 8px;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    height: 660px;
}

.popup-form h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.popup-form label {
    display: block;
    margin: 10px 0 5px;
    text-align: left;
}

.popup-form input,
.popup-form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.popup-form button {
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.popup-form button:hover {
    background-color: #0056b3;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

/* Drop down 
     */

.action-buttons {
    position: relative;
    display: inline-block;
    /* z-index: 100000; */
}

.consultant-form {
    width: 120px;
    height: 40px;
    background-color: #ff5e14;
    color: #ffffff;
    border: 1px solid #ff5e14;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.consultant-form i {
    margin-left: 8px;
    font-size: 12px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 185%;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 100000;
}

.dropdown-item {
    padding: 12px 16px;
    text-align: center;
    background-color: white;
    /* Orange background */
    color: #000000;
    font-size: 14px;
    cursor: pointer;
}

.dropdown-item:not(:last-child) {
    border-bottom: 1px solid #373636;
    /* White border between items */
}

.dropdown-item:hover {
    background-color: #ff5e14 !important;
    /* Darker orange on hover */
    color: #ffffff !important;
}

.dropdown-menu.show {
    display: block;
}

.about-section {
    padding: 0px !important;
}

.logo-section img {
    max-width: 200px;
    /* margin-bottom: -55px; */
}

.consultant-form:hover,
.book-consultation:hover {
    background-color: #ffffff;
    color: #ff5e14;
    border: 1px solid #ffffff;
}

.modal-body label {
    color: black;
}

.company-img {
    height: 130px;
}

.modal-header {
    align-content: center;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center !important;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.pop-img {
    width: 602px !important;
}

.contact-container {
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.contact-info1 {
    background-color: #2d2350;
    color: #fff;
    padding: 40px;
}

.contact-info h5 {
    font-weight: bold;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.social-icons a {
    color: #2d2350;
    margin-right: 10px;
    font-size: 18px;
}

.contact-form {
    padding: 40px;
}

.btn-submit {
    background-color: #f57c00;
    color: #fff;
    border: none;
}

.btn-submit:hover {
    background-color: #e06600;
}

.career-container {
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    max-width: 700px;
    margin: auto;
    margin-top: 50px;
}

#gallery {
    padding-top: 40px;

    @media screen and (min-width: 991px) {
        padding: 60px 30px 0 30px;
    }
}

.img-wrapper {
    position: relative;
    margin-top: 15px;

    img {
        width: 100%;
    }
}

.img-overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;

    i {
        color: #fff;
        font-size: 3em;
    }
}

#overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    img {
        margin: 0;
        width: 80%;
        height: auto;
        object-fit: contain;
        padding: 5%;

        @media screen and (min-width: 768px) {
            width: 60%;
        }

        @media screen and (min-width: 1200px) {
            width: 50%;
        }
    }
}

#nextButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;

    &:hover {
        opacity: 0.7;
    }

    @media screen and (min-width: 768px) {
        font-size: 3em;
    }
}

#prevButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;

    &:hover {
        opacity: 0.7;
    }

    @media screen and (min-width: 768px) {
        font-size: 3em;
    }
}

#exitButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
    position: absolute;
    top: 15px;
    right: 15px;

    &:hover {
        opacity: 0.7;
    }

    @media screen and (min-width: 768px) {
        font-size: 3em;
    }
}

.company-logo img {
    max-width: 150px;
    height: auto;
}

.company-details h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.company-details p {
    font-size: 16px;
    color: #555;
}

.image-box img {
    width: 85%;
    height: 330px;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
    object-fit: cover;
}

/* Dotted Shadow on Hover */

.image-box:hover img {
    box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.1);
    border: 3px dotted #007bff;
    transform: scale(1.05);
}

/* Text Styling */

.text-box h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

.text-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* Responsive Design */

@media (max-width: 768px) {

    .image-box,
    .text-box {
        text-align: center;
    }
}

.mainlogosr {
    margin-top: -30px;
    /* height: 235px; */
    width: 235px;
    /* padding-top: 10px; */
}

/* client start */

.container12-fluid {
    background: #fff;
    overflow: hidden;
    width: 100%;
}

.logo-slider12 {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.logos-slide12 {
    display: flex;
    width: calc(100% * 2);
    /* Enough space for all images and duplicates */
    animation: scroll-left 10s linear infinite;
}

.logos-slide12 img {
    height: 80px;
    margin-right: 30px;
    object-fit: contain;
}

.client12 {
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* client end  */

/* Responsive */

@media (max-width:600px) {
    .modal-body img {
        width: 325px !important;
        height: 159px !important;
    }

    .top-mb {
        margin-left: 49px !important;
        height: 68px !important;
    }

    .top-bar::before {
        left: -8px !important;
    }

    .mainlogosr {
        margin-top: 26px;
        height: 139px;
        width: 137px;
        margin-bottom: 3px;
        margin-left: -45px;
    }

    .action-buttons {
        margin-bottom: 38px;
    }

    .book-consultation {
        margin-bottom: 38px;
    }

    .dropdown-menu {
        width: 100% !important;
    }

    .dropdown-item:hover {
        background-color: #ff5e14 !important;
        color: #ffffff !important;
    }

    .sl-aos {
        overflow: hidden;
    }

    .company-details h1 {
        font-size: 23px;
    }
}

.team-member img {
    width: 200px;
    height: 250px;
    object-fit: cover;
    margin-bottom: 15px;
}

.sr_img_home img {
    height: 150px !important;
    width: 250px !important;
}

.mainlogosr {
    margin-top: -69px;
    /* height: 129px; */
    width: 100%;
    /* padding-top: 10px; */
}

.mainlogosr {
    margin-top: -30px;
    /* height: 175px; */
    width: 190px;
    /* padding-top: 10px; */
}

.home_logo {
    height: 130px;
    width: 200px;
    position: relative;
    top: -15px;
}

.shadow-sm .home_logo {
    height: 75px;
    width: 117px;
    position: relative;
    top: 0px;
    margin-top: -4px;
}

.a_base a {
    color: #FF5E14;
}

.a_base1 {
    color: #FF5E14;
}

.Nav_main a {
    font-size: 14px !important;
    font-weight: bold;
}

.sr_texthome {
    font-size: 23px;
}


@media(max-width:600px) {

    .home_logo {
        height: 71px;
        width: 113px;
        position: relative;
        top: 17px;
    }
    .com-mob{
        display: contents !important;
    }
}