/* whatsp logo css */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 9px;
    z-index: 999;
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
    margin-bottom: 40px;
    margin-left: 10px;
    border-radius: 50%;
    /* box-shadow: 10px 10px 10px grey; */
    transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
    transform: scale(1.1);
}



/* ----------------------------Main Services----------------------------------------- */
.iconbox-2 {
    position: relative;
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 1;
}

.iconbox-2 .icon,
.iconbox-2 .title a {
    position: relative;
    z-index: 2;
    /* Keep icon + text above overlay */
    transition: color 0.3s ease;
}

.iconbox-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #e99b57;
    z-index: 0;
    /* stays behind everything */
    transition: width 0.4s ease-in-out;
}

.iconbox-2:hover::before {
    width: 100%;
}

.iconbox-2:hover,
.iconbox-2:hover .title a {
    color: #fff;
}

/* ------------------Why captico Section------------------------ */


.custom-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.custom-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.custom-list li::before {
    content: "➜";
    position: absolute;
    left: 0;
    color: #ee872d;
    /* Bootstrap primary color */
    font-weight: bold;
}


/* -----------------------= Tech Stack Showcase--------------------------------------- */
.tech-marquee-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.top-marquee {
    transform: translateY(-10px);
}

.bottom-marquee {
    transform: translateY(10px);
}

.tech-marquee {
    display: flex;
    width: 100%;
    /* overflow: hidden; */
    /* Desktop overflow hidden */
}

.marquee-content {
    display: flex;
    gap: 40px;
    margin-left: 22px;
    white-space: nowrap;
}

/* Desktop Web - Original marquee animation */
.marquee-left .marquee-content {
    animation: scrollLTR 5s linear forwards;
}

.marquee-right .marquee-content {
    animation: scrollRTL 5s linear forwards;
}

@keyframes scrollLTR {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

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

    100% {
        transform: translateX(0);
    }
}

.tech-card {
    background: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    /* box-shadow: 10px 10px 10px #919aa3; */
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 140px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tech-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    transition: transform 0.3s;
}

.tech-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.tech-card span {
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
    text-align: center;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .tech-marquee {
        overflow-x: auto;
        /* Enable horizontal scrolling */
        scroll-behavior: smooth;
    }

    .marquee-content {
        gap: 20px;
        margin-left: 0;
        flex-wrap: nowrap;
        /* Keep all cards in a row */
        animation: none;
        /* Disable animation on mobile */
    }

    /* Optional: hide scrollbar for nicer look */
    .tech-marquee::-webkit-scrollbar {
        display: none;
    }

    .tech-marquee {
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }

    .tech-card {
        min-width: 100px;
        padding: 10px 15px;
    }

    .tech-card img {
        width: 40px;
        height: 40px;
    }
}

/* <!-- ======= Testimonial ======= --> */
/* Base style for both buttons */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #db8e4b;
    border-radius: 50%;
    opacity: 1;
    transition: background-color 0.3s ease;
    z-index: 2;
}

/* Optional: Adjust positioning a bit */
.carousel-control-prev {
    left: -30px;
    /* Push outside the carousel a bit */
}

.carousel-control-next {
    right: -30px;
}

/* Icon style */
.carousel-control-prev-icon {
    /* Left-facing white arrow */
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='%23ffffff' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M9.5 12.5L5.5 8l4-4'/%3E%3C/svg%3E");
    width: 2rem;
    height: 2rem;
    background-size: 100% 100%;
}

.carousel-control-next-icon {
    /* Right-facing white arrow */
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg fill='%23ffffff' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 3.5L10.5 8l-4 4'/%3E%3C/svg%3E");
    width: 2rem;
    height: 2rem;
    background-size: 100% 100%;
}

/* Hover state */
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: #f68d2e;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 1.5rem;
        height: 1.5rem;
    }

    .carousel-control-prev {
        left: -20px;
    }

    .carousel-control-next {
        right: -20px;
    }
}

@media (max-width: 480px) {

    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 1.2rem;
        height: 1.2rem;
    }

    .carousel-control-prev {
        left: -15px;
    }

    .carousel-control-next {
        right: -15px;
    }
}



/* ===== FINAL CTA SECTION STYLES ===== */
.final-cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #fef8f5 0%, #f8f9fa 50%, #fef8f5 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Animated Background */
.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(246, 141, 46, 0.1) 0%,
            rgba(239, 127, 77, 0.15) 50%,
            rgba(246, 141, 46, 0.1) 100%);
    animation: gradientShift 8s ease-in-out infinite;
}

.cta-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(246, 141, 46, 0.2), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(239, 127, 77, 0.15), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(246, 141, 46, 0.25), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(239, 127, 77, 0.2), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(246, 141, 46, 0.15), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleFloat 20s linear infinite;
}

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

/* Badge */
.cta-badge {
    display: inline-block;
}

.badge-text {
    background: rgba(246, 141, 46, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(246, 141, 46, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #f68d2e;
    animation: badgePulse 2s ease-in-out infinite;
}

/* Main Title */
.cta-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #4e4039;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gradient-text {
    background: linear-gradient(45deg, #f68d2e, #ef7f4d, #f68d2e);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 3s ease-in-out infinite;
}

/* Subtitle */
.cta-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #7a6960;
    margin-bottom: 1.5rem;
}

/* Description */
.cta-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #7a6960;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-des {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #7a6960;
    /* max-width: 600px; */
    margin: 0 auto 2rem;
}

.highlight-text {
    color: #7a6960;
    font-weight: 700;
}

/* Stats */
.cta-stats {
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 1px 3px 3px grey;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(246, 141, 46, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #f68d2e;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #7a6960;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.cta-buttons {
    margin: 2rem 0;
}

.btn-primary-cta {
    background: linear-gradient(45deg, #f68d2e, #ef7f4d);
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(246, 141, 46, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

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

.btn-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(246, 141, 46, 0.6);
    text-decoration: none;
    color: white;
}

.btn-secondary-cta {
    background: transparent;
    border: 2px solid #f68d2e;
    padding: 13px 35px;
    border-radius: 50px;
    color: #f68d2e;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary-cta:hover {
    background: linear-gradient(135deg, #f68d2e 0%, #d9731f 100%);
    border-color: #f68d2e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(246, 141, 46, 0.3);
    text-decoration: none;
    color: white;
}

.btn-icon {
    font-size: 1.2rem;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-primary-cta:hover .btn-arrow {
    transform: translateX(5px);
}

/* Trust Section */
.cta-trust {
    margin-top: 3rem;
}

.trust-text {
    color: #7a6960;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-logo {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 25px;
    border: 1px solid rgba(246, 141, 46, 0.2);
    font-size: 0.9rem;
    font-weight: 600;
    color: #7a6960;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.trust-logo:hover {
    background: rgba(246, 141, 46, 0.1);
    border-color: rgba(246, 141, 46, 0.4);
    transform: translateY(-2px);
    color: #f68d2e;
}

/* Animations */
@keyframes gradientShift {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0px) translateX(0px);
    }

    33% {
        transform: translateY(-30px) translateX(30px);
    }

    66% {
        transform: translateY(30px) translateX(-20px);
    }

    100% {
        transform: translateY(0px) translateX(0px);
    }
}

@keyframes gradientText {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .final-cta-section {
        padding: 60px 0;
        min-height: 70vh;
    }

    .cta-main-title {
        font-size: 2.5rem;
    }

    .cta-subtitle {
        font-size: 1.2rem;
    }

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

    .stat-number {
        font-size: 1.5rem;
    }

    .btn-primary-cta,
    .btn-secondary-cta {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .trust-logos {
        gap: 1rem;
    }

    .trust-logo {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .cta-main-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-cta,
    .btn-secondary-cta {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}



/* -------------------------------------Button------------------------------------------------------------ */
.btn-brand {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, #f68d2e 0%, #d9731f 100%);
    border: #f68d2e;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-brand:hover {
    background-color: #d9731f;
    border-color: #d9731f;
    color: #fff;
}

/* ------------------------------------------HERO SECTION----------------------------------------------- */
.text-brand {
    color: #f68d2e;
    /* your brand orange */
}

.btn-brand {
    background-color: #f68d2e;
    border: none;
    color: #fff;
    transition: 0.3s ease;
}

.btn-brand:hover {
    background-color: #d9731f;
    color: #fff;
}

.btn-outline-brand {
    border: 2px solid #f68d2e;
    color: #f68d2e;
    transition: 0.3s ease;
}

.btn-outline-brand:hover {
    background-color: #f68d2e;
    color: #fff;
}

.small-letter-spacing {
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.hero-animation {
    animation: floatHero 6s ease-in-out infinite;
}

@keyframes floatHero {

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

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


/* <!-- CSS (Put in your main CSS file or <style> in <head>) --> */
.btn-brand {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, #f68d2e 0%, #d9731f 100%);
    border: #f68d2e;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-brand:hover {
    background-color: #d9731f;
    border-color: #d9731f;
    color: #fff;
}

/* Outline Brand Button */
.btn-outline-brand {
    border: 2px solid #f68d2e;
    font-size: 1rem;
    color: #f68d2e;
    background: transparent;
    transition: 0.3s;
}

.btn-outline-brand:hover {
    background: linear-gradient(135deg, #f68d2e 0%, #d9731f 100%);
    color: #fff;
}


/* -----------------------------------------------------------00_--------------------- */
