/* Hero Section Container */
.hero-section {
    padding: 80px 0 40px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Typography */
.hero-title {
    color: #102140;
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 90%;
}

/* Buttons */
.btn-group-custom {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background-color: #9f208c; /* Primary Color */
    color: #ffffff;
    border: 2px solid #9f208c;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #7d196e; /* Darker shade for hover */
    border-color: #7d196e;
    color: #ffffff;
}

.btn-outline-custom {
    background-color: #ffffff;
    color: #9f208c; /* Primary Color */
    border: 1px solid #9f208c;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: #fcf0fa; /* Light purple tint for hover */
    color: #9f208c;
}

/* Feature List (Ticks) */
.feature-list {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    color: #4b5563;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.feature-list svg {
    width: 16px;
    height: 16px;
    fill: #102140;
}

/* Right Side Illustration Container */
.illustration-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.illustration-img {
    max-width: 100%;
    height: auto;
}

/* Logo Carousel Section */
.trusted-section {
    margin-top: 60px;
    text-align: center;
}

.trusted-text {
    color: #4b5563;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 25px;
}

/* Carousel Wrapper setup to hide overflow */
.logo-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
    position: relative;
}

/* Gradient mask for smooth fade on edges */
.logo-carousel-wrapper::before,
.logo-carousel-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
}

.logo-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fdf8f9, transparent);
}

.logo-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fdfdfd, transparent);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 50px;
    width: max-content;
    /* Will be animated via JS */
}

.logo-item {
    width: 180px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.logo-item img:hover {
    filter: grayscale(0%) opacity(1);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .illustration-container {
        margin-top: 50px;
    }
    .hero-section {
        text-align: center;
    }
    .hero-subtitle {
        margin: 0 auto 30px auto;
    }
    .btn-group-custom, .feature-list {
        justify-content: center;
    }
}


.btn-group-custom, .feature-list {
        justify-content: left;
    }
    
    
    
    /*industries*/
    
    .industries-section {
            padding: 80px 0;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title {
            color: #102140;
            font-weight: 800;
            font-size: 2.2rem;
            margin-bottom: 15px;
        }

        .section-subtitle {
            color: #6b7280;
            font-size: 1.05rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Card Layout */
        .industry-card {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .industry-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            border-color: #d1d5db;
        }

    
        /* Icon Container (Replacing Images) */
        .icon-container {
            height: 180px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 4rem;
            color: rgba(0, 0, 0, 0.7);
            overflow: hidden;
        }
        
        .icon-container img.illustration-img {
            width: 100%;
            height: 100%;
            max-width: none;   
            object-fit: cover;
            object-position: center;
        }

        .bg-blue-soft { background-color: #e0f2fe; color: #0284c7; }
        .bg-green-soft { background-color: #dcfce7; color: #16a34a; }
        .bg-orange-soft { background-color: #ffedd5; color: #ea580c; }
        .bg-purple-soft { background-color: #f3e8ff; color: #9333ea; }
        .bg-red-soft { background-color: #fee2e2; color: #dc2626; }
        .bg-teal-soft { background-color: #ccfbf1; color: #0d9488; }
        .bg-indigo-soft { background-color: #e0e7ff; color: #4f46e5; }
        .bg-pink-soft { background-color: #fce7f3; color: #db2777; }
        .bg-yellow-soft { background-color: #fef9c3; color: #ca8a04; }
        .bg-cyan-soft { background-color: #cffafe; color: #0891b2; }
        .bg-lime-soft { background-color: #ecfccb; color: #65a30d; }
        .bg-gray-soft { background-color: #f3f4f6; color: #4b5563; }

        /* Card Body Content */
        .card-content {
            padding: 30px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .card-title {
            color: #102140;
            font-weight: 700;
            font-size: 1.25rem;
            margin-bottom: 15px;
        }

        .card-text {
            color: #4b5563;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        /* Explore More Button */
        .btn-explore {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            border: 1px solid #d1d5db;
            border-radius: 50px;
            color: #102140;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            background-color: transparent;
            align-self: flex-start;
            transition: all 0.2s ease;
        }

        .btn-explore i {
            font-size: 0.8rem;
            transition: transform 0.2s ease;
        }

        .btn-explore:hover {
            border-color: #102140;
            background-color: #f9fafb;
            color: #102140;
        }

        .btn-explore:hover i {
            transform: translateX(3px);
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .section-title { font-size: 1.8rem; }
            .industries-section { padding: 50px 0; }
        }
        
        
        /* --- Reusable Components --- */
        .badge-outline {
            border: 1.5px solid #102140;
            color: #102140;
            border-radius: 50px;
            padding: 6px 20px;
            font-size: 0.85rem;
            font-weight: 700;
            display: inline-block;
            background: transparent;
        }

        .section-title {
            color: #102140;
            font-weight: 800;
            font-size: 2.2rem;
            letter-spacing: -0.5px;
        }

        .section-subtitle {
            color: #4b5563;
            font-size: 1.05rem;
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .text-orange {
            color: #ff5722; 
        }

        /* --- Stats Section --- */
        .stats-section {
            background-color: #f8fafc;
            border-bottom: 1px solid #f1f5f9;
        }

        .stat-number {
            color: #102140;
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 5px;
        }

        .stat-label {
            color: #6b7280;
            font-size: 0.95rem;
            font-weight: 600;
            margin: 0;
        }

        /* --- Testimonials Section --- */
        .testimonials-section {
            background-color: #ffffff;
        }

        .testimonial-card {
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            height: 100%;
            background: #ffffff;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
            border-color: #d1d5db;
        }

        .testimonial-text {
            color: #4b5563;
            font-size: 0.95rem;
            line-height: 1.6;
            flex-grow: 1;
            margin-bottom: 25px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-img {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: #f3f4f6;
            object-fit: cover;
        }

        .author-info strong {
            display: block;
            color: #102140;
            font-size: 0.95rem;
            font-weight: 700;
        }

        .author-info span {
            color: #6b7280;
            font-size: 0.85rem;
        }

        /* --- CTA Section --- */
        .cta-section {
            background-color: #ffffff;
            padding-bottom: 80px;
        }

        .cta-box {
            background-color: #10000e;
  background-image: 
    radial-gradient(at 90% 10%, #b54a9d 0px, transparent 50%),
    radial-gradient(at 30% 40%, #5d0a4f 0px, transparent 60%),
    radial-gradient(at 0% 100%, #000000 0px, transparent 50%),
    radial-gradient(at 80% 80%, #31002c 0px, transparent 50%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
            border-radius: 20px;
            padding: 60px 50px;
            position: relative;
            overflow: hidden;
            padding-right: 0px;
            
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 30px 30px;
            opacity: 0.3;
            pointer-events: none;
        }

        .cta-title {
            color: #ffffff;
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 25px;
            line-height: 1.2;
            position: relative;
            z-index: 2;
        }

        .cta-btn {
            background-color: #ffffff;
            color: #0b1528;
            padding: 12px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .cta-btn:hover {
            background-color: #f1f5f9;
            color: #0b1528;
            transform: scale(1.02);
        }

        .cta-features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            list-style: none;
            padding: 0;
            margin: 0;
            position: relative;
            z-index: 2;
        }

        .cta-features li {
            color: #e2e8f0;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
        }

        .cta-features svg {
            width: 16px;
            height: 16px;
            fill: #ffffff;
        }

        .cta-illustration-container {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .section-title { font-size: 1.8rem; }
            .stat-number { font-size: 2.2rem; }
            .cta-box { padding: 40px 30px; text-align: center; }
            .cta-features { justify-content: center; }
            .cta-title { font-size: 2rem; }
            .cta-illustration-container { margin-top: 40px; }
        }
        
        
        
        /*bread crumb*/
.hero-breadcrumb {
    margin-bottom: 22px;
}
.hero-breadcrumb .breadcrumb {
    margin-bottom: 0;
    flex-wrap: wrap;
    row-gap: 6px;
    font-size: 0.9rem;
    align-items: center;
}
.hero-breadcrumb .breadcrumb-item {
    display: flex;
    align-items: center;
}
.hero-breadcrumb .breadcrumb-item a {
    color: #6b7280;
    text-decoration: none;
}
.hero-breadcrumb .breadcrumb-item a:hover {
    color: #7D196E;
    text-decoration: underline;
}
.hero-breadcrumb .breadcrumb-item.active {
    color: #111827;
    font-weight: 500;
}
.hero-breadcrumb .breadcrumb-item + .breadcrumb-item {
    margin-left: 10px;
}
.hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "";
}
.hero-breadcrumb .breadcrumb-divider {
    display: inline-flex;
    align-items: center;
    margin: 0 10px;
    font-size: 10px;
    color: #9ca3af;
}
@media (max-width: 576px) {
    .hero-breadcrumb {
        margin-bottom: 14px;
    }
    .hero-breadcrumb .breadcrumb {
        font-size: 0.8rem;
    }
    .hero-breadcrumb .breadcrumb-divider {
        margin: 0 6px;
        font-size: 9px;
    }
}



