/* Initial hidden state with animation */
#landing-title, #landing-subtext, #landing-button {
    opacity: 0;
    position: relative;
    top: 50px; /* Floating-up effect */
    transition: opacity 1s ease-out, top 1s ease-out;
}

/* General Styling */
.landing-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(100deg, #2c204894, #e471ab86), 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: hidden;
}

/* 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: 90%;
    max-width: 1100px;
    z-index: 2;
    padding: 2rem;
}

/* 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: 4rem;
    line-height: 1.2;
    color: white;
    margin-bottom: 2rem;
    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 Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.btn-hero-primary {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    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: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    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) {
    .overlay h1 {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .overlay {
        width: 95%;
        padding: 1rem;
    }
    .overlay h1 {
        font-size: 2.5rem;
    }
    .overlay p {
        font-size: 1.1rem;
    }
    
    .hero-badge {
        margin-bottom: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }
}

@media (max-width: 576px) {
    .overlay h1 {
        font-size: 2rem;
    }
    .overlay p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}









/* Description Section */
.description-section {
    padding: 50px 20px;
}

.d-title{
    width: 50%;
}

/* Title Styling */
.description-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: 20px;
}

/* Text Styling */
.description-text {
    font-family: 'Neue Montreal', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: rgb(27, 31, 32);
    font-style: normal;
    margin-top: 20px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .d-title{
        width: 100%;
    }
    .description-title {
        font-size: 40px;
        line-height: 48px;
    }
    .description-text {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 768px) {
    .d-title{
        width: 100%;
    }
    .description-title {
        font-size: 32px;
        line-height: 40px;
    }
    .description-text {
        font-size: 14px;
        line-height: 22px;
    }
}

/* Image Styling */
.description-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.description-image.animate {
    opacity: 1;
    transform: translateY(0);
}










/* Solutions Slider */
.solutions-slider {
    width: 100%;
    padding: 80px 0;
    background: #f8f9fa;
}

.solution-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

/* Adjust Image */
.solution-image img {
    width: 100%; /* Make it responsive */
    max-width: 700px; /* Limit max width */
    height: auto;
    object-fit: cover;
}

/* Text Container */
.solution-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    max-width: 500px;
}

/* Responsive Font Sizes */
.solution-text h2 {
    font-size: 1.7rem;
    font-weight: bold;
    color: #2C2048;
}

.solution-text p {
    font-size: 1.2rem; /* Reduce size for better mobile display */
    color: #2C2048;
}

.solution-text {
    padding: 40px;
}

/* RESPONSIVE FIXES */
@media (max-width: 768px) {
    .solution-slide {
        flex-direction: column; /* Stack image & text */
        text-align: center;
        gap: 20px;
    }

    .solution-image img {
        max-width: 90%; /* Make images smaller on small screens */
    }

    .solution-content {
        max-width: 90%;
    }

    .solution-text {
        padding: 20px; /* Reduce padding on mobile */
    }

    .solution-text h2 {
        font-size: 1.5rem;
    }

    .solution-text p {
        font-size: 1rem;
    }
}

/* Pagination Indicators */
.carousel-indicators {
    position: absolute;
    bottom: -50px;
}

.carousel-indicators [data-bs-target] {
    background-color: #94989c;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: #284b63;
}

/* Navigation Buttons */
.carousel-control-prev,
.carousel-control-next {
    width: auto; /* Remove Bootstrap’s default large click area */
    filter: invert(1);
    top: 50%;
    transform: translateY(-50%);
}

/* Adjust Button Size */
.carousel-control-prev img,
.carousel-control-next img {
    width: 40px;
    height: 40px;
    cursor: pointer;
}










/* ===== 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: 3rem 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;
    }
}