/* ==============================
   0. Global Reset & Base Styles
============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'SF UI Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    background-color: #fff;
}

.paragraph {
    font-family: 'SF UI Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 400;
    font-size: medium;
}

p {
    font-family: 'SF UI Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* ==============================
   1. Headings
============================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: #111;
    margin-bottom: 1rem;
}

.footer {
    background: url('/Assets/Footer.png') no-repeat center center;
    background-size: cover;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    position: relative;
    border: none;

}


/* Remove Bootstrap default caret */
.navbar .dropdown-toggle::after {
    display: none !important;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

.sub {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
}


@font-face {
    font-family: "SF UI Text";
    src: url("fonts/SFUIText-Regular.woff2") format("woff2"),
        url("fonts/SFUIText-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}



/* Base animation setup */
.animate {
    opacity: 0;
    transition: all 0.8s ease-out;
}

/* Left and right can have slight transform if desired */
.animate.left {
    transform: scale(0.95);
}

.animate.right {
    transform: scale(0.95);
}

/* Active state */
.animate.active {
    opacity: 1;
    transform: scale(1);
}


/* ==============================
   2. Paragraphs & Text
============================== */
p {
    margin-bottom: 1rem;
}

.text {
    font-family: 'Orbitron', sans-serif;
}

/* ==============================
   3. Containers
============================== */
.custom-container {
    width: 100%;
    padding: 0 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .custom-container {
        max-width: 950px;
    }

}


@media (min-width: 1400px) {
    .custom-container {
        max-width: 1000px;
    }
}



/* ==============================
   4. Navbar
============================== */
.navbar {
    padding: 0.35rem 1rem;
    min-height: 65px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

/* Nav Links */
.navbar-nav .nav-item {
    margin: 0 4px;
}

.navbar-nav .nav-link {
    background-color: #e6e6e6;
    color: #000 !important;
    border-radius: 50px;
    padding: 8px 25px;
    min-width: 160px;
    text-align: center;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
}

.navbar-nav .nav-link.active {
    background: linear-gradient(90deg, #000, #000);
    color: #fff !important;
}

.navbar-nav .nav-link:hover {
    background-color: #d4d4d4;
}

/* Dropdown Menu Container */
.navbar .dropdown-menu {
    background-color: #fff !important;
    border: none;
    border-radius: 20px;
    /* Rounded dropdown box */
    padding: 10px;
}

/* Dropdown Items */
.navbar .dropdown-menu .dropdown-item {
    color: #000 !important;
    background-color: transparent;
    padding: 5px 25px;
    border-radius: 50px;
    /* Fully rounded (pill shape) */
    transition: all 0.3s ease;
}

/* Hover Effect – Black Background with Full Rounded Edges */
.navbar .dropdown-menu .dropdown-item:hover {
    background-color: #000 !important;
    color: #fff !important;
    border-radius: 50px;
    /* Maintain full curve */
}



/* Dropdown */
.dropdown-menu {
    border-radius: 50px;
    padding: 10px 0;
    min-width: 220px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.dropdown-item {
    border-radius: 50px;
    padding: 8px 20px;
    transition: all 0.3s;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #000;
    color: #fff !important;
}

/* Contact Button */
.contact-btn {
    background-color: #000;
    color: #fff;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-btn:hover {
    background-color: #333;
}

/* Hamburger */
.navbar-toggler {
    border: none !important;
    background: transparent !important;
    padding: 6px;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    display: none;
}

.navbar-toggler span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px 0;
    background-color: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.navbar-toggler.collapsed span:nth-child(1) {
    transform: rotate(0) translateY(0);
}

.navbar-toggler.collapsed span:nth-child(2) {
    opacity: 1;
}

.navbar-toggler.collapsed span:nth-child(3) {
    transform: rotate(0) translateY(0);
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* ==============================
   5. Hero Section
============================== */
/* HERO SECTION */
.hero-section {
    position: relative;
    height: 88vh;
    /* 90% of viewport height */
    margin: 0 2rem 2rem 2rem;
    border-radius: 20px;
    overflow: hidden;
    color: #fff;
    background-color: #000;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    object-fit: cover;
    object-position: center;
    /* keeps image balanced on all screens */
    z-index: 1;
}



/* Title styling */
.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 5.3rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Make sure on smaller desktops (1024px–1366px) it still fits nicely */
@media (max-width: 1366px) {

    .hero-title {
        font-size: 4rem;
    }
}



/* Second & Third lines wrapper */
.line2-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

.line2 {
    width: max-content;
}

.line3 {
    font-size: 2.8rem;
    width: fit-content;
}

/* ==============================
   6. Buttons
============================== */
.btn-gradient {
    background: linear-gradient(90deg, #b01eff, #ff007a);
    color: #fff;
    border-radius: 50px;
    padding: 14px 32px;
    border: none;
    transition: all 0.3s;
}

.btn-gradient:hover {
    opacity: 0.9;
}

.btn-outline-light {
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 500;
    color: #000;
    border: 2px solid #000;
    background: transparent;
}

.btn-outline-light:hover {
    background-color: #000;
    color: #fff;
}

/* Modern Button */
.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-radius: 50px;
    font-weight: 500;
    padding: 10px 18px 10px 22px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-modern:hover {
    transform: translateY(-2px);
}

.btn-modern .circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.btn-modern.filled {
    background-color: #fff;
    color: #000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-modern.filled .circle {
    background: linear-gradient(135deg, #b01eff, #ff007a);
    color: #fff;
}

.btn-modern.filled:hover .circle {
    transform: rotate(45deg);
}

.btn-modern.outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-modern.outline .circle {
    background-color: #fff;
    color: #000;
}

.btn-modern.outline:hover .circle {
    transform: rotate(45deg);
}

/* ==============================
   7. CTA Section
============================== */
#cta-section {
    margin: 0 2rem;
}

#cta-section .cta-box {
    background: linear-gradient(90deg, #6a11cb 0%, #ff0055 100%);
    padding: 20px 40px;
    border-radius: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    width: 100%;
    transition: all 0.4s ease;
}

#cta-section h4 {
    font-size: 1.2rem;
    line-height: 1.5;
}

.cta-btn {
    background: #fff;
    color: #000;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    color: #6a11cb;
    transform: translateY(-2px);
}

.arrow-circle {
    background: #A12161;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cta-btn:hover .arrow-circle {
    background: #ff0055;
    transform: rotate(45deg);
}

/* ==============================
   8. Carousel
============================== */
.carousel-item img {
    object-fit: cover;
    height: 550px;
    width: 100%;
    border-radius: 20px;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 40px;
    border-radius: 15px;
}

.carousel-caption h5 {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.carousel-caption p {
    font-size: 1.1rem;
}

/* ==============================
   9. Responsive Adjustments
============================== */
@media (max-width: 991px) {
    .navbar-nav .nav-link {
        background: transparent;
        padding: 8px 15px;
        min-width: auto;
    }

    .dropdown-menu {
        border-radius: 10px;
    }

    .contact-btn {
        width: 100%;
        margin: 8px 0;
        text-align: center;
        padding: 8px 0;
    }

    .contact-btn {
        display: none;
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
    }

    .dropdown-item {
        min-width: 90%;
        margin: 5px auto;
    }

    .fw-bold {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        margin: 0 1rem 2rem 1rem;
        padding: 4rem 1.5rem;
        min-height: 50vh;
    }

    .fw-bold {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    #cta-section {
        margin: 0 1rem;
    }

    #cta-section .cta-box {
        padding: 20px;
    }

    #cta-section h4 {
        font-size: 1rem;
    }

    .cta-btn {
        padding: 8px 16px;
    }
}

@media (max-width: 575px) {
    .navbar-brand img {
        height: 40px;
    }

    .triangle {
        font-size: 1.5rem;
    }

    .fw-bold {
        font-size: 1.5rem;
    }
}

.hero-section {
    margin-top: 80px;
    /* equal to navbar height */
}

body {
    padding-top: 80px;
    /* equal to navbar height */
}

/* Default (large screens) */
.responsive-heading {
    font-size: 3.5rem;
}

/* Medium devices (tablets, ≤992px) */
@media (max-width: 992px) {
    .responsive-heading {
        font-size: 1.8rem;
    }
}

/* Small devices (phones, ≤768px) */
@media (max-width: 768px) {
    .responsive-heading {
        font-size: 1.8rem;
    }

    .responsive-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Extra small devices (≤576px) */
@media (max-width: 576px) {
    .responsive-heading {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .responsive-btn {
        padding: 6px 16px;
        font-size: 0.85rem;
    }
}















:root {
    --purple: linear-gradient(45deg, rgb(255, 20, 147), rgb(175, 0, 255));
    --light: #f3eef6;
    --card-radius: 18px;
    --card-padding: 20px;
    --card-min-h: 110px;
}

/* SECTION (Desktop height reduced globally now overwritten later) */
.bordered-section {
    border-radius: 30px;
    padding: 20px 30px;
    margin-top: 30px;
    background: #ffffff;
    box-shadow:
        0 0 20px rgba(110, 52, 162, 0.60),
        0 0 45px rgba(110, 52, 162, 0.50),
        0 0 70px rgba(110, 52, 162, 0.35);
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.strategy-wrap,
.strategy-inner {
    height: auto !important;
}

.strategy-wrap {
    padding: 25px 0;
}

.strategy-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

/* BASE CARD */
.card-like {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    background: var(--light);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    min-height: var(--card-min-h);
    box-shadow: 0 6px 18px rgba(18, 18, 18, 0.06);
    text-align: center;
}

.card-like.show {
    opacity: 1;
    transform: translateY(0);
}

.card-like h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
}

/* PURPLE CARD */
.card-like.purple {
    background: var(--purple);
    color: #fff;
}

.card-like.purple p {
    color: rgba(255, 255, 255, 0.95);
}

/* ICON */
.icon-wrap {
    text-align: center;
    margin-bottom: 10px;
}

.icon-wrap i {
    width: 55px;
    height: 55px;
    stroke-width: 1.7;
    color: #ffffff;
}

.card-like:not(.purple) .icon-wrap i {
    color: rgb(175, 0, 255);
}

/* STEP DELAYS */
.card-like[data-step="1"] {
    transition-delay: 0.08s;
}

.card-like[data-step="2"] {
    transition-delay: 0.16s;
}

.card-like[data-step="3"] {
    transition-delay: 0.24s;
}

.card-like[data-step="4"] {
    transition-delay: 0.32s;
}

.card-like[data-step="5"] {
    transition-delay: 0.40s;
}

/* STEP BADGE */
.step-tag {
    position: absolute;
    top: -10px;
    left: -10px;
    background: var(--purple);
    color: #fff;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-like:not(.purple) .step-tag {
    background: #fff;
    color: rgb(175, 0, 255);
    border: 2px solid rgb(175, 0, 255);
}

/* COLUMNS */
.grid-col {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 35%;
}

/* ROBOT COLUMN */
.robot-col {
    width: 22%;
    text-align: center;
}

.robot {
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
}

/* ROBOT FLOAT ANIMATION */
.robot-wrap {
    animation: floaty 3s ease-in-out infinite;
}

@keyframes floaty {
    0% {
        transform: translateY(-4px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(-4px);
    }
}

/* BOTTOM CARD */
.bottom-center-card {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.bottom-center-card article {
    width: 45%;
}

/* TABLET */
@media (max-width: 992px) {
    .bordered-section {
        padding: 20px;
    }

    .grid-col {
        width: 40%;
    }

    .robot-col {
        width: 28%;
    }

    .robot {
        max-width: 200px;
    }

    .bottom-center-card article {
        width: 60%;
    }
}

/* 📱 MOBILE — 10% smaller width + robot bottom */
@media (max-width: 768px) {

    .bordered-section {
        width: 90% !important;
        margin-left: 5% !important;
        margin-right: 5% !important;
        padding: 20px;
    }

    .strategy-inner {
        flex-direction: column;
        gap: 20px;
        padding: 0;
    }

    .grid-col {
        width: 100%;
        order: 1;
    }

    .robot-col {
        width: 100%;
        order: 99;
        margin-top: 20px;
        text-align: center;
    }

    .robot {
        max-width: 150px !important;
        margin: 15px auto;
    }

    .bottom-center-card article {
        width: 100%;
    }

    .step-tag {
        top: -8px;
        left: -8px;
        padding: 4px 10px;
        font-size: 0.75rem;
    }
}

/* SMALL PHONES */
@media (max-width: 420px) {
    :root {
        --card-padding: 14px;
        --card-min-h: 95px;
    }
}

/* DESKTOP CARD GAPS */
.left-col .card-like {
    margin-left: 20px;
}

.right-col .card-like {
    margin-right: 20px;
}

/* REMOVE MOBILE GAPS */
@media (max-width: 768px) {

    .left-col .card-like,
    .right-col .card-like {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* ====== GLOBAL LAPTOP & DESKTOP — STRONG HEIGHT REDUCTION ====== */
@media (min-width: 1024px) and (max-width: 1920px) {

    .bordered-section {
        padding: 10px 18px !important;
        /* ⬅ even smaller height */
        margin-top: 20px !important;
    }

    .strategy-wrap {
        padding: 10px 0 !important;
        /* ⬅ very compact */
    }

    .strategy-inner {
        gap: 14px !important;
        /* ⬅ reduced card spacing */
    }

    .card-like {
        min-height: 80px !important;
        /* ⬅ smaller cards */
        padding: 10px !important;
    }

    .card-like h3 {
        font-size: 1.1rem !important;
        /* ⬅ smaller text */
        margin-bottom: 4px !important;
    }

    .card-like p {
        font-size: 0.8rem !important;
    }

    .robot {
        max-width: 230px !important;
        /* ⬅ smaller robot */
    }

    .step-tag {
        padding: 3px 8px !important;
        font-size: 0.7rem !important;
        top: -6px !important;
        left: -6px !important;
    }
}




/* MOBILE VIEW – Reduce Height */
@media (max-width: 576px) {
    .banner-section img {
        height: 35vh !important;
        /* reduced height */
        object-fit: cover !important;
        /* image stays full-width, no white gaps */
    }

    .banner-section h1 {
        font-size: 25px !important;
        /* smaller text for mobile */
    }

    .banner-section div {
        top: 58% !important;
        /* keep title centered */
    }
}



/* Carousel link wrapper */
.carousel-link {
    position: relative;
    display: block;
}

/* Dark overlay */
.carousel-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    /* adjust 0.35–0.55 if needed */
    border-radius: 1rem;
    /* matches rounded-4 */
    z-index: 1;
}

/* Bring text above overlay */
.carousel-caption {
    position: absolute;
    z-index: 2;
    text-align: center;
}

/* Ensure image stays behind overlay */
.carousel-link img {
    position: relative;
    z-index: 0;
}

/* Optional: slightly brighter text */
.carousel-caption h6,
.carousel-caption p {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}