/* Full-Screen Styling */
.organization-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100vw;
    min-height: 50vh;
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

/* Heading */
.organization-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #102c0c;
}

/* Dividers */
.divider {
    width: 120px;
    height: 3px;
    background-color: #102c0c;
    margin: 15px auto;
}

/* General Text */
.organization-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
}

/* Grid Layout */
.organization-grid {
    display: flex;
    justify-content: center;
    align-items: stretch; /* Ensures equal height */
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 2rem;
    gap: 20px;
}

/* Columns (Same Size) */
.organization-column {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: center;
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center; /* Ensures content is evenly spaced */
}

/* Subheadings */
.organization-subheading {
    font-size: 1.5rem;
    color: #102c0c;
    margin-bottom: 5px; /* Reduce spacing */
}

.organization-small-text {
    font-size: 1rem;
    font-weight: bold;
    color: #555;
    margin-bottom: 2px; /* Brings the country name closer */
}

/* Links */
.organization-link {
    color: #2C9942;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

.organization-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .organization-heading {
        font-size: 2rem;
    }

    .organization-subheading {
        font-size: 1.3rem;
    }

    .organization-text {
        font-size: 1rem;
    }

    .organization-grid {
        flex-direction: column;
        align-items: center;
    }

    .organization-column {
        min-width: 100%;
    }
}


.house-brand-container {
    text-align: center;
    padding: 2rem;
}

.house-brand-heading {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.house-brand-text {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.swiper {
    width: 80%;
    margin: auto;
    padding: 2rem 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    max-width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

.swiper-slide a:hover img {
    transform: scale(1.1);
}

/* Adjust navigation buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #2c3e50;
}

.swiper-pagination {
    position: relative;
    bottom: -10px;
}

.banner-wrapper {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.service-wrapper {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.custom-bg {
    background-color: #2C9942!important; /* Replace with your desired color */
}

/*LOGO*/
.logocard {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease-in-out;
    width: 120px;
    height: 120px;
    background: white; /* Ensures visibility */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Optional */
    margin-bottom: 10px; /* Adds spacing between image and text */
    cursor: pointer; /* Shows pointer on hover */
}

/* Hover Effect */
.logocard:hover {
    transform: translateY(-10px); /* Moves card up */
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2); /* Increases shadow */
}

/* Optional: Scale Image on Hover */
.logocard img {
    transition: transform 0.3s ease-in-out;
}

.logocard:hover img {
    transform: scale(1.1); /* Slightly enlarges the logo */
}


.logocard img {
    max-width: 100%;
    height: auto;
}

.objective {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers content horizontally */
    justify-content: center; /* Ensures vertical centering */
    text-align: center;
    height: 100%; /* Ensures full height usage */
}
/*END LOGO*/

/*Back to Top*/
#backToTopBtn {
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
}

#backToTopBtn.show {
    opacity: 1;
    transform: translateY(0);
}

#backToTopBtn.hide {
    opacity: 0;
    transform: translateY(20px);
}

#backToTopBtn:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

/* Ensure button stays circular and centered */
#backToTopBtn i {
    line-height: 1;
}