/* =============================================
   MODERN UI/UX STYLES FOR EVENZA HOMEPAGE
============================================= */

/* Modern Hero Section */
.modern-hero-section{
    position: relative;
    overflow: hidden;
    background:url('./assets/solutions.jpg') no-repeat left center/cover;
    /*background: linear-gradient(135deg, #005dcc 0%, #764ba2 100%);*/
}

.xl{ font-size: 18px !important;}


.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #2dbf7d 0%, #2dbf7d 100%);
    top: -250px;
    left: -250px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #005dcc 0%, #1e3c72 100%);
    bottom: -200px;
    right: -200px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #2dbf7d 0%, #1e3c72 100%);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(30px, -50px);
    }
    66% {
        transform: translate(-20px, 20px);
    }
}

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

.badge-modern {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.5rem;
}
.text-evenza{ color:#2dbf7d !important;}
.evenza {
    background: linear-gradient(135deg, #ffffff 30%, #005dcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-subtitle-modern {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-weight: 400;
}

/* Hero Image */
.hero-image-modern {
    position: relative;
    z-index: 2;
}

/* Hero Carousel Styles */
.hero-carousel {
    border-radius: 100px 20px 100px 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.hero-carousel .carousel-inner {
    border-radius: 10px;
}

.hero-dashboard-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-carousel:hover .hero-dashboard-img {
    transform: scale(1.05);
}

.hero-carousel .carousel-indicators {
    bottom: 20px;
}

.hero-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.hero-carousel .carousel-indicators button.active {
    background-color: #fff;
    transform: scale(1.2);
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
    opacity: 1;
}

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

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

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 0255, 0.5);
    width:100px; height:60px;
    padding: 0.5rem 0.5rem;
    border-radius: 30px 7px 30px 7px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: floatCard 3s ease-in-out infinite;
    z-index: 3;
}

.floating-card i {
    font-size: 1.3rem;
}

.floating-card h6 {
    margin: 0;
    font-weight: 600;
    color: #000;
}

.floating-card small {
    color: #666;
    font-size: 0.65rem;
}

.floating-card.card-1 {
    top: -4%;
    right: -6%;
    animation-delay: -1s;
}

.floating-card.card-2 {
    top: 15%;
    right: -10%;
    animation-delay: -2s;
}

.floating-card.card-3 {
    bottom: -4%;
    right: -4%;
    animation-delay: -2s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Trust Badges */
.trust-badges .trust-item {
    display: flex;
    align-items: center;
    gap: 0.05rem;
    padding: 0.05rem;
    /*
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;*/
    color: #999;
    font-size: 0.75rem;
    font-weight: 500;
    border: 0px solid rgba(255, 255, 255, 0.15);
}

.trust-badges .trust-item i {
    font-size: 1.25rem; margin-right: 10px; color: #999;
    
}



/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #343f52;
    margin-bottom: 1rem;
}

.section-divider{
    width: 20%;
    height: 2px;
    background: linear-gradient(135deg, #2dbf7d 0%, #764ba2 100%);
    margin: 0.5rem auto 0.5rem auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Content Box Modern */
.content-box-modern {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* What We Do Enhanced Styles */
.what-we-do-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.what-we-do-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.what-we-do-image-wrapper:hover .what-we-do-img {
    transform: scale(1.05);
}

.what-we-do-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background:transparent;
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.what-we-do-badge i {
    font-size: 2.5rem;
    color: #eeeeaa;
}

.what-we-do-badge h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #ccc;
}

.what-we-do-badge p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.content-box-modern-enhanced {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.badge-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.01) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #005dcc;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.content-box-modern-enhanced h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #343f52;
}

.highlights-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.highlight-item-enhanced {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.highlight-item-enhanced:hover {
    border-color: #005dcc;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.15);
}

.highlight-item-enhanced i {
    font-size: 1.5rem;
    color: #005dcc;
    flex-shrink: 0;
}

.highlight-item-enhanced span {
    font-weight: 600;
    color: #0e253a;
    font-size: 0.85rem;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: #005dcc;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.2);
}

.highlight-item i {
    font-size: 2rem;
    color: #005dcc;
}

.highlight-item span {
    font-weight: 600;
    color: #343f52;
}

/* Solution Cards */
.solution-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    height: 100%;
}

.solution-card:hover {
    border-color: #005dcc;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #005dcc 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.solution-icon i {
    font-size: 2rem;
    color: #fff;
}

.solution-card h4 {
    font-size: 1.2rem !important;
    font-weight: 700;
    color: #343f52;
    margin-bottom: 1rem !important;
}

.solution-card p {
    font-size: 0.95rem !important;
    color: #333;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin:1.5rem 0;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.02rem;
    color: #333;
    font-size: 0.85rem !important;
}

.solution-features i {
    color: #45c4a0;
    font-size: 1.1rem;
}

/* Industry Cards */
.industry-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid #005dcc;
}

.industry-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.industry-icon i {
    font-size: 1.75rem;
    color: #005dcc;
}

.industry-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #343f52;
    margin-bottom: 0.75rem;
}

.industry-card p {
    color: #60697b;
    margin-bottom: 0;
}

/* Why Cards */
.why-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
}

.check-icon {
    width: 60px;
    height: 60px;
    
    border-radius: 50%;
    border: 2px solid #2dbf7d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.check-icon i {
    font-size: 1.75rem;
    color: #2dbf7d;
}



.why-card p {
    margin-bottom: 0;
}

/* Process Timeline */
.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #005dcc 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #343f52;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: #60697b;
    margin-bottom: 0;
}

/* Process Tabs - New Tab Interface */
.process-tabs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-tab {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.6rem 0.5rem;
    background: #fff;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.process-tab:hover {
    border-color: #49e298;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.15);
}

.process-tab.active {
    background: linear-gradient(135deg, #49e298 0%, #49e298 100%);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.step-number-tab {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #49e298;
    transition: all 0.3s ease;
}

.process-tab.active .step-number-tab {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}
.process-tab.active .step-content-tab h5 {
    color: #fff;
}
.step-content-tab {
    flex: 1;
}

.step-content-tab h5 {
    font-size: 1rem !important;
    font-weight: 600;
    color: #343f52;
    margin-top: 0.5rem;
    margin-bottom: 0.1rem;
    transition: color 0.3s ease;
}

.process-tab.active .step-content-tab h4 {
    color: #fff;
}

.step-content-tab p {
    color: #60697b;
    margin-bottom: 0;
    font-size: 0.75rem !important;
    transition: color 0.3s ease;
}

.process-tab.active .step-content-tab p {
    color: rgba(255, 255, 255, 0.9);
}

.tab-arrow {
    font-size: 1.25rem;
    color: #aab0bc;
    transition: all 0.3s ease;
}

.process-tab.active .tab-arrow {
    color: #fff;
}

/* Tab Content - Right Side */
.tab-content-wrapper {
    position: relative;
    min-height: 600px;
}

.tab-pane-custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.tab-pane-custom.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.tab-image-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.tab-image-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.tab-details {
    padding: 2.5rem;
}

.tab-details h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #343f52;
    margin-bottom: 1rem;
}

.tab-details p {
    color: #60697b;
    line-height: 1.7;
}

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

.tab-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #60697b;
    font-size: 0.95rem;
}

.tab-list i {
    color: #45c4a0;
    font-size: 1.1rem;
}

/* Future Ready Section */
.future-ready-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: relative;
    overflow: hidden;
}

.future-ready-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(75, 108, 183, 0.3) 0%, transparent 50%);
}

.future-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}



/* CTA Modern */
.cta-wrapper-modern {
    background: linear-gradient(135deg, #005dcc 0%, #764ba2 100%);
    padding: 4rem 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.cta-title-modern {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-text-modern {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Contact Form Modern */
.contact-form-modern .form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form-modern .form-control:focus {
    border-color: #005dcc;
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.15);
}

.contact-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    margin-bottom: 1.5rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #005dcc 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 1.25rem;
    color: #fff;
}

.contact-item-modern h6 {
    font-weight: 700;
    color: #343f52;
    margin-bottom: 0.25rem;
}

.contact-item-modern p {
    color: #60697b;
    margin-bottom: 0;
}

/* Footer Modern */
.footer-section-modern {
    background: linear-gradient(135deg, #1e3c72 0%, #16213e 100%);
    color: rgba(255, 255, 255, 0.8);
}

.footer-brand {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #005dcc 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-text {
    line-height: 1.4; font-size: 15px !important;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

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

.footer-links li {
    margin-bottom: 0.15rem !important; font-weight: 400 !important;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease; font-weight: 400 !important; font-size: 15px !important;
}

.footer-links a:hover {
    color: #005dcc;
    padding-left: 2px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #005dcc 0%, #764ba2 100%);
    transform: translateY(-5px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6); font-size:12px !important;
}

p, li{ font-size: 16px !important; margin-bottom: 10px !important; }
h1{ font-size:4.5rem !important; letter-spacing: -1px; }
h2{ font-size:3.5rem !important; letter-spacing: -1px; }
h3{ font-size:2.5rem !important; letter-spacing: -1px; }
h4{ font-size:1.5rem !important; font-weight: 600 !important;}
h5{ font-size:1.2rem !important; font-weight: 600 !important; }

h2,h3,h4,h6,h6 { margin-bottom: 0 !important; color: #153247 !important; }
h1 { font-weight: 800 !important;}

.text-blue { color: #005dcc !important;}
.text-darkblue { color: #153247 !important;}
.text-lightblue { color: #1d9add !important;}
.text-green { color: #2dbf7d !important;}

.stat-item {
    text-align: center;
    padding: 2rem 0rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
     border: 4px solid rgba(30,60,144, 0.5) !important;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem !important;
    margin-bottom: 0;
}



.btn-sm{ font-size:14px; padding:0.75rem 1rem;}
.btn-lg{ font-size:16px; padding:0.95rem 1rem;}
.btn-xs{ font-size:12px; padding:0.25rem 0.5rem;}


    


/* Responsive Adjustments */
@media (max-width: 991px) {
    .btn-sm{ font-size:11px !important; font-weight: 500 !important; padding:0.45rem 0.85rem !important; margin: 0 auto !important;}
    .btn-lg{ font-size:16px !important; padding:0.95rem 1rem;}
    .btn-xs{ font-size:10px !important; padding:0.25rem 0.5rem;} 
.contact-item-modern {
    gap: 0.5rem !important; margin-bottom:0 !important;
}    
.footer-text{ font-size: 12px !important;}    
.stat-item {
    text-align: center;
    padding: 2rem 0rem;
    border: 4px solid rgba(30,60,144, 0.5) !important;
}    
.process-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem !important;
    padding: 1rem 0.5rem !important;
    background: #fff;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 0 !important;
}    
.step-content-tab h5 {
    font-size: 0.75rem !important;
    font-weight: 600;
    color: #343f52;
    margin-top: 0.5rem;
    margin-bottom: 0.1rem;
    transition: color 0.3s ease;
}   
.step-content-tab p {
    font-size: 0.6rem !important;
}    

.process-tabs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.process-tab {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem !important;
    background: #f1f1f1;
    border-radius: 15px;
    border: 0px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.why-card{ padding:1rem 1rem !important; }    
.why-card h5{ font-size: 0.65rem !important; }    
.industry-card h5{ font-size: 1rem !important; }


.industry-card, .solution-card{ padding:1rem 1rem !important; }
.industry-card h5{ font-size: 0.75rem !important; }
.solution-card h4{ font-size: 1rem !important; }
.solution-card p{ font-size: 0.75rem !important; }
.solution-card .btn-sm{ font-size:10px !important; padding:0.05rem 0.85rem !important; margin: 0 auto !important;}

.check-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 0px solid #2dbf7d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.check-icon i {
    font-size: 1.5rem;
}
.why-card p{ font-size: 0.6rem !important; }

.highlights-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.2rem;
}

.highlight-item-enhanced {
    display: flex;
    align-items: center;
    gap: 1rem !important;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 12px;
    border: 0px solid transparent;
    transition: all 0.3s ease;
}

.highlight-item-enhanced:hover {
    border-color: #005dcc;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.15);
}

.highlight-item-enhanced i {
    font-size: 1rem;
    color: #005dcc;
    flex-shrink: 0;
}

.highlight-item-enhanced span {
    font-weight: 500;
    color: #0e253a;
    font-size: 0.65rem;
}

.navbar-toggler{ margin-right:6px !important;}    
.xl { font-size: 16px !important; }

.badge-modern {
    font-size: 11px !important;
    border: 0px solid rgba(255, 255, 255, 0.2);
}
.badge-label{font-size: 11px !important;}
p, li{ font-size: 0.65rem !important; margin-bottom: 10px !important; }
h1{ font-size:2.5rem !important; margin-bottom: 0 !important;}
h2{ font-size:2rem !important; font-weight: 600 !important;}
h3{ font-size:1.6rem !important; font-weight: 600 !important;}
h4{ font-size:1.3rem !important; font-weight: 600 !important;}
h5{ font-size:1rem !important; font-weight: 600 !important;}
h6{ font-size:0.75rem !important; font-weight: 600 !important; margin-bottom: 0 !important;}

.heading{letter-spacing: -2px !important; margin-bottom: 0 !important;}

.solution-card h4{ font-size: 1rem !important;}
.solution-features li { font-size: 0.65rem !important; margin: 0 !important; }
.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
     border: 4px solid rgba(30,60,144, 0.5) !important;
}

.stat-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.65rem !important;
    margin-bottom: 0;
}


.modern-hero-section{
    padding: 2.5rem 0.05rem 2.5rem 0.05rem;
}
    h2.hero-title-modern {
        font-size: 3.2rem !important;
    }
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1.1rem;
    }
    
    .hero-dashboard-img {
        height: 350px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .future-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-title-modern {
        font-size: 2rem;
    }
    
    .cta-text-modern {
        font-size: 1.1rem;
    }
    
    .what-we-do-badge {
        bottom: 10px;
        left: 10px;
        padding: .5rem 1.5rem;
    }
    
    .what-we-do-badge i {
        font-size: 1.5rem;
    }
    
    .what-we-do-badge h5 {
        font-size: 0.55rem !important;
    }
    
    .tab-content-wrapper {
        min-height: auto;
        margin-top: 2rem;
    }
    
    .tab-pane-custom {
        position: relative;
        display: none;
    }
    
    .tab-pane-custom.active {
        display: block;
    }
}

@media (max-width: 575px) {
    h2.hero-title-modern{
        font-size: 2.5rem !important;
    }
    .hero-title-modern {
        font-size: 2rem;
    }
    
    .hero-dashboard-img {
        height: 250px;
    }
    
    .badge-modern {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
 
    
    .what-we-do-img {
        height: 300px;
        object-fit: cover;
    }
    
    .content-box-modern-enhanced {
        padding: 1.5rem;
    }
    
    .process-tab {
        padding: 1.25rem 1.5rem;
    }
    
    .step-number-tab {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-content-tab h5 {
        font-size: 1rem;
    }
    
    .step-content-tab p {
        font-size: 0.85rem;
    }
    
    .tab-image-card img {
        height: 200px;
    }
    
    .tab-details {
        padding: 1.5rem;
    }
    
    .tab-details h3 {
        font-size: 1.5rem;
    }
}
