


/* Homepage Text Section Styles */
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section
{
    animation: fadeInUp 0.6s ease-out;
}
.home .content-area
{
  margin-top:0;
}
.homepage-hero-slider
{
    padding-bottom: 55px;
}
.homepage-text-section {
    position: relative;
    width: 100%;
    padding: 40px 0;
    background: #fff;
    min-height: 150px;
    border: 3px solid #c4cd26;
    border-radius: 8px;
    margin: 20px 0;
    overflow: initial;
}

.text-section-container {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 10px;
}

.main-text-wrapper {
    position: absolute;
    margin-top: -59px;
    margin-left: 35px;
}

.main-text {
    font-size: 32px;
    background-color: #fff;
    line-height: 1.1em;
    padding: 0 10px;
    margin: 0;
}

.subtitle-wrapper {
    position: absolute;
    width: -webkit-fill-available;
    margin-top: -5px;
    margin-right: 85px;
  text-align: right;
}

.subtitle-text {

    font-size: 27px;
    line-height: 0;
    font-weight: 200;
    max-width: 524px;
    justify-self: right;

}

.logo-wrapper {
    position: absolute;
    width: 95%;
    text-align: right;
    margin-top: 75px;
    margin-right: 30px;
    display: flex;
    justify-content: flex-end;
}

.section-logo {
    margin-bottom: -14px;
    background-color: #fff;
    padding-left: 10px;
    padding-right: 10px;
    max-height: 60px;
    width: auto;
}

/* Responsive adjustments */
@media (max-width: 1056px) {
    .subtitle-text {
        font-size: 24px;
    }
}

@media (max-width: 980px) {
    .homepage-text-section {
        min-height: 120px;
        padding: 30px 0;
    }
    
    .subtitle-text {
        font-size: 22px;
    }
    
    .main-text {
        font-size: 28px;
    }
    
    .subtitle-wrapper {
        margin-left: 280px;
        width: calc(100% - 330px);
    }
}

@media (max-width: 767px) {
    .main-text {
        font-size: 24px;
    }
    
    .main-text-wrapper {
        position: relative;
        
        margin-left: 0;
        margin-top: -55px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .subtitle-wrapper {
        position: relative;
        margin-top: 0;
        margin-left: 0;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .subtitle-text {
        font-size: 20px;
    }
    
    .logo-wrapper {
        position: absolute;
        margin-top: 0;
        margin-right: 0;
        text-align: center;
    }
    
    .text-section-container {
        padding: 10px 20px;
    }
    
    .homepage-text-section {
        margin: 10px 0;
        padding: 20px 0;
    }
    .section-logo
    {
        max-height: 40px;
    }
}

@media (max-width: 576px) {
    .homepage-text-section {
        margin: 10px 4px;
    }
    
    .text-section-container {
        padding: 8px 15px;
    }
}

@media (max-width: 500px) {
    .main-text {
        font-size: 18px;
    }
    
    .subtitle-text {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .main-text {
        font-size: 16px;
        padding: 0 8px;
    }
    
    .subtitle-text {
        font-size: 16px;
    }
    
    .text-section-container {
        padding: 15px 10px;
    }
}

/* Homepage Text and Icons Section */


.textandicons-container {
    max-width: 1200px;
    margin: 0 auto;

}

.text-part {
    text-align: center;
    margin-bottom: 30px;
}

.textandicons-section-title {
    font-size: 25px;
    color: #505050;
    margin-bottom: 20px;
    position: relative;
}



.section-description {
    font-size: 14px;
    color: #505050;
    line-height: 1.6;
    margin: 0 auto;
    text-align: left;
}

.icons-part {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.icon-box {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 2px solid #c4cd26;
    transition: transform 0.3s ease;
}

.icon-box:hover {
    transform: scale(1.005);
}

.icon-header {
    background: #c4cd26;
    padding: 10px 0;
    text-align: center;
    position: relative;
}

.icon-wrapper {
    width: 68;
    height: 62px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon {
    width: auto;
    height: 100%;
    color: #fff;
}

.icon-title {
    color: #505050;
    font-size: 20px;
    font-weight: 700;
    margin: 0;

}

.icon-content {
    padding: 12px;
    text-align: left;    
    color: #505050;
}

.icon-content p {

    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 980px) {
    .icons-part {
        flex-direction: column;
        gap: 30px;
    }
    
   .icon {
    width: 80px;
    height: 80px;
}
.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 0px;
}
}

@media (max-width: 767px) {


    .icon {
    width: 70px;
    height: 70px;
}
    .icon-wrapper {
        width: 70px;
        height: 70px;
    }

    
 
    .icon-header {
        padding: 10px;
    }
    
    .icon-content {
        padding: 20px 15px;
    }
}
@media (max-width: 576px) {

    
    .icon {
        width: 66px;
        height: 66px;
    }
    .icon-wrapper {
        width: 66px;
        height: 66px;
}
}

/* Homepage Find Out More Section */
.homepage-findout-section {
    padding: 40px 0;
    background: #fff;
}

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

.findout-title {
    text-align: center;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}



.findout-links {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.findout-link {
    display: block;
    text-decoration: none;
    width: 50%;
    border: 2px solid #c4cd26;
    border-radius: 12px;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.findout-link:hover {
    transform: scale(1.05);

    text-decoration: none;
}
/* Remove shadow on .link-title span hover, even if parent is hovered */
.findout-link:hover .link-title span,
.link-title span:hover {
    box-shadow: none !important;
}


.link-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    padding: 15px;

}

.link-image img {
    width: 100%;
    height: 100%;    
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.link-title {
    position: absolute;
    bottom: -17px;
    right: 15px;
    overflow: visible;
    text-align: center;
}

.link-title span {
    color: #505050;
    background-color: #fff;
    font-size: 20px;
    font-weight: 700;

    text-transform: uppercase;
    padding: 0 10px;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 980px) {
    .findout-links {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .findout-link {
        width: 80%;
        max-width: 400px;
    }

}

@media (max-width: 767px) {
   
    
    .findout-links {
        gap: 20px;
    }
    
    .findout-link {
        width: 100%;
    }
    
    
    .link-image {
        height: 150px;
    }
    
    .link-title {
        padding: 12px 15px;
    }
    
    .link-title span {
        font-size: 14px;
    }
}

/* Homepage Cooperation Slider Section */
.homepage-cooperation-slider {

    background: #fff;
}

.cooperation-container {
    margin: 0 auto;

}

.cooperation-title {
    text-align: center;
    font-size: 26px;
    font-weight: 600;


    position: relative;
}

.cooperation-slider-wrapper {
    position: relative;
    padding: 30px 0;
}



.cooperation-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    transition: transform 0.3s ease;
}

/* 3D effect for center slides */
.cooperation-slider .slick-slide {
    transform: scale(0.85);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.cooperation-slider .slick-center {
    transform: scale(1);
    opacity: 1;
}


/* Homepage Two Column Text Section */
.homepage-two-column-text {
    padding: 60px 0;
    background: #fff;
}

.two-column-container {
    max-width: 1200px;
    margin: 0 auto;

}

.two-column-content {
    columns: 2;
    column-gap: 60px;
    column-rule: none;
    text-align: justify;
    line-height: 1.6;
    color: #505050;
    font-size: 14px;
}

.two-column-content p {

    margin: 0;
    break-inside: avoid-column;
}

.two-column-content p:last-child {
    margin-bottom: 0;
}

/* Responsive design for two column text */
@media (max-width: 968px) {
    .homepage-two-column-text {
        padding: 60px 0;
    }
    

    
    .two-column-content {
        columns: 1;
        column-gap: 0;
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 640px) {
    .homepage-two-column-text {
        padding: 40px 0;
    }
    

    
    .two-column-content {
        font-size: 14px;
        line-height: 1.6;
    }
}