:root {
    

    --heading-color: #000000;
    --heading-color-2: #215AA8;
    --text-color: #2B2D24;
    --placeholder-color: #999999;
    --white-color: #FFFFFF;
    --form-heading-color: #000;

    --font-family: 'Poppins', sans-serif;
    --font-poppins: 'Poppins', sans-serif;
    --font-inter: 'Inter', sans-serif;

    --small: 12px;
    --title: 18px;
    --body: 16px;
    --body-2: 15px;
    --large: 21px;
    --h5: 27px;
    --h6: 32px;
    --h4: 36px;
    
    --h3: 47px;
    --h2: 61px;
    --h1: 80px;


}

::selection {
    background-color: #EAF6FC;
    color: #215AA8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: var(--font-family);
    scroll-behavior: smooth;
    overflow-x: hidden;
    cursor: default;
    position: relative;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
}

.cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-button button {
    background-color: var(--blue-500);
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: var(--small);
    color: var(--blue-50);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button button:hover {
    background-color: var(--blue-700);
}

/* Media Queries */

@media (min-width: 425px) {
    .cta-button button {
        font-size: var(--body);
    }
}

@media (min-width: 1440px) {
    .cta-button button {
        font-size: var(--large);
        padding: 15px 30px;
    }
}

/* ================= Footer ================= */
#footer {
    width: 100%;
    height: max-content;
    background: #F3F8FE;
}

#footer .container {
    padding: 60px 30px 40px 30px;
} 

#footer .footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#footer .footer-logo img {
    width: 140px;
    height: auto;
   
}

#footer .footer-up {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

#footer .footer-title-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#footer .footer-logo {
    width: 90px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center; 
}

#footer .footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#footer .footer-description p {
    color: #2B2D24;
    text-align: center;
    font-family: var(--font-poppins);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5; 
}

#footer .footer-link {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

#footer .footer-link-title h2 {
    color: #000;
    font-family: var(--font-poppins);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
   text-underline-offset: auto;
   text-underline-position: from-font;
}

#footer .footer-link-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}

#footer .footer-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    
}

#footer .footer-grid-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer .footer-grid-item a {
    color: #2B2D24;
    text-align: center;
    font-family: var(--font-inter);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
}

#footer .footer-contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;

}

#footer .footer-contact-title h2 {
    color: #000;
    font-family: var(--font-poppins);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
   text-underline-offset: auto;
   text-underline-position: from-font;
}

#footer .footer-contact-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#footer .footer-item {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    justify-content: center;
}

#footer .f-logo {
    width: 20px;
    height: 20px;
}

#footer .f-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#footer .f-description p {
    color: #2B2D24;
font-family: var(--font-inter);
font-size: 12px;
font-weight: 400;
line-height: 1.5;
}

#footer .footer-down {
    width: 100%;
    background: #5B9CD4;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer .footer-down p {
    color: #FFF;
    text-align: center;
    font-family: var(--font-poppins);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5; 
}

/* Responsive */
@media (min-width: 768px) {
    #footer .container {
        padding: 70px 30px 60px 30px;
    }

    #footer .footer-up {
        display: flex;
        flex-direction: row;
       justify-content: space-between;
       align-items: flex-start;
       align-self: stretch;
    }

    #footer .footer-title-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    #footer .footer-description p {
        font-size: 14px;
        text-align: left;
    }

    #footer .footer-link {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 25px;
    }

    #footer .footer-grid {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    #footer .footer-grid-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        justify-content: center;
    }

    #footer .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 25px;
    }
    
    #footer .footer-contact-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    #footer .footer-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        justify-content: flex-start;
    }

    #footer .footer-grid-item a {
        font-size: 14px;
        text-align: left;
    }

    #footer .f-description p {
        font-size: 14px;
        text-align: left;
    }
} 

@media (min-width: 1440px) {
    #footer .container {
        padding: 70px 30px 60px 150px;
    }


    #footer .footer-logo {
       width: 110px;
        height: auto;
    }

    #footer .footer-description p {
        font-size: 16px;
        text-align: left;
        max-width: 250px;
    }
    
    #footer .footer-link-title h2 {
        font-size: 20px;
        text-align: left;
    }

    #footer .footer-grid-item a {
        font-size: 16px;
        text-align: left;
    }

    #footer .footer-contact-title h2 {
        font-size: 20px;
        text-align: left;
    }
    
    #footer .f-description p {
        font-size: 16px;
        text-align: left;
    }

    #footer .f-logo {
        width: 20px;
        height: 20px;
    }

    #footer .footer-down p {
        font-size: 16px;
        text-align: left;
    }

}

/* Success Toast Styles */
.success-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    max-width: 400px;
    min-width: 300px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    font-family: var(--font-inter);
}

.success-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.success-toast.hiding {
    transform: translateX(100%);
    opacity: 0;
}

.toast-icon {
    flex-shrink: 0;
    font-size: 24px;
    color: white;
}

.toast-content {
    flex: 1;
}

.toast-content h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: white;
    font-family: var(--font-poppins);
}

.toast-content p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.toast-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile responsive toast */
@media (max-width: 768px) {
    .success-toast {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        min-width: auto;
        transform: translateY(-100%);
    }
    
    .success-toast.show {
        transform: translateY(0);
    }
    
    .success-toast.hiding {
        transform: translateY(-100%);
    }
}