.algotrance-hero {
    width: 100%;
    background: #ffffff;
    padding: 70px 0 75px;
    overflow: hidden;
}


.navbar-brand img {
    max-width: 15% !important;
}

.algotrance-hero-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;
}


.contact_section {
    background-color: #fff;
}


/* =========================
   LEFT CONTENT
========================= */

.algotrance-hero-content {
    width: 48%;
    padding-left: 10px;
}

.algotrance-small-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #ff3131;
    margin-bottom: 18px;
}

.algotrance-hero-content h1 {
    margin: 0 0 22px;

    font-size: 54px;
    line-height: 1.08;

    font-weight: 800;
    letter-spacing: 1px;

    color: #294b55;
}

.algotrance-hero-content p {
    max-width: 520px;

    margin: 0 0 30px;

    font-size: 16px;
    line-height: 1.8;

    color: #5d6d73;
}


/* =========================
   BUTTONS
========================= */

.algotrance-hero-buttons {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}

.algotrance-btn-primary,
.algotrance-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 30px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;

    transition: all 0.3s ease;
}

.algotrance-btn-primary {
    background: #0097B2;
    color: #ffffff;
}

.algotrance-btn-primary:hover {
    background: #00bfae;
    color: #ffffff;
}

.algotrance-btn-secondary {
    background: #294b55;
    color: #ffffff;
    margin-left: 2px;
}

.algotrance-btn-secondary:hover {
    background: #00bfae;
    color: #ffffff;
}


/* =========================
   RIGHT VISUAL
========================= */

.algotrance-hero-visual {
    width: 52%;
    position: relative;
}

.algotrance-slider {
    width: 100%;
    height: 490px;

    position: relative;

    overflow: hidden;

    background: #f5f8f8;
}


/* IMAGE SLIDES */

.algotrance-slide {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;

    transform: scale(1.03);

    pointer-events: none;
}

.algotrance-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.algotrance-slide img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================
   SLIDER ARROWS
========================= */

.algotrance-slider-prev,
.algotrance-slider-next {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    border: none;

    background: rgba(255,255,255,0.95);

    color: #294b55;

    font-size: 26px;

    cursor: pointer;

    z-index: 10;

    transition: all 0.3s ease;
}

.algotrance-slider-prev {
    left: 15px;
}

.algotrance-slider-next {
    right: 15px;
}

.algotrance-slider-prev:hover,
.algotrance-slider-next:hover {
    background: #00bfae;
    color: #ffffff;
}


/* =========================
   SLIDER DOTS
========================= */

.algotrance-slider-dots {
    position: absolute;

    left: 50%;
    bottom: 20px;

    transform: translateX(-50%);

    display: flex;
    gap: 8px;

    z-index: 10;
}

.algotrance-dot {
    width: 9px;
    height: 9px;

    display: block;

    border-radius: 50%;

    background: rgba(255,255,255,0.65);

    cursor: pointer;

    transition: all 0.3s ease;
}

.algotrance-dot.active {
    width: 25px;

    border-radius: 10px;

    background: #00bfae;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .algotrance-hero {
        padding: 55px 0;
    }

    .algotrance-hero-container {
        width: 92%;
        gap: 35px;
    }

    .algotrance-hero-content h1 {
        font-size: 42px;
    }

    .algotrance-hero-content p {
        font-size: 15px;
    }

    .algotrance-slider {
        height: 400px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .algotrance-hero {
        padding: 45px 0 50px;
    }

    .algotrance-hero-container {
        width: 90%;

        flex-direction: column;

        gap: 40px;
    }

    .algotrance-hero-content,
    .algotrance-hero-visual {
        width: 100%;
    }

    .algotrance-hero-content {
        padding-left: 0;
        text-align: left;
    }

    .algotrance-small-title {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .algotrance-hero-content h1 {
        font-size: 36px;
        line-height: 1.1;
        margin-bottom: 18px;
    }

    .algotrance-hero-content p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .algotrance-hero-buttons {
        width: 100%;
    }

    .algotrance-btn-primary,
    .algotrance-btn-secondary {
        min-height: 48px;

        padding: 0 20px;

        font-size: 12px;

        flex: 1;
    }

    .algotrance-slider {
        height: 330px;
    }

    .algotrance-slider-prev,
    .algotrance-slider-next {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .algotrance-hero-content h1 {
        font-size: 31px;
    }

    .algotrance-hero-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .algotrance-btn-primary,
    .algotrance-btn-secondary {
        width: 100%;
        margin-left: 0;
    }

    .algotrance-slider {
        height: 280px;
    }

}

/* =========================================================
   ALGOTRANCE COMMON STYLES
========================================================= */

.algo-section {
    width: 100%;
    padding: 80px 0;
    background: #ffffff;
    font-family: inherit;
    color: #555;
}

.algo-container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
}

.algo-section-title {
    text-align: center;
    margin-bottom: 55px;
}

.algo-section-title h2 {
    margin: 0 0 15px;
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
}

.algo-section-title p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
    color: #777;
}

.algo-title-line {
    width: 55px;
    height: 3px;
    /*background: #159bd7;*/
    background: #0097B2;
    margin: 18px auto 0;
}


/* =========================================================
   1. TECHNOLOGY SOLUTIONS
   Replaces: ADS SERVICES
========================================================= */

.algo-solutions {
    background: #f7f7f7;
}

.algo-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.algo-solution-card {
    background: #ffffff;
    padding: 38px 28px;
    text-align: center;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    min-height: 270px;
}

.algo-solution-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.10);
}

.algo-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    border-radius: 50%;
    border: 3px solid #159bd7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #159bd7;
    font-size: 27px;
}

.algo-solution-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.algo-solution-card p {
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
    color: #777;
}


/* =========================================================
   2. TECHNOLOGY CATEGORIES
   Replaces: AUTOMOTIVE / FASHION CATEGORIES
========================================================= */

.algo-categories {
    background: #ffffff;
}

.algo-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.algo-category-card {
    position: relative;
    min-height: 235px;
    overflow: hidden;
    background: #092d4f;
    color: #fff;
    display: flex;
    align-items: flex-end;
    padding: 28px;
}

.algo-category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.10)
    );
    z-index: 1;
}

.algo-category-card i {
    position: absolute;
    top: 28px;
    left: 28px;
    font-size: 40px;
    color: #20a9e0;
    z-index: 2;
}

.algo-category-content {
    position: relative;
    z-index: 2;
}

.algo-category-content h3 {
    color: #fff;
    font-size: 20px;
    margin: 0 0 10px;
    font-weight: 600;
}

.algo-category-content p {
    color: #e7e7e7;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   3. FEATURED TECHNOLOGIES
   Replaces: PREMIUM ADVERTISEMENT
========================================================= */

.algo-featured {
    background: linear-gradient(
        120deg,
        #0b9bd3,
        #087d96
    );
    color: #fff;
}

.algo-featured .algo-section-title h2,
.algo-featured .algo-section-title p {
    color: #fff;
}

.algo-featured .algo-title-line {
    background: #fff;
}

.algo-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.algo-feature-card {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 35px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.algo-feature-card:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-6px);
}

.algo-feature-card i {
    font-size: 42px;
    margin-bottom: 22px;
    color: #fff;
}

.algo-feature-card h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 13px;
}

.algo-feature-card p {
    color: #e9faff;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}


/* =========================================================
   4. WHY ALGOTRANCE
   Replaces: PRICING PLANS
========================================================= */

.algo-why {
    background: #f7f7f7;
}

.algo-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.algo-why-card {
    background: #fff;
    padding: 32px 22px;
    text-align: center;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.algo-why-card:hover {
    border-color: #159bd7;
    transform: translateY(-5px);
}

.algo-why-card i {
    font-size: 35px;
    color: #159bd7;
    margin-bottom: 20px;
}

.algo-why-card h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
}

.algo-why-card p {
    font-size: 13px;
    line-height: 1.8;
    margin: 0;
    color: #777;
}


/* =========================================================
   5. PRODUCTS
   Replaces: SHOP
========================================================= */

.algo-products {
    background: #fff;
}

.algo-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.algo-product-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: all 0.3s ease;
}

.algo-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}

.algo-product-image {
    height: 190px;
    background: linear-gradient(
        135deg,
        #061c35,
        #0b6c9d
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 55px;
}

.algo-product-content {
    padding: 25px;
}

.algo-product-content h3 {
    font-size: 19px;
    color: #333;
    margin-bottom: 12px;
}

.algo-product-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #777;
    margin: 0;
}


/* =========================================================
   6. TECHNOLOGY INSIGHTS
   Replaces: BLOG
========================================================= */

.algo-insights {
    background: #f7f7f7;
}

.algo-insight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.algo-insight-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    overflow: hidden;
}

.algo-insight-image {
    height: 180px;
    background: linear-gradient(
        135deg,
        #102c4d,
        #159bd7
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 50px;
}

.algo-insight-content {
    padding: 25px;
}

.algo-insight-content small {
    color: #159bd7;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}

.algo-insight-content h3 {
    color: #333;
    font-size: 19px;
    margin: 10px 0 12px;
}

.algo-insight-content p {
    color: #777;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.algo-read-more {
    color: #159bd7;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}


/* =========================================================
   7. SOLUTIONS
   Replaces: SELL
========================================================= */

.algo-business-solutions {
    background: #ffffff;
}

.algo-alternate {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 75px;
}

.algo-alternate:last-child {
    margin-bottom: 0;
}

.algo-alternate.reverse {
    flex-direction: row-reverse;
}

.algo-alternate-icon {
    flex: 0 0 42%;
    min-height: 270px;
    background: linear-gradient(
        135deg,
        #08294b,
        #159bd7
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.algo-alternate-icon i {
    font-size: 85px;
}

.algo-alternate-content {
    flex: 1;
}

.algo-alternate-content h3 {
    font-size: 27px;
    color: #333;
    margin-bottom: 15px;
}

.algo-alternate-content h3::after {
    content: "";
    display: block;
    width: 45px;
    height: 3px;
    background: #159bd7;
    margin-top: 14px;
}

.algo-alternate-content p {
    color: #777;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.algo-solution-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.algo-solution-list li {
    margin-bottom: 9px;
    font-size: 14px;
    color: #555;
}

.algo-solution-list li i {
    color: #159bd7;
    margin-right: 8px;
}


/* =========================================================
   8. ABOUT ALGOTRANCE
   Replaces: GENERIC ABOUT
========================================================= */

.algo-about {
    background: #f7f7f7;
}

.algo-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.algo-about-visual {
    min-height: 390px;
    background: linear-gradient(
        135deg,
        #061d39,
        #0a83b9
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.algo-about-visual::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 50%;
}

.algo-about-visual::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 50%;
}

.algo-about-visual i {
    font-size: 90px;
    z-index: 2;
    color: #fff;
}

.algo-about-content h2 {
    color: #333;
    font-size: 32px;
    margin-bottom: 18px;
}

.algo-about-content h2 span {
    color: #159bd7;
}

.algo-about-content p {
    color: #777;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 16px;
}

.algo-about-points {
    margin-top: 25px;
}

.algo-about-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}

.algo-about-point i {
    color: #159bd7;
    font-size: 20px;
    margin-right: 15px;
    margin-top: 3px;
}

.algo-about-point h4 {
    color: #333;
    font-size: 16px;
    margin: 0 0 5px;
}

.algo-about-point p {
    margin: 0;
    font-size: 13px;
}


/* =========================================================
   TECHNOLOGY CTA
========================================================= */

.algo-cta {
    padding: 70px 20px;
    background: linear-gradient(
        120deg,
        #061f3c,
        #0a8dbd
    );
    text-align: center;
    color: #fff;
}

.algo-cta h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 15px;
}

.algo-cta p {
    max-width: 700px;
    margin: 0 auto 25px;
    color: #e9faff;
    line-height: 1.8;
}

.algo-cta-btn {
    display: inline-block;
    padding: 13px 30px;
    background: #fff;
    color: #087cae;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.algo-cta-btn:hover {
    background: #159bd7;
    color: #fff;
}


/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .algo-solution-grid,
    .algo-category-grid,
    .algo-featured-grid,
    .algo-product-grid,
    .algo-insight-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .algo-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .algo-about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .algo-alternate,
    .algo-alternate.reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 55px;
    }

    .algo-alternate-icon {
        width: 100%;
        min-height: 230px;
    }

    .algo-alternate-content {
        width: 100%;
    }
}


@media (max-width: 767px) {

    .algo-section {
        padding: 55px 0;
    }

    .algo-container {
        width: 90%;
    }

    .algo-section-title {
        margin-bottom: 35px;
    }

    .algo-section-title h2 {
        font-size: 27px;
    }

    .algo-section-title p {
        font-size: 14px;
    }

    .algo-solution-grid,
    .algo-category-grid,
    .algo-featured-grid,
    .algo-product-grid,
    .algo-insight-grid,
    .algo-why-grid {
        grid-template-columns: 1fr;
    }

    .algo-solution-card {
        min-height: auto;
    }

    .algo-category-card {
        min-height: 220px;
    }

    .algo-feature-card {
        padding: 30px 22px;
    }

    .algo-alternate-icon {
        min-height: 210px;
    }

    .algo-alternate-icon i {
        font-size: 65px;
    }

    .algo-alternate-content h3 {
        font-size: 24px;
    }

    .algo-about-visual {
        min-height: 280px;
    }

    .algo-about-content h2 {
        font-size: 27px;
    }

    .algo-cta h2 {
        font-size: 26px;
    }
}

.algotrance-contact-banner .align-items-center{
    margin-top: 10%;
}

.algotrance-page-banner .row.align-items-center {
    margin-top: 10%;
}

/*.products-banner-content .align-items-center {
    margin-top: 10% !important;
}*/


.row.align-items-center {
    margin-top: 10%;
}


.algotrance-footer-logo img {
    width: 70% !important;
}

.send_bt button {
    padding: 10px;
    border-radius: 15px;
    width: 100%;
}

.mb-0, .my-0 {
    margin-bottom: 0 !important;
    color: #fff !important;
}