/* Keep hero content visible by default; JS can still enhance with animations. */
#landing-title, #landing-subtext, #landing-button {
    opacity: 1;
    position: relative;
    top: 0;
}

/* General Styling */
.landing-container {
    position: relative;
    width: 100%;
    min-height: calc(100svh - 42px);
    height: auto;
    background: linear-gradient(115deg, rgba(20, 19, 34, 0.84), rgba(41, 76, 100, 0.081)), url("/static/images/pexels-steve-29652325.eb453576d5b8.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: visible;
    padding: 2.5rem 0;
}

/* Blurred background with radial gradient overlay */
.landing-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(6, 0, 0, 0.705) 100%);
    z-index: 1;
}

/* Overlay styles */
.overlay {
    position: relative;
    width: min(94%, 1240px);
    z-index: 2;
    padding: clamp(1.25rem, 2.6vw, 2.6rem);
    border-radius: 28px;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(1px);
}

.hero-content {
    row-gap: 1.25rem;
    column-gap: clamp(0.5rem, 2vw, 2.5rem);
}

.hero-two-column {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
}

.hero-section-left,
.hero-section-right {
    width: 100%;
}

.hero-section-left {
    padding-right: clamp(0.35rem, 1.7vw, 1.8rem);
}

.hero-copy {
    text-align: left;
    max-width: 560px;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.hero-main-image {
    width: min(100%, 660px);
    filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.35));
}

.hero-image-carousel {
    width: min(100%, 700px);
    aspect-ratio: 16 / 8;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.hero-image-carousel .carousel-inner,
.hero-image-carousel .carousel-item {
    width: 100%;
    height: 100%;
}

.hero-image-carousel .hero-carousel-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: fill;
    display: block;
    filter: none;
}

.hero-carousel-controls {
    display: flex;
    gap: 0.65rem;
    margin-top: 0.65rem;
    justify-content: center;
    align-items: center;
}

.hero-carousel-btn {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    background: rgba(16, 18, 28, 0.5);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.hero-carousel-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    margin-bottom: 2rem;
    animation: slideDown 1s ease-out;
}

.badge-text {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Title styling */
.overlay h1 {
    font-family: 'Gelica', sans-serif !important;
    font-weight: 300 !important;
    font-size: clamp(1.7rem, 3.15vw, 3rem);
    line-height: 1.08;
    color: white;
    margin-bottom: 0.8rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Subtext styling */
.overlay p {
    font-family: "Neue Montreal", sans-serif !important;
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-subtext {
    max-width: 54ch;
    margin: 0 0 0.9rem;
    font-size: clamp(0.9rem, 1.05vw, 1.05rem);
    line-height: 1.42;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.95rem;
    animation: fadeInUp 1s ease-out 0.75s both;
}

.hero-highlight-item {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.36);
    color: #fff;
    border-radius: 999px;
    padding: 0.36rem 0.7rem;
    font-size: 0.73rem;
    line-height: 1.2;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 0.65rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-buttons .demo-button::after {
    content: none;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #3c6e71, #2c2048);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: white;
    padding: 0.75rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    color: white;
    text-decoration: none;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.36);
    color: white;
    padding: 0.75rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .landing-container {
        background-attachment: scroll;
        align-items: flex-start;
        min-height: auto;
        padding: 4.2rem 0 2.3rem;
    }

    .overlay {
        border-radius: 22px;
    }

    .hero-copy {
        text-align: center;
        max-width: 100%;
    }

    .hero-two-column {
        grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
        column-gap: 0.65rem;
    }

    .hero-section-left {
        padding-right: 0;
    }

    .hero-visual {
        margin-top: 0;
        justify-content: center;
    }

    .hero-subtext {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-highlights {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: row;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: auto;
        min-width: 185px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .landing-container {
        min-height: auto;
        padding: 3.8rem 0 2.1rem;
    }

    .overlay {
        width: 95%;
        padding: 1rem 0.95rem 1.15rem;
    }

    .hero-main-image {
        width: min(100%, 520px);
    }

    .hero-image-carousel {
        width: min(100%, 620px);
    }

    .hero-two-column {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 0.9rem;
    }

    .hero-section-right {
        margin-top: 0.4rem;
    }

    .overlay h1 {
        font-size: clamp(1.28rem, 2.35vw, 1.72rem);
        margin-bottom: 0.65rem;
    }

    .hero-subtext {
        font-size: 0.84rem;
        line-height: 1.35;
        margin-bottom: 0.65rem;
    }

    .hero-highlight-item {
        font-size: 0.66rem;
        padding: 0.32rem 0.56rem;
    }
    
    .hero-badge {
        margin-bottom: 1rem;
    }
    
    .badge-text {
        font-size: 0.74rem;
        padding: 0.36rem 0.95rem;
        letter-spacing: 0.7px;
    }

    .hero-buttons {
        gap: 0.7rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: auto;
        max-width: none;
        min-width: 0;
        padding: 0.65rem 0.95rem;
        font-size: 0.84rem;
    }
}

@media (max-width: 576px) {
    .landing-container {
        padding: 3.5rem 0 1.9rem;
    }

    .hero-two-column {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-section-right {
        margin-top: 0.35rem;
    }

    .hero-image-carousel {
        width: min(100%, 520px);
        border-radius: 14px;
    }

    .hero-carousel-controls {
        margin-top: 0.5rem;
    }

    .hero-carousel-btn {
        width: 34px;
        height: 34px;
        font-size: 0.82rem;
    }

    .hero-subtext {
        font-size: 0.76rem;
        margin-bottom: 0.5rem;
    }

    .hero-highlights {
        display: none;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        font-size: 0.76rem;
        padding: 0.55rem 0.7rem;
    }
}









/* ===== Our Solutions Grid Section ===== */
.solutions-grid-section {
    padding: 80px 0 60px;
    background: #fff;
}

.solutions-grid-title {
    font-family: 'Gelica', sans-serif;
    font-weight: 400;
    font-size: 42px;
    color: #1b1f20;
    text-align: center;
    margin-bottom: 48px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1140px;
    margin: 0 auto;
}

/* ---- Individual Card ---- */
.solution-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 1 / 0.92;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 2.5px solid transparent;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.35s ease;
}

.solution-card:hover {
    text-decoration: none;
    color: inherit;
    border-color: #f0a0d0;
    box-shadow: 0 0 24px 4px rgba(228, 113, 171, 0.25), 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

/* Background image */
.solution-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}

.solution-card:hover .solution-card-image {
    transform: scale(1.06);
}

/* ---- Default overlay (blob shape with title) ---- */
.solution-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 65%;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    padding: 28px 24px 20px;
    background: rgba(255, 255, 255, 0.92);
    clip-path: ellipse(90% 88% at 10% 12%);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.solution-card:hover .solution-card-overlay {
    opacity: 0;
    transform: translateX(-20px);
    pointer-events: none;
}

/* ---- Hover content (full white panel) ---- */
.solution-card-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 28px;
    background: rgba(255, 255, 255, 0.95);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.solution-card:hover .solution-card-hover-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ---- Card title ---- */
.solution-card-name {
    font-family: 'Gelica', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.2;
    color: #1b1f20;
    margin: 0;
}

.solution-card-hover-content .solution-card-name {
    margin-bottom: 14px;
}

/* ---- Description text (hover only) ---- */
.solution-card-desc {
    font-family: 'Neue Montreal', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: #444;
    margin: 0 0 20px;
}

/* ---- "Learn More" link (hover only) ---- */
.solution-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Neue Montreal', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #3c6e71;
    border: 1.5px solid #3c6e71;
    border-radius: 999px;
    padding: 8px 18px;
    transition: background 0.25s ease, color 0.25s ease;
    width: fit-content;
}

.solution-card-link:hover {
    background: #3c6e71;
    color: #fff;
}

/* ---- Arrow icon (bottom-left) ---- */
.solution-card-arrow {
    position: absolute;
    bottom: 16px;
    left: 18px;
    z-index: 5;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.solution-card:hover .solution-card-arrow {
    opacity: 0;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .solutions-grid-title {
        font-size: 34px;
        margin-bottom: 36px;
    }

    .solution-card-name {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .solutions-grid-section {
        padding: 50px 0 40px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 400px;
    }

    .solutions-grid-title {
        font-size: 28px;
        margin-bottom: 28px;
    }

    .solution-card {
        aspect-ratio: 1 / 0.85;
    }
}














/* ===== Technology Benefits Section Modern ===== */
.technology-benefits {
    background-color: #f8f9fa; /* Light background */
    padding: 60px 20px;
    width: 80%;
    margin: auto;
}
.section-title {
    font-family: 'Gelica', sans-serif;
    font-weight: 300;
    font-size: 48px;
    line-height: 56px;
    color: rgb(27, 31, 32);
    font-style: normal;
    margin-top: 100px;
    margin-bottom: 15px;
}
.section-subtitle {
    font-family: 'Neue Montreal', sans-serif;
    font-size: 20px;
    color: #2C2048;
    margin-bottom: 40px;
}
.benefit-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 22px 28px 22px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(44, 78, 99, 0.10), 0 1.5px 3px rgba(60, 110, 113, 0.10);
    transition: box-shadow 0.4s, transform 0.33s, border 0.2s;
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-height: 380px;
}
.benefit-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.benefit-card.shadow-hover:hover {
    box-shadow: 0 8px 30px 0 rgba(60, 110, 113, 0.22), 0 1.5px 4px rgba(60, 110, 113, 0.18);
    border-color: #2C2048;
    transform: translateY(-8px) scale(1.02);
}
.gradient-icon-bg {
    background: linear-gradient(120deg, #2C2048 10%, #284b63 90%);
    border-radius: 50%;
    padding: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(44, 78, 99, 0.13);
}
.benefit-icon .material-icons {
    font-size: 42px;
    color: #fff;
    transition: transform 0.33s;
}
.benefit-card:hover .material-icons {
    transform: scale(1.18) rotate(-3deg);
}
.benefit-title {
    font-size: 21px;
    font-weight: 600;
    color: #284b63;
    margin-bottom: 10px;
    letter-spacing: 0.2px;
}
.benefit-text {
    font-size: 15.5px;
    color: #2C2048;
    line-height: 1.5;
}
@media (max-width: 992px) {
    .technology-benefits{
        width: 100%;
    }
    .section-title {
        font-size: 38px;
    }
    .benefit-card {
        padding: 28px 16px;
        min-height: 230px;
    }
    .benefit-title {
        font-size: 19px;
    }
}
@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }
    .benefit-card {
        padding: 22px 10px;
    }
}

/* Get In Touch Section */
.get-in-touch-section {
    background: linear-gradient(120deg, #E471AB 60%, #ffffff 100%); /* bg-own-secondary to white */
    border-radius: 2rem;
    box-shadow: 0 6px 32px rgba(60, 110, 113, 0.08), 0 1.5px 6px rgba(40,75,99,0.03); /* own-primary/blue */
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding: 0.1rem 0 2rem 0;
    position: relative;
    overflow: hidden;
}
.get-in-touch-section .section-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #2C2048; /* color-own-primary */
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}
.get-in-touch-section .section-subtitle {
    color: #284b63; /* color-own-blue */
    font-size: 1.15rem;
    margin-bottom: 2rem;
}
.get-in-touch-section .vertical-slideshow-form {
    background: #fff; /* bg-own-white */
    border-radius: 1.5rem;
    box-shadow: 0 2px 16px rgba(60, 110, 113, 0.07);
    padding: 2.5rem 2.5rem 1.5rem 2.5rem;
    border: 1.5px solid #d9d9d9; /* border-own-gray */
}
.get-in-touch-section .form-label {
    font-weight: 600;
    color: #2C2048; /* color-own-primary */
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.get-in-touch-section .form-check-label {
    color: #284b63; /* color-own-blue */
    font-size: 1rem;
    font-weight: 500;
}
.get-in-touch-section .form-check-input:checked {
    background-color: #2C2048; /* bg-own-primary */
    border-color: #284b63; /* border-own-blue */
}
.get-in-touch-section .btn-own-secondary, .get-in-touch-section .btn-own-primary {
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 2px 8px rgba(60,110,113,0.08);
    padding: 0.6rem 2.2rem;
    transition: background 0.2s, color 0.2s;
}
.get-in-touch-section .btn-own-secondary {
    background: #E471AB; /* bg-own-secondary */
    color: #2C2048; /* color-own-primary */
    border: 1.5px solid #2C2048; /* border-own-primary */
}
.get-in-touch-section .btn-own-secondary:hover {
    background: #2C2048; /* bg-own-primary */
    color: #fff;
}
.get-in-touch-section .btn-own-primary {
    background: #2C2048; /* bg-own-primary */
    color: #fff;
    border: none;
}
.get-in-touch-section .btn-own-primary:hover {
    background: #284b63; /* bg-own-blue */
    color: #fff;
}
.get-in-touch-section .form-control {
    border-radius: 1.2rem;
    border: 1.5px solid #d9d9d9; /* border-own-gray */
    background: #fff; /* bg-own-white */
    font-size: 1rem;
    color: #2C2048; /* color-own-primary */
    margin-bottom: 0.5rem;
    transition: border 0.2s;
}
.get-in-touch-section .form-control:focus {
    border-color: #2C2048; /* border-own-primary */
    box-shadow: 0 0 0 2px #2C204833;
}
.get-in-touch-section .form-success {
    color: #2C2048; /* color-own-primary */
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 2rem;
}
@media (max-width: 768px) {
    .get-in-touch-section .vertical-slideshow-form {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
    }
}