* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}



body,html{
    /* background: #e4e4e8; */
    background: whitesmoke;
    width: 100%;
    overflow-x: hidden; /* ADD THIS LINE */
    position: relative; /* ADD THIS LINE */
}


/* main contents of the website */

/* first section */

#section-one {
    height: 100vh;
    width: 100%;
    position: relative;
    top: -17vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    mask: linear-gradient(to bottom, black 0% 92%, transparent 95% 100%);
}

.slideContainer {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
}

#section-one .slides {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

#section-one .slides img{
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#section-one .text {
    height: fit-content;
    min-height: 40%;
    width: 30%;
    position: absolute;
    top: 35%;
    left: 60%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #ffffff88;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3.7px);
    -webkit-backdrop-filter: blur(3.7px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px;
}


#section-one button {
    height: 60px;
    width: 140px;
    position: relative;
    border-radius: 60px;
    border: none;
    background: linear-gradient(to bottom right, var(--light-orange) 0% 40%, var(--warm-white));
    top: 80vh;
    z-index: 2;
    cursor: pointer;
}

#section-one button a{
    font-family: "Poppins";
    font-size: 19px;
    color: var(--orange-brown);
    text-decoration: none;
}

#section-one .indexContainer{
    height: 5vh;
    width: 30%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    position: absolute;
    top: 90vh;
}

.index{
    height: 20px;
    width: 20px;
    border-radius: 20px;
    border: 2px solid black;
    cursor: pointer;
}



/* section two */
#section-two{
    min-height: 100vh;
    width: 100%;
    position: relative;
    top: -17vh;
}

.displayCircleContainer{
    min-height: 85vh;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
    place-items: center;
    gap: 5px;
}

.displayCircles{
    height: 280px;
    width: 280px;
    border-radius: 280px;
    box-shadow: 5px 5px 10px #0004,
10px 6px 15px #0003 inset,
-2px -2px 10px #f5f5ff inset, 0 0 8px #0003;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.displayCircles .headingDiv{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 40px;
    width: 60%;
}

.displayCircles .headingDiv img{
    height: 40px;
}

.displayCircles p{
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 0;
    width: 80%;
    transition: height 0.5s;
}

/* section three */

#section-three{
    height: fit-content;
    width: 100%;
    position: relative;
    top: -17vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonialContainer{
    width: 95%;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px, 1fr));
    place-items: center;
    padding: 10px;
    gap: 10px;
}

.testimonial{
    border-radius: 40px;
    box-shadow: 0 0 3px #0006;
    min-height: 400px;
    width: 300px;
    display: flex;
    gap: 15px;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.testimonial p{
    height: 200px;
    width: 270px;
}

.counterContainer{
    width: 100%;
    height: fit-content;
    background: #fff3e188;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
    place-items: center;
    margin-top: 50px;
}

.counter{
    height: 240px;
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.numberIncrease{
    font-size: 30px;
    color: blueviolet;
    padding: 20px;
}


/* section four. Logo animation */

/* --- SECTION STYLES --- */
#section-four {
    width: 100%;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f0e9e9;
    overflow: hidden;
}

.heading1 {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 40px;
    font-family: sans-serif;
    color: #db6c10;
}

/* --- THE VIEWPORT --- */
.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* --- THE MOVING TRACK --- */
.slider {
    display: flex;
    width: max-content; 
    animation: scroll 40s linear infinite; /* 40s for smooth movement */
}

/* --- THE CARDS --- */
.slider .card {
    flex: 0 0 200px; 
    height: 100px;
    padding: 0 30px; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider .card img {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    /* Logos will now stay in their original colors */
}

/* --- THE ANIMATION --- */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* --- MOBILE RESPONSIVE --- */
@media screen and (max-width: 768px) {
    .slider .card {
        flex: 0 0 120px; 
        padding: 0 15px;
    }
    .slider {
        animation-duration: 20s;
    }
}
.brochure_elements_cont {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.brochure_elements img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.brochure_elements img:hover {
    transform: scale(1.1);
}

/* Modal Overlay (Background) */
.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

/* Modal Box */
.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    position: relative;
    text-align: center;
}

/* Close Button */
.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

/* Form Styling */
#trialForm input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

#trialForm button {
    width: 100%;
    padding: 12px;
    background-color: #c7692b;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

#trialForm button:hover {
    background-color: #218838;
    /* Container */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    padding: 20px;
    display: none; /* Hidden by default, JS will show it */
    font-family: Arial, sans-serif;
    color: #333;
}

/* Layout */
.cookie-banner .cookie-content {
    max-width: 1000px;
    margin: 0 auto 15px auto;
}

.cookie-toggles {
    margin-top: 10px;
    display: flex;
    gap: 20px;
}

.cookie-actions {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

/* Buttons */
.cookie-banner button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-secondary {
    background-color: #f0f0f0;
    color: #333;
}

.btn-primary:hover { background-color: #0056b3; }
.btn-secondary:hover { background-color: #dcdcdc; }
/* GDPR Banner Styling */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 10000;
    padding: 25px;
    display: none; /* Controlled by JS */
    border-radius: 12px;
}
.cookie-content h3 { margin-bottom: 10px; color: #333; }
.cookie-toggles { display: flex; gap: 15px; margin: 15px 0; font-size: 14px; }
.cookie-actions { display: flex; gap: 10px; }
.btn-primary { background: #007bff; color: white; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; }
.btn-secondary { background: #f0f0f0; color: #333; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; }
}
