:root {
    --color-primary-pink: #FF69B4;
    /* Hot Pink from logo */
    --color-primary-purple: #8A2BE2;
    /* BlueViolet from logo */
    --color-primary-orange: #FFA500;
    /* Orange from logo */
    --color-primary-green: #32CD32;
    /* LimeGreen (approx from logo) */
    --color-primary-blue: #00BFFF;
    /* DeepSkyBlue (approx from other logo variant) */

    --color-text: #333;
    --color-text-light: #555;
    --color-background: #FFFFFF;
    --color-border: #E0E0E0;
    --border-radius-main: 12px;
    /* Rounded corners like logo */
    --border-radius-small: 8px;
}

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

body {
    font-family: 'Inter', Arial, sans-serif;
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
}

.page-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 40px;
}

.container{
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    transition: box-shadow 0.3s ease-in-out;
    /* Added for smooth shadow transition */
}

.navbar-scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Example shadow, adjust as needed */
}

.navbar-wrapper {
    max-width: 1300px;
    width: 100%;
    padding: 0 20px;
}

.navbar-content-container {
    display: flex;
    align-items: center;
    padding: 15px 0;
    position: relative;
    justify-content: space-between;
}

.logo-container {
    flex-shrink: 0;
    min-width: 140px;
}

.logo-container img {
    height: 36px;
    display: block;
}

.nav-links-wrapper {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-links-group {
    display: flex;
    align-items: center;
    background-color: #F0F0F0;
    padding: 10px 25px;
    border-radius: 50px;
    gap: 28px;

}

.nav-links-group a {
    text-decoration: none;
    color: var(--color-text-light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links-group a:hover {
    color: var(--color-primary-purple);
}

.nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 6px;
}


.dropdown-arrow {
    font-size: 0.7em;
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}


.btn-outline-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px solid var(--color-primary-purple);
    color: var(--color-primary-purple);
    background-color: transparent;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: 15px;
}

.nav-actions .btn {

    padding: 10px 20px;
    border-radius: var(--border-radius-small);
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;

}

.btn-text-link {
    color: var(--color-text);
    font-size: 0.95rem;
}

.btn-text-link:hover {
    color: var(--color-primary-purple);
    background-color: rgba(138, 43, 226, 0.05);
}

.btn-outline-primary:hover {
    background-color: var(--color-primary-purple);
    color: white;
    box-shadow: 0 2px 8px rgba(138, 43, 226, 0.3);
}

.btn-outline-primary:hover .btn-icon {
    transform: translateX(3px);
}

.btn-outline-primary .btn-icon {
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

/* Mobile Navigation Styles */
.burger-menu {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--color-background);
    padding: 80px 20px 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .nav-links-group {
    flex-direction: column;
    background: none;
    padding: 0;
    gap: 20px;
}

.mobile-menu .nav-links-group a {
    font-size: 1.1rem;
    padding: 10px 0;
    width: 100%;
    text-align: left;
}

.mobile-menu .nav-actions {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
    gap: 15px;
}

.mobile-menu .nav-actions .btn {
    margin: 0;
    width: 100%;
    text-align: center;
}

.main-section {
    text-align: center;
    padding-top: 100px;
}

.content-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1E1F24;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.content-header h1 .highlight {
    color: var(--color-primary-purple);
}

.content-header p.subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.hero-cta .btn.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), 0 1px 4px rgba(138, 43, 226, 0.2);
}

.hero-cta .btn.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(138, 43, 226, 0.3);
    background-position: 100% 50%;
}

.hero-cta .btn.btn-primary {
    padding: 16px 38px;
    font-size: 1.15rem;
    border-radius: var(--border-radius-small);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    background-image: linear-gradient(45deg, var(--color-primary-purple) 0%, var(--color-primary-pink) 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(138, 43, 226, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-position 0.4s ease;
    background-size: 150% auto;
    background-position: 0% 50%;
}

.banner-area {
    position: relative;
    max-width: 1200px;
    margin: 60px auto 0 auto;
}

.pattern-shape {
    position: absolute;
    opacity: 0.9;
    width: 150px;
    height: 200px;
    border-radius: 30px;
}

.shape-purple {
    background-color: #8A38F5;
    width: 180px;
    height: 240px;
    top: -60px;
    left: -80px;
    transform: rotate(-25deg);
}

.shape-blue {
    background-color: #0C8CE9;
    width: 140px;
    height: 190px;
    top: -40px;
    right: -70px;
    transform: rotate(15deg);
}

.shape-red {
    background-color: #F316B0;
    width: 220px;
    height: 160px;
    bottom: -70px;
    left: 20%;
    transform: rotate(10deg) skewX(-10deg);
}

.shape-orange {
    background-color: #F65009;
    width: 130px;
    height: 170px;
    bottom: -50px;
    right: -60px;
    transform: rotate(-10deg) skewY(10deg);
}

.video-wrapper-container {
    position: relative;
    z-index: 1;
}

.video-wrapper-container {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    background-color: white;
    border-radius: var(--border-radius-main);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}


.video-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* touch-action: none; */
}

video {
    width: 100%;
    height: auto;
    display: block;
}

.responsive-image {
    width: 200%;
    height: auto;
    display: none;
    animation: slideRight 4s linear infinite alternate-reverse;
    user-select: none;
    -webkit-user-drag: none;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.features-section {
    padding-top: 40px;
    padding-bottom: 1px;
    position: relative;
    background-color: #FAF7FD;
}


.features-title-area {
    text-align: center;
    padding: 80px 20px 70px 20px;
    position: relative;
    overflow: hidden;
    background-color: #FDFEFF;
    margin-top: 150px;
    margin-bottom: 65px;
}

.features-title-area h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    line-height: 1.25;
    background: linear-gradient(90deg, var(--color-primary-purple) 0%, var(--color-primary-pink) 70%, var(--color-primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.features-title-area .section-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.features-title-area::before {
    content: "";
    position: absolute;
    width: 70vw;
    height: 400px;
    background-color: var(--color-primary-blue);
    opacity: 0.08;
    border-radius: 150px 300px 200px 350px / 250px 200px 300px 180px;
    transform: rotate(-25deg) translate(-40%, -30%);
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}


@keyframes slideRight {
    0% {
        transform: translate3d(-50%, 0, 0);
    }

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

.image-pattern{
    width: 100%;
    margin-top: 20px;
}

.show-desktop{
    display: block;
}

.show-mobile{
    display: none;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .nav-links-wrapper {
        display: none;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-left: auto;
    }

    .nav-actions .btn-text-link {
        display: none;
    }

    .burger-menu {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .content-header h1 {
        font-size: 2.5rem;
    }

    .responsive-image {
        display: block;
    }

    video {
        display: none;
    }

    .features-title-area {
        padding: 60px 15px 50px 15px;
        margin-top: 70px;
        margin-bottom: 0px;
    }
    
    .main-section {
        text-align: center;
        padding-top: 60px;
    }

    .image-pattern{
       display: none;
    }

    .show-desktop{
        display: none !important;
    }

    .show-mobile{
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .banner-area {
        margin-top: 40px;
    }

    .pattern-shape {
        opacity: 0.6;
        border-radius: 25px;
    }

    .shape-purple {
        top: -30px;
        left: -20px;
        width: 90px;
        height: 130px;
        transform: rotate(-20deg);
    }

    .shape-blue {
        top: -20px;
        right: -5px;
        width: 80px;
        height: 110px;
        transform: rotate(15deg);
    }

    .shape-red {
        bottom: -30px;
        /* Adjust as needed, maybe hide one */
        display: none;
    }

    /* Example: hiding one */
    .shape-orange {
        bottom: -25px;
        right: -10px;
        width: 70px;
        height: 100px;
        transform: rotate(-10deg);
    }

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

    .features-title-area::before {
        width: 90vw;
        height: 300px;
        transform: rotate(-20deg) translate(-50%, -35%);
        opacity: 0.06;
    }

    .features-title-area h2 {
        font-size: 2.4rem;
    }

    .features-section .section-subtitle {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {

    .features-title-area h2 {
        font-size: 2.1rem;
    }

    .features-title-area::before {
        opacity: 0.05;
    }

    .nav-actions .btn-outline-primary {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .features-title-area .section-subtitle {
        font-size: 1.1rem;
    }
}

.feature-section {
    padding: 80px 0;
    overflow: hidden;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .feature-title {
        font-size: 2.4rem;
    }

    .feature-description {
        font-size: 1rem;
    }

    .feature-item {
        padding: 40px;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-text-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .feature-title::before {
        left: 50%;
        /* Center the accent line */
        transform: translateX(-50%);
    }

    .image-showcase-wrapper {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
        /* No tilt on mobile for simplicity */
    }

    .questions-cta-container {
        flex-direction: column;
        min-height: auto;
    }

    .questions-cta-graphic-wrapper {
        flex-basis: 200px !important;
        width: 100%;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .questions-cta-graphic {
        background-size: 250% 250%;
    }

    .questions-cta-content {
        padding: 30px 30px 40px 30px;
        text-align: center;
    }

    .questions-cta-content h2 {
        font-size: 1.8rem;
    }

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

    .btn-cta-contact {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}


.features-section .feature-item:nth-child(even) {
    background-color: #FAF7FD;
}


.image-showcase {
    position: relative;
    padding: 10px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}


.image-showcase img {
    display: block;
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.questions-cta-section {
    padding: 80px 0;
}

.questions-cta-container {
    display: flex;
    align-items: center;
    background-color: #FAF7FD;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    min-height: 200px;
}


.questions-cta-graphic-wrapper {
    flex: 0 0 35%;
    align-self: stretch;
    position: relative;
    padding: 20px;
}

.questions-cta-graphic {
    width: 100%;
    height: 100%;
    background-color: inherit;
    position: relative;
    overflow: hidden;
}

.questions-cta-content {
    flex-grow: 1;
    padding: 40px 50px;
    text-align: left;
    color: #333;
}

.questions-cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1E1F24;
    margin-bottom: 15px;
}

.questions-cta-content p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
    max-width: 450px;
}

.btn-cta-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background-color: var(--color-primary-orange);
    color: white;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
    transition: all 0.3s ease;
}

.video-container {
   display: flex;
    overflow: auto;
 
}


.feature-item-split {

    margin: 0 auto 60px auto;
    padding: 50px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background-color: #FDFEFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item-split:nth-child(odd) {
    border: 1px solid #f4eaff; 
}

/* Hover effect for the entire card (optional) */
/*
.feature-item-split:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}
*/

/* Text column styling */
.feature-item-split .feature-text-column {
    /* Grid order will be handled by :nth-child */
    text-align: left;
}

.feature-item-split .feature-color-block {}

.feature-item-split .feature-text-column h3 {
    font-size: 2.4rem;
    /* Title size */
    color: #1E1F24;
    /* Dark title color */
    margin-bottom: 25px;
    /* Space below title */
    font-weight: 700;
         
line-height: 1.3;
    position: relative;
    /* For the accent line */
    padding-bottom: 10px;
    /* Space for accent line */
}

/* Accent line below the title */
.feature-item-split .feature-text-column h3::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    /* Width of the accent line */
    height: 4px;
    /* Thickness of the accent line */
    background-image: linear-gradient(45deg, var(--color-primary-purple) 0%, var(--color-primary-pink) 100%);
    border-radius: 2px;
}

.feature-item-split .feature-text-column {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Image column styling */
.feature-item-split .feature-image-column {
    /* Grid order will be handled by :nth-child */
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-item-split .image-showcase {
    position: relative;
    width: 100%;
}

.feature-item-split .image-showcase img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-item-split:hover .image-showcase img {
    /* transform: perspective(1200px) rotateY(0deg) rotateX(0deg) scale(1.02); */
    box-shadow: 0 20px 45px -12px rgba(0, 0, 0, 0.2), 0 10px 20px -10px rgba(0, 0, 0, 0.12);
}


.feature-item-split:nth-child(even) {
    background-color: #F8F9FA;
    /* Slightly different background for variety */
}

.feature-item-split:nth-child(even) .feature-text-column {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

/* .feature-item-split:nth-child(even) .feature-image-column {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
} */

.feature-item-split.reverse .feature-image-column {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.features-diagram-section {
    text-align: center;
    width: 100%;
    margin-top: 30px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    /* Darker text for heading */
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #8A2BE2, #FF1493);
    /* Purple to Pink gradient */
    margin: 15px auto 0;
    border-radius: 2px;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.feature-pill {
    background: #ffffff;
    color: #4A00E0;
    padding: 18px 30px;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 160px;
    height: 130px;
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.15);
    border: 1px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: default;
    opacity: 1;
    transform: translateY(20px);
}

.feature-pill i {
    font-size: 2.2rem;
    /* Larger icons */
    margin-bottom: 12px;
    /* Space between icon and text */
    background: linear-gradient(45deg, #8A2BE2, #FF1493);
    /* Gradient for icons */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.feature-pill span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #555;
    /* Slightly lighter text color for feature name */
}

.feature-pill:hover {
    border-color: #8A2BE2;
    /* Purple border on hover */
}

/* Optional: Core feature styling if you decide to use it */
.feature-pill.core-feature {
    background: linear-gradient(135deg, #8A2BE2, #6A0DAD);
    /* Purple gradient */
    color: white;
    min-width: 200px;
    /* Make it stand out a bit more */
    grid-column: 1 / -1;
    /* Make it span full width if in a grid */
    margin-bottom: 30px;
    /* Space it out if used */
}

.feature-pill.core-feature i,
.feature-pill.core-feature span {
    color: white;
    -webkit-text-fill-color: white;
    /* Override gradient for core feature icon */
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .feature-pill {
        min-width: 140px;
        height: 120px;
        padding: 15px 20px;
    }

    .feature-pill i {
        font-size: 1.8rem;
    }

    .feature-pill span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .features-container {
        gap: 15px;
    }

    .feature-pill {
        min-width: calc(50% - 10px);
        /* Two items per row on small screens */
        flex-basis: calc(50% - 10px);
        height: 110px;
    }

    .feature-pill i {
        font-size: 1.6rem;
    }
}

/* Responsive adjustments for feature items */
@media (max-width: 992px) {
    .feature-item-split {
        gap: 40px;
    }

    .feature-item-split .feature-text-column h3 {
        font-size: 2.1rem;
    }
}

@media (max-width: 768px) {

    .feature-item-split,
    .feature-item-split:nth-child(even) {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
        margin-bottom: 40px;
        /* border: 1px solid #f4eaff; */
    }

    .feature-item-split .feature-text-column,
    .feature-item-split:nth-child(even) .feature-text-column {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        text-align: left;
    }

    .feature-item-split .feature-text-column h3 {
        font-size: 1.9rem;
    }

    .feature-item-split .feature-text-column h3::before,
    .feature-item-split:nth-child(even) .feature-text-column h3::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .feature-item-split .feature-image-column,
    .feature-item-split:nth-child(even) .feature-image-column {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .feature-item-split .image-showcase img {
        transform: scale(1) !important;
        box-shadow: none !important;
    }

    .image-showcase{
        padding: 0px;
    }

    .feature-item-split.reverse .feature-image-column {
        grid-column: auto;
        grid-row: auto;
    }
}

.site-footer {
    background-color: #2c3038;
    color: #adb5bd;
    padding: 60px 0 30px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    /* Gap between columns */
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-brand .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #ced4da;
}

.social-icons a {
    color: #adb5bd;
    font-size: 1.3rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:last-child {
    margin-right: 0;
}

.social-icons a:hover {
    color: #8A2BE2;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #8A2BE2, #FF1493);
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links ul li a:hover {
    color: #FF1493;
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1140px;
    margin: 30px auto 0;
    padding: 25px 20px 0;
    border-top: 1px solid #495057;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #868e96;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-legal-links a {
    color: #adb5bd;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #FF1493;
}

.footer-legal-links span {
    color: #6c757d;
    margin: 0 5px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.reverse .slider-container {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}


.slider-container .feature-image-column {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slider-container .feature-image-column.active {
    opacity: 1;
}

.slider-container .image-showcase {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-container .image-showcase img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.slider-controls {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgb(178 135 255);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: var(--color-primary-purple);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: #8a2be296;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
    display: none;
}

.slider-container:hover .slider-arrow {
    display: flex;
}

.slider-arrow:hover {
    background-color: var(--color-primary-purple);
    color: white;
}

.slider-arrow.prev {
    left: -25px;
}

.slider-arrow.next {
    right: -25px;
}


@media (max-width: 991px) {
    .footer-column {
        flex-basis: calc(50% - 15px);
        min-width: auto;
    }

    .footer-brand {
        flex-basis: 100%;
        text-align: center;
    }

    .footer-brand .social-icons {
        justify-content: center;
        display: flex;
    }

    .footer-brand h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        flex-basis: 100%;
        margin-bottom: 30px;
    }

    .footer-column:last-child {
        margin-bottom: 0;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom p,
    .footer-legal-links {
        margin-bottom: 10px;
    }

    .footer-legal-links {
        order: -1;
    }

    .slider-container {
        height: 270px;
    }

    .reverse .slider-container {
        grid-column: auto;
        grid-row: auto;
    }

    .slider-container:hover .slider-arrow {
        display: none !important;
    }
}