:root {
    --primary-purple: #6a0dad;
    --light-purple: #9370db;
    --dark-purple: #4a007a;
    --accent-orange: #ff7f50;
    --white: #ffffff;
    --light-grey: #f4f4f4;
    --dark-text: #333333;
    --light-text: #f0f0f0;
    --gradient-pink: linear-gradient(135deg, #ff69b4, #ff1493);
    --gradient-purple: linear-gradient(135deg, #8a2be2, #4b0082);
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.3);
    --border-radius: 8px;
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-purple);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
}

h4 {
    font-size: clamp(1.25rem, 3vw, 1.8rem);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--light-purple);
}

ul {
    list-style: none;
}

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

.text-center {
    text-align: center;
}

.sub-heading {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    overflow: hidden;
    text-overflow: ellipsis;
    border: none;
}

.btn-primary {
    background-color: var(--primary-purple);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-purple);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--light-grey);
    color: var(--primary-purple);
    border: 1px solid var(--primary-purple);
}

.btn-secondary:hover {
    background-color: var(--primary-purple);
    color: var(--white);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.header-nav {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: background-color var(--transition-speed) ease;
}

.header-nav.transparent-on-load {
    background-color: transparent;
}

.header-nav.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px var(--shadow-light);
}

.header-nav.scrolled .logo-link .site-name {
    color: var(--dark-purple);
}

.header-nav.scrolled .nav-item {
    color: var(--dark-text);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    height: 40px;
    width: auto;
}

.site-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(1.25rem, 2.5vw, 1.8rem);
    color: var(--white);
    transition: color var(--transition-speed);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-item {
    color: var(--white);
    font-weight: 600;
    padding: 0.5rem 0;
    transition: color var(--transition-speed);
}

.nav-item:hover {
    color: var(--accent-orange);
}

.burger-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--white);
    padding: 0.5rem;
}

.burger-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    position: relative;
    transition: background-color 0.3s ease;
}

.burger-icon::before, .burger-icon::after {
    content: '';
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    position: absolute;
    transition: transform 0.3s ease, top 0.3s ease;
}

.burger-icon::before {
    top: -8px;
}

.burger-icon::after {
    top: 8px;
}

.burger-toggle.active .burger-icon {
    background-color: transparent;
}

.burger-toggle.active .burger-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.burger-toggle.active .burger-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

.header-nav.scrolled .burger-icon, .header-nav.scrolled .burger-icon::before, .header-nav.scrolled .burger-icon::after {
    background-color: var(--dark-purple);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: clamp(2.2rem, 6vw, 4.5rem) !important;
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards ease-out;
}

.fade-in-up.delay-1 {
    animation-delay: 0.2s;
}

.fade-in-up.delay-2 {
    animation-delay: 0.4s;
}

.fade-in-up.delay-3 {
    animation-delay: 0.6s;
}

.fade-in-up.delay-4 {
    animation-delay: 0.8s;
}

.fade-in-up.delay-5 {
    animation-delay: 1s;
}

.fade-in-up.delay-6 {
    animation-delay: 1.2s;
}

.fade-in-up.delay-7 {
    animation-delay: 1.4s;
}

.fade-in-up.delay-8 {
    animation-delay: 1.6s;
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s forwards ease-out;
}

.slide-in-left.delay-1 {
    animation-delay: 0.2s;
}

.slide-in-left.delay-2 {
    animation-delay: 0.4s;
}

.slide-in-left.delay-3 {
    animation-delay: 0.6s;
}

.slide-in-left.delay-4 {
    animation-delay: 0.8s;
}

.slide-in-left.delay-5 {
    animation-delay: 1s;
}

.slide-in-left.delay-6 {
    animation-delay: 1.2s;
}

.slide-in-left.delay-7 {
    animation-delay: 1.4s;
}

.slide-in-left.delay-8 {
    animation-delay: 1.6s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s forwards ease-out;
}

.slide-in-right.delay-1 {
    animation-delay: 0.2s;
}

.slide-in-right.delay-2 {
    animation-delay: 0.4s;
}

.slide-in-right.delay-3 {
    animation-delay: 0.6s;
}

.slide-in-right.delay-4 {
    animation-delay: 0.8s;
}

.slide-in-right.delay-5 {
    animation-delay: 1s;
}

.slide-in-right.delay-6 {
    animation-delay: 1.2s;
}

.slide-in-right.delay-7 {
    animation-delay: 1.4s;
}

.slide-in-right.delay-8 {
    animation-delay: 1.6s;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s forwards ease-out;
}

.fade-in.delay-1 {
    animation-delay: 0.2s;
}

.fade-in.delay-2 {
    animation-delay: 0.4s;
}

.fade-in.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Sections */
section {
    padding: 6rem 0;
}

/* About Section */
.about-section {
    background-color: var(--white);
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.about-left, .about-right {
    flex: 1;
    min-width: 300px;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.badge-gradient {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-pink);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-right h2 {
    color: var(--primary-purple);
}

.about-right ul {
    margin-top: 1.5rem;
}

.about-right ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--dark-text);
}

.about-right ul li i {
    color: var(--accent-orange);
    font-size: 1.2rem;
}

/* Services Section */
.services-section {
    background-color: var(--light-grey);
    position: relative;
    overflow: hidden;
}

.shapes-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173.2px solid rgba(255, 105, 180, 0.1);
    opacity: 0.3;
    animation: floatShape 15s infinite ease-in-out alternate;
}

.shape-1 {
    top: 10%;
    left: 5%;
    transform: rotate(30deg);
    animation-delay: 0s;
}

.shape-2 {
    top: 60%;
    right: 10%;
    transform: rotate(120deg);
    animation-delay: 5s;
}

.shape-3 {
    bottom: 20%;
    left: 30%;
    transform: rotate(210deg);
    animation-delay: 10s;
}

@keyframes floatShape {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; }
    50% { transform: translate(20px, 30px) rotate(45deg); opacity: 0.5; }
    100% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; }
}

.services-section .container {
    position: relative;
    z-index: 1;
}

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

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px var(--shadow-light);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 250px;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.outlined-icon {
    width: 70px;
    height: 70px;
    border: 2px solid var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

.service-card:hover .outlined-icon {
    background-color: var(--primary-purple);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--dark-purple);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
    flex-grow: 1;
}

/* Features Section */
.features-section {
    background-color: var(--white);
}

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

.feature-item {
    background-color: var(--light-grey);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    transition: color var(--transition-speed);
}

.feature-item h3 {
    font-size: 1.4rem;
    color: var(--dark-purple);
    margin-bottom: 0.8rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: #666;
}

.features-grid.dimmed .feature-item:not(.highlighted) {
    opacity: 0.4;
    transform: scale(0.95);
}

.features-grid .feature-item.highlighted {
    transform: scale(1.05);
    box-shadow: 0 10px 25px var(--shadow-dark);
    background-color: var(--primary-purple);
}

.features-grid .feature-item.highlighted i,
.features-grid .feature-item.highlighted h3,
.features-grid .feature-item.highlighted p {
    color: var(--white);
}

/* Portfolio Section */
.portfolio-section {
    background-color: var(--light-grey);
}

.portfolio-timeline-container {
    overflow-x: auto;
    padding-bottom: 2rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-purple) var(--light-grey);
}

.portfolio-timeline-container::-webkit-scrollbar {
    height: 8px;
}

.portfolio-timeline-container::-webkit-scrollbar-track {
    background: var(--light-grey);
    border-radius: 10px;
}

.portfolio-timeline-container::-webkit-scrollbar-thumb {
    background-color: var(--primary-purple);
    border-radius: 10px;
    border: 2px solid var(--light-grey);
}

.timeline-track {
    display: flex;
    position: relative;
    padding: 3rem 0;
    min-width: max-content; /* Ensures content doesn't wrap */
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--light-purple);
    transform: translateY(-50%);
}

.timeline-item {
    flex: 0 0 350px;
    margin: 0 1.5rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px var(--shadow-light);
    text-align: center;
    position: relative;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.timeline-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.timeline-marker {
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: var(--primary-purple);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid var(--white);
    z-index: 2;
}

.timeline-item:first-child .timeline-marker {
    left: 0;
}

.timeline-item:last-child .timeline-marker {
    left: calc(100% - 20px);
}

.portfolio-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.timeline-item h3 {
    font-size: 1.25rem;
    color: var(--dark-purple);
    margin-bottom: 0.5rem;
}

.timeline-item p {
    font-size: 0.9rem;
    color: #666;
}

/* Stats Section */
.stats-section {
    background-color: var(--dark-purple);
    color: var(--white);
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.stats-section .dark-overlay {
    background-color: rgba(0, 0, 0, 0.7);
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stats-section h2, .stats-section p {
    color: var(--white);
}

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

.stats-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.stats-item i {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.stats-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    display: block;
}

.orange-divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-orange);
    margin: 1rem auto;
}

.stats-label {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 0;
}

/* How It Works Section */
.howitworks-section {
    background-color: var(--white);
}

.howitworks-flow-container {
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--light-purple) var(--light-grey);
}

.howitworks-flow-container::-webkit-scrollbar {
    height: 8px;
}

.howitworks-flow-container::-webkit-scrollbar-track {
    background: var(--light-grey);
    border-radius: 10px;
}

.howitworks-flow-container::-webkit-scrollbar-thumb {
    background-color: var(--light-purple);
    border-radius: 10px;
    border: 2px solid var(--light-grey);
}

.horizontal-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    min-width: max-content;
    padding: 2rem 0;
}

.step-item {
    flex: 0 0 250px;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--light-grey);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-dark);
}

.step-item i {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.step-item h4 {
    font-size: 1.2rem;
    color: var(--dark-purple);
    margin-bottom: 0.5rem;
}

.step-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

.flow-arrow {
    flex-shrink: 0;
    font-size: 2rem;
    color: var(--light-purple);
    opacity: 0.7;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-grey);
}

.testimonials-list {
    display: grid;
    grid-template-columns: repeat(2,  1fr);
    gap: 2rem;
}

.testimonial-item {
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
}

.testimonial-item.bg-light-grey {
    background-color: var(--light-grey);
}

.testimonial-item.bg-white {
    background-color: var(--white);
}

.star-rating {
    color: var(--accent-orange);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-style: italic;
    color: var(--dark-text);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
}

.faq-panel {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--light-grey);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px var(--shadow-light);
    padding: 2rem;
}

.search-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--dark-purple);
    margin-bottom: 0;
    padding: 0.5rem 0;
}

.faq-question i {
    transition: transform var(--transition-speed);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
    opacity: 0;
    color: #555;
    padding-top: 0.5rem;
    margin-bottom: 0;
}

.faq-answer.open {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
}

/* Contact Section */
.contact-section {
    background-color: var(--primary-purple);
    color: var(--white);
}

.contact-section h2, .contact-section p {
    color: var(--white);
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--light-text);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1rem;
    transition: border-color var(--transition-speed), background-color var(--transition-speed);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    border-color: var(--accent-orange);
    background-color: rgba(255, 255, 255, 0.15);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    background-color: var(--accent-orange);
    color: var(--white);
}

.btn-submit:hover {
    background-color: #e66a3d;
}

/* Footer Section */
.footer-section {
    background-color: var(--dark-purple);
    color: var(--light-text);
    padding: 4rem 0 2rem;
    margin-bottom: 0; /* Adjust for cookie banner */
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col .logo-link {
    margin-bottom: 1rem;
}

.footer-col .site-name {
    color: var(--white);
}

.footer-col p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col h4 {
    color: var(--accent-orange);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--light-text);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--accent-orange);
}

.footer-widgets-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-widgets-container > div {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--light-text);
    background-color: rgba(255, 255, 255, 0.08);
    padding: 0.7rem 1rem;
    border-radius: var(--border-radius);
}

.footer-widgets-container > div i {
    color: var(--accent-orange);
    font-size: 1.2rem;
}

.footer-widgets-container strong {
    font-weight: 600;
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-purple);
    color: var(--white);
    padding: 1rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    flex-grow: 1;
    color: var(--light-text);
}

.cookie-banner p a {
    color: var(--accent-orange);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.8rem;
}

.cookie-banner .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
    overflow-y: auto;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    transition: transform 0.3s ease-out;
}

.cookie-modal.show .cookie-modal-content {
    transform: translateY(0);
}

.cookie-modal-content h3 {
    color: var(--dark-purple);
    margin-bottom: 1rem;
}

.cookie-modal-content p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.cookie-category {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-category input[type="checkbox"] {
    margin-right: 0.8rem;
    transform: scale(1.2);
}

.cookie-category label {
    font-weight: 600;
    color: var(--dark-text);
}

.cookie-category small {
    font-weight: 400;
    color: #777;
    margin-left: 0.5rem;
}

.cookie-modal-content .btn {
    margin-top: 1.5rem;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: 0 5px 15px var(--shadow-light);
        padding: 1rem 0;
        border-top: 1px solid #eee;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-item {
        color: var(--dark-text);
        padding: 0.8rem 1.5rem;
        border-bottom: 1px solid #eee;
        width: 100%;
        text-align: left;
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .burger-toggle {
        display: block;
    }

    .header-nav.scrolled .burger-icon, .header-nav.scrolled .burger-icon::before, .header-nav.scrolled .burger-icon::after {
        background-color: var(--dark-purple);
    }

    .header-nav.scrolled .burger-toggle {
        color: var(--dark-purple);
    }

    .header-nav:not(.scrolled) .burger-icon, .header-nav:not(.scrolled) .burger-icon::before, .header-nav:not(.scrolled) .burger-icon::after {
        background-color: var(--white);
    }

    .header-nav:not(.scrolled) .burger-toggle {
        color: var(--white);
    }

    .about-grid {
        flex-direction: column;
    }

    .about-image {
        height: 300px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .howitworks-flow-container {
        overflow-x: scroll;
    }

    .horizontal-flow {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .step-item {
        flex-shrink: 0;
        width: 200px;
    }

    .testimonials-list {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-banner .btn {
        flex: 1;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem; /* Mobile heading size */
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .site-name {
        font-size: 1.25rem;
    }

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

    section {
        padding: 4rem 0;
    }

    .about-image {
        height: 250px;
    }

    .badge-gradient {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .service-card {
        min-height: 220px;
    }

    .outlined-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .stats-number {
        font-size: 2.8rem;
    }

    .stats-label {
        font-size: 1rem;
    }

    .step-item {
        width: 180px;
        padding: 1rem;
    }

    .flow-arrow {
        font-size: 1.5rem;
    }

    .faq-panel {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col ul {
        padding: 0;
    }

    .footer-col ul li {
        display: inline-block;
        margin: 0 0.5rem 0.5rem;
    }

    .footer-col .logo-link {
        justify-content: center;
    }

    .footer-widgets-container {
        align-items: center;
    }

    .cookie-banner p {
        text-align: center;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-modal-content {
        padding: 1.5rem;
    }

    .cookie-modal-content h3 {
        font-size: 1.25rem;
    }

    .cookie-category label {
        font-size: 0.9rem;
    }

    .cookie-category small {
        display: block;
        margin-left: 0;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }

    .stats-number {
        font-size: 2.2rem;
    }

    .stats-label {
        font-size: 0.9rem;
    }

    .step-item {
        width: 150px;
    }

    .footer-col ul li {
        margin: 0 0.3rem 0.3rem;
    }

    .cookie-banner .btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}
/* Base styles for the content grid container */
.securePolicyGrid {
    padding: 60px 20px; /* Top/bottom and left/right padding */
    max-width: 1200px; /* Max width for content to prevent it from stretching too wide */
    margin: 0 auto; /* Center the container on the page */
}

/* Heading styles */
.securePolicyGrid h1 {
    font-size: 1.2rem; /* H1 font size, not too large */
    line-height: 1.2; /* Line height for readability */
    font-weight: 700; /* Bold font weight */
    margin-top: 2.5rem; /* Top margin for spacing */
    margin-bottom: 1.5rem; /* Bottom margin for spacing */
}

.securePolicyGrid h2 {
    font-size: 1.1rem; /* H2 font size */
    line-height: 1.3;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1.2rem;
}

.securePolicyGrid h3 {
    font-size: 1.1rem; /* H3 font size */
    line-height: 1.4;
    font-weight: 600;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
}

.securePolicyGrid h4 {
    font-size: 1.1rem; /* H4 font size */
    line-height: 1.5;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.securePolicyGrid h5 {
    font-size: 1.1rem; /* H5 font size */
    line-height: 1.6;
    font-weight: 500;
    margin-top: 1.25rem;
    margin-bottom: 0.6rem;
}

/* Paragraph styles */
.securePolicyGrid p {
    font-size: 1rem; /* Base paragraph font size */
    line-height: 1.7; /* Line height for readability */
    margin-bottom: 1rem; /* Bottom margin for paragraph spacing */
}

/* Unordered list styles */
.securePolicyGrid ul {
    list-style-type: disc; /* Default bullet style */
    margin-top: 1.5rem; /* Top margin for list spacing */
    margin-bottom: 1.5rem; /* Bottom margin for list spacing */
    padding-left: 25px; /* Indentation for bullet points */
}

/* List item styles */
.securePolicyGrid li {
    font-size: 1rem; /* List item font size */
    line-height: 1.7; /* Line height for readability */
    margin-bottom: 0.5rem; /* Spacing between list items */
}

/* Optional: Remove bottom margin from the last element if it's a paragraph or list */
.securePolicyGrid p:last-child,
.securePolicyGrid ul:last-child,
.securePolicyGrid li:last-child {
    margin-bottom: 0;
}


.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  flex: 1 1 calc(33.333% - 30px);
  max-width: 360px;
  text-align: center;
}

@media (max-width: 991px) {
  .service-card {
    flex: 1 1 calc(50% - 30px);
  }
}

@media (max-width: 576px) {
  .service-card {
    flex: 1 1 100%;
  }
}

#hero, #about, #services, #features, #portfolio, #stats, #how-it-works, #testimonials, #faq, #contact{
    overflow: hidden !important;
}