:root {
    --flavour-color: #7C8363;
    --title-color: #D49A56;
    --flavour-text-color: #E5C067;
    --general-text: #EDF4F2;
    --button-background: #e86306;
    --button-text-background: #e4a502;

    --additional-background-color: #591b55;
}

/*Fonts example, adjust whilst have a text*/
* {
    padding: 0;
    margin: 0;
    font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", sans-serif;
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.1s ease-out, transform 0.1s ease-out;
}

/* When element is in view */
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay for each card */
.fade-in.card-1 {
    transition-delay: 0.1s;
}

.fade-in.card-2 {
    transition-delay: 0.2s;
}

.fade-in.card-3 {
    transition-delay: 0.3s;
}

.fade-in.card-4 {
    transition-delay: 0.4s;
}

.fade-in.card-5 {
    transition-delay: 0.5s;
}

.fade-in.card-6 {
    transition-delay: 0.6s;
}


.card-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
}

.referral-card {
    background-color: #f1f1f1;
    color: #464a3b;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.referral-card h3 {
    color: #464a3b;
}


.referral-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 16px black;
}



/* Header Styles */

.navbar-custom {
    background: #464a3b;
}

.navbar-brand,
.nav-link {
    font-weight: 600;
    color: #bdaa8e !important;
    font-size: 19px;
}

/* Main Area */

.main {
    background-color: #464a3b;

}

/*Top Heading Styles*/
.heading-top {
    color: #bfac8f;
    font-weight: 600;
    font-size: 56px;
}

.main-text {
    font-weight: 600;
    font-size: 32px;
}

/* Explore Button On top*/
.explore-button {
    opacity: 1;
    color: #bda98c;
    font-weight: 600;
    font-size: 21px;
    border-style: solid;
    padding: 15px 30px;
    cursor: pointer;
    border-radius: 50px;
    text-align: center;
    border: 2px solid;
    transition: color 0.2s ease, opacity 0.3 ease;
    width: auto;
    margin-bottom: 20px;
}

.explore-button:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #BEAB8E4D;
    border: 2px solid;
    opacity: 0.8;
}

/* Southern Cross Section Styling */
.southerncross {
    background-color: #464a3b;
    /* Light neutral background */
    padding: 20px 0;
    /* Top and bottom spacing */
}

.southerncross-container {
    background: #ffffff;
    /* White card background */
    border-radius: 12px;
    /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for depth */
    padding: 20px;
    /* Internal spacing */
}

.southerncross-heading-text {
    color: #D49A56;
    /* Matching gold color */
    font-size: 1.8rem;
    /* Slightly larger text */
    font-weight: 600;
    margin-bottom: 15px;
}

.southerncross img {
    max-height: 120px;
    /* Maintain clean image sizing */
    object-fit: contain;
    /* Ensure image fits cleanly */
}

/* Two rows on large/medium screens (3 on top, 2 below) */
@media (min-width: 768px) {
    .card-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .card-grid>.referral-card:nth-child(4),
    .card-grid>.referral-card:nth-child(5) {
        grid-column: span 1;
    }

    .card-grid {
        grid-auto-flow: row;
    }
}










@media (max-width: 768px) {
    .southerncross img {
        margin-top: 20px;
        /* Add space when stacking */
    }

    .southerncross-heading-text {
        text-align: center;
        /* Center-align heading on smaller screens */
    }
}


/*FAQ Section Styles*/

.faq-section {
    background-color: #f2f8fc;
}

.heading-faq {
    color: #021a4f;
}




/*Prices Section*/

.referral-section {
    background-color: #03246b;
}

.reference-heading {
    color: #ffffff;
}

.reference-text {
    color: #edf0ff;
}


.contact-button {
    background-color: #FFFFFF;
    opacity: 0.8;
    color: #8793ab;
    border-style: solid;
    padding: 15px 32px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 14px;
    text-align: center;
    border: 2px solid;
    transition: all 0.2s ease;
}

.contact-button:hover {
    background: #EDF4FF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #03246b;
    border: 2px solid;
    opacity: 1;
    background-color: #EDF4FF;

}

/* Testimonials  */

.review-img {
    object-fit: cover;
    height: 80px;
    width: 80px;
}

.review {
    background: #EDF4f2;
}

.review-heading {
    color: #021a4f;
}


/* Contact Us */

.contact {
    background: #464a3b;
}

.contact-heading {
    color: #ffffff;
}

.contact-text {
    color: #ffffff;
}

.icon-circle {
    display: flex;
    align-items: row;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #bfac8f;
    color: #333;
    font-size: 1rem;
}

/* contact us form */

.form-heading {
    font-weight: 500;
    font-size: 38px;
    color: #021a4f;
}

.form-container {
    background: #f2f8fc;
}

.form-label {
    font-size: 14px;
}

.form-control {
    border-radius: 15px;
}

.submit-btn {
    border-radius: 15px;
    background-color: #0753f5;
    color: white;
    padding: 15px;
    margin: 15px;
    font-size: 16px;
    justify-content: center;
    transition: all 0.2s ease;
    opacity: 0.8;
}

.submit-btn:hover {
    background-color: #043eb7;
    color: white;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 1;
}


/* Location Styles */

.location {
    background-color: #f1f1f1;
}

.location-heading {
    color: #021a4f;
}

.location-text {
    color: #021a4f;
}

.map-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 8px;
}


/* Footer Styles */

footer {
    background-color: #EDF4f2;
    min-height: 20vh;
}

.footer-company-n {
    color: #9dbbfc;
    font-weight: 500;
}

.footer-text {
    color: #b8c7d9;
}




.accordion {
    border: 1px solid black;
    border-radius: 5px;
    margin: 20px;
    overflow: hidden;
}

.accordion-item {
    border-top: 1px solid #E5C067;
}

.accordion-item:first-child {
    border-top: none;
}

.accordion-header {
    background: #EDF4f2;
    padding: 15px;
    cursor: pointer;
    font-size: 1.2em;
    color: black;
}

.accordion-content {
    padding: 0 15px;
    /* Padding adjusted */
    max-height: 0;
    /* Start closed */
    overflow: hidden;
    background: #EDF4f2;
    transition: max-height 500ms ease;
    /* Animation for height */
    display: flex;
    flex-direction: row;
}

.accordion-content.open {
    max-height: 1000px;
    /* Adjust based on content */
    padding: 15px;
    /* Add padding when open */
    display: flex;
    flex-direction: row;
}

.accordion-image {
    width: 30vw;
    margin: 20px;
}

.faq-section {
    background-color: #464a3b;
    padding: 20px;
    min-height: 30vh;
    box-sizing: border-box;
    border-radius: 20px;
}

.heading-faq {
    color: #021a4f;
}



.card-row {
    margin: 0px -5px;
    padding-top: 25px;
}

.card-row::after {
    content: "";
    display: table;
    clear: both;
}

.card-column {
    float: left;
    padding: 0 10px;
}

.card-title {
    color: #021a4f;
}

.card-img {
    height: 200px;
    object-fit: cover;
}

.card-text {
    font-size: 16px;

}

@media screen and (max-width: 680px) {
    @media (max-width: 767px) {
        .card-grid {
            grid-template-columns: 1fr;
        }
    }

    .menu-text {
        display: none;
    }

    .toggleBtn {
        top: 50px;
    }

    .logo {
        height: auto;
    }
}



@media only screen and (max-width: 768px) {
    .logo {
        max-width: 100%;
        height: auto;
    }
}













/*Media Queries  for video*/

@media screen and (max-width: 680px) {
    .card-column {
        width: 100%;
        display: block;
        margin-bottom: 20px;
    }
}