/*
Theme Name: iLiveConnect
Description: iLiveConnect Theme
Version: 1.0.0
*/

/* BW Font Face Declarations */
/* @font-face {
    font-family: 'BwGradualDEMO';
    src: url('fonts/BwGradualDEMO-Thin.woff2') format('woff2'),
         url('fonts/BwGradualDEMO-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BwGradualDEMO';
    src: url('fonts/BwGradualDEMO-Light.woff2') format('woff2'),
         url('fonts/BwGradualDEMO-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BwGradualDEMO';
    src: url('fonts/BwGradualDEMO-Regular.woff2') format('woff2'),
         url('fonts/BwGradualDEMO-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BwGradualDEMO';
    src: url('fonts/BwGradualDEMO-Medium.woff2') format('woff2'),
         url('fonts/BwGradualDEMO-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BwGradualDEMO';
    src: url('fonts/BwGradualDEMO-Bold.woff2') format('woff2'),
         url('fonts/BwGradualDEMO-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
} */

/* Custom styles for menu toggle animation */

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

body,
html {
    margin: 0 !important;
    padding: 0 !important;
}

body {
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
a,
li,
strong,
input,
textarea,
select {
    font-family: 'Montserrat', sans-serif;
}

body > * {
    flex-shrink: 0;
}

/* Sticky Header Styles */
#iliveconnect-header {
    transition: all 0.3s ease;
}

#iliveconnect-header.sticky-active {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Mobile Menu Toggle Animation */
.menu-toggle {
    position: relative;
}

.menu-toggle-line {
    transition: all 0.3s ease;
}

.menu-toggle.active .menu-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active .menu-toggle-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

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

/* Mobile Menu Styles */
#navbar-menu-mobile {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#navbar-menu-mobile:not(.translate-x-full) {
    transform: translateX(0);
}

#iliveconnect-main-menu-mobile {
    display: flex;
    flex-direction: column;
    gap: 0;
}

#iliveconnect-main-menu-mobile li {
    border-bottom: 1px solid #f3f4f6;
}

#iliveconnect-main-menu-mobile li:last-child {
    border-bottom: none;
}

#iliveconnect-main-menu-mobile a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

#iliveconnect-main-menu-mobile a:hover,
#iliveconnect-main-menu-mobile a:focus {
    color: #2266A8;
    padding-left: 8px;
}

/* Active menu item styling */
#iliveconnect-main-menu .current-menu-item > a,
#iliveconnect-main-menu .current_page_item > a,
#iliveconnect-main-menu .current_page_parent > a,
#iliveconnect-main-menu .current_page_ancestor > a {
    color: #2266A8;
}

#iliveconnect-main-menu-mobile .current-menu-item > a,
#iliveconnect-main-menu-mobile .current_page_item > a,
#iliveconnect-main-menu-mobile .current_page_parent > a,
#iliveconnect-main-menu-mobile .current_page_ancestor > a {
    color: #2266A8;
}

#iliveconnect-main-menu-mobile .menu-item-has-children > a {
    position: relative;
    padding-right: 32px;
}

#iliveconnect-main-menu-mobile .menu-item-has-children > a::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 300;
    color: #6b7280;
    transition: transform 0.3s ease;
}

#iliveconnect-main-menu-mobile .menu-item-has-children.active > a::after {
    content: '−';
    transform: translateY(-50%) rotate(0deg);
}

#iliveconnect-main-menu-mobile .menu-item-has-children > ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

#iliveconnect-main-menu-mobile .menu-item-has-children.active > ul {
    max-height: 500px;
    padding: 8px 0 8px 16px;
}

#iliveconnect-main-menu-mobile .menu-item-has-children > ul li {
    border-bottom: none;
    border-top: 1px solid #f9fafb;
}

#iliveconnect-main-menu-mobile .menu-item-has-children > ul a {
    padding: 12px 0;
    font-size: 14px;
    color: #6b7280;
}

#iliveconnect-main-menu-mobile .menu-item-has-children > ul a:hover {
    color: #2266A8;
    padding-left: 8px;
}

/* Mobile Menu Close Button */
.mobile-menu-close {
    transition: transform 0.3s ease;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
}

.mobile-close-line {
    background-color: #374151;
}

/* Mobile Menu Overlay */
#menu-overlay {
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* Prevent body scroll when menu is open */
body.overflow-hidden {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Responsive adjustments for mobile menu */
@media (max-width: 640px) {
    #navbar-menu-mobile {
        width: 90%;
        max-width: 100%;
    }
    
    #iliveconnect-main-menu-mobile a {
        font-size: 15px;
        padding: 14px 0;
    }
}

@media (max-width: 480px) {
    #navbar-menu-mobile {
        width: 100%;
    }
}

footer {
    margin-top: auto;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background-color: #111827 !important;
    color: #ffffff !important;
    width: 100% !important;
}

/* Newsletter Form Styles */
.newsletter-form input[type="email"],
.newsletter-form input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    background: white;
    border: none;
    border-radius: 4px;
    color: #333;
    margin-bottom: 12px;
    font-size: 16px;
}

.newsletter-form input[type="email"]::placeholder,
.newsletter-form input[type="text"]::placeholder {
    color: #999;
}

.newsletter-form input[type="submit"],
.newsletter-form button[type="submit"] {
    width: 100%;
    padding: 12px 24px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form input[type="submit"]:hover,
.newsletter-form button[type="submit"]:hover {
    background: #005a87;
}

.newsletter-form .mc4wp-form-fields {
    display: flex;
    flex-direction: column;
}

.newsletter-form .mc4wp-alert {
    margin-top: 12px;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
}

.newsletter-form .mc4wp-alert.mc4wp-success {
    background: #10b981;
    color: white;
}

.newsletter-form .mc4wp-alert.mc4wp-error {
    background: #ef4444;
    color: white;
}

/* Hero Slider Styles */
.hero-slider {
    width: 100%;
    height: calc(100vh - 110px);
    position: relative;
}

@media (max-width: 768px) {
    .hero-slider {
        height: auto;
        min-height: 70vh;
    }
}

.hero-slider .swiper {
    width: 100%;
    height: 100%;
}

.hero-slider .swiper-slide {
    width: 100%;
    height: 100%;
}

/* Swiper Navigation Buttons */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

/* Swiper Pagination */

.swiper-pagination {
    bottom: 0px !important;
}
.hero-slider .swiper-pagination {
    bottom: 30px !important;
}

@media (max-width: 640px) {
    .hero-slider .swiper-pagination {
        bottom: 20px !important;
    }
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #69A1D9;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #0073aa;
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 640px) {
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
    
    .swiper-pagination-bullet-active {
        width: 20px;
    }
}

/* Next Section Button Mobile Styles */
.next-section-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 640px) {
    .next-section-btn svg {
        width: 28px;
        height: 28px;
    }
}

/* Primary Button Mobile Responsive */
@media (max-width: 640px) {
    .primary-btn {
        width: 100%;
        max-width: 200px;
        font-size: 15px;
        padding: 12px 0;
    }
    
    .hero-slider .primary-btn {
        width: auto;
        min-width: 160px;
    }
}

.primary-btn {
    position: relative;
    width: 180px; /* Fixed width */
    padding: 14px 0;
    background: #4F79A3; /* Primary blue */
    color: #fff;
    border: none;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    z-index: 1;
    transition: color 0.3s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
}

.primary-btn svg path {
    stroke: #ffffff;
}

.primary-btn:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 8px;
    background-image: linear-gradient(315deg, #2266A8 0%, #2266A8 74%);
    transition: all 0.3s ease;
    overflow: hidden;
}

.primary-btn:hover:after {
    top: 0;
    height: 100%;
}

.primary-btn:active {
    top: 2px;
}

/* Inner Banner Section */
.inner-banner {
    min-height: 300px;
    display: flex;
    align-items: center;
}

/* You can remove these keyframes since they're no longer used */
/*
@keyframes rotateCW {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateCCW {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}
*/

@media (max-width: 768px) {
    .inner-banner {
        min-height: 250px;
        padding-top: 16px;
        padding-bottom: 16px;
    }
    
    .inner-banner h1 {
        font-size: 2rem !important;
    }
    
    .inner-banner p {
        font-size: 1rem !important;
    }
}


@media (min-width: 1024px) {
    .home-about-section .grid > div:first-child {
        border-radius: 1rem 0 0 1rem;
    }
    
    .home-about-section .grid > div:last-child {
        border-radius: 0 1rem 1rem 0;
    }
}

/* Solutions Page Styles */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.solutions-listing .bg-white {
    transition: transform 0.3s ease;
}

.solutions-listing .bg-white:hover {
    transform: translateY(-5px);
}

/* Prose Styles for Content */
.prose {
    color: #374151;
    line-height: 1.75;
}

.prose h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #111827;
}

.prose h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #111827;
}

.prose p {
    margin-bottom: 1.25rem;
}

.prose ul, .prose ol {
    margin-bottom: 1.25rem;
    padding-left: 1.625rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose a {
    color: #0073aa;
    text-decoration: underline;
}

.prose a:hover {
    color: #005a87;
}
.sticky-section {
    position: relative;
    min-height: 100vh;
}

.sticky-left-wrapper {
    height: 100vh;
    display: flex;
    align-items: center; /* vertical center */
}

.sticky-left-inner {
    position: sticky;
    top: 0;
}

/* Cards just animate; they are NOT sticky */
.card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Optional: nice stagger feel */
.card.visible:nth-child(1) {
    transition-delay: 0s;
}

.card.visible:nth-child(2) {
    transition-delay: 0.1s;
}

.card.visible:nth-child(3) {
    transition-delay: 0.2s;
}

.card.visible:nth-child(4) {
    transition-delay: 0.3s;
}

.card.visible:nth-child(5) {
    transition-delay: 0.4s;
}

/* Mobile: disable sticky (common issue) */
@media (max-width: 767px) {
    .sticky-left {
        position: static;
        transform: none;
        margin-bottom: 2rem;
    }

    .sticky-section {
        min-height: auto;
    }

    .sticky-section .card {
        margin-bottom: 1rem;
    }
}

/* Additional mobile optimizations */
@media (max-width: 640px) {
    .sticky-section {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    .sticky-section .card {
        opacity: 1;
        transform: translateY(0);
    }
}

/* What Makes Us Different Section - Mobile Optimizations */
.mySwiper {
    padding-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .mySwiper {
        padding-bottom: 2rem;
    }

    /* Show description text on mobile by default (hover doesn't work on touch) */
    .difference-desc {
        max-height: 200px;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

@media (min-width: 769px) {
    .difference-desc {
        max-height: 0;
        opacity: 0;
        transform: translateY(0.75rem);
    }
}

/* Progress Steps Section - Mobile Optimizations */
@media (max-width: 1023px) {
    #steps-wrapper .step {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    #progress-svg {
        display: none;
    }
}

/* CTA Section - Mobile Optimizations */
@media (max-width: 767px) {
    .cta-left,
    .cta-right {
        display: none;
    }
}

/* Contact Form Section - Mobile Optimizations */
@media (max-width: 767px) {
    .contact-form-7 {
        width: 100%;
    }
}





/* Services Solutions Accordion Styles (Mobile/Tablet) - Vertical Accordion */
.services-accordion-container {
    width: 100%;
}

.services-accordion-item {
    width: 100%;
}

.services-accordion-header {
    cursor: pointer;
    border: none;
    outline: none;
    background: #E9F1F8;
    transition: all 0.3s ease;
}
.services-accordion-header:hover {
    background: #d1e2f3;
}
.services-accordion-header.active {
    background: #d1e2f3;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.services-accordion-header h3 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin: 0;
}
.services-accordion-content {
    background: #E9F1F8;
    border-bottom-left-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
    transition: max-height 0.4s ease-out;
    max-height: 0;
    overflow: hidden;
}
/* First accordion item should be visible initially - JS will set accurate height */
.services-accordion-item:first-child .services-accordion-header[aria-expanded="true"] + .services-accordion-content {
    max-height: none; /* Allow JS to measure and set accurately */
}

/* Ensure smooth transition when opening */
.services-accordion-content[style*="max-height"] {
    transition: max-height 0.4s ease-out;
}

.accordion-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.services-accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

@media (max-width: 1023px) {
    .services-accordion-header img {
        max-width: 56px;
    }
}

.services-tab-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 0 80px;
}

/* Responsive adjustments for services tabs */
@media (max-width: 1023px) {
    .services-tab-container {
        padding: 0;
    }
}

.services-tab-container .services-tab-menu {
    width: 510px;
    display: flex;
    flex-direction: column;
}

.services-tab-container .tab-item {
    padding: 8px 20px;
    cursor: pointer;
    height: auto;
    margin: 4px 0;
    position: relative;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.services-tab-container .tab-item::before {
    content: "";
    position: absolute;
    left: -4px;
    top: 0;
    width: 4px;
    height: 0; /* Start at 0 height */
    border-radius: 2px;
    transition: height 1s ease, background-color 1s;
}

.services-tab-container .tab-item.active::before {
    height: 100%; /* Animate to full height */
    background-color: #025983;
}

.services-tab-container .tab-item h3 {
    margin-bottom: 0;
    color: #000;
    font-size: 18px;
    font-weight: 500;
}

.services-tab-container .tab-item a {
    height: 0;
    opacity: 0;
    display: inline-flex !important;
    transform: translateY(-20px);
    transition: all 0.3s;
    display: none;
}

.services-tab-container .tab-item.active a {
    height: auto;
    opacity: 1;
    transform: translateY(0px);
    transition: all 0.3s;
    margin-top: 12px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #025983;
    display: block;
}

.services-tab-container .services-tabs-viewport {
    width: calc(100% - 534px);
    height: 500px; /* Adjust based on content */
    overflow: hidden;
    position: relative;
}

.services-tab-container .services-tabs-slider {
    position: relative;
    transition: transform 0.5s ease;
}

.services-tab-container .services-tab-details {
    height: 500px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: start;
}

.services-tab-container .services-tab-details img {
    max-width: 90px;
}

.services-tab-container .services-tab-details .services-tab-details-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    gap: 24px;
    width: 100%;
}

.services-tab-container .services-tab-details .services-tab-details-bottom img {
    margin-right: 24px;
    max-width: 180px;
    object-fit: contain;
}

.services-tab-container .services-tab-details p {
    margin-top: 16px;
    color: #000;
    max-width: 650px;
}

.services-tab-container .services-tab-details h3 {
    font-size: 28px !important;
    line-height: 36px !important;
}

.services-tab-container .services-tab-details .services-tab-details-bottom ul li {
    color: #000;
    margin: 8px 0;
    max-width: 800px;
    position: relative;
    padding-left: 16px;
}

.services-tab-container .services-tab-details .services-tab-details-bottom ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

/* Custom Bullet List Styles */
.custom-bullet-list {
    list-style: none;
    padding-left: 0;
}

.custom-bullet-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
}

.custom-bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
  
/* Circle Icons Positioning - On main circle border */
.circle-icons-wrapper {
    position: relative;
}

/* Hide mobile layout icons on desktop */
@media (min-width: 768px) {
    .circle-icon-mobile {
        display: none !important;
    }
}

/* Hide desktop layout on mobile */
@media (max-width: 767px) {
    .circle-icons-wrapper {
        display: none !important;
    }
}

.circle-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    transition: transform 1s ease-out;
}

/* Icon positions - Desktop (lg screens): 420px circle with 30px border = 180px radius */
@media (min-width: 1024px) {
    .circle-icon:nth-child(1) {
        --angle: 0deg;
        transform: translate(-50%, -70%) rotate(var(--angle, 0deg)) translateY(-180px) rotate(calc(-1 * var(--angle, 0deg)));
    }
    
    .circle-icon:nth-child(2) {
        --angle: 60deg;
        transform: translate(-20%, -50%) rotate(var(--angle, 0deg)) translateY(-180px) rotate(calc(-1 * var(--angle, 0deg)));
    }
    
    .circle-icon:nth-child(3) {
        --angle: 120deg;
        transform: translate(-20%, -50%) rotate(var(--angle, 0deg)) translateY(-180px) rotate(calc(-1 * var(--angle, 0deg)));
    }
    
    .circle-icon:nth-child(4) {
        --angle: 180deg;
        transform: translate(-50%, -30%) rotate(var(--angle, 0deg)) translateY(-180px) rotate(calc(-1 * var(--angle, 0deg)));
    }
    
    .circle-icons-wrapper.animate-closer .circle-icon:nth-child(1) {
        transform: translate(140%, -20%) rotate(var(--angle, 0deg)) translateY(-180px) rotate(calc(-1 * var(--angle, 0deg)));
    }
    
    .circle-icons-wrapper.animate-closer .circle-icon:nth-child(2) {
        transform: translate(0%, 0%) rotate(var(--angle, 0deg)) translateY(-180px) rotate(calc(-1 * var(--angle, 0deg)));
    }
    
    .circle-icons-wrapper.animate-closer .circle-icon:nth-child(3) {
        transform: translate(0%, -100%) rotate(var(--angle, 0deg)) translateY(-180px) rotate(calc(-1 * var(--angle, 0deg)));
    }
    
    .circle-icons-wrapper.animate-closer .circle-icon:nth-child(4) {
        transform: translate(140%, -100%) rotate(var(--angle, 0deg)) translateY(-180px) rotate(calc(-1 * var(--angle, 0deg)));
    }
    
    .circle-text-1 {
        transform: translate(-50%, -70%) rotate(0deg) translateY(-180px) rotate(0deg) translateX(40px) scale(0);
    }
    
    .circle-text-2 {
        transform: translate(-20%, -50%) rotate(60deg) translateY(-180px) rotate(-60deg) translateX(40px) scale(0);
    }
    
    .circle-text-3 {
        transform: translate(-20%, -50%) rotate(120deg) translateY(-180px) rotate(-120deg) translateX(40px) scale(0);
    }
    
    .circle-text-4 {
        transform: translate(-50%, -30%) rotate(180deg) translateY(-180px) rotate(-180deg) translateX(40px) scale(0);
    }
    
    .circle-icons-wrapper.animate-closer .circle-text-1 {
        transform: translate(0%, 0%) rotate(0deg) translateY(-20px) rotate(0deg) translateX(50px) scale(1);
    }
    
    .circle-icons-wrapper.animate-closer .circle-text-2 {
        transform: translate(0%, 0%) rotate(60deg) translateY(-40px) rotate(-60deg) translateX(20px) scale(1);
    }
    
    .circle-icons-wrapper.animate-closer .circle-text-3 {
        transform: translate(0%, 0%) rotate(120deg) translateY(30px) rotate(-120deg) translateX(80px) scale(1);
    }
    
    .circle-icons-wrapper.animate-closer .circle-text-4 {
        transform: translate(0%, 0%) rotate(180deg) translateY(20px) rotate(-180deg) translateX(60px) scale(1);
    }
}

/* Tablet/MD screens: 360px circle with 28px border = ~152px radius (scaled 0.84x) */
@media (min-width: 768px) and (max-width: 1023px) {
    .circle-icon:nth-child(1) {
        --angle: 0deg;
        transform: translate(-50%, -70%) rotate(var(--angle, 0deg)) translateY(-152px) rotate(calc(-1 * var(--angle, 0deg)));
    }
    
    .circle-icon:nth-child(2) {
        --angle: 60deg;
        transform: translate(-20%, -50%) rotate(var(--angle, 0deg)) translateY(-152px) rotate(calc(-1 * var(--angle, 0deg)));
    }
    
    .circle-icon:nth-child(3) {
        --angle: 120deg;
        transform: translate(-20%, -50%) rotate(var(--angle, 0deg)) translateY(-152px) rotate(calc(-1 * var(--angle, 0deg)));
    }
    
    .circle-icon:nth-child(4) {
        --angle: 180deg;
        transform: translate(-50%, -30%) rotate(var(--angle, 0deg)) translateY(-152px) rotate(calc(-1 * var(--angle, 0deg)));
    }
    
    .circle-icons-wrapper.animate-closer .circle-icon:nth-child(1) {
        transform: translate(120%, -20%) rotate(var(--angle, 0deg)) translateY(-152px) rotate(calc(-1 * var(--angle, 0deg)));
    }
    
    .circle-icons-wrapper.animate-closer .circle-icon:nth-child(2) {
        transform: translate(0%, 0%) rotate(var(--angle, 0deg)) translateY(-152px) rotate(calc(-1 * var(--angle, 0deg)));
    }
    
    .circle-icons-wrapper.animate-closer .circle-icon:nth-child(3) {
        transform: translate(0%, -100%) rotate(var(--angle, 0deg)) translateY(-152px) rotate(calc(-1 * var(--angle, 0deg)));
    }
    
    .circle-icons-wrapper.animate-closer .circle-icon:nth-child(4) {
        transform: translate(120%, -100%) rotate(var(--angle, 0deg)) translateY(-152px) rotate(calc(-1 * var(--angle, 0deg)));
    }
    
    .circle-text-1 {
        transform: translate(-50%, -70%) rotate(0deg) translateY(-152px) rotate(0deg) translateX(34px) scale(0);
    }
    
    .circle-text-2 {
        transform: translate(-20%, -50%) rotate(60deg) translateY(-152px) rotate(-60deg) translateX(34px) scale(0);
    }
    
    .circle-text-3 {
        transform: translate(-20%, -50%) rotate(120deg) translateY(-152px) rotate(-120deg) translateX(34px) scale(0);
    }
    
    .circle-text-4 {
        transform: translate(-50%, -30%) rotate(180deg) translateY(-152px) rotate(-180deg) translateX(34px) scale(0);
    }
    
    .circle-icons-wrapper.animate-closer .circle-text-1 {
        transform: translate(0%, 0%) rotate(0deg) translateY(-20px) rotate(0deg) translateX(42px) scale(1);
    }
    
    .circle-icons-wrapper.animate-closer .circle-text-2 {
        transform: translate(0%, 0%) rotate(60deg) translateY(-40px) rotate(-60deg) translateX(17px) scale(1);
    }
    
    .circle-icons-wrapper.animate-closer .circle-text-3 {
        transform: translate(0%, 0%) rotate(120deg) translateY(30px) rotate(-120deg) translateX(67px) scale(1);
    }
    
    .circle-icons-wrapper.animate-closer .circle-text-4 {
        transform: translate(0%, 0%) rotate(180deg) translateY(20px) rotate(-180deg) translateX(50px) scale(1);
    }
}

/* Circle text labels - positioned to align with circles */
.circle-text-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
    pointer-events: none;
}

/* Animation states */
.circle-icons-wrapper.animate-closer .circle-text-label {
    opacity: 1 !important;
}

/* Circle Icons Section Responsive Improvements */
#circle-icons-section {
    overflow-x: hidden;
}

@media (max-width: 767px) {
    #circle-icons-section .circle-icon-mobile {
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    
    #circle-icons-section .circle-icon-mobile:hover {
        transform: scale(1.05);
    }
}

/* Ensure desktop layout has proper container structure */
@media (min-width: 768px) {
    #circle-icons-section .hidden.md\\:flex {
        min-height: 500px;
    }
}

/* Marquee Section Styles */
.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Ensure marquee section is visible on all devices */
@media (max-width: 639px) {
    .marquee-container {
        margin-top: 1.5rem;
    }
}

.marquee-row {
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: inline-flex !important;
    gap: 0;
    align-items: center;
}

.marquee-item {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(105, 161, 217, 0.3);
    border: 1px solid rgba(105, 161, 217, 0.6);
    border-radius: 2rem;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-right: 0.75rem;
}

.marquee-item:hover {
    background-color: rgba(105, 161, 217, 0.4);
    border-color: rgba(105, 161, 217, 0.8);
    transform: translateY(-2px);
}

/* Responsive marquee items */
@media (min-width: 640px) {
    .marquee-item {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
        margin-right: 1rem;
    }
}

@media (min-width: 768px) {
    .marquee-item {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        margin-right: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .marquee-item {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        margin-right: 1.5rem;
    }
}

/* Marquee row responsive adjustments */
@media (max-width: 639px) {
    .marquee-row {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
}

.marquee-left .marquee-content {
    animation: marquee-left 30s linear infinite;
}

.marquee-right .marquee-content {
    animation: marquee-right 35s linear infinite;
}

@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Responsive animation speeds for better mobile experience */
@media (max-width: 767px) {
    .marquee-left .marquee-content {
        animation: marquee-left 25s linear infinite;
    }
    
    .marquee-right .marquee-content {
        animation: marquee-right 30s linear infinite;
    }
}

/* Grid Layout with Left 3 cards and Right 2 cards */
.grid-cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    min-height: 0;
}

.left-column-cards,
.right-column-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    min-height: 0;
}

#single-blog-content table {
    border: 1px solid #000;
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 1rem;
}
#single-blog-content table tr,#single-blog-content table td,#single-blog-content table th{
    border: 1px solid #000;
    padding: 0.5rem;
}
/* Mobile: Ensure all cards are visible */
@media (max-width: 1024px) {
    .grid-cards-container {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem;
        width: 100%;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .left-column-cards,
    .right-column-cards {
        display: flex !important;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .left-column-cards > div,
    .right-column-cards > div {
        width: 100%;
        min-height: 200px;
        visibility: visible !important;
        opacity: 1 !important;
        display: block !important;
    }
    
    /* Ensure SVG graph is visible on mobile */
    .line-graph-svg {
        width: 100% !important;
        height: auto !important;
        max-width: 100%;
    }
}

/* Tablet: Two column layout */
@media (min-width: 768px) and (max-width: 1023px) {
    .grid-cards-container {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        width: 100%;
        display: grid !important;
    }
    
    .left-column-cards,
    .right-column-cards {
        gap: 1.5rem;
        width: 100%;
        display: flex !important;
    }
    
    .left-column-cards > div,
    .right-column-cards > div {
        width: 100%;
    }
}

/* Desktop: Two column layout */
@media (min-width: 1024px) {
    .grid-cards-container {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .right-column-cards > div {
        flex: 1;
        min-height: 0;
    }
}

/* SVG Graph Animation */
.line-graph-svg {
    width: calc(100% + 24px);
    max-height: 100%;
    margin-left: -12px;
    margin-right: -12px;
    overflow: visible;
}

.graph-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    /* Transition will be set dynamically in JavaScript for accurate path length */
}

.graph-line.animate {
    stroke-dashoffset: 0;
}

.graph-point {
    transition: opacity 0.3s ease-in-out;
    filter: drop-shadow(0 0 4px rgba(105, 161, 217, 0.8));
}

.graph-point.animate {
    opacity: 1;
}

/* Stagger animation for points */
.graph-point:nth-child(2) {
    transition-delay: 0.3s;
}

.graph-point:nth-child(3) {
    transition-delay: 0.5s;
}

.graph-point:nth-child(4) {
    transition-delay: 0.7s;
}

.graph-point:nth-child(5) {
    transition-delay: 0.9s;
}

.graph-point:nth-child(6) {
    transition-delay: 1.1s;
}

.about-swiper .swiper-slide {
    padding-top: 100px;
}

@media (max-width: 767px) {
    .about-swiper .swiper-slide {
        padding-top: 60px;
    }
}

.about-swiper .swiper-slide.swiper-slide-active {
    padding-top: 32px;
}

@media (max-width: 767px) {
    .about-swiper .swiper-slide.swiper-slide-active {
        padding-top: 20px;
    }
}

.about-swiper .swiper-slide.swiper-slide-active .about-slide-card {
    margin: auto;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.about-swiper .swiper-slide.swiper-slide-prev .about-slide-card {
    margin-left: auto;
    transform: rotate(-20deg);
    transition: all 0.3s ease;
}

.about-swiper .swiper-slide.swiper-slide-next .about-slide-card {
    margin-right: auto;
    transform: rotate(20deg);
    transition: all 0.3s ease;
}

.founder-text {
    -webkit-text-stroke: 1px #005a87;
    color: transparent;
}

/* Benefit Cards Styles */
.benefit-card:nth-child(odd) {
    background-color: #2570BA;
    color: #fff;
}

.benefit-card:nth-child(odd) .rating-star {
    background-image: url('./images/light-star.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    width: 100%;
    height: 16px;
    display: inline-block;
}

.benefit-card:nth-child(even) .rating-star {
    background-image: url('./images/primary-star.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    width: 100%;
    height: 16px;
    display: inline-block;
}

.benefit-card:nth-child(even) {
    background-color: #fff;
    color: #2570BA;
}

.cards-main-container {
    padding-top: 3rem;
}

@media (max-width: 1023px) {
    .cards-main-container {
        padding-top: 2rem;
    }
}

.cards-wrapper {
    min-height: 450px;
    position: relative;
}

@media (max-width: 1023px) {
    .cards-wrapper {
        min-height: 300px;
    }
}

.benefit-card {
    z-index: 1;
    width: calc(33.333% - 1.5rem);
    min-height: 200px;
}

@media (max-width: 1023px) {
    .benefit-card {
        width: calc(50% - 1rem);
        min-height: 150px;
    }
}

@media (max-width: 640px) {
    .benefit-card {
        width: calc(100% - 2rem);
        min-height: 120px;
    }
}

/* Initial overlapping and tilted state */
.benefit-card.card-1 {
    top: 0;
    left: 20%;
    transform: rotate(-15deg);
    z-index: 5;
}

.benefit-card.card-2 {
    top: 25%;
    left: 20%;
    transform: rotate(15deg);
    z-index: 6;
}

.benefit-card.card-3 {
    top: 50%;
    left: 20%;
    transform: rotate(-15deg);
    z-index: 5;
}

.benefit-card.card-4 {
    top: 0%;
    right: 20%;
    transform: rotate(15deg);
    z-index: 2;
}

.benefit-card.card-5 {
    top: 25%;
    right: 20%;
    transform: rotate(-15deg);
    z-index: 7;
}

.benefit-card.card-6 {
    top: 50%;
    right: 20%;
    transform: rotate(15deg);
    z-index: 5;
}
/* Aligned state - when cards-main-container has 'aligned' class */
.cards-main-container.aligned .cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 2rem 0;
}

.cards-main-container.aligned .benefit-card {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: rotate(0deg) !important;
    width: calc(33.333% - 1.5rem);
    z-index: 1;
}

@media (max-width: 1023px) {
    .cards-main-container.aligned .benefit-card {
        width: calc(50% - 1rem);
    }
}

@media (max-width: 640px) {
    .cards-main-container.aligned .benefit-card {
        width: calc(100% - 2rem);
    }
}

/* Accordion Styles */
.accodion-main-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.accordion-item {
    margin-bottom: 0;
    width: 100%;
}

.accordion-header {
    -webkit-user-select: none;
    user-select: none;
    width: 100%;
}

.accordion-header:hover {
    opacity: 0.95;
}

.accordion-icon {
    font-size: 2.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.accordion-content {
    max-height: 0;
    transition: max-height 0.4s ease-out;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    transition: max-height 0.4s ease-in;
}

.accordion-body {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.accordion-item.active .accordion-header {
    background-color: #ffffff !important;
    color: #2266A8 !important;
}

.accordion-item.active .accordion-body {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
    background-color: #ffffff !important;
}

.cta-left {
    position: relative;
}

.cta-left:before {
    content: "";
    position: absolute;
    background: #2266A8;
    width: 1px;
    height: 150px;
    left: 60px;
    top: -50px;
    opacity: 0.5;
}

.cta-left:after {
    content: "";
    position: absolute;
    background: #2266A8;
    width: 150px;
    height: 1px;
    left: 30px;
    top: -20px;
    opacity: 0.5;
}

.cta-right:before {
    content: "";
    position: absolute;
    border: 1px solid #2266A8;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    right: 20px;
    top: calc(50% - 170px);
    opacity: 0.5;
}

.cta-right:after {
    content: "";
    position: absolute;
    border: 1px solid #2266A8;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    right: 20px;
    top: calc(50% - 40px);
    opacity: 0.5;
}

.mc4wp-form-fields {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

@media (max-width: 767px) {
    .mc4wp-form-fields {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .mc4wp-form-fields input[type="email"],
    .mc4wp-form-fields input[type="text"] {
        width: 100%;
    }

    .mc4wp-form-fields button,
    .mc4wp-form-fields input[type="submit"] {
        width: 100%;
    }
}

.mc4wp-form-fields input[type="email"],
.mc4wp-form-fields input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #2671BB;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    min-width: 400px;
    max-width: 400px;
    background: #001E3B;
}
/* Hide errors before submit */
.wpcf7-form:not(.invalid):not(.failed) .wpcf7-not-valid-tip {
    display: none;
}

/* Show errors after submit */
.wpcf7-form.invalid .wpcf7-not-valid-tip,
.wpcf7-form.failed .wpcf7-not-valid-tip {
    display: block;
}
.iti--separate-dial-code .iti__selected-flag {
    background: #ffffff !important;
}

.iti__country-list {
    max-width: 280px !important;
}

.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 14px;
}

.mc4wp-response{
    margin-top:4px;
}
.mc4wp-response p{
    font-size: 14px;
}

@media (max-width: 767px) {
    .mc4wp-form-fields input[type="email"],
    .mc4wp-form-fields input[type="text"] {
        min-width: auto;
        max-width: 100%;
        font-size: 14px;
    }
    .services-tab-container{
        padding: 0 16px;
    }
}

.mc4wp-form-fields input::placeholder {
    color: #888888;
    font-size: 16px;
}

.mc4wp-form-fields input[type="submit"] {
    background: #69a1d9;
    color: #ffffff;
    border: none;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 12px 24px;
    width: 100%;
    border: 1px solid #69a1d9;
}
.mc4wp-form-fields input[type="submit"]:hover{
    background: #2671BB;
    border: 1px solid #2671BB;
}
.mc4wp-form-fields{
    position: relative;
}

#email-error{
    color: #dc3232;
    font-size: 14px;
    position: absolute;
    bottom: -24px;
    left: 0;   
}


.cf7-row {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.cf7-col {
    width: calc(50% - 12px);
}

.cf7-col-full {
    width: 100%;
}

.cf7-row input,
.cf7-row select {
    border-bottom: 1px solid #D9D9D9;
    padding: 8px 0;
    width: 100%;
    height: 42px;
    font-size: 16px;
    border-radius: 0;
    outline: none;
    box-shadow: none;
}

.cf7-row textarea {
    border-bottom: 1px solid #D9D9D9;
    padding: 8px 0;
    width: 100%;
    height: 100px;
    font-size: 16px;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    resize: none;
}

.cf7-phone p {
    display: flex;
    gap: 0px;
}

.cf7-phone input {
    padding-left: 16px;
}

.cf7-phone .wpcf7-form-control-wrap {
    flex: 1;
}

.cf7-phone [data-name="country-code"] {
    width: 70px;
    flex: unset;
}

.wpcf7-submit {
    position: relative;
    background: #69a1d9;
    color: #ffffff;
    border: none;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 12px 16px !important;
    border: 1px solid #69a1d9;
    margin-top: 16px;
    border-radius: 32px !important;
    display: inline-block;
    width: fit-content !important;
    height: 52px !important;
    min-width: 150px;
    z-index: 1;
    overflow: hidden;
}

.wpcf7-submit:hover {
    background: #2671BB;
    border: 1px solid #2671BB;
    color: #ffffff;
    transition: all 0.3s ease;
}
/* Insights Section Points Animation */
.point-1-wrapper.scale-0,
.point-2-wrapper.scale-0,
.point-3-wrapper.scale-0 {
    transform: scale(0) !important;
}

.point-1-wrapper.scale-100,
.point-2-wrapper.scale-100,
.point-3-wrapper.scale-100 {
    transform: scale(1) !important;
}

/* Insights Section Responsive Improvements */
#insights-section {
    overflow-x: hidden;
    position: relative;
}

#insights-section .container {
    position: relative;
    overflow: visible;
}

/* Ensure wrapper allows absolute positioning */
#insights-section .insights-container-wrapper {
    position: relative;
    overflow: visible;
}

/* Mobile: Ensure text doesn't overflow */
@media (max-width: 767px) {
    #insights-section .point-1-text,
    #insights-section .point-2-text,
    #insights-section .point-3-text {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}

/* Tablet: Adjust container and positioning for tablet view */
@media (min-width: 768px) and (max-width: 1023px) {
    #insights-section {
        overflow-x: visible;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    #insights-section .container {
        overflow: visible;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    #insights-section .insights-container-wrapper {
        min-height: 450px;
        overflow: visible;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        width: 100%;
    }
    
    #insights-section .insights-image-container {
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Ensure points don't go off-screen on tablet */
    #insights-section .point-1-wrapper {
        max-width: 320px !important;
        width: 320px !important;
    }
    
    #insights-section .point-2-wrapper {
        max-width: 320px !important;
        width: 320px !important;
    }
    
    #insights-section .point-3-wrapper {
        max-width: 320px !important;
        width: 320px !important;
    }
    
    /* Adjust text sizes for tablet */
    #insights-section .point-1-text,
    #insights-section .point-2-text,
    #insights-section .point-3-text {
        font-size: 0.875rem !important;
        line-height: 1.5;
    }
    
    /* Adjust arrow sizes for tablet */
    #insights-section .point-1 img,
    #insights-section .point-2 img,
    #insights-section .point-3 img {
        width: 45px !important;
        height: auto;
    }
}

/* Desktop: Ensure container has enough space for absolute positioning */
@media (min-width: 1024px) {
    #insights-section .insights-container-wrapper {
        min-height: 500px;
        overflow: visible;
    }
}

/* Masonry Gallery Container */
.masonry-gallery-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Masonry Gallery Styles */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    grid-auto-rows: 10px;
    margin-bottom: 0;
}

.masonry-item {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.masonry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.masonry-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

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



/* Infinite Marquee Gallery Styles */
.marquee-gallery-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.marquee-gallery-track {
    display: flex;
    width: fit-content;
    animation: marquee-scroll 40s linear infinite;
}

.marquee-content {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    padding: 0 1rem;
}

.marquee-gallery-item {
    flex-shrink: 0;
    width: 300px;
    height: auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.marquee-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 1rem;
    box-sizing: border-box;
}

.faq-container {
  margin: 50px auto;
}
.faq-item {
  border: 1px solid #e0f2fe;
  border-radius:12px;
  overflow:hidden;
  margin-bottom:12px;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 16px;
  font-size: 18px;
  font-weight:600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color:#2266a8;
}
.faq-question:hover {
  background:#e0f2fe;
}
.faq-question .faq-icon{
   width:20px;
   height:20px;
   background-image: url("data:image/svg+xml,%0A%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.002 1.42969L10.002 18.5725' stroke='%23004485' stroke-width='1.42857' stroke-linecap='round'/%3E%3Cpath d='M18.5723 10.002L1.42941 10.002' stroke='%23004485' stroke-width='1.42857' stroke-linecap='round'/%3E%3C/svg%3E%0A"); 
  background-size:20px;
  transition: transform 0.3s ease;
}
.faq-answer {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer p {
  color:#2266a8;
  font-size:16px;
}
.faq-item.active .faq-question{
	background:#e0f2fe;
}
.faq-item.active .faq-answer {
  max-height:100%;
  transition: max-height 0.4s ease;
  padding:16px;
}

.faq-item.active .faq-icon {
  background-image: url("data:image/svg+xml,%0A%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.5723 10.002L1.42941 10.002' stroke='%23004485' stroke-width='1.42857' stroke-linecap='round'/%3E%3C/svg%3E%0A");
background-size:20px;
  
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause marquee on hover */
.marquee-gallery-wrapper:hover .marquee-gallery-track {
    animation-play-state: paused;
}

.marquee-gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Responsive marquee */
@media (max-width: 768px) {
    .marquee-content {
        gap: 1rem;
    }
    
    .marquee-gallery-item {
        width: 250px;
        height: 250px;
    }

    .cf7-col {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .marquee-content {
        gap: 0.75rem;
    }
    
    .marquee-gallery-item {
        width: 200px;
        height: 200px;
    }
}
