:root {
    --bg-dark: #ffffff;
    --accent-red: rgba(210, 32, 35, 1);
    --accent-gradient: linear-gradient(90deg, rgba(239, 17, 21, 1) 0%, rgba(210, 32, 35, 1) 100%);
    --text-main: #111111;
    --text-muted: #616161;
    --grid-color: rgba(0, 0, 0, 0.04);
}

.row{
    margin: auto;
}

.ai-hero-section{
padding-bottom: 120px;
}
  /* Grid Background */
.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 800px;
    height: 100%;
    background-image: url('../imgs/hero-dotgrey-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* z-index: -1; */
    opacity: 1;
    
}

.hero-label {
    font-family: "Poppins", sans-serif;
    font-size: clamp(32px, 5vw, 45px);
    letter-spacing: -0.02em;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    padding: 0 20px;
}

.hero-label img {
    width: 40px;
    height: auto;
    flex-shrink: 0;
}

.sparkles-container {
    display: none; /* User is using direct img now */
}

.ai-gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0 !important;
}

.main-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(32px, 5vw, 45px);
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-weight: 700;
    color: var(--text-main);
}

.ai-hero-subtitle {
    font-family: "Inter", sans-serif;
    max-width: 100%;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 400;
}

/* Visual Components */
.visual-container {
    max-width: 100%;
    margin-bottom: 20px;
    position: relative;
}

.visual-card {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    background: #000;
    transition: transform 0.3s ease;
}

/* .visual-card:hover {
    transform: translateY(-5px);
} */

.hero-visual {
    width: 100%;
    max-height: 400px;
    height: auto;
    object-fit: cover;
    display: block;
    mix-blend-mode: screen;
    opacity: 0.9;
}

/* Scroll Badge */
.scroll-badge {
    position: absolute;
    bottom: -1px; /* Align to the very bottom */
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 15px 55px;
    border-radius: 20px 20px 0 0;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.05);
    z-index: 10;
}

/* Inverted rounded corners */
.scroll-badge::before,
.scroll-badge::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 35px;
    height: 30px;
    pointer-events: none;
}

.scroll-badge::before {
    left: -30px;
    background: radial-gradient(circle at 0 0, transparent 30px, white 31px);
}

.scroll-badge::after {
    right: -30px;
    background: radial-gradient(circle at 100% 0, transparent 30px, white 31px);
}

.scroll-badge span {
    color: var(--text-main);
    opacity: 0.8;
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 300;
}

.scroll-badge svg {
    color: var(--accent-red);
    animation: bounce 2s infinite;
}

/* Glow Effect */
.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 77, 77, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse 4s infinite ease-in-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-5px);}
    60% {transform: translateY(-3px);}
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .ai-hero-section {
        padding: 40px 0;
    }
    .hero-label {
        padding-left: 0;
    }
    .sparkles-container {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        margin-bottom: 10px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-label {
        line-height: 1.3;
    }
    .ai-hero-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    .visual-card {
        border-radius: 20px;
    }
    .ai-service-card {
        padding: 30px;
        clip-path: polygon(
            0 0, 
            calc(100% - 40px) 0, 
            100% 40px, 
            100% 100%, 
            0 100%
        );
    }
    .ai-service-card::after {
        width: 40px;
        height: 40px;
    }
}



/* Services Section */
.services-section {
    background-color: #FAFAFA;
    padding: 100px 0px;
}

.services-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.ai-services-subtitle {
    font-family: "Inter", sans-serif;
        font-size: 16px;
    line-height: 26px;
    color: #616161;
    max-width: 900px;
    margin: 0 auto;
}

.ai-service-card {
    background: white;
    padding: 40px;
    height: 100%;
    position: relative;
    border: 1.5px solid #FFE5E5; /* Light pink border from image */
    border-radius: 20px 75px 20px 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* The "cut corner" using clip-path */
    clip-path: polygon(
        0 0, 
        calc(100% - 60px) 0, 
        100% 60px, 
        100% 100%, 
        0 100%
    );
}

/* Border line for the cut edge */
.ai-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: -27px;
    width: 84px;
    height: 1.2px;
    background: #FFE5E5;
    transform: rotate(45deg);
    transform-origin: top left;
    z-index: 1;
}

.ai-service-card:hover {
    transform: translateY(-8px);
    /* box-shadow: 0 20px 40px rgba(222, 73, 72, 0.08); */
    border-color: var(--accent-red);
}

.ai-service-card:hover::before {
    background: var(--accent-red);
}

.ai-service-card-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-main);
}

.ai-service-card-text {
        font-size: 16px;
    line-height: 26px;
    color: #616161;
    margin-bottom: 0;
}

.cta-section{
    padding: 130px 0px;
}

.cta-card-content{
    border: 1px solid rgba(222, 73, 72, 0.3);
    padding: 50px 40px;
    
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    
}
.cta-card:hover {
    transform: translateY(-8px);
     transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 35px rgba(222, 73, 72, 0.06);
    border-color: rgba(222, 73, 72, 0.15);
}

.cta-card-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
    color: #111;
    margin-bottom: 40px;
    line-height: 1.4;
    max-width: 90%;
}

.cta-button {
    background-color: var(--accent-red);
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(222, 73, 72, 0.2);
    text-decoration: none;
}

.cta-button .dot {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background-color: #a02b2b;
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(222, 73, 72, 0.3);
}

.cta-button:hover .dot {
    transform: scale(1.4);
}

@media (max-width: 991px) {
    .cta-section{
        padding: 50px 0px;
    }
    .cta-card {
        padding: 10px;
    }
}

/* Why Choose Us Section */
.why-choose-section {
    background-color: var(--bg-dark);
    padding: 100px 0;
}

.why-choose-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.why-choose-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #616161;
    max-width: 950px;
}

.features-list {
    margin-top: 2rem;
}

.feature-item {
    padding: 45px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-item.border-0 {
    border-bottom: none !important;
}

.feature-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 0;
}

.feature-text {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #616161;
    margin-bottom: 0;
    max-width: 90%;
}

.feature-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    transition: all 0.3s ease;
    background: transparent;
}

/* Hover Effects */
.feature-item:hover {
    background-color: rgba(0,0,0,0.01);
}

.feature-item:hover .feature-arrow {
    background-color: var(--accent-red);
    border-color: var(--accent-red);
    color: white;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .feature-item {
        padding: 30px 0;
    }
    .feature-title {
        margin-bottom: 15px;
    }
    .feature-text {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .why-choose-section {
        padding: 50px 0px;
    }
}

/* Smart Solutions Slider Section */
/* Smart Solutions Slider Section */
.smart-solutions-section {
    background-color: #F8F9FA;
    padding-top: 100px;
    padding-bottom: 100px;
}

.solutions-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.solutions-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #616161;
    max-width: 800px;
}

/* Slider Header Navigation */
.slider-nav {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background-color: white;
    color: var(--accent-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: var(--accent-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(222, 73, 72, 0.2);
}

/* Horizontal Scroll Container */
.slider-container {
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    /* Hide scrollbar for cleaner look, but keep functionality */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
    padding-bottom: 20px; /* Space for shadow */
}

.slider-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.cards-track {
    display: flex;
    gap: 25px;
    padding: 10px 0; /* Space for hover lift */
    /* Ensure padding left aligns with container on desktop */
    min-width: max-content;
}

.slider-industry-wrapper.swiper {
    width: 100%;
    padding: 0px 10px;
    overflow: hidden;
}

/* Individual Cards */
.solution-card {
    background: white;
    border-left: 1px solid rgba(222, 73, 72, 0.6);
    border-right: 1px solid rgba(222, 73, 72, 0.6);
    border-radius: 24px;
    padding: 35px;
     width: 100%; /* Fixed width for horizontal scroll */
     min-height: 470px;
     height: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    /* max-height: 400px; */
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-red);
    border-left: 2px solid var(--accent-red) !important;
    border-right: 2px solid var(--accent-red) !important;
}

.solution-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
}

.card-arrow {
    color: var(--text-main);
    transition: all 0.3s ease;
}

.solution-card:hover .card-arrow {
    color: var(--accent-red);
    transform: translateX(3px);
}

.solution-desc {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #616161;
}

/* Inner Features Box */
.solution-features {
    background-color: #FFF5F5;
    border-radius: 16px;
    padding: 25px 20px;
    margin-top: auto; /* Push to bottom */
    flex-grow: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-list li {
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.feature-list .chevron {
    color: var(--text-main);
    font-weight: 700;
    margin-right: 12px;
    font-size: 0.85rem;
    letter-spacing: -2px; /* Pull arrows closer together */
    transition: color 0.3s ease;
}

.solution-card:hover .chevron {
    color: var(--accent-red);
}

@media (max-width: 768px) {
    .smart-solutions-section {
        padding: 50px 0px;
    }
    .slider-nav {
        justify-content: flex-start;
    }
    .cards-track {
        gap: 15px;
    }
    .solution-card {
        height: auto;
         /* Smaller cards on mobile */
        padding: 25px;
    }
    .slider-container {
        padding-left: 20px; /* Adjust alignment for mobile */
        padding-right: 20px;
    }
}
/* AI Products Section */
.ai-products-section {
    background-color: #F8F9FA;
    padding-top: 100px;
    padding-bottom: 100px;
}

.products-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.products-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Product Cards */
.product-card {
    background: white;
    border: 1px solid #FFE5E5;
    border-radius: 24px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: row; 
    gap: 15px;
    transition: all 0.3s ease;
    min-height: 270px;
    height: 100%;
}

.product-image-container {
    min-width: 200px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-container.custom-bg-purple {
    background-color: #C084FC; /* Purple bg for app 1 */
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure image covers the area */
    transition: transform 0.5s ease;
}

.product-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Take remaining space */
}

.product-card-title {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    text-align: left;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 20px;
}

.product-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    background-color: white;
    transition: all 0.3s ease;
}

/* Hover Effects */
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: var(--accent-red);
}

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

.product-card:hover .product-arrow {
    background-color: var(--accent-red);
    border-color: var(--accent-red);
    color: white;
    transform: translateX(3px); /* Match slider arrow effect */
}

@media (max-width: 768px) {
    .ai-products-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* Helping Businesses Section */
.helping-businesses-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: var(--bg-dark);
}

.helping-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

/* Image Wrapper */
.helping-img-wrapper {
    width: 100%;
    min-height: 350px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background-color: #f0f0f0;
}

.helping-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.helping-img-wrapper:hover .helping-img {
    transform: scale(1.05);
}

/* Stat Cards */
.stat-card {
    background: linear-gradient(145deg, #ffffff 30%, rgba(255, 230, 230, 0.8) 100%);
    border: 1px solid #FFE5E5;
    border-radius: 20px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    min-height: 350px;
}

.stat-card-large {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 20%, rgba(255, 210, 210, 0.5) 100%);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: var(--accent-red);
}

/* Stat Typography Top */
.stat-number {
    font-family: "Poppins", sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1;
}

.stat-arrow {
    color: var(--accent-red);
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
}

.stat-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    color: #616161;
    margin-top: 15px;
    margin-bottom: 0;
}

/* Stat Typography Bottom */
.stat-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.stat-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .helping-businesses-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .helping-img-wrapper, .stat-card {
        min-height: 300px;
    }
    .stat-number {
        font-size: 2.4rem;
    }
}

/* Elevate Business CTA Section */
.elevate-cta-section {
    position: relative;
    padding: 150px 0;
    background-image: url('../imgs/contact-cta-icons.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

/* Concentric Rings Background */
.ring-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vw;
    max-width: 1200px;
    max-height: 1200px;
    pointer-events: none; /* Let clicks pass through */
}



/* Sizing the nested rings */
.ring-1 { width: 30%; height: 30%; background-color: rgba(255, 255, 255, 0.3); }
.ring-2 { width: 45%; height: 45%; background-color: rgba(255, 255, 255, 0.2); }
.ring-3 { width: 60%; height: 60%; background-color: rgba(255, 255, 255, 0.1); }
.ring-4 { width: 80%; height: 80%; }
.ring-5 { width: 100%; height: 100%; }

/* Floating Icons Container */
.floating-icons-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1000px;
    height: 100%;
    max-height: 500px;
    pointer-events: none; /* Let clicks pass through */
    z-index: 2;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.02);
    animation: float 6s ease-in-out infinite;
    pointer-events: auto; /* Allow hover */
}

.floating-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Positioning Icons */
.icon-angular { bottom: 0%; left: -4%; animation-delay: 0s; }
.icon-wordpress { top: 45%; left: 3%; animation-delay: 1s; }
.icon-flutter { top: 10%; left: 20%; animation-delay: 2s; }
.icon-apple { top: -6%; left: 47%;  animation-delay: 3s; }
.icon-react { top: 10%; right: 20%; animation-delay: 0.5s; }
.icon-android { top: 45%; right: 4%; animation-delay: 1.5s; }
.icon-webflow { bottom: 0%; right: -4%; animation-delay: 2.5s; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Center Content */
.elevate-content {
    position: relative;
    z-index: 5;
    padding: 40px;
    border-radius: 30px;
}

.elevate-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.elevate-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 650px;
}

@media (max-width: 768px) {
    .elevate-cta-section {
        padding: 50px 0px;
        min-height: 400px;
    }
    .floating-icons-container {
        /* Hide or rearrange icons on small screens to prevent overlap */
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(0.6);
    }
    .elevate-content {
        padding: 20px;
    }
}

/* FAQ Section */
.faq-section {
    background-color: #ffffff;
    padding-top: 100px;
    padding-bottom: 100px;
}

.faq-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 90%;
}

/* Custom Accordion Styling */
.custom-accordion {
    --bs-accordion-color: var(--text-main);
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: transparent;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-active-color: var(--text-main);
    --bs-accordion-active-bg: transparent;
}

.custom-accordion .accordion-item {
    background-color: transparent;
    border: none;
    margin-bottom: 15px;
}

.custom-accordion .accordion-button {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-main);
    background-color: white;
    border-left: 1px solid #FFE5E5;
    border-right: 1px solid #FFE5E5;
    border-radius: 12px !important; /* Force rounded corners constantly */
    padding: 24px 30px;
    box-shadow: none;
}

/* Hide default Bootstrap Dropdown Icon */
.custom-accordion .accordion-button::after {
    display: none;
}

/* Add custom + icon */
.custom-accordion .accordion-button::before {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    font-weight: 300;
    color: #F87171; /* Soft red */
    transition: all 0.3s ease;
}

/* Active/Expanded State Styling */
.custom-accordion .accordion-button:not(.collapsed) {
    background-color: #FFF5F5;
    border-color: #F87171; /* Darker border when active */
    border-bottom-left-radius: 0 !important; /* Flatten bottom for body attachment */
    border-bottom-right-radius: 0 !important;
     border-left: 1px solid #F87171 !important;
    border-right: 1px solid #F87171 !important;
}

/* Change icon to - when expanded */
.custom-accordion .accordion-button:not(.collapsed)::before {
    content: '-';
    font-size: 2.2rem; /* slightly larger minus to match weight visually */
}

/* Accordion Body Styling */
.custom-accordion .accordion-collapse {
    border-left: 1px solid #F87171 !important;
    border-right: 1px solid #F87171 !important;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    background-color: #FFF5F5;
    margin-top: -1px; /* Overlap the button border cleanly */
}

.custom-accordion .accordion-body {
    padding: 0 30px 30px 30px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

@media (max-width: 991px) {
    .faq-section {
        padding: 50px 0px;
    }
    .faq-header {
        margin-bottom: 30px;
    }
    .custom-accordion .accordion-button {
        padding: 20px;
        font-size: 1rem;
    }
    .custom-accordion .accordion-button::before {
        right: 20px;
    }
    .custom-accordion .accordion-body {
        padding: 0 20px 20px 20px;
    }
}

/* Latest Blogs Section */
.latest-blogs-section {
    background-color: #ffffff;
    padding-top: 100px;
    padding-bottom: 100px;
}

.blogs-section-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.blogs-section-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Blog Cards */
.blog-card {
    background: #ffffff;
    border: 1px solid #FFE5E5; /* Delicate pink border */
    border-radius: 20px;
    padding: 0; /* Removed inner padding so image touches borders */
    overflow: hidden; /* Ensure image respects the card's border-radius */
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: rgba(222, 73, 72, 0.3); /* Slightly redder on hover */
}

/* Image Wrapper */
.blog-img-wrapper {
    width: 100%;
    height: 240px;
    border-radius: 0; /* Let parent container handle border radius */
    overflow: hidden;
    position: relative;
    /* Basic background colors if image fails / before load */
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: 20px;
}

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

/* Content Area */
.blog-content {
    padding: 25px 30px; /* Internal padding around text */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Metadata Labels */
.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.meta-tag {
    font-size: 12px;
    color: #888;
    padding: 4px 16px;
    border: 1px solid #eee;
    border-radius: 50px; /* Pill shape */
    background: transparent;
    font-weight: 500;
}
.meta-date {
    font-size: 12px;
    color: #888;
    background: transparent;
    font-weight: 500;
}

/* Typography Inside Card */
.blog-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.5;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

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

.blog-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #777;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .latest-blogs-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}


.blogs-section-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.blogs-section-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


/* Statistics Section */
.statistics-section {
    background-color: #ffffff;
    padding-top: 100px;
    padding-bottom: 100px;
}

.statistics-section-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.statistics-section-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #616161;
    margin-top: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Process Cards */
.stat-process-card {
    background: #ffffff;
    border: 1px solid #FFE5E5;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    min-height: 380px;
    transition: all 0.3s ease;
}

.stat-process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(222, 73, 72, 0.1);
    border-color: var(--accent-red);
    background-color: var(--accent-red);
}

.stat-process-card:hover .stat-process-number,
.stat-process-card:hover .stat-process-title,
.stat-process-card:hover .stat-process-desc {
    color: #ffffff !important;
}


.stat-process-number {
    font-family: "Poppins", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
}

.stat-process-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 30px;
}

.stat-process-desc {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #616161;
    margin-bottom: 0;
    margin-top: auto; /* Pushes the description to the bottom */
}

/* Background counter that appears on hover */
.stat-process-card::after {
    content: attr(data-number);
    position: absolute;
    top: 45%;
    /* left: 50%; */
    transform: translate(-50%, -50%) scale(0.8);
    font-size: 15rem; /* Larger font for center look */
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    z-index: -1;
}

.stat-process-card:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 991px) {
    .statistics-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .stat-process-card {
        min-height: auto;
        padding: 30px;
    }
}

/* Generative AI CTA Section */
.gen-ai-cta-section {
    background-color: #ffffff;
    padding-top: 40px;
    padding-bottom: 80px;
}

.gen-ai-cta-card {
    background-image: url(../imgs/ai-full-cta-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid #FFE5E5;
    border-radius: 24px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.gen-ai-cta-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
    letter-spacing: -0.01em;
    width: 65%;
    margin: auto;
    margin-bottom: 20px !important;
}

.full-cta-subtitle{
    margin-bottom: 60px !important;
    width: 65%;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #616161;
    margin: auto;
}

@media (max-width: 768px) {
    .gen-ai-cta-title{
        width: 100%;
    }
    .gen-ai-cta-card {
        padding: 50px 20px;
    }
    .gen-ai-cta-section {
        padding-bottom: 50px;
    }
    .gen-ai-cta-section .row {
        padding: 0px 10px;
    }
    .full-cta-subtitle{
    margin-bottom: 30px;
    width: 100%;
    }
}


.value-added-services-section {
    background-color: #f8f9fa; /* Light grey background */
    padding: 100px 0px;
}

.value-section-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.value-section-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #616161;
    max-width: 900px;
    margin: 0 auto;
}

/* Service Cards */
.value-service-card {
    background: #ffffff;
    border: 1px solid #FFE5E5;
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    transition: all 0.3s ease;
}

.value-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    border-left: 3px solid var(--accent-red);
    border-right: 3px solid var(--accent-red);;
}

.value-icon-box {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-service-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-main);
}

.value-service-desc {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #616161;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .value-added-services-section {
        padding: 50px 0px;
    }
    .value-service-card {
        padding: 25px;
    }
}


/* Statistics Summary Section */
.stats-summary-section {
    background-color: #ffffff;
    padding-top: 80px;
    padding-bottom: 100px;
}

.stats-summary-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.stats-summary-subtitle {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 auto;
}

/* Stat Summary Cards */
.stat-summary-card {
    background: #FFF5F5; /* Very light pink */
    border-radius: 20px;
    padding: 60px 30px;
    text-align: left;
    height: 100%;
    transition: all 0.3s ease;
}

.stat-summary-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(222, 73, 72, 0.1);
    background-color: var(--accent-red);
}

.stat-summary-card:hover .stat-summary-number,
.stat-summary-card:hover .stat-summary-label {
    color: #ffffff !important;
}

.stat-summary-number {
    font-family: "Poppins", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.1;
    margin-bottom: 40px;
}

.stat-summary-label {
    font-size: 1rem;
    font-weight: 500;
    color: #888;
}

.stat-summary-card::after {
    content: attr(data-number);
    position: absolute;
    /* top: 50%; */
    left: 70%;
    transform: translate(-50%, -50%) scale(0.8);
    font-size: 8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    z-index: -1;
}

.stat-summary-card:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 1199px) {
    .stat-summary-number {
        font-size: 2.8rem;
    }
}

@media (max-width: 991px) {
    .stats-summary-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .stat-summary-card {
        padding: 40px 25px;
    }
}


/* Testimonial Section */
.testimonial-section {
    background-color: #f8f9fa;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

/* Slider Essentials */
.testimonial-slider-wrapper {
    position: relative;
    width: 100%;
    margin-top: 40px;
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.testimonial-slider-wrapper.grabbing {
    cursor: grabbing;
}

/* Fade Effects */
.testimonial-slider-wrapper::before,
.testimonial-slider-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testimonial-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa 0%, transparent 100%);
}

.testimonial-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa 0%, transparent 100%);
}

.testimonial-track {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    transition: transform 0.5s ease;
    will-change: transform;
}

.testimonial-section-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.testimonial-section-subtitle {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

/* Testimonial Cards */
.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    flex: 0 0 calc(33.333% - 20px);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* box-shadow: 0 4px 20px rgba(0,0,0,0.02); */
    max-height: 400px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card.expanded {
    max-height: 2000px; /* High enough to show all content */
}

.testimonial-card:hover {
    transform: translateY(-8px);
    /* box-shadow: 0 15px 35px rgba(0,0,0,0.06); */
}

.testimonial-card-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #888;
    margin-bottom: 10px;
    overflow: hidden;
    flex: 1;
    position: relative;
}

.testimonial-card.has-long-text:not(.expanded) .testimonial-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));
    pointer-events: none;
}

.read-more-btn {
    background: none;
    border: none;
    color: #f44336;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0;
    margin-bottom: 20px;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
    display: none; /* Hidden by default, JS will show if needed */
}

.read-more-btn:hover {
    color: #d32f2f;
    text-decoration: underline;
}

.testimonial-card.has-long-text .read-more-btn {
    display: block;
}

/* Profile Info */
.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-name {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
}

.profile-role {
    font-size: 0.85rem;
    color: #aaa;
}

@media (max-width: 1199px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
    .testimonial-slider-wrapper::before,
    .testimonial-slider-wrapper::after {
        width: 80px;
    }
}

@media (max-width: 991px) {
    .testimonial-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .testimonial-card {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
    .testimonial-slider-wrapper::before,
    .testimonial-slider-wrapper::after {
        width: 40px;
    }
}

.ai-portfolio-title{
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 26px;
    line-height: 30px;
    color: #000;
}

.ai-portfolio-card{
    background-color: rgba(248, 248, 248, 1);
    border-radius: 20px;
    padding: 30px;
}

.ai-portfolio-image{
    min-height:400px;
    height: 100%;
   
}
.ai-portfolio-image img{
     border-radius: 20px;
   
}

.ai-portfolio-small-image{
   min-height:250px
}
.ai-portfolio-small-image img{
   border-radius: 16px;
}
.ai-portfolio-small-text{
    background-color: rgba(204, 228, 255, 1);
    border-radius: 16px;
}

.ai-portfolio-tags{
   font-family:  "Poppins", sans-serif;
   color: #000;
font-weight: 400;
font-style: Regular;
font-size: 14px;
line-height: 18px;
letter-spacing: 0%;
text-transform: capitalize;
border-radius: 14px;

}

.ai-portfolio-view-more{
    background-color: var(--accent-red);
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(222, 73, 72, 0.2);
}