/* Prevent horizontal scroll on all pages */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.6s;
    z-index: 99999;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    backdrop-filter: blur(10px);
}

#spinner.show {
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.spinner-content {
    text-align: center;
    position: relative;
}

.spinner-logo {
    margin-bottom: 30px;
    animation: logoFadeIn 0.6s ease-out;
}

.logo-text-spinner {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-top-spinner {
    font-family: 'Poppins', 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #00d084 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.logo-bottom-spinner {
    font-family: 'Poppins', 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--bs-primary);
    letter-spacing: 2px;
    display: block;
    text-transform: uppercase;
}

.spinner-loader {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: var(--bs-primary);
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: -0.45s;
    border-top-color: var(--bs-primary);
}

.spinner-ring:nth-child(2) {
    animation-delay: -0.3s;
    border-top-color: #00d084;
    width: 70px;
    height: 70px;
    top: 5px;
    left: 5px;
}

.spinner-ring:nth-child(3) {
    animation-delay: -0.15s;
    border-top-color: var(--bs-primary);
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    opacity: 0.7;
}

.spinner-text {
    font-family: 'Poppins', 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--bs-primary);
    letter-spacing: 1px;
    animation: textPulse 1.5s ease-in-out infinite;
    margin-top: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .logo-top-spinner {
        font-size: 26px;
    }
    
    .logo-bottom-spinner {
        font-size: 14px;
    }
    
    .spinner-loader {
        width: 60px;
        height: 60px;
    }
    
    .spinner-ring:nth-child(2) {
        width: 50px;
        height: 50px;
    }
    
    .spinner-ring:nth-child(3) {
        width: 40px;
        height: 40px;
    }
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

.call-float {
    position: fixed;
    right: 30px;
    bottom: 170px;
    transition: 0.5s;
    z-index: 99;
}

.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 100px;
    transition: 0.5s;
    z-index: 99;
}

/* Floating action buttons – light green style */
.back-to-top,
.whatsapp-float,
.call-float {
    background-color: #00e676 !important;
    border-color: #00e676 !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(0, 230, 118, 0.4);
}

.back-to-top:hover,
.whatsapp-float:hover,
.call-float:hover {
    background-color: #00c853 !important;
    border-color: #00c853 !important;
    color: #ffffff !important;
}

/* Adjust call icon orientation */
.call-float i {
    transform: scaleX(-1);
}

@media (max-width: 575.98px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
    .call-float {
        bottom: 140px;
        right: 20px;
    }
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
    }
}

/*** 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);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}

.btn-call-us {
    background-color: #00e676;
    color: var(--bs-white);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3);
}

.btn-call-us::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-call-us:hover::before {
    width: 300px;
    height: 300px;
}

.btn-call-us:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 230, 118, 0.5);
    background-color: #00c853;
}

.btn-call-us:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 208, 132, 0.3);
}

.btn-call-us i {
    transition: transform 0.3s ease;
}

.btn-call-us:hover i {
    transform: rotate(15deg) scale(1.1);
}


/*** 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: 11px;
    border: 0;
    transition: .5s;
    opacity: 1;
}

/*** Topbar End ***/



/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-white);
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link,
.sticky-top.navbar-light .navbar-nav .nav-item .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-item .nav-link {
    color: var(--bs-white);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item .nav-link.active  {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

/* Text Logo Styles */
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 8px 12px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.1) 0%, rgba(0, 208, 132, 0.05) 100%);
    border: 1px solid rgba(0, 208, 132, 0.2);
}

.logo-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.15) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.logo-text:hover::before {
    opacity: 1;
}

.logo-top {
    font-family: 'Poppins', 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--bs-white) 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    display: block;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 208, 132, 0.3);
    transition: all 0.4s ease;
}

.logo-bottom {
    font-family: 'Poppins', 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--bs-primary);
    letter-spacing: 2px;
    display: block;
    margin-top: 2px;
    position: relative;
    text-transform: uppercase;
    transition: all 0.4s ease;
    padding-left: 2px;
}

.logo-bottom::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--bs-primary) 0%, #00d084 100%);
    transition: width 0.4s ease;
}

.logo-text:hover .logo-bottom::after {
    width: 100%;
}

.sticky-top.navbar-light .logo-text {
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.08) 0%, rgba(0, 208, 132, 0.03) 100%);
    border-color: rgba(0, 208, 132, 0.15);
}

.sticky-top.navbar-light .logo-top {
    background: linear-gradient(135deg, var(--bs-dark) 0%, rgba(0, 0, 0, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.sticky-top.navbar-light .logo-bottom {
    color: var(--bs-primary);
}

.navbar-brand:hover .logo-text {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 208, 132, 0.2);
    border-color: rgba(0, 208, 132, 0.4);
}

.navbar-brand:hover .logo-top {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #00d084 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sticky-top.navbar-light .navbar-brand:hover .logo-top {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #00d084 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand:hover .logo-bottom {
    color: #00d084;
    transform: translateX(2px);
}

/* Footer Logo */
.logo-text-footer {
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.12) 0%, rgba(0, 208, 132, 0.06) 100%);
    border: 1px solid rgba(0, 208, 132, 0.25);
    padding: 10px 14px;
}

.logo-text-footer .logo-top {
    font-size: 24px;
    background: linear-gradient(135deg, var(--bs-white) 0%, rgba(255, 255, 255, 0.95) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text-footer .logo-bottom {
    font-size: 13px;
    color: var(--bs-primary);
}

.logo-text-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 208, 132, 0.25);
}

@media (max-width: 991.98px) {
    .logo-text {
        padding: 6px 10px;
    }
    
    .logo-top {
        font-size: 22px;
        background: linear-gradient(135deg, var(--bs-dark) 0%, rgba(0, 0, 0, 0.8) 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        text-shadow: none !important;
    }
    
    .logo-bottom {
        font-size: 13px;
        letter-spacing: 1.5px;
    }
    
    .logo-text-footer {
        padding: 8px 12px;
    }
    
    .logo-text-footer .logo-top {
        font-size: 20px;
    }
    
    .logo-text-footer .logo-bottom {
        font-size: 12px;
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }
    
    .navbar-light .logo-top,
    .sticky-top.navbar-light .logo-top {
        background: linear-gradient(135deg, var(--bs-dark) 0%, rgba(0, 0, 0, 0.8) 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        text-shadow: none !important;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark);
    }

    .navbar-light .navbar-nav .nav-item .nav-link {
        color: var(--bs-dark);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link::after {
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        width: 2px;
        height: 12px;
    }
}
/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item img {
    object-fit: cover;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    display: block;
    width: 100%;
    height: 100%;
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
        height: 700px;
}

.header-carousel .owl-item {
    opacity: 1;
    will-change: opacity;
}

.header-carousel .owl-item.active {
    opacity: 1;
}


.header-carousel .owl-nav {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    border: 1px solid rgba(255, 255, 255, 0.3);
    pointer-events: auto;
}

.header-carousel .owl-nav .owl-prev {
    margin: 0;
}

.header-carousel .owl-nav .owl-next {
    margin: 0;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
}


.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    padding-top: 120px;
    background: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
    font-family: 'Poppins', 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.header-carousel .header-carousel-item .carousel-caption h1,
.header-carousel .header-carousel-item .carousel-caption .display-4 {
    font-family: 'Poppins', 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.header-carousel .header-carousel-item .carousel-caption h4,
.header-carousel .header-carousel-item .carousel-caption h6 {
    font-family: 'Poppins', 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.header-carousel .header-carousel-item .carousel-caption p {
    font-family: 'Poppins', 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }
}

@media (max-width: 767px) {
    .header-carousel .owl-nav {
        bottom: 20px;
        padding: 0 20px;
    }
    
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}


.header-carousel .header-carousel-item img {
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: transform 1s ease-out;
    will-change: transform;
}

@keyframes image-zoom {
    0%  {height: 100%; opacity: 0.9;}

    25% {height: 110%; opacity: 0.50;}

    50% {height: 115%; opacity: 1;}

    75% {height: 110%; opacity: 0.50;}

    100% {height: 100%; opacity: 0.9;}
}
/*** 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/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0 60px 0;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .bg-breadcrumb {
        padding: 140px 0 60px 0;
    }
}

@media (max-width: 991px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** About Start ***/
/* About feature items – same font size for all titles and descriptions */
.about .col-xl-7 .row.g-4.mb-4 h4,
.about .col-xl-7 .row.g-4.mb-4 h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.about .col-xl-7 .row.g-4.mb-4 p.mb-0 {
    font-size: 0.9375rem;
    line-height: 1.5;
}

.about {
    position: relative;
    background-color: var(--bs-light);
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 0 0;
    background-attachment: fixed;
    overflow-x: visible;
    overflow-y: visible;
}

/* About page: no fixed background = faster scroll */
body.page-about .about {
    background-attachment: scroll;
}

.about .container {
    position: relative;
    z-index: 1;
    overflow-x: visible;
    overflow-y: visible;
}

/* Image column: extend to viewport right edge so robot hand sits at screen end */
@media (min-width: 1200px) {
    .about .about-img-col {
        margin-right: calc(-50vw + 50%);
        width: calc(41.666667% + 50vw - 50%);
        padding-right: 0;
        padding-left: 1.5rem;
    }
    .about .about-img-col .about-image-container {
        width: 100%;
        max-width: none;
    }
}

.about-image-container {
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    padding-right: 0;
}

.about-robot-hand {
    max-width: 190%;
    width: 190%;
    height: auto;
    object-fit: contain;
    object-position: bottom right;
    transform-origin: bottom right;
    margin-right: -51%;
    margin-bottom: 0;
    margin-left: auto;
    position: relative;
    z-index: 1;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    display: block;
}

@media (max-width: 1199px) {
    .about-image-container {
        min-height: 400px;
        margin-top: 30px;
    }
    
    .about-robot-hand {
        max-width: 150%;
        width: 150%;
        margin-right: -15%;
        margin-left: auto;
    }
}

@media (max-width: 767px) {
    .about-image-container {
        min-height: 300px;
    }
    
    .about-robot-hand {
        max-width: 140%;
        width: 140%;
        margin-right: -10%;
        margin-left: auto;
    }
}
/*** About End ***/

/*** Service Start ***/
.service .service-item {
    background: var(--bs-light);
    border-radius: 10px;
    transition: 0.5s;
}

.service .service-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
    min-height: 200px;
    background: var(--bs-light);
}

.service .service-item .service-img img {
    width: 100%;
    height: auto;
    display: block;
}

.service .service-item .service-img img {
    transition: transform 0.5s ease-out;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.service .service-item:hover .service-img img {
    transform: scale(1.2) translateZ(0);
}
/*** Service End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    background: var(--bs-white);
    box-shadow: inset 0 0 45px rgba(0, 0, 0, .1);
    transition: 0.5s;
}

.blog .blog-item a {
    transition: 0.5s;
}

.blog .blog-item:hover a:hover {
    color: var(--bs-primary);
}

.blog .blog-item .blog-img {
    border-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: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 208, 132, 0.1);
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    opacity: 1;
}

.blog .blog-item .blog-img .blog-title {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 5;
}

.blog .blog-item .blog-img .blog-title a {
    color: var(--bs-white);
    background: var(--bs-primary);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img .blog-title a:hover {
    color: var(--bs-dark);
}

.blog-carousel .owl-stage-outer {
    margin-top: 58px;
}

.blog .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.blog .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}

.blog .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.blog .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    padding: 0 25px 25px 25px;
    border-radius: 10px;
    transition: 0.5s;
}

.team .team-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: var(--bs-light);
    border-radius: 10px;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item:hover::before {
    height: 0;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item:hover::after {
    height: 100%;
    background: var(--bs-primary);
}

.team .team-item .team-img {
    width: 100%; 
    height: 100%;
    border-radius: 100%;
    position: relative;
    margin-top: 50%;
    transform: translateY(-50%);
    margin-bottom: -50%;
    display: flex;
    justify-content: center;
    border: 4px solid var(--bs-primary);
    border-style: dotted;
    padding: 4px;
    background: var(--bs-white);
    transition: 0.5s;
}

.team .team-item:hover .team-img {
    border: 4px solid var(--bs-white);
    border-style: dotted;
    background: 0;
}

.team .team-item .team-img img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    transition: 0.5s;
}

.team .team-item .team-title {
    padding: 25px 0 25px 0;
    text-align: center;
}

.team .team-item .team-title h4,
.team .team-item .team-title p {
    transition: 0.5s;
}

.team .team-item:hover .team-title h4,
.team .team-item:hover .team-title p {
    color: var(--bs-white);
}

.team .team-item .team-icon {
    display: flex;
    justify-content: center;
}

.team .team-item .team-icon a {
    transition: 0.5s;
}

.team .team-item:hover .team-icon a {
    color: var(--bs-dark);
    background: var(--bs-white);
}

.team .team-item:hover .team-icon a:hover {
    color: var(--bs-primary);
    background: var(--bs-dark);
}
/*** Team End ***/

/*** Disclaimer Modal Custom Styles ***/
.disclaimer-modal .modal-content {
    background-color: rgba(90, 90, 90, 0.92); /* lighter grey with slight transparency */
    color: #ffffff;
    border: none;
}

.disclaimer-modal .modal-header,
.disclaimer-modal .modal-footer {
    border-color: rgba(255, 255, 255, 0.12);
}

.disclaimer-modal .modal-title {
    color: var(--bs-primary);
    font-weight: 700;
}

.disclaimer-modal p,
.disclaimer-modal strong {
    color: #ffffff;
}

.disclaimer-modal a {
    color: #4dd0ff;
}

.disclaimer-modal a:hover {
    color: #80e8ff;
}

.disclaimer-modal .btn-close {
    filter: invert(1);
}

.disclaimer-modal .btn-outline-secondary {
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

.disclaimer-modal .btn-outline-secondary:hover {
    background-color: #ffffff;
    color: #333333;
}

.disclaimer-heading {
    font-weight: 700;
    color: var(--bs-primary);
}

.disclaimer-warning {
    font-weight: 700;
    color: #ff6b6b;
}


/*** Payment Page – background ***/
.payment-page-wrap {
    background-color: #fafbfc;
}

/*** Payment Page – Notice highlight (pehli nazar yahi par) ***/
.payment-notice-highlight {
    background: linear-gradient(135deg, #e8f8f0 0%, #f0fbf5 50%, #ffffff 100%) !important;
    border: 1px solid rgba(0, 200, 83, 0.4);
    border-left: 5px solid var(--bs-primary);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.12);
    padding: 1.25rem 1.5rem !important;
}
.payment-notice-highlight h5 {
    font-weight: 700;
    color: #0d3d2a !important;
    font-size: 1.1rem;
}
.payment-notice-highlight p {
    color: #2d4a3e;
}

/*** Payment Page – Bank Card ***/
.payment-bank-card {
    position: relative;
    border-radius: 18px;
    background-color: #ffffff;
    background-image: linear-gradient(135deg, rgba(0, 232, 146, 0.04) 0%, rgba(255, 255, 255, 1) 50%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.payment-bank-card-label {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: rgba(0, 0, 0, 0.58);
}

.payment-bank-card-value {
    display: inline-block;
    margin-top: 0.15rem;
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #043b26;
}

.payment-detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    margin: 0 -0.75rem;
    border-radius: 10px;
    transition: background 0.2s ease;
}
.payment-detail-row:hover {
    background: rgba(0, 200, 83, 0.12);
}
.payment-detail-row-last {
    margin-bottom: -0.25rem;
}
.payment-detail-text {
    flex: 1;
    min-width: 0;
}
.payment-copy-btn {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.payment-copy-btn:hover {
    background: rgba(0, 200, 83, 0.2);
    color: #00c853;
}
.payment-copy-btn i {
    font-size: 0.8rem;
}

.payment-help-box {
    background-color: rgba(0, 200, 83, 0.06);
    border: 1px solid rgba(0, 200, 83, 0.12);
}

/*** Footer Start ***/
.footer {
    background: var(--bs-secondary);
}

/* New footer layout – company, quick links, services, support */
.footer-company p,
.footer-company a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-company a:hover {
    color: var(--bs-primary);
}
.footer-logo-link {
    text-decoration: none !important;
}

/* Quick Links & Support – accent/primary color */
.footer .footer-link {
    color: var(--bs-primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}
.footer .footer-link:hover {
    color: #00e892;
}

/* Our Services – white */
.footer .footer-link-service {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}
.footer .footer-link-service:hover {
    color: var(--bs-primary);
}

.footer-regulatory {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
}
.copyright-social {
    flex-wrap: nowrap;
}
.copyright-social .btn-sm-square {
    flex-shrink: 0;
}
/*** copyright end ***/


