/*
Theme Name: Sonona
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
/* Start Custom Fonts CSS */


:root {
    --color-1: #0F526F;
    --color-2: #47BAEB;
    --color-3: #7CCECE;
}

body {
    font-family: "Tahoma", Sans-serif;
}

/* End Custom Fonts CSS */


.snn-title h2 {
    text-transform: uppercase;
    font-size: 1.8rem;
    background: rgb(15, 82, 111);
    background: linear-gradient(90deg, rgba(15, 82, 111, 1) 0%, rgba(71, 186, 235, 1) 50%, rgba(124, 206, 206, 1) 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}




.timeline-title {
    text-align: center;
    margin-bottom: 50px;
    color: #0F526F;
    font-size: 36px;
}

.snn-timeline {
    position: relative;
    padding-left: 50px;
}

.snn-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, rgba(15, 82, 111, 1), rgba(71, 186, 235, 1));
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-year {
    position: absolute;
    left: -60px;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0F526F;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 0 0 5px rgba(15, 82, 111, 0.2);
}

.timeline-content {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--color-1);
    position: relative;
    margin-left: 60px;
}

.timeline-content p {
    margin-bottom: 0;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 12px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid var(--color-1);
}

.timeline-logo {
    margin-bottom: 1rem;
}

.timeline-logo img {
    max-height: 80px;
    width: auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}

@media (max-width: 768px) {
    .snn-timeline {
        padding-left: 30px;
    }

    .timeline-content::before {
        top: 5px;
    }

    .timeline-year {
        left: -30px;
        width: 42px;
        height: 42px;
        font-size: 13px;
    }

    .timeline-content {
        margin-left: 40px;
    }
}

.contact-form input {
    box-shadow: none;
    height: 52px;
    background-color: transparent;
    margin-bottom: 1rem;
}

.contact-form input:focus {
    box-shadow: none;
    background-color: transparent;
}

.contact-form input.button {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    line-height: 1;
}

.contact-form textarea {
    box-shadow: none;
    margin-bottom: 1rem;
    background-color: transparent;
}



/* Slider Items */
.snn-partners-slider {
    width: 100%;
    margin: 0 auto;
}

.partner-cell {
    padding: 0 10px;
    margin-bottom: 20px;
}

.partner-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-height: 80px;
    width: auto;
    margin: 0 auto;
}

.partner-name {
    margin-top: 15px;
    font-weight: 600;
    color: #333;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .partner-cell {
        width: calc(100% / 3);
        /* 3 items/row on mobile */
    }

    .partner-item {
        padding: 15px;
    }

    .partner-logo img {
        max-height: 60px;
    }
}

/* Flickity Slider Fixes */
.flickity-prev-next-button {
    width: 40px;
    height: 40px;
    background: rgba(15, 82, 111, 0.8);
    color: white;
}

.flickity-prev-next-button:hover {
    background: #0F526F;
}

.flickity-prev-next-button.previous {
    left: -50px;
}

.flickity-prev-next-button.next {
    right: -50px;
}

.snn-contact-form {
    margin: 0 auto;
    padding: 30px;
    background: #f8f9fa;

    input[type=checkbox] {
        margin-bottom: 0;
        margin-top: 0;
    }

    .form-title {
        text-transform: uppercase;
        font-size: 1.8rem;
        background: rgb(15, 82, 111);
        background: linear-gradient(90deg, rgba(15, 82, 111, 1) 0%, rgba(71, 186, 235, 1) 50%, rgba(124, 206, 206, 1) 100%);
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-align: center;
    }

    /* 2 Column Layout */
    .form-field-2col {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 20px;
    }

    .form-field-2col .form-field-wrapper {
        flex: 1;
        min-width: 250px;
        margin-bottom: 0;
    }

    /* Form Fields */
    .form-field-wrapper {
        margin-bottom: 20px;
    }

    .field-label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #333;
    }

    .form-input {
        width: 100%;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 16px;
        box-shadow: none;
        margin-bottom: 0;

        &:focus {
            box-shadow: none;
        }
    }

    .form-input.select {
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 10px center;
        background-size: 16px;
    }

    .form-input.textarea {
        min-height: 120px;
        resize: vertical;
    }

    /* Checkbox Group */
    .form-checkbox-group {
        margin-bottom: 25px;
    }

    .checkbox-field {
        display: flex;
        align-items: center;
        margin: 10px 0;
        cursor: pointer;
        font-weight: 400;
    }

    .checkbox-field input {
        margin-right: 10px;
    }

    /* Submit Button */
    .form-submit-wrapper {
        text-align: center;
        margin-top: 30px;
    }

    .submit-button {
        background: #0F526F;
        color: white;
        border: none;
        padding: 8px 40px;
        font-size: 16px;
        border-radius: 4px;
        cursor: pointer;
        transition: background 0.3s;
    }

    .submit-button:hover {
        background: #0d4461;
    }

    /* Responsive */
    @media (max-width: 600px) {
        .form-field-2col .form-field-wrapper {
            flex: 100%;
        }

        .snn-contact-form {
            padding: 20px;
        }
    }
}



/* Contact Information Container */
.snn-contact-information {
    background: #f8f9fa;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
    height: 100%;
}

.info-title {
    color: #0F526F;
    margin-bottom: 20px;
    font-size: 2.4rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon {
    color: #0F526F;
    font-size: 18px;
    margin-top: 3px;
    min-width: 20px;
}

.info-content {
    flex: 1;
}

.info-label {
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
    color: #333;
}

.info-item a {
    color: #0F526F;
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: #0d4461;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 480px) {
    .snn-contact-information {
        padding: 20px;
    }

    .info-item {
        flex-direction: column;
        gap: 5px;
    }

    .info-icon {
        margin-bottom: 5px;
    }
}

.snn-ladi-title {
    font-weight: bold;
    background: linear-gradient(to right, #293565, #4992db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;

    &.dark {
        background: linear-gradient(to right, #85c2ff, #FFF);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-transform: uppercase;
    }
}

.snn-achievement-card {
    background: linear-gradient(to right, #293565, #4992db);

    padding: 20px;
    border-radius: 10px;
    color: white;

    .achievement-number {
        font-size: 48px;
        font-weight: 600;
        line-height: 1;
        margin-bottom: 10px;
    }

    .achievement-title {
        margin-top: 10px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 5px;
        font-size: 14px;
        font-weight: 600;
        padding: 5px 10px;
    }
}

.ladi-image-card {
    background-color: #FFF;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;

    &:hover {
        transform: translateY(-5px);
    }
}

.ladi-icons {
    h6 {
        line-height: 1.5;
    }
}

.ladi-group {
    img {
        border-radius: 12px;
    }
}

@media only screen and (max-width: 48em) {
    /*************** ADD MOBILE ONLY CSS HERE  ***************/


}