@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

@font-face {
    font-family: 'Amagro';
    src: url('/assets/fonts/amagro/Amagro-bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom scroll behavior */
html {
    scroll-behavior: smooth;
}

body {
    background-image: linear-gradient(135deg, rgb(17 17 239), rgb(18 18 237)),
        url('/assets/images/texture/paper-texture.jpg');
    background-size: cover;
    background-blend-mode: multiply;
    background-repeat: repeat;
    background-attachment: fixed;
    min-height: 100vh;
    color: #fff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.header {
    /* background: linear-gradient(135deg, #0000E7 0%, #0A0AFF 100%); */
    position: relative;
    z-index: 1000;
}

/* 
.navbar-brand img {
    width: 150px;
} */

.glassy-nav {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(13 13 177);
}

.glassy-nav .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 8px 20px !important;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: #FF4500;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.hero-section {
    /* background: linear-gradient(135deg, #0000E7 0%, #0A0AFF 50%, #1A1AFF 100%); */
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-bottom: 100px;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 20px;
}

.hero-subtitle {
    color: #B3B3FF;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -2px;
}

.btn-hear-from-us {
    background: #FFD700;
    color: #000 !important;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    font-size: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hear-from-us:hover {
    background: #FFC700;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.hero-image-container {
    position: relative;
    /* z-index: 2; */
}

.hero-main-image {
    width: 100%;
    height: auto;
    position: relative;
    /* z-index: 2; */
    bottom: 30px;
}

/* Multi-language text animation */
.language-slider {
    position: relative;
    display: inline-block;
    height: 1.2em;
    vertical-align: top;
    min-width: 250px;
}

.language-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: right;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.8s ease, opacity 0.8s ease;
    z-index: 1;
}

.txt-style-amagro {
    font-family: 'Amagro', sans-serif !important;
    font-weight: bold;
}

.language-text.slide-in-up {
    opacity: 1;
    transform: translateY(0%);
    z-index: 2;
}

.language-text.slide-out-up {
    opacity: 0;
    transform: translateY(-100%);
}

@keyframes bounceUpDown {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    20% {
        transform: translateY(0%);
        opacity: 1;
    }

    40% {
        transform: translateY(-10%);
    }

    60% {
        transform: translateY(0%);
    }

    80% {
        transform: translateY(-5%);
    }

    100% {
        transform: none;
    }
}

.language-text.bounce-tr {
    animation: bounceUpDown 1s ease forwards;
    opacity: 1 !important;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .btn-hear-from-us {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .glassy-nav {
        margin-top: 15px;
        padding: 8px 15px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    .hero-content {
        padding-top: 40px;
    }
}

/* Enhanced animations */
.hero-content>* {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-content>*:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-content>*:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-content>*:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navbar animation */
.navbar {
    transition: all 0.3s ease;
}

.navbar-scrolled {
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 231, 0.9);
}

.glassy-nav {
    background: #0d0db1;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1), 0 0 15px rgb(0 0 0 / 0%);
    padding: 0px;
    gap: 25px;
    transition: all 0.3s ease;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ffdd57 !important;
}

.btn-contact {
    background-color: #ea5D49;
    text-decoration: none;
    color: white;
    border-radius: 0px;
    padding: 5px 25px;
}

.full-bg-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.full-bg-section .bg-gif {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.full-bg-section .overlay-text {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.full-bg-section .overlay-text h1 {
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.global-voice-section {
    /* background-color: #001bc5; */
    color: #fff;
    padding: 100px 0px 50px !important;
}

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

.global-voice-section h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
    margin-top: 60px !important;
}

.global-voice-section h3 {
    font-size: 3.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.sec-py {
    padding: 100px 0;
}

.global-voice-section p {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 20px;
    text-align: justify;
    line-height: 2;
}

.top-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.highlight {
    color: #fcd500;
    font-weight: 600;
}

.star-icon {
    width: 300px;
    height: auto;
    margin-left: 4em;
}

.stats {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-top: 60px;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-box {
    flex: 1;
    min-width: 200px;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: #fcd500;
}

.unit {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 5px;
}

.desc {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #ccc;
}

.stat-number {
    font-size: 5em;
    font-weight: bold;
    color: #ffd700;
    /* Yellow */
}

.testimonial-content h4 {
    font-size: 1.1em;
}

.stat-txt {
    font-size: 0.5em;
    font-weight: lighter;
}

.stat-label {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.divider {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.services-section {
    /* background-color: #001bc5; */
    padding: 60px 20px 0px 20px;
    color: white;
    text-align: center;
}

.services-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    gap: 40px;
    margin: auto;
}

.service-card {
    position: relative;
    border-radius: 12px;
    /* overflow: hidden; */
}

.service-image {
    width: 100%;
    display: block;
    border-radius: 18px;
}

.service-icon {
    position: absolute;
    bottom: 57px;
    right: -62px;
    height: auto;
}

.service-content {
    padding: 16px;
    /* background-color: #001bc5; */
    text-align: left;
}

.service-content h3 {
    margin-bottom: 15px;
    font-size: 3rem;
    font-weight: 600;
}

.service-content h3 span {
    color: #E1647C;
}

.service-content p {
    margin: 0;
    font-size: 1.4em;
}

.clients-circle-section {
    /* background-color: #0011ff; */
    padding: 0px 0 100px 0;
    position: relative;
}

.circle-wrapper {
    position: relative;
    height: 700px;
    margin: auto;
}

.circle-center {
    width: 300px;
    height: 300px;
    background-color: #000d99;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    border-radius: 50%;
    position: absolute;
    top: 67%;
    left: 52%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: end;
    text-align: center;
    z-index: 2;
}

.brand-logo {
    position: absolute;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.1);
}

/* Manually positioned brand logos */
.logo-1 {
    top: 0%;
    left: 0%;
}

.logo-2 {
    top: -4%;
    left: 31%;
}

.logo-3 {
    top: 15%;
    left: 67%;
}

.logo-4 {
    top: 0%;
    left: 90%;
}

.logo-5 {
    top: 18%;
    left: 16%;
}

.logo-6 {
    top: 27%;
    left: 49%;
}

.logo-7 {
    top: 32%;
    left: 85%;
}

.logo-8 {
    top: 37%;
    left: 0%;
}

.logo-9 {
    top: 33%;
    left: 36%;
}

.logo-10 {
    top: 35%;
    left: 65%;
}

.logo-11 {
    top: 46%;
    left: 21%;
}

.logo-12 {
    top: 41%;
    left: 89%;
}

.logo-13 {
    top: 60%;
    left: 0%;
}

.logo-14 {
    top: 74%;
    left: 18%;
}

.logo-15 {
    top: 63%;
    left: 84%;
}

.logo-16 {
    top: 85%;
    left: 7%;
}

.logo-17 {
    top: 80%;
    left: 26%;
}

.logo-18 {
    top: 80%;
    left: 60%;
}

.logo-19 {
    top: 76%;
    left: 85%;
}

.logo-20 {
    top: 58%;
    left: 68%;
}

.circle-center h2 {
    font-size: 2em;
    font-weight: 600;
}

@media (max-width: 768px) {
    .circle-wrapper {
        width: 90vw;
        height: 90vw;
    }

    .circle-center {
        width: 120px;
        height: 120px;
        font-size: 1rem;
    }

    .brand-logo {
        width: 60px;
    }
}


.testimonials-section {
    padding: 0px 20px 800px;
    text-align: center;
    height: 100vh;
}

.testimonial-card {
    background-image: url('/assets/images/testimonial-img/card-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 284px;
    padding: 40px 25px 70px;
    margin: auto;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.border-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.border-overlay img {
    width: 89%;
    height: 90%;
    object-fit: contain;
    position: absolute;
    top: 5%;
    left: 6%;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    font-family: 'Inter', sans-serif;
}

.avatar-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    background-color: #eee;
}

.ratings i {
    font-size: 1.1rem;
}

.stamp-img {
    position: absolute;
    bottom: -25px;
    right: -15px;
    width: 100px;
    z-index: 3;
}

.testimonial-swiper {
    overflow: visible !important;
    padding: 0 30px;
}

.testimonial-card {
    width: 284px;
}

.testimonial-swiper {
    overflow: visible !important;
    padding: 0 16px;
}

.testimonial-swiper .swiper-slide.far .testimonial-card {
    width: 257px;
}

.testimonial-swiper .swiper-slide {
    transition: transform 0.3s ease, z-index 0.3s ease;
    transform: translateY(60px) scale(0.85);
    z-index: 1;
}

.testimonial-swiper .swiper-slide.middle {
    transform: translateY(0px) scale(1);
    z-index: 5;
}

.testimonial-swiper .swiper-slide.near {
    transform: translateY(60px) scale(0.95);
    z-index: 4;
}

.testimonial-swiper .swiper-slide.far {
    transform: translateY(150px) scale(1);
    z-index: 3;
}

.testimonial-swiper .swiper-slide.more-far {
    transform: translateY(230px) scale(0.9);
    z-index: 3;
}

.footer {
    background: linear-gradient(135deg, #001bc5 0%, #0033ff 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 30%, rgb(0 0 0 / 79%) 70%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.background-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0.4;
}

.background-text span {
    display: block;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.5rem, 7vw, 7rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.6);
    letter-spacing: 8px;
    line-height: 0.8;
    text-transform: uppercase;
    white-space: nowrap;
    animation: float 6s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.2s);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.footer-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 40px;
}

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


.footer-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 2rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links li a:hover {
    color: #ffff00;
    transform: translateX(10px);
}

.footer-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #ffff00;
    transition: width 0.3s ease;
}

.footer-links li a:hover::after {
    width: 100%;
}

.copyright-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.privacy-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

.privacy-link:hover {
    color: #ffff00;
}

.copyright-text {
    color: #717176;
    font-size: 0.9rem;
    margin: 0;
}

.back-to-top {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

.arrow-up {
    width: 50px;
    height: 50px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.back-to-top:hover .arrow-up {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffff00;
    color: #ffff00;
}

.back-to-top-text {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Wrapper */
.service-slider-wrapper {
    position: relative;
    width: 100%;
    min-height: 745px;
    overflow: hidden;
}

/* Card base style */
.service-slider-wrapper .service-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    z-index: 1;
    transition: transform 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
}

/* Active card (onscreen) */
.service-slider-wrapper .service-card.active {
    transform: translateX(0);
    z-index: 2;
}

/* Slide out to the left */
.service-slider-wrapper .service-card.slide-out-left {
    transform: translateX(-100%);
    z-index: 1;
}

/* Slide out to the right */
.service-slider-wrapper .service-card.slide-out-right {
    transform: translateX(100%);
    z-index: 1;
}

/* Slide in from the left */
.service-slider-wrapper .service-card.slide-in-left {
    transform: translateX(0);
    z-index: 2;
}

/* Slide in from the right */
.service-slider-wrapper .service-card.slide-in-right {
    transform: translateX(0);
    z-index: 2;
}

/* Card internal layout (optional structure styles) */
.service-card .card {
    width: 100%;
    height: auto;
    border-radius: 18px;
}

.service-card .card-body {
    padding: 4em 5em;
}

.btn-service {
    background-color: #ea5D49;
    text-decoration: none;
    color: white;
    position: absolute;
    border-radius: 0px;
    padding: 5px 25px;
    z-index: 999;
    right: 10%;
    bottom: 10%;
}

.btn-service:hover {
    background-color: #ea5D49;
    text-decoration: none;
    color: white;
    position: absolute;
    border-radius: 0px;
    padding: 5px 25px;
    z-index: 999;
    right: 10%;
    bottom: 10%;
}

.service-card .card-content {
    height: auto;
}

.service-card .card-content h2 {
    font-size: 3em;
    margin-bottom: 30px;
    font-weight: 700;
}

.service-card .card-content p {
    font-size: 1.3em;
}

/* Service content (outside slider) */
.service-content {
    position: relative;
    z-index: 3;
}

/* Bell icon position + shadow */
.bell-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 999;
}

.bell-icon img {
    width: 60px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.bell-icon img:hover {
    transform: scale(1.05);
}

/* Modal background */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* Modal content animation */
.modal-content {
    background: #fff;
    margin: 5% auto;
    display: flex;
    width: 70%;
    max-width: 800px;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.4s ease;
}

/* Show animation */
.modal.show .modal-content {
    opacity: 1;
    transform: translateY(0);
}

/* Left image */
.modal-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-left {
    flex: 1;
}

/* Right form */
.modal-right {
    flex: 1;
    padding: 20px;
    position: relative;
}

.modal-right h2 {
    margin-bottom: 15px;
}

.modal-right input,
.modal-right textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #ccc;
}

.modal-right button {
    background: #007BFF;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}

/* 
.modal-right button:hover {
    background: #0056b3;
} */

/* Close button */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.modal-right {
    flex: 1;
    padding: 30px;
    background: #fdfdfd;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Title & subtext */
.modal-right h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: bold;
}

.modal-right h2 span {
    color: #0056ff;
    /* Blue text */
}

.modal-right p {
    color: #fff;
    margin-bottom: 20px;
}

/* Labels */
.modal-right label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 5px;
    color: #333;
}

/* Inputs & Textarea */
.modal-right input,
.modal-right textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: #f3f3f3;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    outline: none;
}

.modal-right textarea {
    min-height: 100px;
    resize: none;
}

/* Submit Button (gradient) */
.modal-right button {
    background: linear-gradient(90deg, #0000C3 60%, #F9CA24 100%);
    color: white;
    font-weight: 500;
    padding: 3px 31px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.modal-right button:hover {
    opacity: 0.9;
}

.modal-right button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Close button */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

/* Error and Success Messages */
.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: -10px;
    margin-bottom: 10px;
    display: none;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
    display: none;
}

.loading {
    display: none;
    text-align: center;
    padding: 20px;
}

.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0056ff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Demo button */
.demo-btn {
    background: linear-gradient(90deg, #0000C3 60%, #F9CA24 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    margin: 50px auto;
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-control.error {
    border-color: #e74c3c;
    background-color: #fdf2f2;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.error-message {
    display: none;
    color: #e74c3c;
    font-size: 13px;
    margin-top: 5px;
    padding-left: 15px;
}

.success-message {
    display: none;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.success-message i {
    font-size: 24px;
    margin-bottom: 10px;
}

.loading {
    display: none;
    text-align: center;
    padding: 40px;
    color: #667eea;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e1e5e9;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

.btn-submit.loading .btn-spinner {
    display: inline-block;
}

.btn-submit.loading .btn-text {
    opacity: 0.7;
}

/* Demo button */
.demo-btn {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.demo-btn:hover {
    transform: translate(-50%, -50%) translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

/* Overlay styles */
.consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.consent-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Glass Cookie Banner */
.consent-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 1001;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.consent-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.consent-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.consent-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
    margin-right: 20px;
}

.consent-text strong {
    font-weight: 600;
    color: white;
}

.consent-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.consent-buttons .btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    outline: none;
}

.btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: translateY(0);
}

.btn.primary {
    background: rgba(103, 126, 234, 0.8);
    border: 1px solid rgba(103, 126, 234, 0.6);
    color: white;
}

.btn.primary:hover {
    background: rgba(103, 126, 234, 0.9);
    box-shadow: 0 4px 20px rgba(103, 126, 234, 0.4);
}

.btn.light {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #0a0a86;
}

.btn.light:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #0a0a86;
}

.btn.reject {
    background: rgba(220, 53, 69, 0.7);
    border: 1px solid rgba(220, 53, 69, 0.6);
    color: white;
}

.btn.reject:hover {
    background: rgba(220, 53, 69, 0.9);
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.4);
}

/* Disable body scroll */
body.no-scroll {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    touch-action: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .consent-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .consent-content {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .consent-text {
        margin-right: 0;
        margin-bottom: 16px;
        font-size: 13px;
    }

    .consent-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
}

/* Status message */
.status-message {
    position: fixed;
    top: 20px;
    right: 0px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    z-index: 1002;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.status-message.show {
    transform: translateX(0);
}

.status-message.success {
    background: rgba(40, 167, 69, 0.9);
}

.status-message.error {
    background: rgba(220, 53, 69, 0.9);
}


@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .modal-right {
        padding: 30px 20px;
    }

    .footer {
        padding: 40px 0;
        text-align: center;
    }

    .footer-links li a {
        font-size: 1rem;
    }

    .back-to-top {
        margin-top: 30px;
    }

    .background-text span {
        font-size: clamp(2rem, 12vw, 4rem);
        letter-spacing: 4px;
    }
}