html, body {
    max-width: 100vw;
    overflow-x: hidden;
  }
:root {
    --primary: #e030fd;
    --light: #F8F8F8;
    --dark: #111212;
    --light-dark:#161616;
}
.text-primary{color: var(--primary)!important;}
.btn-primary{background-color: var(--primary)!important;border-color: var(--primary)!important;border-radius: 0;}
.border-primary{border-color: var(--primary)!important;}
.bg-dark{background-color: var(--dark)!important;}
.bg-light-dark{background-color: var(--light-dark)!important;}
body{
    font-family: "DM Sans", sans-serif;
    font-weight: normal;
    color: var(--light);
    background-color: var(--dark);
}
h1,h2,h3,h4,h5,h6{font-family: "Albert Sans", sans-serif;color: var(--light);}
h1{font-weight: 800!important;}
p{font-family: "DM Sans", sans-serif;color: var(--light);}
.header{background-color: var(--dark);}
.logo h1{text-transform: uppercase;font-size: 25px;}
a{text-decoration: none;}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
::placeholder {
  color: var(--light)!important;
  font-size: 14px;
  opacity: 1;
}

input:-moz-placeholder {
  color: var(--light)!important;
  font-size: 14px;
  opacity: 1;
}

textarea:-moz-placeholder {
  color: var(--light)!important;
  font-size: 14px;
  opacity: 1;
}

input:-ms-input-placeholder {
  color: var(--light)!important;
  font-size: 14px;
  opacity: 1;
}
.form-control{color: var(--light);border-radius: 0;}
.form-floating>label{color: var(--dark);}
.form-floating>.form-control-plaintext~label, .form-floating>.form-control:focus~label, .form-floating>.form-control:not(:placeholder-shown)~label, .form-floating>.form-select~label{
    color:var(--primary)!important;
}

#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;
}


.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--light);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}
.navbar-toggler{color:var(--light)!important;padding: 0;border: 0;}
.navbar-toggler:focus{box-shadow: none;}
.navbar-toggler-icon{
    background-image: none!important;
    color: var(--light)!important;
    font-size: 30px;
    width: auto;
    height: auto;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
    .navbar.sticky-top{
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.dropdown-item.active, .dropdown-item:active{
    background-color: var(--primary)!important;
}
.dropdown-item{
    transition: .5s;
    padding-top: 10px;
    padding-bottom: 10px;
}
.dropdown-item:focus, .dropdown-item:hover{
    background-color: var(--primary)!important;
    color:var(--light)!important;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
        width: 240px;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

@media (min-width:430px) and (max-width:930px){
    .navbar-nav{
        height: 250px;
        overflow-y: scroll;
    }
}


.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
    height: 500px;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


.section-title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}


.fact-item h3{color: var(--dark);font-weight: 600;font-size: 24px;}
.fact-item p{color:var(--dark);}
.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    transition: .5s;
}

.fact-item:hover .fact-icon {
    background: var(--dark);
}

.fact-item .fact-icon i {
    color: var(--primary);
    transition: all 0.5s ease;
}

.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}


.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--primary);
    z-index: -1;
}


.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .7);
}

.service-item * {
    transition: all 0.5s ease;
}

.service-item:hover * {
    color: #FFFFFF;
}
.service-item h3{font-size: 25px;}
.service-item h3, .service-item p{color:var(--dark);}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
    border-radius: 0;
    color: var(--dark);
    padding: 38px !important;
}
.project .nav .nav-link span{
    color:var(--dark);
    font-size: 20px;
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active span {
    color: #FFFFFF !important;
}


.team-items {
    margin: -.75rem;
}

.team-item h3{color: var(--dark);font-size: 20px;}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #777777;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    text-decoration: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
    text-decoration: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .form-control:focus{
    color: var(--light)!important;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright p{
    color: var(--light);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.no-border{
    border: none;
}

.map-style{
    height: 450px;
}

#successMessage {
    border-radius: 0;
    border: none;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(224, 48, 253, 0.15);
}

#successMessage.alert-success {
    background: linear-gradient(135deg, rgba(224, 48, 253, 0.1), rgba(224, 48, 253, 0.05));
    color: var(--light);
    border-left: 4px solid var(--primary);
}

#successMessage.alert-success h5 {
    color: var(--primary);
    font-family: "Albert Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 18px;
}

#successMessage.alert-success p {
    color: var(--light);
    margin-bottom: 0;
    font-size: 14px;
    opacity: 0.9;
}

#successMessage.alert-danger {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
    color: var(--light);
    border-left: 4px solid #dc3545;
}

#successMessage.alert-danger h5 {
    color: #dc3545;
    font-family: "Albert Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 18px;
}

#successMessage.alert-danger p {
    color: var(--light);
    margin-bottom: 0;
    font-size: 14px;
    opacity: 0.9;
}

#successMessage.d-none {
    opacity: 0;
    transform: translateY(-10px);
}

#successMessage:not(.d-none) {
    opacity: 1;
    transform: translateY(0);
    animation: slideInUp 0.3s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#signupForm .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

#signupForm .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(224, 48, 253, 0.25);
}

#signupForm .btn-primary {
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(224, 48, 253, 0.3);
}

#signupForm .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(224, 48, 253, 0.4);
}

.accordion-button:not(.collapsed) {
    color: var(--light);
    background-color: var(--dark);
    box-shadow: inset 0 -1px 0 rgba(224, 48, 253, 0.2);
}

.accordion-button:focus {
    border-color: rgba(224, 48, 253, 0.2);
    box-shadow: 0 0 0 0.25rem rgba(224, 48, 253, 0.25);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e030fd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e030fd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:hover {
    background-color: rgba(224, 48, 253, 0.1);
}

.accordion-button {
    transition: all 0.3s ease;
}

.was-validated .form-control:valid {
    border-color: var(--primary);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23e030fd' d='m2.3 6.73.94-.94 1.38 1.38'/%3e%3c/svg%3e");
}

.was-validated .form-control:invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 4.6 1.4 1.4m0-1.4L5.8 6'/%3e%3c/svg%3e");
}

.was-validated .form-control:focus:valid {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(224, 48, 253, 0.25);
}

.was-validated .form-control:focus:invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

.was-validated .form-control:invalid ~ .invalid-feedback {
    display: block;
}

.modal-content {
    border: 1px solid rgba(224, 48, 253, 0.2);
}

.modal-header {
    background: linear-gradient(135deg, rgba(224, 48, 253, 0.1), rgba(224, 48, 253, 0.05));
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}


@media (max-width: 575.98px) {
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.75rem !important; }
    h3 { font-size: 1.5rem !important; }
    h4 { font-size: 1.25rem !important; }
    
    .header-carousel .owl-carousel-item {
        min-height: 400px;
    }
    
    .header-carousel .owl-carousel-item h1 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem;
    }
    
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        margin-bottom: 1rem;
    }
    
    .navbar-brand h1 {
        font-size: 20px !important;
    }
    
    .navbar .navbar-nav .nav-link {
        padding: 15px 0;
        font-size: 14px;
    }
    
    .container-xxl {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .service-item {
        margin-bottom: 2rem;
    }
    
    .service-item h3 {
        font-size: 20px !important;
    }
    
    .fact-item .fact-icon {
        width: 80px;
        height: 80px;
        margin-top: -40px;
    }
    
    .fact-item h3 {
        font-size: 20px !important;
    }
    
    .team-item {
        margin-bottom: 2rem;
    }
    
    .form-floating {
        margin-bottom: 1rem;
    }
    
    .form-control {
        font-size: 16px;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 14px;
    }
    
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .footer .col-lg-3,
    .footer .col-lg-4 {
        margin-bottom: 2rem;
    }
    
    .testimonial-carousel .owl-dots .owl-dot {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-carousel .owl-dots .owl-dot.active {
        width: 60px;
        height: 60px;
    }
    
    .back-to-top {
        right: 15px;
        bottom: 15px;
        width: 40px;
        height: 40px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .header-carousel .owl-carousel-item {
        min-height: 450px;
    }
    
    .header-carousel .owl-carousel-item h1 {
        font-size: 2.2rem !important;
    }
    
    .service-item h3 {
        font-size: 22px !important;
    }
    
    .fact-item .fact-icon {
        width: 100px;
        height: 100px;
        margin-top: -50px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .header-carousel .owl-carousel-item {
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item h1 {
        font-size: 2.5rem !important;
    }
    
    .service-item h3 {
        font-size: 24px !important;
    }
    
    .row .col-lg-4 {
        margin-bottom: 2rem;
    }
    
    .row .col-lg-6 {
        margin-bottom: 2rem;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .header-carousel .owl-carousel-item h1 {
        font-size: 2.8rem !important;
    }
}

@media (min-width: 1200px) {
    .header-carousel .owl-carousel-item h1 {
        font-size: 3rem !important;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .header-carousel .owl-carousel-item {
        min-height: 300px;
    }
    
    .header-carousel .owl-carousel-item h1 {
        font-size: 1.8rem !important;
    }
    
    .py-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .service-item .bg-img,
    .team-item img,
    .about-img img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .navbar .navbar-nav .nav-link {
        padding: 20px 0;
    }
    
    .service-item:hover .service-text,
    .team-item:hover::after,
    .fact-item:hover .fact-icon {
        transform: none;
    }
    
    .navbar-nav {
        -webkit-overflow-scrolling: touch;
    }
}

@media print {
    .navbar,
    .footer,
    .back-to-top,
    .btn {
        display: none !important;
    }
    
    body {
        color: #000 !important;
        background: #fff !important;
    }
    
    .container-xxl {
        max-width: none !important;
        padding: 0 !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-color-scheme: dark) {
   
}

.btn:focus,
.form-control:focus,
.navbar-toggler:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

#spinner {
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.8);
}

@media (min-width: 1400px) {
    .container-xxl {
        max-width: 1320px;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 14px;
        letter-spacing: 3px;
        margin-bottom: 1rem;
    }
    
    .display-1 {
        font-size: 2.5rem !important;
    }
    
    .display-2 {
        font-size: 2rem !important;
    }
    
    .display-3 {
        font-size: 1.75rem !important;
    }
    
    .display-4 {
        font-size: 1.5rem !important;
    }
}

.btn.touch-active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--dark);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .navbar-nav {
        max-height: 60vh;
        overflow-y: auto;
    }
    
    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 767.98px) {
    .form-floating > .form-control {
        padding-top: 1.625rem;
        padding-bottom: 0.625rem;
    }
    
    .form-floating > label {
        padding: 1rem 0.75rem;
    }
    
    body {
        overflow-x: hidden;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    .modal-fullscreen-sm-down {
        max-width: none;
        margin: 0;
    }
    
    .modal-fullscreen-sm-down .modal-content {
        border-radius: 0;
        min-height: 100vh;
    }
}

@media (max-width: 768px) {
    .wow {
        animation-duration: 0.6s !important;
    }
    
    .owl-dots .owl-dot {
        min-width: 44px;
        min-height: 44px;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark), var(--light-dark));
    border-top: 2px solid var(--primary);
    color: var(--light);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner.hide {
    transform: translateY(100%);
}

.cookie-banner .cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-banner .cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-banner .cookie-text h6 {
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 16px;
}

.cookie-banner .cookie-text p {
    margin: 0;
    opacity: 0.9;
}

.cookie-banner .cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-banner .cookie-text a:hover {
    color: var(--light);
}

.cookie-banner .cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner .btn-cookie {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.cookie-banner .btn-accept {
    background: var(--primary);
    color: white;
}

.cookie-banner .btn-accept:hover {
    background: #c028e0;
    transform: translateY(-2px);
}

.cookie-banner .btn-decline {
    background: transparent;
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-banner .btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-banner .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .cookie-banner .cookie-text {
        text-align: center;
    }
    
    .cookie-banner .cookie-text h6 {
        font-size: 15px;
    }
    
    .cookie-banner .cookie-text p {
        font-size: 13px;
    }
    
    .cookie-banner .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-banner .btn-cookie {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .cookie-banner .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-banner .btn-cookie {
        width: 100%;
    }
}