/* style.css */

/* CSS Variables for Theme */
:root {
    /* Color Palette */
    --primary-gradient: linear-gradient(135deg, #ff7e5f, #feb47b);
    --secondary-gradient: linear-gradient(135deg, #6a11cb, #2575fc);
    --background-color: #f0f4f8;
    --text-color: #222;
    --accent-color: #ff6f61;
    --card-bg: rgba(255, 255, 255, 0.8);
    --footer-bg: #333;
    --link-color: #2575fc;
    --link-hover-color: #ff6f61;
    --button-bg: #2575fc;
    --button-hover-bg: #ff6f61;
    --input-bg: rgba(255, 255, 255, 0.9);
    --border-color: #ddd;
    --glass-bg: rgba(255, 255, 255, 0.2);
    /* Fonts */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    /* Breakpoints */
    --breakpoint-sm: 600px;
    --breakpoint-md: 900px;
    --breakpoint-lg: 1200px;
}

/* Global Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-color);
    margin-bottom: 1rem;
    text-align: center;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--link-hover-color);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--button-bg);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    text-align: center;
    font-family: var(--font-body);
}

.btn:hover {
    background: var(--button-hover-bg);
    transform: translateY(-3px);
}

.btn:active {
    transform: translateY(1px);
}

input,
textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: var(--input-bg);
    font-family: var(--font-body);
    color: var(--text-color);
}

input::placeholder,
textarea::placeholder {
    color: #888;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: background 0.3s ease;
}

header.scrolled {
    background: var(--primary-gradient);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    color: #fff;
}

.nav-links {
    flex-wrap: wrap;
    display: flex;
    list-style: none;
    transition: all 0.3s ease;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
}

.burger div {
    width: 100%;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

.nav-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: var(--glass-bg);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: var(--breakpoint-sm)) {
    .nav-links {
        display: none;
    }

    .burger {
        display: flex;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: var(--primary-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero .btn {
    background: var(--accent-color);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: -1;
}

@media (max-width: var(--breakpoint-md)) {
    .hero h2 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

/* Features Section */
.features {
    background: var(--background-color);
    padding: 4rem 0;
}

.features .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.2);
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: 1rem;
}

.card p {
    font-size: 1rem;
}

/* Webinars Section */
.webinars {
    padding: 4rem 0;
    background: var(--secondary-gradient);
    color: #fff;
}

.webinars .carousel {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    scroll-snap-type: x mandatory;
}

.carousel-item {
    flex: 0 0 300px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.carousel-item:hover {
    transform: scale(1.05);
}

.carousel-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.carousel-item h3 {
    margin-bottom: 0.5rem;
}

.carousel-item p {
    font-size: 0.9rem;
}

/* Customer Stories Section */
.customer-stories {
    background: var(--background-color);
    padding: 4rem 0;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial::before {
    content: '“';
    font-size: 3rem;
    position: absolute;
    top: -10px;
    left: 10px;
    color: var(--accent-color);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial h4 {
    text-align: right;
    font-weight: 600;
}

/* Statistics Section */
.statistics {
    padding: 4rem 0;
    background: var(--primary-gradient);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1rem;
}

/* FAQ Section */
.faq {
    background: var(--background-color);
    padding: 4rem 0;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--card-bg);
    border-radius: 10px;
    margin-bottom: 1rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: max-height 0.3s ease;
}

.accordion-item h3 {
    cursor: pointer;
    position: relative;
}

.accordion-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-item.active h3::after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    margin-top: 1rem;
}

/* Behind the Scenes Section */
.behind-the-scenes {
    padding: 4rem 0;
    background: var(--secondary-gradient);
    color: #fff;
    text-align: center;
}

.behind-the-scenes img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    margin-top: 2rem;
}

/* Team Section */
.team {
    background: var(--background-color);
    padding: 4rem 0;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.member {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.member h3 {
    margin-bottom: 0.5rem;
}

.member p {
    font-size: 0.9rem;
    color: #555;
}

/* Sustainability Section */
.sustainability {
    padding: 4rem 0;
    background: var(--primary-gradient);
    color: #fff;
    text-align: center;
}

.sustainability img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    margin-top: 2rem;
}

/* Partners Section */
.partners {
    background: var(--background-color);
    padding: 4rem 0;
    text-align: center;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.partners-logos img {
    width: 150px;
    height: 100px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partners-logos img:hover {
    transform: scale(1.1);
}

/* External Links Section */
.external-links {
    padding: 4rem 0;
    background: var(--secondary-gradient);
    color: #fff;
    text-align: center;
}

.external-links .links-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.external-links a {
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.external-links a:hover {
    color: var(--accent-color);
}

/* Contact Section */
.contact {
    background: var(--background-color);
    padding: 4rem 0;
}

.contact-info {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

#contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

#contact-form button {
    width: 100%;
    background: var(--button-bg);
    color: #fff;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#contact-form button:hover {
    background: var(--button-hover-bg);
}

/* Footer Styles */
footer {
    background: var(--footer-bg);
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #fff;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-media a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-media a:hover {
    color: var(--accent-color);
    transform: scale(1.2);
}

footer p {
    font-size: 0.9rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

/* Glassmorphism Effect */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

/* Read More Links */
.read-more {
    color: var(--link-color);
    font-weight: 600;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.read-more::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.read-more:hover {
    color: var(--link-hover-color);
}

.read-more:hover::after {
    width: 100%;
}

/* Responsive Grid for Two-Third Columns */
.is-two-thirds {
    grid-column: span 2;
}

@media (max-width: var(--breakpoint-lg)) {
    .is-two-thirds {
        grid-column: span 1;
    }
}

/* Image Styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Animate.css Overrides */
.animate__animated {
    visibility: hidden;
}

.animate__fadeIn,
.animate__fadeInUp,
.animate__fadeInLeft,
.animate__fadeInRight,
.animate__fadeInDown {
    visibility: visible;
}

/* Parallax Scrolling (Optional) */
[data-parallax="scroll"] {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* Additional Styles for Buttons and Forms */
button,
input[type="submit"] {
    font-family: var(--font-body);
}

button:focus,
input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 5px var(--accent-color);
}

.success-page,
.privacy-policy,
.terms-of-use{
    padding: 10rem 0;
}


.cookie {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 100;
    color: #000;
}

.cookie__wrap {
    width: 100%;
    max-width: 50rem;
    background: #fff;
    border: 1px solid #fff;
    box-shadow: 0px 0px 30px 0px #000;
    padding: 2rem;
    border-radius: 0 3rem 0 0;
}

.cookie__text {
    margin: 0 0 2rem;
}

.cookie__title {
    text-transform: uppercase;
    font-size: 2rem;
    line-height: 2.4rem;
    margin: 0 0 1rem;
}

.cookie__buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .cookie__buttons {
        flex-direction: row;
    }
}

.cookie__buttons a,
.cookie__buttons button {
    color: #fff;
    background-color: #000;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    width: auto;
    border-radius: 5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    line-height: 1.2rem;
    display: block;
    transition: transform 0.3s;
}

body.pc .cookie__buttons a:focus,
body.pc .cookie__buttons a:hover,
body.mobile .cookie__buttons a:active,
body.pc .cookie__buttons button:focus,
body.pc .cookie__buttons button:hover,
body.mobile .cookie__buttons button:active {
    transform: scale(1.05);
}

.cookie__buttons a.other_back,
.cookie__buttons button.other_back {
    border: none;
    color: #fff;
    background-color: #000;
}