﻿/* ================= OUR SERVICE ================= */
.our-service {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
    position: relative;
    overflow: hidden;
}

    /* Lightweight decorative background (faster than SVG data URI) */
    .our-service::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(0,123,255,.12) 2px, transparent 3px), radial-gradient(circle at 80% 80%, rgba(0,195,255,.10) 3px, transparent 4px);
        opacity: .3;
        pointer-events: none;
    }

    /* Heading */
    .our-service h2 {
        font-size: 42px;
        font-weight: 700;
        padding: 0 20px;
        background: linear-gradient(90deg, #007bff, #00c3ff);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.h-line {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #007bff, #00c3ff);
    margin: 20px auto;
    border-radius: 10px;
}

/* ================= SERVICE CARD ================= */
.service-card {
    position: relative;
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: transform .7s ease, opacity .7s ease, box-shadow .4s ease;
    will-change: transform;
}

    /* Entry animation */
    .service-card.animate {
        opacity: 1;
        transform: translateY(0);
    }

    /* Hover elevation */
    .service-card:hover {
        transform: translateY(-12px) scale(1.03);
        box-shadow: 0 22px 45px rgba(0,123,255,.25);
    }

    /* Overlay (GPU-accelerated, no width/height animation) */
    .service-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, #007bff, #00c3ff);
        transform: scale(0);
        transition: transform .55s ease;
        border-radius: inherit;
        z-index: 0;
    }

    .service-card:hover::before {
        transform: scale(1.4);
    }

    /* Keep content above overlay */
    .service-card * {
        position: relative;
        z-index: 1;
    }

    /* Image */
    .service-card img {
        width: 100px;
        height: auto;
        margin-bottom: 20px;
        transition: transform .4s ease, filter .3s ease;
    }

    .service-card:hover img {
        transform: scale(1.15) rotate(4deg);
        filter: brightness(0) invert(1);
    }

    /* Text */
    .service-card h4 {
        font-size: 17px;
        margin-bottom: 7px;
        transition: color .3s ease;
    }

    .service-card p {
        font-size: 13px;
        line-height: 1.6;
        transition: color .3s ease;
        margin-bottom:2px !important; 
    }

    .service-card:hover h4,
    .service-card:hover p {
        color: #fff;
    }

/* Explore button */
.explore-btn {
    display: inline-block;
    margin-top: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #0b5ed7;
    text-decoration: none;
    transition: color .3s ease;
}

.service-card:hover .explore-btn {
    color: #fff;
}

/* ================= HERO SECTION ================= */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background-image: url('@Url.Content("~/Images/slider4.png")');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Disable fixed background on mobile */
@media (max-width: 1024px) {
    .hero-section {
        background-attachment: scroll;
    }
}

.hero-content {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.hero-text {
    max-width: 700px;
    color: #fff;
}

    .hero-text h1 {
        font-size: 2rem;
        font-weight: 800;
        line-height: 1.2;
        text-shadow: 0 2px 10px rgba(0,0,0,.6);
    }

    .hero-text p {
        font-size: .9rem;
        margin: 20px 0 30px;
        text-shadow: 0 2px 8px rgba(0,0,0,.5);
    }

/* CTA Button */
.btn-know-more {
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 700;
    transition: background-color .3s ease, color .3s ease;
}

    .btn-know-more:hover {
        background: #fff;
        color: #007bff;
    }

/* Mobile tweak */
@media (max-width: 678px) {
    .hero-text p {
        margin-right: 0;
    }
}

/*---------------------------------------------------our clients--------------------------------*/

/*-----------------------------------------clients----------------------------------------------------------*/

.illustration-section h1 {
    font-size: 15px; /* Smaller title */
    color: #1e3a8a;
    margin-bottom: 8px;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contain {
        flex-direction: column;
        max-width: 600px;
        margin: 20px auto;
    }

    .illustration-section {
        order: -1;
        padding: 40px 30px;
    }

    .call-to-touch {
        position: static;
        transform: none;
        margin-bottom: 15px;
        padding: 8px 20px;
        font-size: 12px;
    }
}

.service-card {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

    .service-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

@media (max-width: 576px) {
    .form-section {
        padding: 30px 25px;
    }

        .form-section h2 {
            font-size: 20px;
        }

    .illustration-section h1 {
        font-size: 24px;
    }

    .video-wrapper {
        max-width: 280px;
    }
}

/* Desktop: Form left, BIG video right */
@media (min-width: 992px) {
    .contact-section {
        flex-direction: row;
        max-width: 1600px;
        margin: 0 auto;
    }

    /* Form side - compact */
    .contain {
        flex: 1;
        max-width: 520px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    /* Video side - takes more space and bigger video */
    .illustration-section {
        flex: 1.5; /* Video gets ~60% of the width */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .video-wrapper {
        width: 88%;
        max-width: 950px; /* Much larger */
        margin: 0 auto;
    }

    .illustration-video {
        width: 100%;
        max-width: 1330px; /* Even bigger – adjust up to 1100px if needed */
        height: 1000px;
        max-height: 650px; /* Taller for impact */
        object-fit: cover;
    }

    .illustration-section h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .underline {
        width: 80px;
        height: 4px;
        margin: 0 auto 35px;
        background: #4a90e2;
    }
}

/* Mobile & Tablet: Video on top (or bottom if you prefer) */
@media (max-width: 991px) {
    .contact-section {
        flex-direction: column;
        gap: 3rem;
    }

    /* Optional: Video on top on mobile */
    .illustration-section {
        order: -1;
    }

    .video-wrapper {
        max-width: 100%;
    }

    .illustration-video {
        width: 100%;
        max-width: 750px;
        max-height: 500px;
        margin: 0 auto;
        display: block;
        border-radius: 16px;
    }

    .contain {
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
    }
}

.illustration-video {
    outline: none;
}

    .illustration-video:focus,
    .illustration-video:focus-visible {
        outline: none;
        box-shadow: none;
    }


    /* Optional nicer accessible focus */
    .illustration-video:focus-visible {
        outline: 4px solid rgba(74, 144, 226, 0.4);
        outline-offset: 6px;
    }
.service-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: 4px 17px;
    text-align: center;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.1);
    width: 250px;
    height: 320px;
    margin: 0 auto;
}

    /* Blue expanding overlay on hover */
    .service-card::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: #3b44f6;
        transform: translate(-50%, -50%) rotate(0deg);
        transition: width 1.8s ease, height 1.8s ease, transform 1.8s ease;
        z-index: 0;
    }

    .service-card:hover::before {
        width: 200%;
        height: 200%;
        transform: translate(-50%, -50%) rotate(360deg);
    }

    /* Button styles */
    .service-card .explore-btn {
        position: relative;
        z-index: 1; /* Keeps text above the blue overlay */
        display: inline-block;
        padding: 0px 20px;
        font-size: 17px;
        font-weight: 500;
        color: #0b5ed7; /* Blue text normally */
        background-color: transparent; /* No background */
        text-decoration: none;
        transition: color 0.3s ease;
    }

    /* On card hover → white text, still transparent background */
    .service-card:hover .explore-btn {
        color: #ffffff; /* White text on blue overlay */
        background-color: transparent;
    }

    /* Optional: Add a subtle hover effect just on the button itself */
    .service-card .explore-btn:hover {
        text-decoration: underline;
    }



.clients-marquee {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    margin: 40px 0;
}

.marquee-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px; /* space between items */
    animation: scroll-left-to-right 40s linear infinite; /* adjust seconds for speed */
    width: fit-content;
    will-change: transform;
}

.marquee-item {
    flex: 0 0 146px; /* fixed width per logo container */
    height: 120px;
    background: white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: transform 0.3s ease;
    width:200px !important;`
}

    .marquee-item img {
        max-width: 100%;
        max-height: 90px;
        object-fit: contain;
    }

/* Pause when hovering over the track */
.marquee-track:hover {
    animation-play-state: paused;
}

/* Correct Left → Right direction (logos enter from left, exit to right) */
@keyframes scroll-left-to-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}
.client-card {
    width: 250px; /* BOX WIDTH */
    height: 200px; /* BOX HEIGHT */
    padding: 20px; /* INNER SPACE */
    margin: 0 auto;
}
/* EXTRA LARGE CLIENT BOX */
.client-card {
    width: 340px; /* VERY BIG */
    height: 230px;
    padding: 35px;
    background: #ffffff;
    border-radius: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* EXTRA LARGE LOGO */
.client-logo {
    max-width: 220px;
    max-height: 150px;
    object-fit: contain;
}

/* Hover effect (optional but nice) */
.client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

/* Tablet */
@media (max-width: 991px) {
    .client-card {
        width: 300px;
        height: 210px;
    }

    .client-logo {
        max-width: 190px;
        max-height: 130px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .client-card {
        width: 260px;
        height: 190px;
    }

    .client-logo {
        max-width: 170px;
        max-height: 120px;
    }
}

/*--------------------------------------------------about company ------------------------------------------------------------*/
.hs-about-section {
    padding: 80px 0;
}

.hs-images-stack {
    position: relative;
    height: 480px; /* adjust height as needed */
    width: 100%;
}

.hs-image-card {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
    border: 10px solid white;
    background: white;
}

.hs-image-card--primary {
    top: -28px;
    left: 5%;
    width: 78%;
    transform: rotate(-5deg);
    z-index: 2;
}

.hs-image-card--secondary {
    bottom: 30px;
    right: 5%;
    width: 70%;
    transform: rotate(6deg);
    z-index: 1;
}

.hs-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.label {
    color: #135cb5;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.8rem;
}

.heading {
    font-size: 30px;
    font-weight: 800;
    color: #007bff;
    line-height: 1.1;
}

    .heading span {
        color: #135cb5;
    }

.lead-custom {
    font-size: 13px;
    color: var(--muted-text);
    line-height: 1.5;
}

.nav-tabs-simple .nav-link {
    color: #666;
    font-weight: 600;
    border: none;
    border-radius: 0;
    padding: 0.8rem 1.5rem;
    background: transparent;
}

    .nav-tabs-simple .nav-link:hover,
    .nav-tabs-simple .nav-link.active {
        color: #135cb5;
        border-bottom: 4px solid #135cb5;
    }

.arrow-li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.3rem;
    font-size: 13px;
    color: #444;
}

    .arrow-li::before {
        content: "➜";
        color: #0b5ed7;
        position: absolute;
        left: 0;
        font-size: 1.4rem;
        line-height: 1;
    }

.btn-orange {
    background:#135cb5;
    color: white;
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

    .btn-orange:hover {
        background:#0b5ed7;
        transform: translateY(-2px);
    }

@media (max-width: 991px) {
    .hs-images-stack {
        height: 420px;
        margin-bottom: 3rem;
    }

    .heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .heading {
        font-size: 1.9rem;
    }

    .hs-images-stack {
        height: 360px;
    }
}
/* Initial hidden state */
.hs-about-section .hs-images-stack {
    opacity: 0;
    transform: translateX(-120px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.hs-about-section .row > .col-lg-6:last-child {
    opacity: 0;
    transform: translateX(120px);
    transition: opacity 1.1s ease-out 0.3s, transform 1.1s ease-out 0.3s;
}

/* Visible / animated state */
.hs-about-section.animate .hs-images-stack,
.hs-about-section.animate .row > .col-lg-6:last-child {
    opacity: 1;
    transform: translateX(0);
}

/* Optional – stagger timing */
.hs-about-section.animate .hs-images-stack {
    transition-delay: 0s;
}

.hs-about-section.animate .row > .col-lg-6:last-child {
    transition-delay: 0.3s;
}

/*-------------------------------------------------------industries--------------------------------*/
.industry-section {
    padding: 60px 20px;
}

.industry-tag {
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
}


.industry-card {
    position: relative;
    height: 143px;
    border-radius: 18px;
    /* White shining/glow border */
    border: 2px solid #ffffff;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.7), /* soft white glow */
    0 0 25px rgba(255, 255, 255, 0.4), /* larger outer glow */
    inset 0 0 8px rgba(255, 255, 255, 0.25); /* subtle inner highlight */
    /* Optional: very light background to make glow pop more */
    /* or just: background: rgba(30, 35, 50, 0.9); */
    display: flex;
    width: 249px !important; flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    margin-bottom: 15px;
}

    /* Hover effect - makes it feel more "alive" */
    .industry-card:hover {
        transform: translateY(-4px) scale(1.03);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 0 40px rgba(255, 255, 255, 0.5), inset 0 0 12px rgba(255, 255, 255, 0.35);
    }
    .industry-card:hover {
        transform: translateY(-4px);
    }
.industry-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    margin-bottom: 18px;
    /* Center the icon perfectly inside the circle */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Optional: subtle background to make glow pop more (especially on dark themes)*/
    /* White shining glow */
    color: #ffffff; /* bright white icon */
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9), /* tight bright core */
    0 0 16px rgba(255, 255, 255, 0.7), /* medium glow */
    0 0 28px rgba(255, 255, 255, 0.5), /* larger soft halo */
    0 0 45px rgba(240, 240, 255, 0.3); /* very wide dreamy shine */
    /* Smooth transition for hover (optional but looks alive) */
    transition: all 0.4s ease;
}

    .industry-icon:hover {
        transform: scale(1.12); /* slight grow on hover */
        text-shadow: 0 0 12px rgba(255, 255, 255, 1.0), 0 0 24px rgba(255, 255, 255, 0.9), 0 0 40px rgba(255, 255, 255, 0.7), 0 0 70px rgba(220, 230, 255, 0.5);
    }

.fw-semibold {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.25;
    text-align: center;
    color: #ffffff;
    margin: 0 auto; /* ✅ centers element */
    width: 180px; /* more realistic width */
}

.btn-orange {
    background: #135cb5;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
}

    .btn-orange:hover {
        background: #e56d00;
        color: #fff;
    }

.industry-card {
    position: relative;
    overflow: hidden; /* REQUIRED */
}

    

    /* ON HOVER → SLIDE UP */
    .industry-card:hover::after {
        transform: translateY(0);
    }

    /* CONTENT ABOVE BACKGROUND */
    .industry-card > * {
        position: relative;
        z-index: 2;
    }
.btn-blue {
    color:white;
    border: 2px solid #ffffff;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.7), /* soft white glow */
    0 0 25px rgba(255, 255, 255, 0.4), /* larger outer glow */
    inset 0 0 8px rgba(255, 255, 255, 0.25); /* subtle inner highlight */
}
.btn-blue:hover{
    color:white;
}  
/*--------------------------------------transforming bussiness------------------------------*/

/* Hero */
.ent-hero-block {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem 4rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5rem;
}

.ent-hero-left,
.ent-hero-right {
    flex: 1 1 45%;
    min-width: 320px;
}

@media (max-width: 991px) {
    .ent-hero-block {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }
}

.ent-eyebrow-badge {
    font-size: 1.1rem;
    font-weight: 600;
    color: #6366f1;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    display: inline-block;
}

.ent-headline-hero {
    font-size: clamp(25px, 5.5vw, 1.75rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #135cb5 0%, #00c3ff 50%, #135cb5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.ent-lead-paragraph {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
    color: #0b5ed7;
}

.ent-supporting-paragraph {
    font-size: 13px;
    line-height: 1.7;
    color: #0b5ed7;
}

/* Services grid */
.ent-services-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin-top: 40px;
}

@media (max-width: 1100px) {
    .ent-services-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 640px) {
    .ent-services-showcase {
        grid-template-columns: 1fr;
    }
}

/* Card base */
.ent-service-showcase-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: var(--ent-clr-dark);
    color: white;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

@media (max-width: 640px) {
    .ent-service-showcase-item {
        height: 260px;
    }
}

.ent-service-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .45;
    transition: opacity .4s ease;
}

.ent-service-showcase-item:hover .ent-service-backdrop {
    opacity: .75;
}

/* Bottom layer (default state) */
.ent-service-content-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 20px 24px 40px; /* more bottom padding so text doesn't touch edge */
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: opacity 0.4s ease;
    box-shadow: inset 0 -60px 70px -30px rgba(0, 0, 0, 0.5); /* soft dark fade at bottom only */
}

.ent-service-title {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: .4rem;
}

.ent-cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .95rem;
    font-weight: 600;
    color: white;
    margin-top: 8px;
    transition: all .3s ease;
}

    .ent-cta-pill::after {
        content: "→";
        font-size: 1.2rem;
    }

.ent-service-showcase-item:hover .ent-cta-pill {
    transform: translateX(6px);
    color: var(--ent-clr-accent);
}

/* Reveal layer */
.ent-reveal-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: translateY(100%);
    opacity: 0;
    transition: transform .5s cubic-bezier(.4,0,.2,1), opacity .4s ease;
}

.ent-service-showcase-item:hover .ent-reveal-content {
    transform: translateY(0);
    opacity: 1;
}

.ent-service-showcase-item:hover .ent-service-content-layer {
    opacity: 0;
}

.ent-reveal-title {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.25;
}

.ent-reveal-text {
    font-size: 1.03rem;
    max-width: 88%;
    margin-bottom: 20px;
    opacity: .95;
}

.ent-reveal-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    padding: 10px 22px;
    border: 2px solid rgba(255,255,255,.5);
    border-radius: 50px;
    transition: all .3s ease;
}

    .ent-reveal-cta:hover {
        background: rgba(255,255,255,.18);
        transform: scale(1.05);
    }

/* Per-service reveal backgrounds */
.ent-service-ai .ent-reveal-content {
    background: linear-gradient(135deg, rgba(30,58,138,.8), rgba(59,130,246,.3));
}

.ent-service-digital .ent-reveal-content {
    background: linear-gradient(135deg, rgba(14,116,144,.38), rgba(34,211,238,.3));
}

.ent-service-microsoft.ent-reveal-content {
    background: linear-gradient(135deg, rgba(30,64,175,.38), rgba(96,165,250,.3));
}

.ent-service-platform .ent-reveal-content {
    background: linear-gradient(135deg, rgba(109,40,217,.38), rgba(192,132,252,.3));
}
/*-----------------------------------------------organic curve design -----------------------------------------------------------------*/
.main-container {
    min-height: 100vh;
    padding: 40px 0;
}

.left-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title-orange {
    color: #0b5ed7;
    font-weight: 700;
}

.section-header {
    cursor: pointer;
    user-select: none;
    transition: all 0.25s ease;
    border-bottom: 1px solid #dee2e6;
    padding: 10px 0 !important;
}

    .section-header:hover {
        background-color: #f1f3f5;
    }

    .section-header.active {
        font-weight: 600;
        color: #0d6efd;
    }

.section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 15px;
    font-size:13px !important;
}
    .section-content.show {
        max-height: 600px; /* adjust if content is very long */
        padding: 20px 15px;
    }
.plus-icon {
    font-size: 1.4rem;
    font-weight: bold;
    transition: transform 0.3s;
}
.section-header.active .plus-icon {
    transform: rotate(45deg);
}

.header-line {
    background: linear-gradient(to right, #0d6efd, #6610f2);
    margin-bottom: 30px;
    border-radius: 4px;
}
@media (max-width: 992px) {
    .left-image {
        height: 450px;
    }
}
.hero-bg {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    min-height: 35vh;
    max-height: 40vh;
    padding: 3rem 1rem 4rem;
    display: flex;
    align-items: center;
}

.highlight-dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    background-color: #3b82f6;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

.hero-title {
    font-size: 30px !important;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.75rem;
}

.btn-gradient {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border: none;
    transition: all 0.25s ease;
}

    .btn-gradient:hover {
        background: linear-gradient(90deg, #2563eb, #3b82f6);
        transform: translateY(-2px);
    }

.text-highlight {
    color: #60a5fa;
    font-weight: 700;
}

@media (max-width: 576px) {
    .hero-bg {
        padding: 2.5rem 1rem 3.5rem;
        min-height: 32vh;
    }

    .hero-title {
        font-size: 26px !important; /* slightly smaller on very small phones if needed */
        line-height: 1.3;
    }
}