:root {
    --yellow: #F2BB05; /* Amber - Primary Accent */
    --caribbean: #404040; /* Onyx - Secondary Accent/Dark Text/BG on Light */
    --gunmetal: #000000; /* Black - Primary Text/Dark BG */
    --isabelline: #F9DD82; /* Jasmine - Light Section BG/Soft Contrast */
    --keppel: #F2BB05; /* Using Amber for Keppel's role for simplicity in a two-tone scheme */
    --white: #FFFFFF; /* White */
    --dark-gray: #404040; /* Onyx - Secondary Text/Muted */
    --light-gray: #808080; /* Gray - Muted Background/Divider */
    --border-light: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gunmetal);
    line-height: 1.7;
    background-color: var(--white);
    font-weight: 400;
    overflow-x: hidden;
    cursor: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--gunmetal);
}

section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--yellow);
    border-radius: 2px;
}

.section-title.text-start::after {
    left: 0;
    transform: none;
}

/* Enhanced Custom Cursor */
/* Enhanced Cursor Styles */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* Using var(--yellow) for the border with transparency */
    border: 2px solid rgba(242, 187, 5, 0.5);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border 0.4s ease,
        background 0.4s ease;
}

/* Hover States */
.cursor-hover {
    transform: scale(1.8);
    background: var(--yellow);
}

.cursor-follower-hover {
    transform: scale(1.3);
    border-color: var(--yellow);
    /* Using Amber with transparency: rgba(242, 187, 5, 0.1) */
    background: rgba(242, 187, 5, 0.1);
}

/* Click States */
.cursor-click {
    transform: scale(0.6);
    background: var(--caribbean);
}

.cursor-follower-click {
    transform: scale(0.9);
    border-color: var(--caribbean);
    /* Using Onyx with transparency: rgba(64, 64, 64, 0.1) */
    background: rgba(64, 64, 64, 0.1);
}

/* Link Hover State - Using Yellow/Amber as primary hover for links */
.cursor-link {
    transform: scale(1.5);
    background: var(--yellow);
}

.cursor-follower-link {
    transform: scale(1.2);
    border-color: var(--yellow);
    /* Using Amber with transparency: rgba(242, 187, 5, 0.1) */
    background: rgba(242, 187, 5, 0.1);
}

/* Text Hover State - Using Caribbean/Onyx for a darker accent on text */
.cursor-text {
    transform: scale(1.3);
    background: var(--caribbean);
}

.cursor-follower-text {
    transform: scale(1.1);
    border-color: var(--caribbean);
    /* Using Onyx with transparency: rgba(64, 64, 64, 0.1) */
    background: rgba(64, 64, 64, 0.1);
}

/* Magnetic Effect */
.cursor-magnetic {
    transform: scale(2.5);
    background: var(--caribbean);
}

.cursor-follower-magnetic {
    transform: scale(0.7);
    border-color: var(--caribbean);
    /* Using Onyx with transparency: rgba(64, 64, 64, 0.2) */
    background: rgba(64, 64, 64, 0.2);
}

/* Trail Effect */
.cursor-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    /* Using a softer Amber with transparency: rgba(242, 187, 5, 0.6) */
    background: rgba(242, 187, 5, 0.6);
    pointer-events: none;
    z-index: 9997;
    mix-blend-mode: difference;
}

/* Instructions */
.instructions {
    margin-top: 3rem;
    text-align: center;
    max-width: 600px;
}

.instructions h2 {
    margin-bottom: 1rem;
    color: var(--gunmetal);
}

.instructions p {
    margin-bottom: 0.5rem;
    color: var(--gunmetal);
    opacity: 0.8;
}

.cursor-states {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.state-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.state-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.state-default .state-color {
    background: var(--yellow);
}

.state-hover .state-color {
    background: var(--yellow);
}

.state-click .state-color {
    background: var(--caribbean);
}

.state-link .state-color {
    background: var(--yellow);
}

.state-text .state-color {
    background: var(--caribbean);
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--yellow);
    border-color: var(--yellow);
}

.btn-primary:hover {
    background-color: var(--caribbean);
    border-color: var(--caribbean);
    transform: translateY(-3px);
    /* Using Amber with transparency for box-shadow: rgba(242, 187, 5, 0.2) */
    box-shadow: 0 10px 20px rgba(242, 187, 5, 0.2);
}

.btn-light {
    background-color: var(--isabelline);
    border-color: var(--isabelline);
    color: var(--gunmetal);
}

.btn-light:hover {
    background-color: var(--white);
    border-color: var(--yellow);
    color: var(--gunmetal);
}

/* Navbar */
.navbar {
    background-color: transparent;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
    z-index: 1000;
}

.navbar.scrolled {
    /* Using Black for the scrolled background to maintain contrast */
    background: linear-gradient(135deg, var(--gunmetal) 0%, var(--caribbean) 100%);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--yellow);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--white);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    /* Using Gunmetal and Caribbean for a dark, sleek background */
    background: linear-gradient(135deg, var(--gunmetal) 0%, var(--caribbean) 100%);
    color: var(--white);
    padding: 180px 0 140px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    /* Using Amber with transparency: rgba(242, 187, 5, 0.1) */
    background: rgba(242, 187, 5, 0.1);
    /* animation: float 6s ease-in-out infinite; */
}

.floating-element:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {

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

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

/* Background Flow */
.background-flow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.flow-path {
    /* Using Amber with transparency: rgba(242, 187, 5, 0.1) */
    fill: none;
    stroke: rgba(242, 187, 5, 0.1);
    stroke-width: 2;
    stroke-dasharray: 10 10;
    animation: flow 20s linear infinite;
}

@keyframes flow {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 1000;
    }
}


/* Trusted By Section */
.trusted-by {
    padding: 60px 0;
    /* Using a lighter gray for a subtle contrast */
    background-color: var(--isabelline);
}

.logo-scroll {
    display: flex;
    animation: scroll 30s linear infinite;
}

.logo-scroll:hover {
    animation-play-state: paused;
}

.logo-item {
    flex-shrink: 0;
    margin: 0 30px;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-item:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Solutions Section */
.solutions {
    background-color: var(--isabelline);
    position: relative;
}



.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}



@media (min-width: 768px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}



@media (min-width: 992px) {
    .solutions-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}



.solution-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}



.solution-card::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 5px;

    /* Using Amber and Onyx for the gradient */
    background: linear-gradient(90deg, var(--yellow), var(--caribbean));

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.4s ease;

}



.solution-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);

}



.solution-card:hover::before {

    transform: scaleX(1);

}



.solution-icon {

    font-size: 2.5rem;

    color: var(--yellow);

    margin-bottom: 1.5rem;

    display: inline-block;

    transition: transform 0.3s ease;

}



.solution-card:hover .solution-icon {

    transform: scale(1.1) rotate(5deg);

}



/* Product Showcase - IMPROVED */
.product-showcase {
    position: relative;
}

.showcase-container {
    position: relative;
}

.showcase-item {
    margin-bottom: 80px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
    filter: blur(0);
}

.showcase-item:not(.active) {
    opacity: 0.5;
    filter: blur(2px);
    transform: translateY(20px);
}

.showcase-visual {
    height: 300px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    margin-bottom: 30px;
}

.showcase-placeholder {
    width: 100%;
    height: 100%;
    /* Using Amber and Onyx with transparency for the gradient */
    background: linear-gradient(45deg, rgba(242, 187, 5, 0.1), rgba(64, 64, 64, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gunmetal);
    font-weight: 500;
    font-size: 1.2rem;
    flex-direction: column;
}

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

@media (min-width: 768px) {
    .showcase-item {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .showcase-visual {
        flex: 1;
        margin-bottom: 0;
    }

    .showcase-content {
        flex: 1;
        text-align: left;
    }

    .showcase-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .showcase-item:nth-child(even) .showcase-content {
        text-align: right;
    }
}

/* Why Choose Us */
.why-choose-us {
    background-color: var(--gunmetal);
    color: var(--white);
}

.why-choose-us h1,
.why-choose-us h2,
.why-choose-us h3,
.why-choose-us h4,
.why-choose-us h5,
.why-choose-us h6 {
    color: var(--white);
}

.features-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 20px;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Using Amber with transparency for the gradient */
    background: linear-gradient(135deg, rgba(242, 187, 5, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--yellow);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

/* Testimonials */
.testimonials {
    /* Using Jasmine and a slightly lighter gray */
    background: linear-gradient(135deg, var(--isabelline) 0%, #f9f9f9 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-title h2 {
    font-weight: 700;
    color: var(--gunmetal);
    margin-bottom: 20px;
    position: relative;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    /* Using Amber and Onyx for the gradient */
    background: linear-gradient(to right, var(--yellow), var(--caribbean));
    border-radius: 2px;
}

/* Carousel Container */
.testimonial-carousel {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    padding: 0 20px;
}

/* Cards Container */
.testimonial-cards {
    position: relative;
    height: 400px;
    overflow: hidden;
}

/* Individual Card */
.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 10;
}

.testimonial-card.prev {
    opacity: 0;
    transform: translateX(-50px);
    z-index: 1;
}

.testimonial-card.next {
    opacity: 0;
    transform: translateX(50px);
    z-index: 1;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 5rem;
    /* Using Amber with transparency: rgba(242, 187, 5, 0.15) */
    color: rgba(242, 187, 5, 0.15);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    font-weight: 600;
    margin-top: 20px;
    color: var(--gunmetal);
    font-size: 1.1rem;
}

.testimonial-role {
    color: var(--yellow);
    font-size: 0.95rem;
    font-weight: 500;
}

.testimonial-company {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-top: 2px;
}

/* Rating Stars */
.testimonial-rating {
    color: var(--yellow);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

/* Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--yellow);
    transition: var(--transition);
    cursor: pointer;
}

.nav-btn:hover {
    background: var(--yellow);
    color: white;
    transform: translateY(-3px);
    /* Using Amber with transparency: rgba(242, 187, 5, 0.3) */
    box-shadow: 0 8px 20px rgba(242, 187, 5, 0.3);
}

.carousel-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    /* Using Amber with transparency: rgba(242, 187, 5, 0.3) */
    background: rgba(242, 187, 5, 0.3);
    transition: var(--transition);
    cursor: pointer;
}

.dot.active {
    background: var(--yellow);
    transform: scale(1.3);
}

/* Decorative Elements */
.decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.decoration-1 {
    width: 300px;
    height: 300px;
    background: var(--yellow);
    top: 10%;
    left: 5%;
}

.decoration-2 {
    width: 200px;
    height: 200px;
    background: var(--caribbean);
    bottom: 10%;
    right: 8%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .testimonial-cards {
        height: 450px;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 25px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .testimonial-cards {
        height: 500px;
    }

    .nav-btn {
        width: 50px;
        height: 50px;
    }
}

/* How It Works - IMPROVED */
.how-it-works {
    position: relative;
    padding: 80px 0;
    /* Using a lighter background */
    /* background: linear-gradient(135deg, var(--white) 0%, var(--isabelline) 100%); */
}

.section-title h2 {
    font-weight: 700;
    color: var(--gunmetal);
    margin-bottom: 20px;
    position: relative;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    /* Using Amber and Onyx for the gradient */
    background: linear-gradient(to right, var(--yellow), var(--caribbean));
    border-radius: 2px;
}

.process-step {
    position: relative;
    padding: 40px 0;
    transition: var(--transition);
    border-radius: 12px;
    margin-bottom: 10px;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, var(--white) 0%, var(--isabelline) 100%);
}

.step-number {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 70px;
    height: 70px;
    /* Using Amber and Onyx for the gradient */
    background: linear-gradient(135deg, var(--yellow), var(--caribbean));
    color: var(--white); /* Changed to white for better contrast on a dark gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    z-index: 2;
    /* Using Amber with transparency: rgba(242, 187, 5, 0.3) */
    box-shadow: 0 5px 15px rgba(242, 187, 5, 0.3);
    transition: var(--transition);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    /* Using Amber with transparency: rgba(242, 187, 5, 0.4) */
    box-shadow: 0 8px 20px rgba(242, 187, 5, 0.4);
}

.step-icon {
    font-size: 1.5rem;
    margin-left: 5px;
    opacity: 0.9;
}

.step-content {
    margin-left: 120px;
    padding-right: 20px;
}

.step-content h4 {
    font-weight: 600;
    color: var(--gunmetal);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.step-content h4:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--yellow);
    transition: var(--transition);
}

.process-step:hover .step-content h4:after {
    width: 100%;
}

.step-content p {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

.process-connector {
    position: absolute;
    top: 100px;
    left: 65px;
    bottom: 0;
    width: 3px;
    /* Using Amber and Onyx for the gradient */
    background: linear-gradient(to bottom, var(--yellow), var(--caribbean));
    z-index: 1;
    opacity: 0.7;
}

.process-step:last-child .process-connector {
    display: none;
}

/* Animation for staggered items */
.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        left: 20px;
        top: 20px;
    }

    .step-content {
        margin-left: 90px;
    }

    .process-connector {
        left: 50px;
    }

    .process-step {
        padding: 30px 0;
    }
}

/* Decorative elements */
.decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.decoration-1 {
    width: 200px;
    height: 200px;
    background: var(--yellow);
    top: 10%;
    left: 5%;
}

.decoration-2 {
    width: 150px;
    height: 150px;
    background: var(--caribbean);
    bottom: 10%;
    right: 5%;
}

/* Pricing */
.pricing {
    background-color: var(--isabelline);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    height: 100%;
    margin-bottom: 30px;
}

.pricing-card.featured {
    border: 2px solid var(--yellow);
    transform: scale(1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured:hover {
    transform: translateY(-10px);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--yellow);
    margin: 20px 0;
}

.price-period {
    color: var(--dark-gray);
    font-size: 1rem;
}

@media (min-width: 768px) {
    .pricing-card.featured {
        transform: scale(1.05);
    }

    .pricing-card.featured:hover {
        transform: scale(1.05) translateY(-10px);
    }
}

/* FAQ */
.faq {
    background-color: var(--isabelline);
    position: relative;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--gunmetal);
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    /* Using a lighter Amber with transparency: rgba(242, 187, 5, 0.1) */
    background: rgba(242, 187, 5, 0.1);
    color: var(--caribbean);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--yellow);
}

.accordion-button::after {
    /* Updated SVG fill color to use Caribbean/Onyx for the arrow, which looks better on light background */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23404040'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.25rem 1.5rem;
    color: var(--dark-gray);
}

/* Blog */
.blog {
    /* Using a lighter background */
    background: linear-gradient(135deg, var(--white) 0%, var(--isabelline) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-title h2 {
    font-weight: 700;
    color: var(--gunmetal);
    margin-bottom: 20px;
    position: relative;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    /* Using Amber and Onyx for the gradient */
    background: linear-gradient(to right, var(--yellow), var(--caribbean));
    border-radius: 2px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--yellow);
    z-index: 2;
}

.blog-card .card-body {
    padding: 1.75rem;
}

.blog-card .card-title {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-size: 1.25rem;
    color: var(--gunmetal);
    transition: var(--transition);
}

.blog-card:hover .card-title {
    color: var(--yellow);
}

.blog-card .card-text {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    color: var(--dark-gray);
}

.blog-meta .date {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.blog-meta .reading-time {
    display: flex;
    align-items: center;
}

.blog-meta i {
    margin-right: 5px;
    color: var(--yellow);
    font-size: 0.8rem;
}

.read-more {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    font-size: 0.95rem;
}

.read-more:hover {
    color: var(--caribbean);
    transform: translateX(5px);
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Decorative Elements */
.decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.decoration-1 {
    width: 250px;
    height: 250px;
    background: var(--yellow);
    top: 10%;
    left: 5%;
}

.decoration-2 {
    width: 180px;
    height: 180px;
    background: var(--caribbean);
    bottom: 10%;
    right: 5%;
}

/* Animation for staggered items */
.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* View All Button */
.view-all-container {
    text-align: center;
    margin-top: 40px;
}

.view-all-btn {
    /* Using Amber and Onyx for the gradient */
    background: var(--white);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    /* Using Amber with transparency: rgba(242, 187, 5, 0.3) */
    box-shadow: 0 5px 15px rgba(242, 187, 5, 0.3);
}

.view-all-btn:hover {
    transform: translateY(-3px);
    /* Using Amber with transparency: rgba(242, 187, 5, 0.4) */
    box-shadow: 0 8px 20px rgba(242, 187, 5, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .blog-image {
        height: 200px;
    }

    .blog-card .card-body {
        padding: 1.5rem;
    }
}

/* CTA */
.cta {
    /* Using Gunmetal and Caribbean for a dark, sleek background */
    background: linear-gradient(135deg, var(--gunmetal) 0%, var(--caribbean) 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
    padding: 120px 0;
}

.cta h1,
.cta h2,
.cta h3,
.cta h4,
.cta h5,
.cta h6 {
    color: var(--white);
}

/* Animated Background Elements */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: float 15s infinite ease-in-out;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 10%;
    animation-delay: 4s;
}

.shape-4 {
    width: 180px;
    height: 180px;
    bottom: 10%;
    right: 5%;
    animation-delay: 6s;
}

.shape-5 {
    width: 120px;
    height: 120px;
    top: 50%;
    right: 20%;
    animation-delay: 8s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

/* Pulsing Rings */
.pulse-ring {
    position: absolute;
    border: 6px solid rgba(235, 216, 10, 0.244);
    border-radius: 50%;
    animation: pulse 4s infinite ease-out;
    z-index: 1;
}

.pulse-ring-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.pulse-ring-2 {
    width: 500px;
    height: 500px;
    bottom: -250px;
    left: -250px;
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Moving Lines */
.moving-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.line {
    position: absolute;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    animation: moveLine 20s infinite linear;
}

.line-1 {
    top: 20%;
    width: 100px;
    animation-delay: 0s;
}

.line-2 {
    top: 40%;
    width: 150px;
    animation-delay: 5s;
}

.line-3 {
    top: 60%;
    width: 200px;
    animation-delay: 10s;
}

.line-4 {
    top: 80%;
    width: 120px;
    animation-delay: 15s;
}

@keyframes moveLine {
    0% {
        left: -200px;
    }
    100% {
        left: 100%;
    }
}

/* Content Styling */
.cta-content {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta .lead {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-button {
    background: rgba(255, 255, 255, 0.95);
    color: var(--yellow);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.cta-button:hover {
    background-color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    color: var(--gunmetal);
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s;
}

.cta-button:hover:before {
    left: 100%;
}

/* Animation for text elements */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.fade-in:nth-child(1) {
    animation-delay: 0.2s;
}

.fade-in:nth-child(2) {
    animation-delay: 0.5s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.8s;
}

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

/* Stats Section */
.stats {
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cta {
        padding: 80px 0;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta .lead {
        font-size: 1.1rem;
    }

    .shape {
        display: none;
    }
}
/* Footer */
footer {
    background-color: var(--gunmetal);
    position: relative;
    color: var(--white);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow), var(--yellow));
}

footer a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
    display: inline-block;
}

footer a:hover {
    color: var(--white);
    transform: translateX(3px);
}

footer h6 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-logo {
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1.5s ease-in-out;
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 767.98px) {
    section {
        padding: 60px 0;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
    }
}

/* Disable custom cursor on mobile */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }
}


@media (max-width: 1260px) {
    .feature_img {
        width: 100% !important;
    }
}
