/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* === CSS VARIABLES (CUSTOM PROPERTIES) === */
:root {
    --primary-color: #332d41;
    /* Dark purple-gray for text */
    --secondary-color: #5c5470;
    /* Lighter gray-purple for subtext */
    --background-color: #f8f9fa;
    /* Clean, off-white background */
    --card-background: #ffffff;
    /* White for cards */
    --accent-color-1: #a18cd1;
    /* Lavender */
    --accent-color-2: #fbc2eb;
    /* Soft Pink */
    --gradient: linear-gradient(135deg, var(--accent-color-1), var(--accent-color-2));
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    --border-radius: 12px;
}

/* === GENERAL STYLING & RESETS === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--primary-color);
    line-height: 1.7;
    overflow-x: hidden;
    /* Prevents horizontal scroll */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-weight: 600;
}

.section-header {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
   background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section {
    padding: 80px 5%;
}

/* === NAVBAR === */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: box-shadow 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

#navLogoText {
    font-weight: 600;
    font-size: 1.2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* === HERO SECTION === */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: white;
  text-align: center;
}

/* Make the video cover the whole background */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures full coverage */
  z-index: 0;
  filter: brightness(60%); /* darkens video slightly for better text contrast */
}

/* Add a dark overlay for readability */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* Content sits above video */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1,
.hero-content p {
  margin: 10px 0;
}


/* .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin: 10px 0;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
} */

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: 200% auto;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(161, 140, 209, 0.4);
    background-position: right center;
    /* Gradient shift on hover */
}

.social-icons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.social-icons a {
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: var(--accent-color-1);
}

/* === IMAGE SECTIONS === */
img.animate-on-scroll {
    display: block;
    /* Removes bottom space under image */
}

/* === SERVICES SECTION === */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-background);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-header {
    margin-bottom: 15px;
    font-size: 1.25rem;
}


.workflow-slider {
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.workflow-slider.grabbing {
    cursor: grabbing;
}

.workflow-track {
    display: flex;
    transition: transform 0.3s ease-out;
    will-change: transform;
    width: 100%;
}

.workflow-slide {
    min-width: 100%;
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.workflow-image {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.workflow-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: white;
    color: var(--color-black);
    text-align: center;
    border-top: 1px solid #eee;
}

.workflow-caption h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

/* Enhanced mobile navigation */
.workflow-arrow {
    pointer-events: auto !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 10;
}

.workflow-dot {
    pointer-events: auto !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 10;
    min-width: 14px;
    min-height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workflow-navigation {
    pointer-events: auto !important;
    z-index: 10;
    position: relative;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .workflow-slider {
        touch-action: pan-y pinch-zoom;
        -webkit-overflow-scrolling: touch;
    }

    .workflow-slide {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .workflow-image {
        height: 500px;
        width: 100%;
        object-fit: cover;
        object-position: center;
        margin: 0 auto;
        display: block;
    }

    .workflow-caption {
        padding: 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .workflow-caption h3 {
        font-size: 1.1rem;
    }

    .workflow-arrow {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.4rem !important;
    }

    .workflow-dot {
        width: 3px !important;
        height: 3px !important;
        min-width: 4px;
        min-height: 4px;
        margin: 0 4px;
    }
}

@media (max-width: 576px) {
    .workflow-slide {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .workflow-image {
        height: 450px;
        width: 100%;
        object-fit: cover;
        object-position: center;
        margin: 0 auto;
        display: block;
    }

    .workflow-caption {
        padding: 12px;
        width: 100%;
        box-sizing: border-box;
    }

    .workflow-arrow {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.2rem !important;
    }

    .workflow-dot {
        width: 10px !important;
        height: 10px !important;
        min-width: 10px;
        min-height: 10px;
        margin: 0 3px;
    }
}


/* === ABOUT SECTION (Who we are) === */
.about {
   
    margin: 0 auto;
    text-align: center;
}

.about p {
    margin-bottom: 2rem;
}

/* === MISSION SECTION === */
#mission {
    background: var(--card-background);
    border-radius: var(--border-radius);
    padding: 50px;
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    align-content: end;
    justify-content: center;
    align-items: end;
}

#mission p {
    border-left: 4px solid;
    border-image: var(--gradient) 1;
    padding-left: 20px;
    margin-bottom: 25px;
}

#mission b {
    font-size: 1.2rem;
}


/* === GLOBAL PRESENCE SECTION === */
#global {
    background-color: #fdfcff;
    text-align: center;
    border-radius: var(--border-radius);
    padding: 50px;
}

/* === CORE STRENGTHS SECTION === */
#strengths .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

#strengths .card {
    padding: 25px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

#strengths .card:hover {
    transform: scale(1.03);
    border-image: var(--gradient) 1;
}

.card.gray {
    background: #f0f0f0;
}

.card.yellow {
    background: #fffbe6;
}

.card.purple {
    background: #f3e8ff;
}


/* === INFRA CAPACITY SECTION === */
.infra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.infra-card {
    padding: 20px;
    background: var(--gradient);
    color: white;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.infra-card:hover {
    transform: translateY(-8px);
}

.infra-card h4 {
    color: white;
}

.infra-card p {
    font-size: 0.9rem;
}


/* === CONTACT FORM === */
#contactForm {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

#contactForm input,
#contactForm textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#contactForm input:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: var(--accent-color-1);
    box-shadow: 0 0 0 3px rgba(161, 140, 209, 0.2);
}

#contactForm input[name="firstName"] {
    grid-column: 1 / 2;
}

#contactForm input[name="lastName"] {
    grid-column: 2 / 3;
}

#contactForm input[name="email"] {
    grid-column: 1 / 3;
}

#contactForm textarea {
    grid-column: 1 / 3;
}

#contactForm button {
    grid-column: 1 / 3;
}

/* Wrapper */
.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* Keep your existing form grid */
#contactForm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Map Styling */
.contact-map {
    min-height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive - Stack on mobile */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 350px;
    }
}


/* === FOOTER === */
.footer {
    padding: 50px 20px;
    background: #f1f1f1;
}

.footer-info p {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.footer-info strong {
    color: var(--primary-color);
    font-size: 1.2rem;
}


/* === WHATSAPP FLOAT BUTTON === */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    animation: pulse 2s infinite;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


/* === RESPONSIVE DESIGN (Media Queries) === */
@media (max-width: 768px) {
    .section-header {
        font-size: 2rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 68px;
        /* Height of navbar */
        right: 0;
        background: #fff;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transform: translateY(-120%);
        transition: transform 0.4s ease-in-out;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    #contactForm {
        grid-template-columns: 1fr;
    }

    #contactForm input[name="firstName"],
    #contactForm input[name="lastName"],
    #contactForm input[name="email"],
    #contactForm textarea,
    #contactForm button {
        grid-column: 1 / 2;
    }
}





  /* Global Reset and Variables */
 :root {
    --primary-gradient: linear-gradient(300deg, #E4A644 0%, #C14ADC 100%);
    --color-gold: #E4A644;
    --color-purple: #C14ADC;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-light-gray: #f9f9f9;
    --color-dark-gray: #666;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}


a {
    text-decoration: none;
    color: inherit;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section {
    padding: 80px 0;
    position: relative;
}
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
}
.btn-primary {
    background: var(--primary-gradient);
    color: var(--color-white);
    border: none;
}
.btn-secondary {
    border: 2px solid var(--color-black);
    color: var(--color-black);
    background: transparent;
}
.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


.hero-video {
    width: 100%;
   
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}
#background-video {
    width: 100%;
    height: auto;
    display: block;
}

.benefits {
    background-color: var(--color-light-gray);
    padding: 80px 0;
}
.benefits-subtitle {
    text-align: center;
    color: var(--color-dark-gray);
    margin-bottom: 60px;
    font-size: 1.2rem;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.benefit-card {
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    transition: all .3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    opacity: 1!important;
    transform: translateY(0)!important;
}
.benefit-card:hover {
    transform: translateY(-10px)!important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.benefit-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}
.benefit-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: 50%}
.benefit-icon img {
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
}
.benefit-title {
    font-size: 1.3rem;
    margin: 0;
}
.benefit-text {
    color: var(--color-dark-gray);
    line-height: 1.6;
}
.workflow {
    padding: 80px 0;
    background-color: var(--color-light-gray);
}
.workflow-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.workflow-content {
    opacity: 1!important;
    transform: translateX(0)!important;
}
.workflow-content h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.workflow-content h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--color-black);
}
.workflow-content p {
    margin-bottom: 20px;
    color: var(--color-dark-gray);
    line-height: 1.8;
}
.workflow-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    opacity: 1!important;
    transform: translateX(0)!important;
}
.workflow-track {
    display: flex;
    transition: transform .5s ease;
}
.workflow-slide {
    min-width: 100%;
    position: relative;
}
.workflow-image {
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
}
.workflow-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: white;
    color: var(--color-black);
    text-align: center;
    border-top: 1px solid #eee;
}
.workflow-caption h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}
.workflow-navigation {
    display: flex;
    justify-content: center;
    margin: 20px;
    gap: 10px;
}
.workflow-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all .3s ease;
}
.workflow-dot.active {
    background: var(--primary-gradient);
    width: 24px;
    border-radius: 10px;
}
.workflow-arrows {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    padding: 0 20px;
    z-index: 5;
    pointer-events: none;
}
.workflow-arrow {
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
    color: var(--color-black);
    font-size: 1.2rem;
    border: none;
    transition: all .3s ease;
}
.about-btn {
    text-align: center;
    display: inline-block;
    text-decoration: none;
    padding: 12px 30px;
    border: 2px solid var(--color-black);
    color: var(--color-black);
    border-radius: 8px;
    font-weight: 500;
    transition: all .3s ease;
}
.about-btn:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-5px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.workflow-arrow:hover {
    background: var(--primary-gradient);
    color: var(--color-white);
}
.materials {
    background-color: white;
    padding: 80px 0;
}
.materials-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.materials-subtitle {
    text-align: center;
    color: var(--color-dark-gray);
    margin-bottom: 60px;
    font-size: 1.2rem;
}
.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.material-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all .3s ease;
    height: 100%;
    opacity: 1!important;
    transform: translateY(0)!important;
}
.material-card:hover {
    transform: translateY(-10px)!important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.material-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.material-content {
    padding: 20px;
}
.material-name {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--color-black);
}
.material-description {
    color: var(--color-dark-gray);
    font-size: .9rem;
    line-height: 1.6;
}
.accessories {
    padding: 80px 0;
    background-color: white;
}
.accessories-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.accessories-subtitle {
    text-align: center;
    color: var(--color-dark-gray);
    margin-bottom: 60px;
    font-size: 1.2rem;
}
.accessories-container {
    max-width: 1200px;
    margin: 0 auto;
}
.accessories-card {
    display: flex;
    background: var(--color-light-gray);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
    transition: all .3s ease;
}
.accessories-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.accessories-image {
    width: 40%;
    min-height: 300px;
    object-fit: cover;
}
.accessories-content {
    width: 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.accessories-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--color-black);
}
.accessories-content p {
    color: var(--color-dark-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}
.material-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    font-size: .9rem;
    padding: 5px 15px;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 15px;
}
.accessories-btn {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--color-black);
    color: var(--color-black);
    border-radius: 8px;
    font-weight: 500;
    transition: all .3s ease;
    margin-top: 10px;
    align-self: flex-start;
}
.accessories-btn:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}
.testimonials {
    background-color: var(--color-light-gray);
    padding: 80px 0;
}
.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}
.testimonials-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.testimonials-subtitle {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-dark-gray);
}
.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}
.testimonials-container {
    display: flex;
    transition: transform .5s ease;
}
.testimonial-item {
    flex: 0 0 100%;
    padding: 0 20px;
}
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.testimonial-content {
    position: relative;
    padding: 20px 0;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-dark-gray);
}
.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 5rem;
    color: rgba(0, 0, 0, 0.1);
    line-height: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
}
.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}
.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--color-black);
}
.author-info p {
    font-size: .9rem;
    color: var(--color-dark-gray);
}
.slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}
.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background .3s ease;
}
.slider-dot.active {
    background: var(--color-purple);
    display: none;
}
.cta {
    padding: 80px 0;
    background-color: white;
}
.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    opacity: 1!important;
    transform: translateY(0)!important;
}
.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cta-subtitle {
    font-size: 1.5rem;
    color: var(--color-black);
    margin-bottom: 30px;
}
.cta-text {
    color: var(--color-dark-gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}
.cta-button {
    display: inline-block;
    text-decoration: none;
    padding: 15px 40px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 8px;
    font-weight: 500;
    transition: all .3s ease;
}
.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
footer {
    background-color: var(--color-light-gray);
    padding: 80px 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-logo {
    margin-bottom: 20px;
}
.footer-logo img {
   
    width: 200px;
}
.footer-about {
    color: var(--color-dark-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}
.footer-social {
    display: flex;
    gap: 15px;
}
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform .3s ease;
}
.social-icon:hover {
    transform: translateY(-5px);
}
.footer-column h3 {
    color: var(--color-black);
    margin-bottom: 20px;
    font-size: 1.2rem;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: var(--color-dark-gray);
    text-decoration: none;
    transition: color .3s ease;
}
.footer-links a:hover {
    color: var(--color-purple);
}
#mc_embed_signup {
    width: 100%}
#mc_embed_signup_scroll h3 {
    color: var(--color-black);
    margin-bottom: 20px;
    font-size: 1.2rem;
}
.newsletter-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
}
.mc-field-group {
    margin-bottom: 15px;
}
.newsletter-button {
    width: 100%;
    padding: 12px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform .3s ease;
}
.newsletter-button:hover {
    transform: translateY(-3px);
}
.checkbox.subfield {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}
.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: var(--color-dark-gray);
}
#consent-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 400px;
    display: none;
}
#consent-popup h3 {
    margin-bottom: 10px;
}
#consent-popup p {
    margin-bottom: 15px;
    color: var(--color-dark-gray);
}
#consent-buttons {
    display: flex;
    gap: 10px;
}
#consent-buttons button {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#accept-consent {
    background: var(--primary-gradient);
    color: white;
}
#deny-consent {
    background: #eee;
    color: var(--color-black);
}
.modal-link {
    color: var(--color-purple);
    text-decoration: underline;
    cursor: pointer;
    display: block;
    margin-bottom: 15px;
}
.hero-video {
    
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}
#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-controls {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 30px;
    padding: 10px 15px;
    z-index: 10;
    transition: opacity .3s ease;
    backdrop-filter: blur(10px);
    opacity: 0;
}
.video-controls-left, .video-controls-right {
    display: flex;
    align-items: center;
    gap: 15px;
}
.video-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.video-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(300deg, #E4A644 0%, #C14ADC 100%);
    opacity: 0;
    transition: opacity .3s ease;
    z-index: -1;
    border-radius: 8px;
}
.video-btn:hover::before {
    opacity: .2;
}
.video-btn:hover {
    transform: scale(1.1);
    color: white;
}
.volume-slider {
    width: 100px;
    margin-left: 10px;
    appearance: none;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    opacity: .7;
    transition: opacity .2s;
    border-radius: 5px;
}
.about-image {
    aspect-ratio: 1/1;
    object-position: center;
}
.volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 15px;
    height: 15px;
    background: linear-gradient(300deg, #E4A644 0%, #C14ADC 100%);
    cursor: pointer;
    border-radius: 50%}
.volume-slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: linear-gradient(300deg, #E4A644 0%, #C14ADC 100%);
    cursor: pointer;
    border-radius: 50%;
    border: none;
}
.video-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
}
.video-progress-filled {
    height: 100%;
    background: linear-gradient(300deg, #E4A644 0%, #C14ADC 100%);
    width: 0;
}
.hero-video:hover .video-controls {
    opacity: 1;
}
.brand-nav {
    background-color: #f9f7fc;
    padding: 6px 20px;
    display: flex;
    align-items: center;
}
.brand-divider {
    color: #ddd;
    margin: 0 10px;
    font-size: 14px;
}
.current-site {
    opacity: 1;
}
.other-site {
    opacity: .65;
    transition: opacity .3s ease;
}
.other-site:hover {
    opacity: 1;
}
.brand-logo {
    height: 18px;
    width: auto;
}
.absologo {
    height: 17px;
}
.mobile-menu-cta2 {
    display: none;
}
@media (max-width:1024px) {
    .hero-title {
    font-size: 3.5rem;
}
.process-grid {
    grid-template-columns: repeat(3, 1fr);
}
.benefits-grid {
    grid-template-columns: repeat(2, 1fr);
}
.workflow-container, .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
}
.about-content, .workflow-content {
    order: 2;
}
.materials-grid {
    grid-template-columns: repeat(3, 1fr);
}
.footer-grid {
    grid-template-columns: 1fr;
}
.accessories-card {
    flex-direction: column;
}
.accessories-image, .accessories-content {
    width: 100%}
.accessories-image {
    height: 300px;
}
@keyframes scrollLogos {
    0% {
    transform: translateX(0);
}
100% {
    transform: translateX(calc(-220px * 3));
}
}.client-logo {
    width: 220px;
    height: 160px;
    margin: 0 30px;
}
.client-logo img {
    max-width: 180px;
    max-height: 100px;
}
.hero-container {
    grid-template-columns: 1fr;
}
.header .container {
    padding: 0 15px;
}
.mobile-toggle {
    z-index: 1002;
}
.mobiledivtoggle {
    display: flex;
}
.mobiledivtoggle>.btn-primary {
    font-size: .9rem;
    margin: 0 10px;
    z-index: 999;
}
.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    flex-direction: column;
    padding: 100px 0 80px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all .4s ease;
    gap: 30px;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    z-index: 1001;
    overflow-y: auto;
}
.nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    z-index: 1001;
    background-color: var(--color-light-gray);
}
.mobile-menu-cta2 {
    display: block;
}
.mobile-menu-header {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid #f1f1f1;
    width: 100%;
    background: white;
}
.mobile-menu-logo {
    max-height: 40px;
}
.mobile-menu-social {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px;
    justify-content: center;
    gap: 15px;
    background: white;
    border-top: 1px solid #f1f1f1;
}
.mobile-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: .9rem;
    transition: transform .3s ease;
}
.mobile-social-icon:hover {
    transform: translateY(-3px);
}
}@media (max-width:768px) {
    .brand-nav {
    padding: 4px 15px;
}
.clients {
    padding: 20px 0;
}
.clients-title {
    font-size: 1.4rem;
}
.brand-divider {
    margin: 0 8px;
    font-size: 12px;
}
.brand-logo {
    height: 12px;
}
.absologo {
    height: 12px;
}
.hero {
    padding: 120px 0 80px;
}
.hero-container {
    grid-template-columns: 1fr;
    gap: 0;
}
.hero-content {
    text-align: center;
    margin-bottom: 40px;
}
.hero-title {
    font-size: 3rem;
    margin-bottom: 15px;
}
.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 15px;
}
.hero-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.hero-cta {
    justify-content: center;
}
.video-controls {
    opacity: 0;
}
.hero-video.controls-visible .video-controls {
    opacity: 1;
}
@keyframes scrollLogos {
    0% {
    transform: translateX(0);
}
100% {
    transform: translateX(calc(-180px * 3));
}
}.client-logo {
    width: 180px;
    height: 150px;
    margin: 0 20px;
}
.client-logo img {
    max-width: 150px;
    max-height: 90px;
}
.process-grid {
    grid-template-columns: 1fr;
}
.benefits-grid {
    grid-template-columns: 1fr;
}
.materials-grid {
    grid-template-columns: 1fr;
}
.footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
}
.accessories-content {
    padding: 25px;
}
.accessories-content h3 {
    font-size: 1.5rem;
}
.nav-link {
    font-size: 1.2rem;
}
.mobile-menu-logo {
    max-height: 30px;
}
}@media (max-width:576px) {
    .section {
    padding: 60px 0;
}
.section-title {
    font-size: 2rem;
}
.hero-title {
    font-size: 1.8rem;
}
.hero-subtitle {
    font-size: 1.5rem;
}
.hero-btn {
    width: 100%}
.hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 15px;
}
.hero-video {
    aspect-ratio: 16/9;
}
.process-card, .benefit-card, .testimonial-card {
    padding: 20px;
}
.process-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}
.about-content h2, .workflow-content h2 {
    font-size: 2rem;
}
.footer-social {
    justify-content: center;
}
@keyframes scrollLogos {
    0% {
    transform: translateX(0);
}
100% {
    transform: translateX(calc(-160px * 3));
}
}.client-logo {
    width: 160px;
    height: 140px;
    margin: 0 15px;
}
.client-logo img {
    max-width: 130px;
    max-height: 80px;
}
.mobiledivtoggle>.btn-primary {
    font-size: .8rem;
    padding: 8px 15px;
    margin: 0 5px;
}
.header .container {
    padding: 10px 12px;
}
.mobile-toggle {
    font-size: 1.3rem;
}
}.scroll-progress-container {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    z-index: 1000;
    pointer-events: none;
    overflow: hidden;
}
.scroll-progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, #E4A644, #C14ADC);
    transition: width .1s ease;
}
@media (min-width:769px) and (max-width:1024px) {
    .hero-video {
    aspect-ratio: 16/9;
    max-height: 500px;
}
.hero-container {
    grid-template-columns: 1fr;
    align-items: center;
}
.hero-content {
    order: 1;
}
.hero-video {
    order: 2;
}
}.cookie-settings {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
}
.cookie-settings-content {
    background-color: white;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 25px;
}
.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.cookie-settings-header h3 {
    margin: 0;
    font-size: 1.5rem;
}
.close-settings {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-dark-gray);
    transition: color .3s ease;
}
.close-settings:hover {
    color: var(--color-black);
}
.cookie-options {
    margin: 25px 0;
}
.cookie-option {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}
.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.cookie-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.cookie-name {
    font-weight: 600;
}
.cookie-status {
    font-size: .8rem;
    color: var(--color-purple);
}
.cookie-description {
    font-size: .9rem;
    color: var(--color-dark-gray);
    margin: 0;
}
.cookie-settings-footer {
    display: flex;
    justify-content: flex-end;
}
.save-preferences {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all .3s ease;
}
.save-preferences:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.cookie-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: all .2s ease;
}
.cookie-label input[type="checkbox"]:checked {
    background: var(--primary-gradient);
    border-color: transparent;
}
.cookie-label input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.cookie-label input[type="checkbox"]:disabled {
    opacity: .7;
    cursor: not-allowed;
}
.header {
    position: fixed;
    width: 100%;
    top: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transition: all .3s ease;
}
.brand-nav {
    position: relative;
    z-index: 10001;
}
.header .container, .logo, .mobiledivtoggle, .mobile-toggle {
    position: relative;
    z-index: 10001;
}
.nav-menu {
    z-index: 9999;
}
.scroll-progress-container {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    z-index: 9500;
    pointer-events: none;
    overflow: hidden;
}
@media (max-width:1024px) {
    .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    flex-direction: column;
    padding-top: 120px;
    padding-bottom: 80px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all .4s ease;
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    z-index: 9999;
    overflow-y: auto;
}
.nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
}.header {
    position: fixed;
    width: 100%;
    top: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: all .3s ease;
}
.header .container, .logo, .mobiledivtoggle, .mobile-toggle {
    position: relative;
    z-index: 9999;
}
.nav-menu {
    z-index: 9998;
}
.scroll-progress-container {
    z-index: 10000;
}
@media (max-width:1024px) {
    .mobiledivtoggle {
    display: flex;
}
.mobile-menu-header {
    display: none!important;
}
.about-image {
    aspect-ratio: 16/9;
    object-position: bottom;
}
.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    flex-direction: column;
    padding-top: 120px;
    padding-bottom: 80px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all .4s ease;
    gap: 30px;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    z-index: 9998;
    overflow-y: auto;
}
.nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
}.header .container.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-right {
    display: flex;
    align-items: center;
}
.header-cta {
    display: inline-block;
    white-space: nowrap;
}
@media (max-width:1024px) {
    .nav-menu.active {
    display: flex;
    flex-direction: column;
}
.header-left {
    gap: 15px;
}
.header-right {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}
.header-cta {
    font-size: .9rem;
    padding: 8px 15px;
}
}@media (max-width:768px) {
    .header-left {
    gap: 10px;
}
.about-image {
    aspect-ratio: 1/1;
    object-position: center;
}
.header-cta {
    font-size: .8rem;
    padding: 6px 12px;
}
}@media (max-width:576px) {
    .header-left {
    gap: 10px;
}
.logo img {
    max-height: 35px;
}
.header-cta {
    font-size: .75rem;
    padding: 6px 10px;
}
}@media (min-width:1024px) {
    .mobile-toggle {
    display: none!important;
}
.header-container {
    justify-content: space-between;
}
.nav-menu {
    display: flex!important;
    align-items: center;
    gap: 30px;
}
}.mobile-menu-cta {
    display: block;
    margin: 20px auto;
    text-align: center;
    font-size: 1rem;
    padding: 12px 20px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: transform .3s ease;
}
.mobile-menu-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
@media (min-width:1025px) {
    .header-right {
    display: none;
}
}@media (max-width:1024px) {
    .nav-menu {
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    padding: 100px 20px 80px;
    gap: 40px;
    height: 100vh;
    pointer-events: auto!important;
}
.nav-menu.active {
    display: flex!important;
    flex-direction: column!important;
}
.nav-menu .nav-link {
    color: var(--color-black);
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    transition: all .3s ease;
    opacity: .8;
}
.nav-menu .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -8px;
    left: 50%;
    background: var(--primary-gradient);
    transition: all .3s ease;
    transform: translateX(-50%);
}
.nav-menu .nav-link:hover {
    transform: scale(1.05);
    color: var(--color-purple);
    opacity: 1;
}
.nav-menu .nav-link:hover::after {
    width: 100%}
.mobile-menu-cta {
    max-width: 400px;
    margin: 0;
    font-size: 1.2rem;
    padding: 15px 25px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 10px;
    transition: all .3s ease;
}
.mobile-menu-cta2 {
    max-width: 400px;
    margin: 0;
    font-size: 1.2rem;
    padding: 15px 25px;
    border-radius: 10px;
    transition: all .3s ease;
}
.mobile-menu-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.mobile-social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform .3s ease;
}
.mobile-social-icon:hover {
    transform: translateY(-5px);
}
.mobile-menu-header {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
}
.mobile-menu-logo {
    max-height: 50px;
    opacity: .8;
}
}@media (max-width:1024px) {
    .nav-menu {
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    gap: 40px;
    height: 100vh;
    overflow-y: auto;
}
.mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    padding-bottom: 60px;
    width: 100%}
.mobile-social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform .3s ease;
}
.mobile-social-icon:hover {
    transform: translateY(-5px);
}
.nav-menu {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
}
}@media (max-width:1024px) {
    .nav-menu .nav-link {
    font-size: 1.5rem!important;
    text-align: center!important;
    width: 100%!important;
    display: block!important;
}
.nav-menu {
    align-items: center!important;
    text-align: center!important;
    padding: 120px 30px 80px!important;
}
}.cookie-settings {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999!important;
    display: none;
    align-items: center;
    justify-content: center;
}
.cookie-settings-content {
    position: relative;
    z-index: 100000!important;
}
@media (max-width:768px) {
    .benefit-icon {
    width: 45px;
    height: 45px;
    aspect-ratio: 1/1;
    min-width: 45px;
    min-height: 45px;
}
.benefit-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%}
}@media (max-width:1024px) {
    @supports (-webkit-touch-callout: none) {
    .nav-menu {
    padding-top: 80px;
    padding-bottom: 100px;
    gap: 20px;
}
.nav-menu .nav-link {
    font-size: 1.1rem!important;
    margin-bottom: 5px!important;
}
.mobile-menu-cta, .mobile-menu-cta2 {
    padding: 10px 15px!important;
    font-size: 1rem!important;
    margin: 5px auto!important;
}
.mobile-social-icon {
    width: 40px!important;
    height: 40px!important;
}
.nav-menu.active {
    max-height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mobile-menu-social {
    padding-bottom: 120px!important;
}
}}@media (max-width:376px) {
    .nav-menu {
    gap: 10px!important;
    padding: 60px 15px 50px!important;
}
.nav-menu .nav-link {
    font-size: 1rem!important;
    margin-bottom: 0!important;
    padding: 5px 0!important;
}
.mobile-menu-cta, .mobile-menu-cta2 {
    padding: 6px 12px!important;
    font-size: .85rem!important;
    margin: 2px auto!important;
    width: 90%!important;
}
.mobile-social-icon {
    width: 30px!important;
    height: 30px!important;
    font-size: .8rem!important;
}
.mobile-menu-social {
    gap: 10px;
    margin-top: 15px;
    padding-bottom: 25px;
}
.nav-menu>div {
    gap: 8px!important;
}
}@media (max-width:600px) {
    .nav-menu .nav-link {
    font-size: 1.2rem!important;
    text-align: center!important;
    width: 100%!important;
    display: block!important;
    margin-bottom: 1px!important;
}
.mobile-menu-cta, .mobile-menu-cta2 {
    padding: 10px 20px!important;
    font-size: 1.2rem!important;
    width: 100%!important;
}
.mobile-social-icon {
    width: 50px!important;
    height: 50px!important;
    font-size: 1.2rem!important;
}
.mobile-menu-social {
    gap: 20px!important;
    margin-top: 30px!important;
    padding-bottom: 60px!important;
}
}@media (min-width:360px) {
    .nav-menu .nav-link {
    font-size: 1rem!important;
}
.mobile-menu-cta, .mobile-menu-cta2 {
    font-size: 1rem!important;
}
}.logo-container {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.external-icon {
    font-size: 12px;
    margin-left: 4px;
    color: #999;
    transition: color .3s ease;
}
.other-site:hover .external-icon {
    color: var(--color-purple);
}
@media (max-width:768px) {
    .external-icon {
    font-size: 10px;
    margin-left: 2px;
}
}.notification-bar {
    background: var(--primary-gradient);
    color: var(--color-white);
    padding: 0px 0;
    text-align: center;
    position: relative;
    z-index: 10002;
    transition: transform .3s ease, opacity .3s ease;
}
.notification-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}
.notification-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}
.notification-bar p {
    margin: 0;
    font-weight: 500;
    font-size: 10px;
    letter-spacing: .3px;
}
.notification-cta {
    font-weight: 700;
    margin-left: 5px;
    text-decoration: underline;
    cursor: pointer;
}
body.has-notification .header {
    top: 45px!important;
}
body.has-notification .hero {
    padding-top: 220px;
}
@media (max-width:768px) {
    .notification-bar p {
    font-size: .5rem;
}
body.has-notification .hero {
    padding-top: 150px;
}
}@media (max-width:480px) {
    .notification-bar {
    padding: 0px 0;
}
.notification-cta {
    display: inline;
}
}.video-play-button {
    cursor: pointer;
    pointer-events: auto!important;
}
.video-paused .video-overlay {
    opacity: 1;
    pointer-events: auto;
}
.video-paused .video-play-button {
    opacity: 1;
    transform: scale(1);
}
.video-overlay.hover-overlay {
    opacity: 0;
    transition: opacity .3s ease;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
}
.hero-video:not(.video-paused):hover .video-overlay.hover-overlay {
    opacity: 1;
}
.video-pause-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(300deg, #E4A644 0%, #C14ADC 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: scale(.8);
    transition: transform .3s ease, opacity .3s ease;
    opacity: 0;
}
.hero-video:not(.video-paused):hover .video-pause-button {
    opacity: 1;
    transform: scale(1);
}
.video-pause-button i {
    color: white;
    font-size: 30px;
}
.hero-video {
    z-index: 1;
}
.video-overlay {
    z-index: 5;
}
#background-video {
    pointer-events: none;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 2.4rem;
}
.hero-badge {
    font-size: 10px!important;
    padding: .8rem 1.6rem;
    background: white;
    border-radius: 100px;
    font-size: 1.4rem;
    font-weight: 600;
    box-shadow: var(--box-shadow-sm);
    color: var(--color-black);
    position: relative;
    overflow: hidden;
}
@media (max-width:1024px) {
    .hero-badges {
    justify-content: center;
}
}@media (max-width:768px) {
    .hero-badges {
    gap: .8rem;
    margin-bottom: 1.8rem;
    justify-content: center;
}
.hero-badge {
    padding: .6rem 1.2rem;
    font-size: 1.2rem;
}
}@media (max-width:576px) {
    .hero-badges {
    gap: .6rem;
    margin-bottom: 1.5rem;
}
}@media (max-width:375px) {
    .hero-badge {
    padding: .5rem 1rem;
    font-size: 1.1rem;
}
.hero-badge::before {
    width: 3px;
}
}.hero {
    padding: 140px 0 80px!important;
}
body.has-notification .hero {
    padding-top: 160px!important;
}
.hero-container {
    padding: 0 20px;
}
@media (max-width:768px) {
    .hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .4rem;
    margin-bottom: 1.5rem;
    width: 100%;
    overflow-x: auto;
    max-width: 100%;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-right: 15px!important;
    margin-left: 15px!important;
}
.hero-badges::-webkit-scrollbar {
    display: none;
}
.hero-badge {
    padding: .3rem .7rem;
    font-size: .85rem!important;
    white-space: nowrap;
    flex: 0 0 auto;
    transform: scale(.95);
}
.hero-badge i {
    margin-right: 4px!important;
}
.hero {
    padding-top: 130px!important;
}
body.has-notification .hero {
    padding-top: 150px!important;
}
}@media (max-width:480px) {
    .hero-badge {
    padding: .25rem .5rem;
    font-size: .6rem!important;
    transform: scale(.9);
}
.hero {
    padding-top: 110px!important;
}
body.has-notification .hero {
    padding-top: 130px!important;
}
.hero-badge i {
    font-size: .75rem;
    margin-right: 3px!important;
}
.hero-badges {
    gap: .3rem;
}
}.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: .3rem;
    color: gray;
    font-size: 1.2rem;
}
.trust-badge i {
    font-size: 2rem;
    color: var(--color-gold);
}
@media (max-width:768px) {
    .trust-badges {
    gap: 0;
    margin-top: 2rem;
}
.trust-badge {
    display: flex;
    align-items: center;
    color: gray;
    font-size: .7rem;
    padding: 10px;
}
}.categories-section {
    padding: 80px 0;
    background-color: var(--color-light-gray);
}
.categories-header {
    text-align: center;
    margin-bottom: 50px;
}
.categories-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.categories-header p {
    font-size: 1.2rem;
    color: var(--color-dark-gray);
    max-width: 700px;
    margin: 0 auto;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.category-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}
.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}
.category-image-container {
    position: relative;
    overflow: hidden;
    height: 250px;
}
.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.category-card:hover .category-image {
    transform: scale(1.05);
}
.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease;
}
.category-card:hover .category-overlay {
    opacity: 1;
}
.category-link {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transform: translateY(20px);
    transition: transform .3s ease;
}
.category-card:hover .category-link {
    transform: translateY(0);
}
.category-info {
    padding: 25px;
}
.category-name {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--color-black);
}
.category-desc {
    color: var(--color-dark-gray);
    font-size: .95rem;
    line-height: 1.6;
}
.faq-section {
    background-color: white;
    padding: 100px 0;
}
.accordion {
    max-width: 800px;
    margin: 0 auto;
}
.accordion-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all .3s ease;
}
.accordion-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.accordion-header {
    background-color: white;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-header h3 {
    font-size: 1.2rem;
    margin: 0;
    transition: color .3s ease;
}
.accordion-icon {
    transition: transform .3s ease;
}
.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}
.accordion-item.active .accordion-header h3 {
    color: var(--color-purple);
}
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease;
    background-color: white;
}
.accordion-item.active .accordion-body {
    max-height: 500px;
}
.accordion-content {
    padding: 0 20px 20px;
    color: var(--color-dark-gray);
    line-height: 1.6;
}
.accordion-content a {
    color: var(--color-purple);
    text-decoration: underline;
}
@media (max-width:1024px) {
    .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
}@media (max-width:768px) {
    .categories-section {
    padding: 60px 0;
}
.categories-header h2 {
    font-size: 2rem;
}
.categories-header p {
    font-size: 1rem;
}
.category-image-container {
    height: 220px;
}
.category-name {
    font-size: 1.2rem;
}
}@media (max-width:576px) {
    .categories-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
}
.category-image-container {
    height: 200px;
}
.categories-header h2 {
    font-size: 1.8rem;
}
.category-info {
    padding: 20px;
}
}.faq-section {
    display: block!important;
    background-color: white;
    padding: 80px 0;
}
.accordion {
    max-width: 800px;
    margin: 0 auto;
}
.accordion-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all .3s ease;
    display: block!important;
}
.accordion-header {
    background-color: white;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease;
    background-color: white;
}
.accordion-item.active .accordion-body {
    max-height: 500px;
}
.accordion-content {
    padding: 0 20px 20px;
    color: var(--color-dark-gray);
    line-height: 1.6;
}
.accordion-icon i {
    transition: transform .3s ease;
}
.accordion-item.active .accordion-icon i {
    transform: rotate(180deg);
}
.faq-section {
    display: block!important;
    visibility: visible!important;
    opacity: 1!important;
    height: auto!important;
}
.accordion {
    display: block!important;
    max-width: 800px!important;
    margin: 0 auto!important;
    visibility: visible!important;
    opacity: 1!important;
}
.accordion-item {
    display: block!important;
    margin-bottom: 20px!important;
    border-radius: 10px!important;
    overflow: hidden!important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05)!important;
    transition: all .3s ease!important;
    visibility: visible!important;
    opacity: 1!important;
    background-color: white!important;
}
.accordion-header {
    background-color: white!important;
    padding: 20px!important;
    cursor: pointer!important;
    display: flex!important;
    justify-content: space-between!important;
    align-items: center!important;
}
.accordion-body {
    max-height: 0!important;
    overflow: hidden!important;
    transition: max-height .5s ease!important;
    background-color: white!important;
}
.accordion-item.active .accordion-body {
    max-height: 800px!important;
}
.accordion-content {
    padding: 20px!important;
    color: #666!important;
    line-height: 1.6!important;
}
.accordion-icon i {
    transition: transform .3s ease!important;
}
.accordion-item.active .accordion-icon i {
    transform: rotate(180deg)!important;
}
.accordion-header h3 {
    margin: 0!important;
    font-size: 1.2rem!important;
    color: #000!important;
}
.accordion-item.active .accordion-header h3 {
    color: #C14ADC!important;
}
       