/* ====================================================== */
/* Basic Styles & Mobile-First Setup                      */
/* ====================================================== */
body {
    background-color: #00183d;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

.container {
    max-width: 420px;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* ====================================================== */
/* Typography                                             */
/* ====================================================== */
.section-heading {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(93.26deg, #F1A475 20%, #FCD9B8 50%, #CC835A 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ====================================================== */
/* 1. Hero Section                                        */
/* ====================================================== */
.hero {
    text-align: center;
    padding: 40px 0;
}

.hero__name {
    font-size: 32px;
    margin: 0;
    font-weight: 700;
    color: #F1A475;
}

.hero__tagline {
    font-size: 18px;
    margin: 10px 0 20px;
    color: #ccc;
}

.hero__image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 20px auto 10px;
    display: block;
    border: 4px solid #F1A475;
}

#lottie-animation {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.cta-button {
    display: inline-block;
    background-color: #F1A475;
    color: #00183d;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #FCD9B8;
}

/* ====================================================== */
/* 2. Use Cases Section (Carousel)                        */
/* ====================================================== */
.use-cases {
    /* padding: 20px 0px 0px 0px; */
    text-align: center;
}

.use-cases > p {
    font-size: 14px;
    color: #A2ADC4;
}

.carousel-wrapper {
    position: relative;
}

.carousel-wrapper {
    position: relative;
    perspective: 196px;
    height: 248px;
}
.carousel {
    position: relative;
    width: 100%;
    transform-style: preserve-3d;
    height: 88%;
}

.carousel-slide {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    margin: auto;
    width: 70vw;
    max-width: 280px;
    height: auto;
    min-height: 140px;
    background: linear-gradient(100.2deg, #C3C4BF -5.04%, #FFFFFF 23.5%, #CBCBCB 48.32%, #FFFFFF 68.06%, #C1C0C0 93.57%), #FFFFFF;
    border-radius: 15px;
    padding: 12px;
    box-sizing: border-box;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
    opacity: 0;
    transform: scale(0.7);
    overflow: hidden;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateZ(0) scale(1);
    z-index: 10;
    background: linear-gradient(96.15deg, #CC9773 -47.48%, #FFEFE2 -1.89%, #F9D4B3 38.9%, #FFEFE2 60.5%, #E6AA80 97.27%), #FFFFFF !important;
    color: #00183d;
}

.carousel-slide.left {
    opacity: 0.5;
    transform: translateX(-60%) translateZ(-200px) rotateY(35deg);
    z-index: 9;
}

.carousel-slide.right {
    opacity: 0.5;
    transform: translateX(60%) translateZ(-200px) rotateY(-35deg);
    z-index: 9;
}

.slide-content {
    text-align: left;
}

.slide-content h3 {
    margin: 0 0 10px;
    font-size: 16px;
}

.slide-content p {
    margin: 0;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
}

.slide-icon {
    height: 50px;
    width: 50px;
    object-fit: cover;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.indicator {
    width: 30px;
    height: 5px;
    background-color: #003366;
    border-radius: 2.5px;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: #ffffff;
}

/* ====================================================== */
/* Full Width Image Section                             */
/* ====================================================== */
.full-width-image {
    width: 100%;
    margin-top: 20px;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    position: relative;
}

.full-width-image::before {
    content: "";
    background: url(assets/choosebg.svg) no-repeat;
    position: absolute;
    width: 121px;
    height: 150px;
    transform: translate(-159%, 124%);
    background-size: contain;
}

.full-width-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ====================================================== */
/* 3. Advertisement Section - Banner Carousel             */
/* ====================================================== */
/* .advertisement-section {
    padding: 40px 0;
} */

.ad-carousel-container {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
}

.ad-carousel-wrapper {
    overflow: hidden;
    border-radius: 15px;
    margin: 0 40px;
}

.ad-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ad-banner {
    min-width: 100%;
    background: linear-gradient(135deg, rgba(241, 164, 117, 0.15) 0%, rgba(252, 217, 184, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(241, 164, 117, 0.2);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 240px;
    display: flex;
    flex-direction: column;
}

.ad-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 24, 61, 0.6) 0%, rgba(0, 24, 61, 0.8) 100%);
    z-index: 1;
}

.ad-banner-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ad-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.ad-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.ad-badge {
    display: inline-block;
    background: linear-gradient(93.26deg, #F1A475 20%, #FCD9B8 50%, #CC835A 80%);
    color: #00183d;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    width: fit-content;
}

.ad-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    background: linear-gradient(93.26deg, #F1A475 20%, #FCD9B8 50%, #CC835A 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.ad-description {
    font-size: 13px;
    color: #E0E0E0;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.ad-price {
    font-size: 16px;
    font-weight: 600;
    color: #FCD9B8;
    margin: 0;
}

.ad-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(241, 164, 117, 0.9);
    color: #00183d;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.ad-arrow:hover {
    background: #F1A475;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.ad-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.ad-arrow-left {
    left: -5px;
}

.ad-arrow-right {
    right: -5px;
}

.ad-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.ad-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ad-dot.active {
    background: #F1A475;
    width: 24px;
    border-radius: 4px;
}

.ad-dot:hover {
    background: rgba(241, 164, 117, 0.6);
}

/* ====================================================== */
/* 4. Full Width Advertisement Section                    */
/* ====================================================== */
.fullwidth-ad-section {
    padding: 40px 0;
    margin: 0 -10px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.fullwidth-ad-section .section-heading {
    padding: 0 10px;
    max-width: 420px;
    margin: 0 auto 20px;
}

.fullwidth-ad-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.fullwidth-ad-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fullwidth-ad-slide {
    min-width: 100%;
    height: auto;
    min-height: 250px;
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullwidth-ad-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    max-height: 500px;
}

.fullwidth-ad-indicators {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 15px 0;
    position: relative;
    z-index: 10;
}

.fullwidth-ad-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.fullwidth-ad-dot.active {
    background: #F1A475;
    border-color: #F1A475;
    width: 20px;
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(241, 164, 117, 0.5);
}

.fullwidth-ad-dot:hover {
    background: rgba(241, 164, 117, 0.8);
    transform: scale(1.15);
}

/* ====================================================== */
/* 5. Why Choose Me Section                               */
/* ====================================================== */
.why-choose-us {
    padding: 20px 0;
}

.why-choose-us ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-us li {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* ====================================================== */
/* 5. Footer Section                                      */
/* ====================================================== */
.footer {
    text-align: center;
    /* padding: 40px 0; */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-section {
    margin-bottom: 30px;
    text-align: left;
}

.faq-section .section-heading {
    text-align: left;
}

.faq-section > p {
    text-align: left;
    font-size: 14px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 10px;
}

.faq-question {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
}

.faq-answer {
    padding: 0 15px 15px 15px;
    display: none;
    color: #ccc;
    font-size: 14px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question {
    background: #003366;
    border-radius: 8px 8px 0 0;
}

.footer-contact, .footer-links, .footer-legal, .footer-social {
    margin-bottom: 20px;
}

.footer-logo {
    width: 100px;
    margin-bottom: 10px;
}

.footer-email {
    color: #F1A475;
    text-decoration: none;
}

.footer-links a, .footer-legal a {
    color: #ccc;
    text-decoration: none;
    margin: 0 10px;
    display: inline-block;
}

.footer-social a {
    margin: 0 10px;
}

.footer-copyright {
    font-size: 12px;
    color: #aaa;
    margin-top: 20px;
}

/* ====================================================== */
/* Badge Styles                                           */
/* ====================================================== */
.image-top-text {
    position: absolute;
    top: 0%;
    left: 0;
    right: 0;
    color: #A2ADC4;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    padding: 10px;
    text-align: center;
    z-index: 5;
}
.image-top-text::before {
    content: '"';
    font-size: 10px;
    color: #c0c0c0;
    margin-right: 5px;
    vertical-align: middle;
}
.join-link {
    color: #ffffff;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
}.image-top-text::after {
    content: '"';
    font-size: 10px;
    color: #c0c0c0;
    margin-left: 5px;
    vertical-align: middle;
}
.badge {
    position: absolute;
    bottom: 20%;
    left: 55%;
    transform: translateX(-50%);
    color: #00183D;
    background: linear-gradient(100.2deg, #C3C4BF -5.04%, #FFFFFF 23.5%, #CBCBCB 48.32%, #FFFFFF 68.06%, #C1C0C0 93.57%);
    font-size: 14px;
    padding: 12px;
    border-radius: 5px;
    font-weight: 600;
    line-height: 16px;
    width: 62%;
    text-align: center;
}

/* ====================================================== */
/* Join My Team Section                                   */
/* ====================================================== */
.join-team-section {
    padding: 20px 0;
    margin-bottom: 20px;
    text-align: left;
}

.join-team-section .section-heading {
    text-align: left;
}

.join-team-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
    text-align: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border-radius: 8px;
    outline: none;
    box-sizing: border-box;
    background: #00183D;
    border: 1px solid #A2ADC4;
    color: #FFFFFF;
    font-family: "Poppins", sans-serif;
    line-height: 138%;
}

.form-group input {
    height: 56px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F1A475;
    background-color: rgba(255, 255, 255, 0.08);
}

.send-btn {
    padding: 12px 24px;
    background-color: #A2ADC4;
    color: #00183d;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Poppins', sans-serif;
}

.send-btn:hover {
    background-color: #ffffff;
}

/* ====================================================== */
/* Floating WhatsApp Icon                                 */
/* ====================================================== */
.whatsapp-float {
    position: fixed;
    /* width: 56px; */
    /* height: 59px; */
    bottom: 40px;
    right: 14px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ====================================================== */
/* Responsive Adjustments for larger screens              */
/* ====================================================== */
@media (min-width: 768px) {
    .ad-banner {
        height: 280px;
    }
    
    .ad-title {
        font-size: 28px;
    }
    
    .ad-description {
        font-size: 15px;
    }
    
    .ad-price {
        font-size: 18px;
    }
    
    /* Center carousel on larger screens */
    .fullwidth-ad-section {
        margin: 40px auto;
        width: 100%;
        max-width: 900px;
        position: static;
        left: auto;
        right: auto;
        margin-left: auto;
        margin-right: auto;
        padding: 40px 20px;
    }
    
    .fullwidth-ad-carousel {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }
    
    .fullwidth-ad-slide {
        height: 70vh;
        max-height: 600px;
    }
    
    .fullwidth-ad-dot {
        width: 12px;
        height: 12px;
    }
    
    .fullwidth-ad-dot.active {
        width: 40px;
    }
    
    .fullwidth-ad-indicators {
        padding: 30px 0;
    }
}

@media (min-width: 1024px) {
    .fullwidth-ad-section {
        max-width: 1100px;
    }
    
    .fullwidth-ad-slide {
        height: 75vh;
        max-height: 700px;
    }
}

@media (max-width: 480px) {
    .hero__image {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0;
    }
}
