.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: 40px;
    height: 40px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-xl-square {
    width: 56px;
    height: 56px;
}

.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-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}

/*** Navbar Start ***/
.header-top .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);
}

.header-top .topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 12px;
    border: 0;
    transition: .5s;
    opacity: 1;
}

.header-top {
    height: 125px;
    position: relative;
}

.header-top::after {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--bs-dark);
    z-index: 1;
}

.header-top .container {
    position: relative;
    z-index: 999;
}

@media (min-width: 992px) {
    .header-top::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 45px;
        top: 0;
        right: 0;
        background: var(--bs-dark);
        z-index: -1;
    }

    .navbar-brand-2 {
        display: none;
    }
}

@media (max-width: 991px) {
    .header-top {
        max-height: 80px;
    }

    .navbar {
        justify-content: space-between;
    }

    .header-top .container {
        max-height: 80px;
    }

    .navbar-brand {
        display: none;
    }

    .navbar-brand-2 {
        position: relative;
        overflow: hidden;
        width: 200px;
        height: 100%;
        padding: 0;
        display: flex;
        align-items: center;
        z-index: 99;
    }

    .navbar-brand-2::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 600px;
        top: -200px;
        right: 18px;
        background: var(--bs-dark);
        transform: rotate(-18deg);
        z-index: -1;
    }

    .navbar-brand-2::after {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 5px;
        height: 600px;
        top: -200px;
        right: 18px;
        background: var(--bs-primary);
        transform: rotate(-18deg);
        z-index: -1;
    }

    .navbar.navbar-light {
        height: 100%;
        padding: 0;
    }

    .navbar .navbar-collapse {
        margin-top: -20px;
    }

}

.nav-bar .navbar {
    height: 100%;
    background: var(--bs-white);
    position: relative;
    z-index: 9;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 20px;
}

.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: 12px;
        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;
       /* margin-left: 50px;*/
        background: var(--bs-light);
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        flex-direction: column;
    }

    .navbar .navbar-nav .nav-btn a.btn {
        margin-right: 15px;
    }

    .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) {
    .nav-bar .navbar::before {
        position: absolute;
        content: "";
        width: 50px;
        height: 100%;
        top: 0;
        left: -49px;
        background: var(--bs-white);
    }

    .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;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 19px;
        background: var(--bs-white);
        transition: .5s;
        opacity: 1;
    }

    .header-top .navbar-brand {
        position: relative;
        overflow: hidden;
        padding: 40px 50px 40px 0;
        z-index: 99;
    }
    
    .navbar-brand::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 300px;
        height: 600px;
        top: -200px;
        right: 18px;
        background: var(--bs-dark);
        transform: rotate(-18deg);
        z-index: -1;
    }
    
    .navbar-brand::after {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 5px;
        height: 600px;
        top: -200px;
        right: 18px;
        background: var(--bs-primary);
        transform: rotate(-18deg);
        z-index: -1;
    }
}
/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.hero-section {
    background-image: url(../img/carousel-1.webp
    );
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-bg-half-1 {
    background-image: url(../img/header-2.webp);
    clip-path: polygon(37% 0%, 100% 0%, 100% 100%, 0% 100%);
    filter: grayscale(10%);
    transform: scale(100% - 50%);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 58%;
    height: 100%;
    right: 0;
    top: 0;
}

.hero-bg-half-2 {
    background-image: url(../img/header-1.webp);
    clip-path: polygon(37% 0%, 100% 0%, 100% 100%, 0% 100%);
    filter: grayscale(10%);
    transform: scale(100% - 50%);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 58%;
    height: 100%;
    right: 0;
    top: 0;
}

.hero-shape-1 {
    background-color: var(--bs-primary);
    width: 150px;
    height: 50%;
    position: absolute;
    left: 54%;
    top: 0;
    transform: translateY(-50%) skew(-26deg, 0deg);
    position: relative;
}

.hero-shape-1:before {
    background-color: var(--bs-dark);
    content: "";
    width: 50%;
    height: 80%;
    position: absolute;
    right: 0;
    top: 0;
}

.hero-shape-2 {
    background-color: var(--bs-dark);
    width: 150px;
    height: 50%;
    position: absolute;
    right: -43%;
    bottom: 0;
    transform: translateY(50%) skew(-25deg, 0deg);
    position: relative;
    z-index: 1;
}

.hero-shape-2::after {
    background-color: var(--bs-primary);
    content: "";
    width: 75px;
    height: 80%;
    position: absolute;
    right: 0;
    bottom: 0;
}

/*** 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;
    background: var(--bs-white);
    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: 0;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 0;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 65px 0 var(--bs-primary);
    color: var(--bs-dark);
}

.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;
    z-index: 9;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel.owl-carousel,
    .header-carousel .header-carousel-item {
        height: 700px;
    }
}
/*** Carousel Hero Header 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(../img/banner.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** Service Start ***/
.service .nav .nav-item {
    width: 75%;
    border: 1px solid var(--bs-primary);
    background: var(--bs-light);
}

.service .nav .nav-item a {
    display: flex;
    justify-content: center;
}


.owl-stage-outer {
    margin-right: -1px;
}
.service .nav-item a.active {
    background: var(--bs-primary);
}

.service .nav-item a span {
    color: var(--bs-dark);
}

.service .nav-item a.active span {
    color: var(--bs-white);
}

.service-carousel .owl-nav .owl-prev,
.service-carousel .owl-nav .owl-next {
    position: absolute;
    padding: 10px 35px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-dark);
    background: var(--bs-light);
    transition: 0.5s;
}

.service-carousel .owl-nav .owl-prev:hover,
.service-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .service-carousel .owl-nav .owl-prev {
        top: 0;
        left: -115px;
    }
    
    .service-carousel .owl-nav .owl-next {
        bottom: 0;
        left: -115px;
    }
}

@media (max-width: 991px) {
    .owl-stage-outer {
        margin-bottom: 70px;
    }
    .service-carousel .owl-nav .owl-prev {
        bottom: -70px;
        left: 0;
    }

    .service-carousel .owl-nav .owl-next {
        bottom: -70px;
        right: 0;
    }

    .service .nav {
        display: flex;
        justify-content: center;
    }
}
/*** Service End ***/

/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.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 .team-icon {
    position: absolute;
    bottom: 20px; right: -100%;
    z-index: 9;
    transition: 0.5s;
}

.team .team-item:hover .team-img .team-icon {
    right: 25px;
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: rgba(246, 138, 10, .2);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}

.team .team-item .team-content {
    transition: 0.5s;
}

.team .team-item:hover .team-content {
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-right: -1px;
}

.testimonial .testimonial-item {
    position: relative;
    margin-top: 35px;
}

.testimonial .testimonial-item .customer-text {
    border: 1px solid var(--bs-primary);
    border-top: none;
}

.testimonial .testimonial-item .testimonial-quote {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    right: 25px;
    transform: translateY(-50%);
    color: var(--bs-dark);
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    align-items: center;
    background: var(--bs-white);
}

.testimonial .testimonial-item .testimonial-inner img {
    width: 100px; 
    height: 100px;
    border: 2px solid var(--bs-primary);
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    margin: 30px 10px 0 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

@media (max-width: 991px) {
    .testimonial-carousel .owl-dots .owl-dot {
        margin: 0 10px 0 10px;
    }
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    margin-right: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-white);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-primary);
    transition: 0.5s;
}
/*** Testimonial End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover {
    color: var(--bs-primary);
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}
/*** copyright end ***/


.whatsapp-float {
  position: fixed;
  margin-bottom: 20px;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.whatsapp-float {
  animation: pulse 1s infinite;
}

/*** From here ***/
.logo-img {
    height: 60px;        /* adjust as needed */
    width: auto;
    object-fit: contain;
}

.header-top {
    position: relative;
    z-index: 999;
    background: #0b0f19;
}
.nav-bar {
    background: #ffffff;
    height: 80px;
     /*  overflow: hidden;  */
}
.navbar {
    /*height: 80px;*/
    padding: 0;
}
.navbar-brand {
    height: 125px;
    display: flex;
    align-items: center;
    padding: 0 25px 0 0;
    position: relative;
    z-index: 10;
}
.navbar-brand::before {
    content: "";
    position: absolute;
    top: 0;
    left: -40px;
    width: 260px;
    height: 100%;
    background: #0b0f19;
    transform: skewX(-15deg);
    z-index: -1;
}
.header-carousel {
    margin-top: 0 !important;
}








.header-top {
    background: linear-gradient(90deg, #0b0f19 60%, #ffffff 60%);
    position: relative;
    z-index: 999;
}
.navbar-brand {
    height: 90px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    background: #0b0f19;
    border-radius: 0 0 30px 0;
}
.logo-img {
    height: 60px;
    width: auto;
}
.nav-bar {
    height: 80px;
    background: #ffffff;
    display: flex;
    align-items: center;
}
.navbar-nav .nav-link {
    font-weight: 500;
    color: #444;
    padding: 0 18px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #f7941d;
}
.nav-btn .btn {
    border-radius: 30px;
    padding: 10px 26px;
    font-weight: 600;
}
.header-carousel {
    margin-top: 0;
}

/*.nav-bar {
    backdrop-filter: blur(10px);
}
*/

/* Header Wrapper */
.header-top {
    background: #0b0f19;
    position: relative;
    z-index: 999;
}

/* Top Bar */
.topbar {
    height: 45px;
    font-size: 14px;
    color: #bfc3cf;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar i {
    color: #f7941d;
    margin-right: 6px;
}

.top-right a {
    color: #f7941d;
    margin-left: 15px;
}

/* Main Navbar */
.main-navbar {
    background: #ffffff;
    height: 80px;
    padding: 0 20px;
    border-radius: 0 0 14px 14px;
    display: flex;
    align-items: center;
}

/* Logo */
.navbar-brand {
    background: #0b0f19;
    padding: 12px 28px;
    border-radius: 0 0 22px 0;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 60px;
    width: auto;
}

/* Nav Links */
.nav-link {
    color: #444 !important;
    font-weight: 500;
    padding: 0 16px;
}

.nav-link:hover,
.nav-link.active {
    color: #f7941d !important;
}

/* Dropdown */
.dropdown-menu {
    border-radius: 8px;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* CTA Button */
.cta-btn {
    padding: 10px 26px;
    border-radius: 30px;
    font-weight: 600;
}

/* Mobile Fix */
@media (max-width: 991px) {
    .main-navbar {
        height: auto;
        padding: 10px;
    }

    .navbar-brand img {
        height: 48px;
    }
}
















/* Header Background */
.header-wrapper {
    background: #0b0f19;
    position: relative;
    z-index: 999;
}

/* Top Bar */
.topbar {
    height: 45px;
    color: #cbd0dc;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar i {
    color: #f7941d;
    margin-right: 6px;
}

.top-info span {
    margin-right: 25px;
}

.top-social a {
    color: #f7941d;
    margin-left: 15px;
}

/* Navbar Container */
.nav-container {
    padding: 18px 0;
}

/* Main Navbar */
.main-navbar {
    background: transparent;
    align-items: center;
}

/* Logo Box */
.logo-box {
    background: #0b0f19;
    padding: 16px 26px;
    border-radius: 16px;
    position: relative;
}

.logo-box::after {
    content: "";
    position: absolute;
    right: -14px;
    top: 0;
    width: 6px;
    height: 100%;
    background: #f7941d;
    transform: skewX(-12deg);
}

.logo-box img {
    height: 60px;
}

/* Menu Box */
.menu-box {
    background: #ffffff;
    border-radius: 50px;
    padding: 10px 20px;
    align-items: center;
}

/* Nav Links */
.nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 0 16px;
}

.nav-link:hover,
.nav-link.active {
    color: #f7941d !important;
}

/* CTA Button */
.cta-btn {
    padding: 10px 26px;
    border-radius: 30px;
    font-weight: 600;
    color: #fff;
}

/* Dropdown */
.dropdown-menu {
    border-radius: 12px;
    border: none;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* Mobile Fix */
@media (max-width: 991px) {
    .menu-box {
        border-radius: 16px;
        margin-top: 12px;
        padding: 15px;
    }

    .logo-box {
        padding: 12px 18px;
    }

    .logo-box img {
        height: 48px;
    }
}






/* Header Background */
.header-wrapper {
    background: #0b0f19;
    position: relative;
    z-index: 999;
}

/* Top Bar */
.topbar {
    height: 45px;
    color: #cbd0dc;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar i {
    color: #f7941d;
    margin-right: 6px;
}

.top-info span {
    margin-right: 25px;
}

.top-social a {
    color: #f7941d;
    margin-left: 15px;
}

/* Navbar Area */
.nav-container {
    padding: 16px 0;
}

/* Logo Box */
.logo-box {
    background: #0b0f19;
    padding: 14px 24px;
    border-radius: 16px;
    position: relative;
    margin-right: 40px;
}

/* ORANGE SLANT LEFT → RIGHT */
.logo-box::after {
    content: "";
    position: absolute;
    right: -16px;
    top: 0;
    width: 8px;
    height: 100%;
    background: #f7941d;
    transform: skewX(-18deg);
}

.logo-box img {
    height: 58px;
}

/* Menu */
.menu-box {
    background: #ffffff;
    border-radius: 50px;
    padding: 10px 30px;
    align-items: center;
}

/* Nav Links */
.nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 0 18px;
}

.nav-link.active,
.nav-link:hover {
    color: #f7941d !important;
}

/* CTA Right Corner */
.cta-wrapper {
    margin-left: auto;
}

.cta-btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    color: #fff;
}

/* Dropdown */
.dropdown-menu {
    border-radius: 12px;
    border: none;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* Mobile */
@media (max-width: 991px) {
    .menu-box {
        margin-top: 15px;
        border-radius: 18px;
        padding: 15px;
    }

    .cta-wrapper {
        margin-top: 12px;
        text-align: center;
    }

    .logo-box img {
        height: 46px;
    }
}

/* Add gap between navbar items */
.navbar-nav .nav-item {
    margin-right: 25px; /* Adjust as needed */
}

/* Optional: Remove margin for the last item */
.navbar-nav .nav-item:last-child {
    margin-right: 0;
}

.navbar-nav {
    display: flex;      /* Ensure flex */
    align-items: center; 
    gap: 25px;          /* Space between buttons */
}

/* Remove gap between dropdown and main link */
.navbar .dropdown-menu {
    margin-top: 0 !important;  /* no gap */
}

/* Small arrow next to Services */
.dropdown-arrow {
    font-size: 0.7rem; /* smaller arrow */
}

/* Show dropdown on hover (desktop) */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
    .nav-item.dropdown .dropdown-toggle::after {
        display: none; /* hide default bootstrap arrow */
    }
}


.service-carousel .service-item {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-carousel .service-item img {
    height: 230px;
    object-fit: cover;
}

.service-carousel .service-item .border {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-carousel .service-item p {
    flex-grow: 1;
}


#ServiceTab-2 .service-carousel .service-item {
    height: 100%;
    display: flex;
    flex-direction: column;      /* Stack image and content */
}

#ServiceTab-2 .service-carousel .service-item img {
    height: 230px;               /* Same height for all images */
    width: 100%;
    object-fit: cover;           /* Crop image nicely */
}

#ServiceTab-2 .service-carousel .service-item .border {
    flex: 1;                     /* Make content fill remaining space */
    display: flex;
    flex-direction: column;
}

#ServiceTab-2 .service-carousel .service-item p {
    flex-grow: 1;                /* Make paragraph expand to push button down */
}


/* Service card equal height */
.service-item-top {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
}

/* Image container fixed height */
.service-item-top .overflow-hidden {
    height: 220px;              /* adjust if needed */
    overflow: hidden;
}

/* Image fit */
.service-item-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bottom content fixed height */
.service-item-top .bg-light {
    height: 70px;               /* keeps all titles aligned */
    display: flex;
    align-items: center;
}

/* Optional: hover effect consistency */
.service-item-top:hover img {
    transform: scale(1.08);
    transition: transform 0.4s ease;
}





@media (max-width: 991px) {
    .navbar {
        height: auto !important;
    }
}

@media (max-width: 991px) {

    .navbar-collapse {
        background: #ffffff;
        border-radius: 16px;
        padding: 15px;
        margin-top: 10px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }

    .navbar-nav {
        margin-left: 0 !important;
        gap: 0 !important;
        align-items: flex-start;
    }

    .navbar-nav .nav-item {
        width: 100%;
        margin-right: 0;
    }

    .navbar-nav .nav-link {
        padding: 12px 10px;
        width: 100%;
    }

}

@media (max-width: 991px) {
    .cta-wrapper,
    .nav-btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .cta-btn,
    .nav-btn .btn {
        width: 100%;
    }
}

.navbar-toggler {
    border: 1px solid #f7941d;
}

.navbar-toggler-icon {
    filter: brightness(0);
}
@media (max-width: 991px) {
    /* Hide CTA button from navbar row */
    .cta-wrapper,
    .nav-btn {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .navbar-collapse .cta-wrapper,
    .navbar-collapse .nav-btn {
        display: block !important;
        width: 100%;
        margin-top: 15px;
    }

    .navbar-collapse .cta-btn,
    .navbar-collapse .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 991px) {
    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-brand,
    .navbar-brand-2 {
        z-index: 1001;
    }

    .navbar-toggler {
        z-index: 1002;
    }
}

.navbar-toggler {
    border: 1px solid #ffffff;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 991px) {
    .cta-wrapper,
    .nav-btn {
        display: block !important;
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }

    .cta-btn,
    .nav-btn .btn {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #ffffff;
        border-radius: 16px;
        padding: 20px;
        margin-top: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
}

/* FORCE white hamburger lines */
.navbar-toggler {
    border: 1px solid #ffffff;
    padding: 6px 8px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2.5' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

/* ================= MOBILE RESPONSIVE FIX ================= */
@media (max-width: 991px) {

  /* Kill all slanted shapes on mobile */
  .navbar-brand::before,
  .navbar-brand::after,
  .logo-box::after {
    display: none !important;
  }

  /* Header height auto */
  .header-top,
  .nav-bar,
  .navbar {
    height: auto !important;
  }

  /* Logo fix */
  .navbar-brand,
  .navbar-brand-2,
  .logo-box {
    background: #0b0f19 !important;
    padding: 10px 15px !important;
    border-radius: 10px !important;
  }

  .navbar-brand img,
  .logo-box img {
    height: 45px !important;
  }

  /* Hamburger position */
  .navbar-toggler {
    border: 1px solid #ffffff !important;
    z-index: 1100;
  }

  /* Dropdown container */
  .navbar-collapse {
    background: #ffffff !important;
    border-radius: 16px;
    padding: 15px;
    margin-top: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  }

  /* Stack menu items */
  .navbar-nav {
    align-items: flex-start !important;
    gap: 0 !important;
  }

  .navbar-nav .nav-item {
    width: 100%;
    margin: 0 !important;
  }

  .navbar-nav .nav-link {
    width: 100%;
    padding: 12px 10px !important;
  }

  /* CTA button inside menu */
  .cta-wrapper,
  .nav-btn {
    display: block !important;
    width: 100%;
    margin-top: 10px;
    text-align: center;
  }

  .cta-btn,
  .nav-btn .btn {
    width: 100%;
  }

}

/* White hamburger icon */
.navbar-toggler {
  border-color: #ffffff !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ===== Force WHITE Hamburger Icon ===== */
.navbar-toggler {
    border: 1px solid #ffffff;
}

.navbar-toggler-icon {
    background-image: none !important;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
}

.navbar-toggler-icon::before {
    top: -7px;
}

.navbar-toggler-icon::after {
    top: 7px;
}
