/* Technology Brand Color Palette */
:root {
    /* Core Technology Color Palette */
    --bs-blue: #0066ff;
    /* Tech Blue */
    --bs-indigo: #6366f1;
    /* Electric Indigo */
    --bs-purple: #8b5cf6;
    /* Digital Purple */
    --bs-pink: #ec4899;
    /* Neon Pink */
    --bs-red: #ff4757;
    /* Alert Red */
    --bs-orange: #ff6b35;
    /* Tech Orange */
    --bs-yellow: #d4ed30;
    /* Lemon Yellow */
    --bs-green: #00d4aa;
    /* Cyber Green */
    --bs-teal: #1dd1a1;
    /* Matrix Teal */
    --bs-cyan: #00d2ff;
    /* Electric Cyan */
    --bs-white: #ffffff;
    --bs-gray: #8892b0;
    /* Tech Gray */
    --bs-gray-dark: #233554;
    /* Dark Tech Gray */

    /* Technology Brand Primary Colors */
    --bs-primary: #ff6b35;
    --bs-secondary: #0066ff;
    --bs-success: #00d4aa;
    /* Cyber Green Success */
    --bs-info: #00d2ff;
    /* Electric Cyan Info */
    --bs-warning: #d4ed30;
    /* Lemon Yellow Warning */
    --bs-danger: #ff4757;
    /* Alert Red Danger */
    --bs-light: #f7fafc;
    /* Clean Tech Light */
    --bs-dark: #0a192f;
    /* Deep Tech Dark */

    /* Typography */
    --bs-font-sans-serif: "Orbitron", "Exo 2", "Rajdhani", "Oxanium", "Space Grotesk", "JetBrains Mono", system-ui, sans-serif;
    --bs-font-monospace: "Fira Code", "Source Code Pro", "JetBrains Mono", "Cascadia Code", "SF Mono", monospace;

    /* Technology Gradient */
    --bs-gradient: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 170, 0.1));

    /* Additional Technology Colors */
    --bs-body: #8892b0;
    --bs-body-color: #a8b2d1;
    --bs-lemon: #d4ed30;
    /* Signature Lemon Color */
    --bs-neon: #00d2ff;
    /* Neon Accent */
    --bs-matrix: #00d4aa;
    /* Matrix Green */
}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.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-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** Topbar Start ***/
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}

/*** Topbar End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 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: 15px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}

/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-light);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}

.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-secondary);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}

/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 102, 255, 0.9), rgba(10, 25, 47, 0.2)), url(../img/bg-breadcrumb.jpg);
    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 ***/


/*** Feature Start ***/
.feature .feature-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.feature .feature-item:hover {
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
}

.feature .feature-item .feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

.feature .feature-item .feature-icon {
    color: var(--bs-primary);
}

.feature .feature-item .feature-icon,
.feature .feature-item h4,
.feature .feature-item p {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    color: var(--bs-white);
}

.feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: var(--bs-white);
}

.feature .feature-item:hover a.btn {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.feature .feature-item:hover a.btn:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

/*** Feature End ***/


/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(0, 102, 255, .2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}

/*** Service End ***/


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(0, 102, 255, .8);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-primary);
    background: var(--bs-light);
}

/*** FAQs End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(0, 102, 255, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}

/*** Blog End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}

/*** Team End ***/


/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

/*** Testimonial End ***/


/*** Contact Start ***/
.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s
}

@keyframes image-efects {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    25% {
        border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;
    }

    50% {
        border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;
    }

    75% {
        border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.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);
}

.logo-footer {
    width: 160px;
}

.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

.footer .footer-item .footer-btn a {
    background: var(--bs-light);
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-white);
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

/*** copyright end ***/

/* ===================================
   PARTNERS CAROUSEL SECTION STYLES
   =================================== */

/* Partners Section Container */
.partners {
    background: #f8f9fa;
}

/* Partner Items */
.partners-carousel .partner-item {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
}

.partners-carousel .partner-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.partners-carousel .partner-img img {
    width: 180px;
    height: 100px;
    object-fit: contain;
    object-position: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    border: none !important;
    padding: 10px;
    margin: 0 auto;
    display: block;
}

.partners-carousel .partner-img a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-carousel .partner-img:hover img,
.partners-carousel .partner-img a:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* ===================================
   NAVIGATION BUTTONS - BRAND STYLED
   =================================== */

.partners-carousel .owl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.partners-carousel .owl-nav button.owl-prev,
.partners-carousel .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    font-size: 22px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    transition: all 0.5s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
    cursor: pointer;
}

.partners-carousel .owl-nav button.owl-prev span,
.partners-carousel .owl-nav button.owl-next span {
    line-height: 1;
    font-size: 22px;
}

/* Button Hover Effects */
.partners-carousel .owl-nav button:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-white) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(10, 25, 47, 0.3);
}

.partners-carousel .owl-nav button:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(255, 107, 53, 0.3);
}

.partners-carousel .owl-nav button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.partners-carousel .owl-nav button.disabled:hover {
    background: var(--bs-primary) !important;
    transform: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

/* ===================================
   DOTS NAVIGATION (if needed)
   =================================== */

.partners-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
}

.partners-carousel .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.3);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.partners-carousel .owl-dots .owl-dot:hover {
    background: rgba(255, 107, 53, 0.6);
}

.partners-carousel .owl-dots .owl-dot.active {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    width: 14px;
    height: 14px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablets (max-width: 991.98px) */
@media (max-width: 991.98px) {
    .partners-carousel .partner-item {
        height: 120px;
        padding: 15px;
    }

    .partners-carousel .partner-img img {
        width: 150px;
        height: 80px;
    }

    .partners-carousel .owl-nav button.owl-prev,
    .partners-carousel .owl-nav button.owl-next {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .partners-carousel .owl-nav button.owl-prev span,
    .partners-carousel .owl-nav button.owl-next span {
        font-size: 20px;
    }
}

/* Mobile Devices (max-width: 767.98px) */
@media (max-width: 767.98px) {
    .partners-carousel .partner-item {
        height: 100px;
        padding: 10px;
    }

    .partners-carousel .partner-img img {
        width: 120px;
        height: 70px;
    }

    .partners-carousel .owl-nav {
        margin-top: 20px;
        gap: 10px;
    }

    .partners-carousel .owl-nav button.owl-prev,
    .partners-carousel .owl-nav button.owl-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
        box-shadow: 0 3px 10px rgba(255, 107, 53, 0.2);
    }

    .partners-carousel .owl-nav button.owl-prev span,
    .partners-carousel .owl-nav button.owl-next span {
        font-size: 18px;
    }

    .partners-carousel .owl-nav button:hover {
        transform: translateY(-2px);
    }

    .partners-carousel .owl-dots .owl-dot {
        width: 10px;
        height: 10px;
    }

    .partners-carousel .owl-dots .owl-dot.active {
        width: 12px;
        height: 12px;
    }
}

/* Small Mobile (max-width: 575.98px) */
@media (max-width: 575.98px) {
    .partners-carousel .partner-item {
        height: 90px;
    }

    .partners-carousel .partner-img img {
        width: 100px;
        height: 60px;
    }

    .partners-carousel .owl-nav button.owl-prev,
    .partners-carousel .owl-nav button.owl-next {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .partners-carousel .owl-nav button.owl-prev span,
    .partners-carousel .owl-nav button.owl-next span {
        font-size: 16px;
    }
}

/* ===================================
   ADDITIONAL ENHANCEMENTS
   =================================== */

/* Loading State */
.partners-carousel.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Animation for partner items when appearing */
.partners-carousel .partner-item {
    animation: fadeInScale 0.5s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Focus styles for accessibility */
.partners-carousel .owl-nav button:focus {
    outline: 2px solid var(--bs-primary);
    outline-offset: 2px;
}

.partners-carousel .owl-nav button:focus:not(:focus-visible) {
    outline: none;
}

/* Print styles */
@media print {

    .partners-carousel .owl-nav,
    .partners-carousel .owl-dots {
        display: none;
    }

    .partners-carousel .partner-img img {
        filter: none;
        opacity: 1;
    }
}

/* Why Choose Us Cards */
.btn-lg-square {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================
   Professional Cookie Consent Styles - LandMatic Brand
   ========================================== */

.cookie-consent-card {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.cookie-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.cookie-card {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-card-header {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5f 100%);
    padding: 1.5rem;
    border-radius: 16px 16px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cookie-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cookie-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    backdrop-filter: blur(10px);
    position: relative;
}

.cookie-icon i {
    font-size: 32px;
    color: #ffffff;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.cookie-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
    position: relative;
}

.cookie-card-body {
    padding: 2rem;
}

.cookie-description {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cookie-preferences {
    margin-top: 1.5rem;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }

    to {
        opacity: 1;
        max-height: 500px;
    }
}

.cookie-category {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.cookie-category:hover {
    border-color: #ff6b35;
    background: #fff;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.1);
}

.cookie-category-info {
    flex: 1;
}

.cookie-category-info strong {
    color: #0a192f;
    font-size: 0.95rem;
}

.cookie-category-desc {
    font-size: 0.85rem;
    color: #718096;
    margin: 0.5rem 0 0 0;
}

.form-check-input:checked {
    background-color: #ff6b35;
    border-color: #ff6b35;
}

.form-check-input:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
}

.cookie-card-footer {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid #e2e8f0;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.btn-cookie-accept {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5f 100%);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff8c5f 0%, #ff6b35 100%);
}

.btn-cookie-customize {
    background: #ffffff;
    color: #ff6b35;
    border: 2px solid #ff6b35;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-cookie-customize:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-cookie-decline {
    background: #f7fafc;
    color: #4a5568;
    border: 1px solid #cbd5e0;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-cookie-decline:hover {
    background: #e2e8f0;
    color: #0a192f;
    border-color: #a0aec0;
}

.btn-cookie-save {
    width: 100%;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.3);
}

.btn-cookie-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(72, 187, 120, 0.4);
}

.cookie-policy-link {
    text-align: center;
    margin-top: 1rem;
}

.cookie-policy-link a {
    color: #718096;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-policy-link a:hover {
    color: #ff6b35;
}

/* ==========================================
   Responsive Design
   ========================================== */

@media (max-width: 768px) {
    .cookie-card {
        max-width: 95%;
        margin: 1rem;
    }

    .cookie-card-header {
        padding: 1.25rem;
    }

    .cookie-icon {
        width: 50px;
        height: 50px;
    }

    .cookie-icon i {
        font-size: 26px;
    }

    .cookie-title {
        font-size: 1.25rem;
    }

    .cookie-card-body {
        padding: 1.5rem;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-actions button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .cookie-card {
        border-radius: 12px;
    }

    .cookie-card-header {
        border-radius: 12px 12px 0 0;
        padding: 1rem;
    }

    .cookie-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.75rem;
    }

    .cookie-icon i {
        font-size: 22px;
    }

    .cookie-title {
        font-size: 1.1rem;
    }

    .cookie-card-body {
        padding: 1.25rem;
    }

    .cookie-description {
        font-size: 0.9rem;
    }

    .cookie-category {
        padding: 0.75rem;
    }

    .cookie-category-info strong {
        font-size: 0.9rem;
    }

    .cookie-category-desc {
        font-size: 0.8rem;
    }

    .cookie-card-footer {
        padding: 1.25rem;
    }

    .cookie-actions button {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Smooth scrollbar for mobile */
.cookie-card::-webkit-scrollbar {
    width: 6px;
}

.cookie-card::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.cookie-card::-webkit-scrollbar-thumb {
    background: #ff6b35;
    border-radius: 3px;
}

.cookie-card::-webkit-scrollbar-thumb:hover {
    background: #ff8c5f;
}

/* ==========================================
           WhatsApp Floating Button Styles - ALWAYS VISIBLE
           ========================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 90px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Always visible - no hiding */
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 3px 3px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    margin: 0;
    line-height: 60px;
}

/* Pulse animation for attention */
.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* WhatsApp Modal Styles */
.whatsapp-icon-large {
    width: 80px;
    height: 80px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.whatsapp-icon-large i {
    font-size: 50px;
    color: white;
}

#whatsappModal .modal-header {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

#whatsappModal .quick-message {
    transition: all 0.3s ease;
}

#whatsappModal .quick-message:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 80px;
        right: 20px;
    }

    .whatsapp-float i {
        line-height: 50px;
    }

    .whatsapp-icon-large {
        width: 60px;
        height: 60px;
    }

    .whatsapp-icon-large i {
        font-size: 35px;
    }

    #whatsappModal .quick-message {
        font-size: 0.8rem;
        padding: 0.375rem 0.5rem;
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 22px;
        bottom: 70px;
        right: 15px;
    }

    .whatsapp-float i {
        line-height: 45px;
    }
}

/* Bounce animation for modal icon */
.animated.bounce {
    animation: bounce 1s;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-10px);
    }
}