/* Custom CSS Styles */

:root {
    --primary-color: #D1FE5B;
    --secondary-color: #5E8FD4;
    --tertiary-color: #94A3B8;
    --success-color: #198754;
    --dark-color: #212529;
    --divider-color: #334155;
    --background-color: #0F172A;
    --white-color: #FFFFFF;
    --button-primary-color: #577701;
    --button-primary-icon-color: #6c9205;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: var(--background-color);
    /* Offset for fixed navbar */
    background-image: url('../images/bcg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: left;
    padding-left: 100px;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-style: normal;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 50%;
    background-image: url('../images/green_detail.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    z-index: 1000;
    pointer-events: none;
}

body::before {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 50%;
    background-image: url('../images/blue_detail.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
    z-index: 1000;
    pointer-events: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
    body {
        background-size: 100% auto;
        background-position: top;
        background-attachment: fixed;
        min-height: auto;
        display: block;
        align-items: normal;
        justify-content: normal;
        padding-left: 0;
    }

    body::after {
        width: 200px;
        height: 25%;
    }

    body::before {
        width: 200px;
        height: 25%;
    }
}

.featured-box {
    display: flex;
    padding: 14px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    background: rgba(27, 58, 102, 0.50);
    font-family: "IBM Plex Sans", sans-serif;
}

.featured-box>span {
    font-size: 24px;
    font-weight: 400;
    font-style: normal;
    font-family: "IBM Plex Sans", sans-serif;
}

.featured-box-features span:first-child {
    color: var(--secondary-color) !important;
    font-size: 24px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0;
    font-family: "IBM Plex Sans", sans-serif;
}

.featured-box-features span:last-child {
    color: var(--primary-color) !important;
    font-size: 24px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0;
    font-family: "IBM Plex Sans", sans-serif;
}

.box-grid {
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-template-rows: repeat(2, 1fr);
    font-family: "IBM Plex Sans", sans-serif;
    line-height: 1;
    font-weight: 400;
}

.box-grid span:first-of-type {
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    padding-left: 10px;
}

.box-grid span:last-of-type {
    font-size: 24px;
    font-weight: 300;
    font-style: normal;
    line-height: 1;
    padding-left: 10px;
}

.icon-box {
    grid-row: span 2 / span 2;
    border-right: 2px solid var(--divider-color);
}

/* Text Styles */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-white {
    color: var(--white-color) !important;
}

.text-tertiary {
    color: var(--tertiary-color) !important;
}

h1 {
    font-size: 48px;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
}

h3 {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 20px;
    font-weight: 300;
    font-style: normal;
}

h4 {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 36px;
    font-weight: 300;
    font-style: normal;
}

h5 {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 20px;
    font-weight: 300;
    font-style: normal;
}

h5 span {
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
}

span {
    font-size: 1rem;
    font-weight: 400;
    font-style: normal;
}

/* Custom Responsive Box Container */
.custom-box-container {
    width: 660px !important;
    padding: 80px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    border-radius: 32px;
    background: var(--surface-background-50, rgba(2, 6, 23, 0.50));
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1000;
    margin-top: 50px;
    margin-bottom: 100px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .custom-box-container {
        width: 95% !important;
        padding: 60px 28px 28px 28px!important;
        margin: 100px auto 120px auto!important;

    }
    .featured-box{
        padding: 12px 10px;
    }

    .featured-box-features {
        font-size: 16px;
    }

    .featured-box-features span:first-child {
        font-size: 16px;
    }

    .featured-box-features span:last-child {
        font-size: 16px;
    }

    .featured-box>span {
        font-size: 16px;
    }
    .dream-container{
        font-size: 20px!important;
    }

    .box-grid span:first-of-type {
        font-size: 12px!important;
    }
    
    .box-grid span:last-of-type {
        font-size: 18px!important;
    }
    .btn-landing{
        font-size: 18px!important;
        padding: 5px 20px!important;
    }
    

    .to-whatsapp-container{
        font-size: 16px!important;
    }
    .to-whatsapp-container-2{
        font-size: 12px!important;
    }
    .to-whatsapp-container-2 a span{
        font-size: 12px!important;
    }
    .benefits-container{
        font-size: 20px!important;
    }
}

@media (max-width: 576px) {
    .custom-box-container {
        width: 95%!important;
        padding: 60px 28px 28px 28px;
        margin: 100px auto 120px auto!important;

    }

    .featured-box{
        padding: 12px 10px;
    }

    .featured-box-features {
        font-size: 16px;
    }

    .featured-box-features span:first-child {
        font-size: 16px;
    }

    .featured-box-features span:last-child {
        font-size: 16px;
    }

    .featured-box>div  {
        font-size: 16px;
    }
    .dream-container{
        font-size: 20px!important;
    }
    .box-grid span:first-of-type {
        font-size: 12px!important;
    }
    
    .box-grid span:last-of-type {
        font-size: 18px!important;
    }
    .btn-landing{
        font-size: 18px!important;
        padding: 5px 20px!important;
    }
    .to-whatsapp-container{
        font-size: 16px!important;
    }
    .to-whatsapp-container-2{
        font-size: 12px!important;
    }
    .to-whatsapp-container-2 a span{
        font-size: 12px!important;
    }
    .benefits-container{
        font-size: 20px!important;
    }
    .benefits-container span{
        font-size: 20px!important;
    }
}



.ibm-plex-mono-thin {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 100;
    font-style: normal;
}

.ibm-plex-mono-extralight {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 200;
    font-style: normal;
}

.ibm-plex-mono-light {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 300;
    font-style: normal;
}

.ibm-plex-mono-regular {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-style: normal;
}

.ibm-plex-mono-medium {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 500;
    font-style: normal;
}

.ibm-plex-mono-semibold {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 600;
    font-style: normal;
}

.ibm-plex-mono-bold {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 700;
    font-style: normal;
}

.ibm-plex-mono-thin-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 100;
    font-style: italic;
}

.ibm-plex-mono-extralight-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 200;
    font-style: italic;
}

.ibm-plex-mono-light-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 300;
    font-style: italic;
}

.ibm-plex-mono-regular-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-style: italic;
}

.ibm-plex-mono-medium-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 500;
    font-style: italic;
}

.ibm-plex-mono-semibold-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 600;
    font-style: italic;
}

.ibm-plex-mono-bold-italic {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 700;
    font-style: italic;
}


.btn-landing {
    margin-top: 10px;
    border: none !important;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 21px;
    font-weight: 600;
    font-style: normal;
    display: flex;
    padding: 5px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    color: var(--primary-color) !important;
    background: var(--button-primary-color) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.btn-landing:hover {
    background: var(--button-primary-icon-color) !important;
    color: var(--primary-color) !important;
}

.icon-arrow-container {
    width: 36px;
    height: 36px;
    border-radius: 100px;
    background: var(--button-primary-icon-color) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease !important;
}

.icon-arrow-container:hover {
    background: var(--button-primary-color) !important;
}

.icon-arrow-container img {
    width: 24px;
    height: 24px;
}

.to-whatsapp-container {
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    font-family: "IBM Plex Sans", sans-serif;
}

.to-whatsapp-container a {
    color: var(--secondary-color) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.to-whatsapp-container a:hover {
    color: var(--primary-color) !important;
}

.benefits-container {
    font-size: 30px;
    font-weight: 300;
    font-style: normal;
    font-family: "IBM Plex Sans", sans-serif;
}

.benefits-container span {
    font-size: 30px;
    font-weight: 300;
    font-style: normal;
    font-family: "IBM Plex Sans", sans-serif;
}

.to-whatsapp-container-2 {
    font-size: 12px;
    font-weight: 300;
    font-style: normal;
    font-family: "IBM Plex Sans", sans-serif;
}

.to-whatsapp-container-2 a span {
    font-size: 12px;
    font-weight: 300;
    font-style: normal;
    font-family: "IBM Plex Sans", sans-serif;
    text-decoration: none !important;
}

.dream-container {
    margin-top: 10px;
    font-size: 30px;
    font-weight: 300;
    font-style: normal;
    font-family: "IBM Plex Sans", sans-serif;
}

.raza-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Sticky Footer */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(2, 6, 23, 0.80);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    z-index: 2000;
    border-top: 1px solid var(--divider-color);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-icon {
    height: 25px;
    width: auto;
}

.footer-button {
    background: transparent;
    color: var(--secondary-color);
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 14px;
    font-weight: 300;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.footer-button:hover {
    background: rgba(94, 143, 212, 0.2);
    color: var(--white-color);
}

/* Mobile Footer Styles */
@media (max-width: 768px) {
    .custom-box-container {
        z-index: 1010 !important;
    }

    .raza-logo-container {
        width: 300px !important;
    }

    .raza-logo-container img {
        width: 100% !important;
    }

    h1 {
        font-size: 30px !important;
    }

    h4 {
        font-size: 24px !important;
    }
    .featured-box {
        font-size: 20px!important;
    }

    .featured-box h5 {
        font-size: 20px!important;
    }

    .footer-icon {
        height: 25px;
    }

    .footer-button {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .custom-box-container {
        z-index: 1010 !important;
    }

    .raza-logo-container {
        width: 300px !important;
    }

    .raza-logo-container img {
        width: 100% !important;
    }

    h1 {
        font-size: 30px !important;
    }

    h4 {
        font-size: 24px !important;
    }

    .footer-icon {
        height: 25px;
    }

    .footer-button {
        font-size: 11px;
    }
}

/* Modal Styles */
.custom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-modal.show {
    display: flex;
    opacity: 1;
}

.custom-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.custom-modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    min-height: 90vh;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid var(--divider-color);
    display: flex;
    flex-direction: column;
    z-index: 3001;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.custom-modal-close {
    background: transparent;
    border: none;
    color: var(--tertiary-color);
    font-size: 24px;
    cursor: pointer;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 8px;
    width: 32px;
    height: 32px;
}

.custom-modal-close:hover {
    color: var(--white-color);
    background: rgba(94, 143, 212, 0.2);
}



.btn-secondary-modal {
    background: transparent !important;
    color: var(--secondary-color) !important;
    border: 1px solid var(--divider-color) !important;
}

.btn-secondary-modal:hover {
    background: rgba(94, 143, 212, 0.2) !important;
    color: var(--white-color) !important;
    border-color: var(--secondary-color) !important;
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .custom-modal-content {
        width: 95%;
        height: 80vh;
        border-radius: 24px;
    }

    .typeform-widget {
        height: 90vh !important;
    }
}

@media (max-width: 576px) {
    .custom-modal-content {
        width: 100%;
        height: 80vh;
        border-radius: 24px;
    }

    .typeform-widget {
        height: 90vh !important;
    }
}

.typeform-widget {
    border: 0px;
    width: 100%;
    height: 90vh;
}