.hero-section {
    background-color: #FFFFFF;
    border-radius: 32px;
    margin-top: 20px;
    padding-top: 55px;
}

.hero-section-img-container {
    position: relative;
    margin-top: -15%;
    height: 83%;
}

.hero-section-img {
    position: absolute;
    width: calc(100% + (100vw - 100%) / 1.1);
    left: calc(((100vw - 100%) / 2.1) * -1);
}

.hero-hidden-img2 {
    width: calc(25% + (100vw - 100%) / 1.1);
    opacity: 0;
}

.hero-hidden-img {
    opacity: 0;
    width: 75%;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: var(--title-font-size);
    max-width: 675px;
    margin: auto;
    font-weight: var(--title-font-weight);
}

.hero-txt {
    font-size: var(--txt-large);
    margin-bottom: 54px;
    margin-top: 15px;
}

.hero-btn {
    font-weight: bold;
    width: 225.5px;
    height: 55.5px;
}

/* logo slider */
.logo-slider-main {
    margin-top: 43px;
    padding-top: 30px;
    background-color: #E8E8E8;
    border-bottom: 8px solid #EAAC03;
    margin-bottom: 43px;
}

.logo-slider-title {
    font-size: 32px;
    font-weight: 400;
    color: #826503;
    text-align: center;
    margin-bottom: 20px
}

.logo-slider-title-highlight {
    color: #FA5F5F;
    font-weight: 900;
}
/* Logo Bar Section */
.logo-bar {
    margin-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
}

.logo-slider {
    width: 74%;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.logo-track {
    animation: scroll 25s linear infinite;
    white-space: nowrap;
}

.logo-track img {
    height: 77px;
    padding: 15px;
    transition: transform 0.3s ease-in-out;
    margin-right: 3%;
}

.logo-track img:hover {
    transition: transform 0.3s ease-in-out;
    transform: scale(1.2);
}

/* Keyframes for scroll effect */
@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* logo slider */




/* Logo Cards Container */
.logo-slider-main .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0 20px;
}

/* Individual Logo Card */
.logo-card {
    background: white;
    border-radius: 20px;
    padding: 10px 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #EAAC03, #FA5F5F);
    transition: left 0.5s ease;
}

.logo-card:hover::before {
    left: 0;
}

.logo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.logo-card img {
    width: auto;
    height: 65px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-card:hover img {
    transform: scale(1.05);
}

.logo-year {
    font-size: 28px;
    font-weight: 700;
    color: #826503;
    margin-top: 10px;
    position: relative;
}

.logo-year::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #EAAC03;
    transition: width 0.3s ease;
}

.logo-card:hover .logo-year::after {
    width: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .logo-slider-title {
        font-size: 28px;
    }
    
    .logo-slider-main .container {
        gap: 30px;
    }
    
    .logo-card {
        min-width: 180px;
        padding: 25px 20px;
    }
    
    .logo-card img {
        height: 70px;
    }
}

@media (max-width: 768px) {
    .logo-slider-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .logo-slider-main .container {
        gap: 25px;
        flex-direction: column;
        align-items: center;
    }
    
    .logo-card {
        min-width: 160px;
        padding: 20px 15px;
        width: 100%;
        max-width: 250px;
    }
    
    .logo-card img {
        height: 60px;
    }
    
    .logo-year {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .logo-slider-main {
        padding-top: 20px;
        padding-bottom: 30px;
    }
    
    .logo-slider-title {
        font-size: 20px;
        padding: 0 15px;
    }
    
    .logo-card {
        min-width: 140px;
        padding: 15px 10px;
        max-width: 200px;
    }
    
    .logo-card img {
        height: 50px;
    }
    
    .logo-year {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .logo-slider-title {
        font-size: 18px;
    }
    
    .logo-card img {
        height: 45px;
    }
}
/* who-we-are-section */
.who-we-are-section {
    background-color: #FFFFFF;
    border-radius: 32px;
}

.who-we-are-content {
    padding: 55px 6.7%;

}

.who-we-are-title {
    margin-bottom: 27px;
}

.who-we-are-txt {
    margin-bottom: 27px;
    font-size: large;

}

.who-we-are-img-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.3%
}

.who-we-are-imgs {
    width: 100%;
    position: relative;
    overflow: hidden;
    position: relative;
}

.who-we-are-img-section .who-we-are-imgs img {
    z-index: 2;
    position: relative;
    width: 100%;

}

.who-we-are-img-section .who-we-are-imgs>img:first-child {
    z-index: 1;
    position: absolute;
    transition: 0.5s ease;

}

.who-we-are-img-section .who-we-are-imgs:hover>img:first-child {
    z-index: 1;
    position: absolute;
    transition: 0.5s ease;
    transform: scale(1.1);
}

.who-we-are-img-section-1,
.who-we-are-img-section-3 {
    width: 25.26%;
}

.who-we-are-img-section-2 {
    width: 44.88%;
}

.wwa-button {
    position: absolute;
    z-index: 3;
    bottom: 36px;
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
}

.wwa-button-inner {
    width: 100%;
    max-width: 197px;
    height: 36px;
    padding-bottom: 7px;
    border-bottom: 1px solid #FEF006;
}

.wwa-button-a {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    color: #FEF006;
    font-size: 24px;
    font-weight: 500;
    text-decoration: none;
    line-height: 29px;
    transform: 0.5s ease;

}

.who-we-are-img-section .who-we-are-imgs:hover .wwa-button-a {
    /* justify-content: center; */

    transform: 0.5s ease;
}

.who-we-are-img-section .wwa-button span {
    width: 17px;
    display: flex;
    align-items: center;
    height: 29px;
}

.who-we-are-img-section .wwa-button span img {
    width: 17px;

}

/*We Are On Track*/
.we-are-on-track {
    text-align: center;
    margin-top: 50px;
}

.we-are-on-track h2 {
    font-size: 32px;
    font-weight: 800;
}

.we-are-on-track h1 {
    margin-top: 40px;
    font-size: 48px;
    font-weight: 800;
}

.we-are-on-track p {
    margin-top: 40px;
    font-size: 18px;
    font-weight: 400;
}

.btn-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.btn-sri-lanka {
    font-size: 20px;
    border-radius: 9px;
    width: 201px;
    height: 65px;

}

.btn-europe {
    width: 201px;
    height: 65px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 9px;
    border: none;
    background-color: rgba(202, 202, 202, 0.4);
}

.sl-image-wrapper {
    width: 100%;
    background: white;
    clip-path: ellipse(100% 100% at 50% 100%);
    padding-bottom: 100px;
    overflow: visible;
    position: relative;
    z-index: 1;
}

.sl-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

#sri-lanka-image {
  display: block; /* or 'none' if you want it hidden initially */
}
.sl-image img {
    height: auto;
    display: block;
    margin-top: 40px;
}

.uk-image-wrapper {
    width: 100%;
    background: white;
    clip-path: ellipse(100% 100% at 50% 100%);
    padding-bottom: 100px;
    overflow: visible;
    position: relative;
    z-index: 1;
}

.uk-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

#uk-image {
  display: block; /* or 'none' if you want it hidden initially */
}
.uk-image img {
    height: auto;
    display: block;
    margin-top: 40px;
}



/* @media (max-width: 480px) {
    .quote-image {
        width: 180px;
        margin-bottom: -30px;
    }

    .quote-section {
        padding: 10px;
        padding-top: 50px;
    }

    .quote-text {
        font-size: 16px;
    }

    .quote-author {
        font-size: 14px;
    }

    .quote-title {
        font-size: 11px;
    }
} */

/* one day delivery */
.one-day-delivery {
    margin-top: 10px;

}

.odd-main-img {
    width: 100%;
}

.odd-content {
    padding-top: 85px;
    padding-bottom: 85px;
    background-color: #ECBA1B;
    border-radius: 32px;
    margin-top: -96px;
    z-index: 1;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    padding-right: 0;
}

.odd-content1 {
    padding-left: 37px;
    width: 55.83%;
}

.odd-content-txt1,
.odd-content-txt2,
.odd-content-txt3 {
    font-size: var(--title-font-size);
    color: #FFFFFF;
    margin-left: 26px;
    line-height: 54px;
}

.odd-content-txt1 {
    font-size: var(--title-font-size);
    color: #000000;
    margin-bottom: 16px;
}

.odd-content-txt2 {
    font-size: var(--title-font-size);
    font-weight: 900;
    margin-bottom: 0;
}

.odd-content-txt3 {
    font-size: var(--title-font-size);
    margin-bottom: 48px;
}

.odd-content1-img {
    width: 100%;
}

.odd-content2 {
    width: 44.17%;
    position: relative;
}

.odd-content2-img {
    position: absolute;
    width: 100%;
    margin-top: -50px;
    margin-left: 2px;
}

/*Together We Can*/
.together-we-can-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img/homePage/together.png');
    color: rgb(0, 0, 0);
    padding: 3rem 1.5rem;
    font-family: var(--font_type);
    margin: 0 auto;
    border-radius: 32px;
    margin-bottom: 32px;
    align-items: center;
    min-height: 400px;
    justify-content: center;
    background-size: cover;
    flex-direction: column;
    display: flex;
    background-position: center;
    position: relative;
    background-repeat: no-repeat;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.together-we-can-section h1 {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    color: white;

}

.together-we-can-section p {
    justify-content: center;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 39px
}

.lets-work-us-together-btn {
    width: 255px;
    height: 55px;
    font-weight: 400;
    font-size: 20px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;

}

.our-latest-event h1 {
    text-align: center;
    font-family: var(--font_type);
    font-size: var(--title-font-size);
    font-weight: var(--title-font-weight);
}

.our-latest-event p {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 50px;
    font-family: var(--font_type);
    font-size: 18px;
    font-weight: 400;
}

.slider-wrapper {
    margin: auto;
    overflow: hidden;
    border-radius: 20px;
    background: #F3F3F3;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 12px;
    /* **ADDED: Gap between slides** */
    padding: 12px;
}

.slide {
    flex: 0 0 calc(33.3333% - 6.6667px);
    height: 398px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: flex 0.5s ease, filter 0.5s ease;
    filter: brightness(0.8);
    cursor: pointer;
    border-radius: 20px;
}

.slide:hover {
    /* **ADJUSTED: Flex basis for hover state to accommodate the gap** */
    flex: 0 0 calc(50% - 5px) !important;
    /* (100% / 2) - (1 * 10px / 2) */
    filter: brightness(1);
}

.slide-content {
    position: absolute;
    gap: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #F3F3F3;
    text-align: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.6s ease;
    transition-delay: 0.3s;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.6);
    padding: 12px 24px;
    border-radius: 10px;
}

.slide:hover .slide-content {
    opacity: 1;
    transition: opacity 0.3s ease;

}

.slide-content h3 {
    margin: 0;
    font-size: 22px;
}

.slide-content p {
    display: none;
}

/* Navigation Buttons - FIXED */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(173, 216, 230, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 80px;
    padding: 0;
    font-weight: bold;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #EAAC03;
}

.prev-btn {
    left: 0;
    border-radius: 0 8px 8px 0;
}

.next-btn {
    right: 0;
    border-radius: 8px 0 0 8px;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .slide {
        /* **ADJUSTED: Flex basis for responsive breakpoint** */
        flex: 0 0 calc(50% - 5px);
        /* (100% / 2) - (1 * 10px / 2) */
    }
}

@media (max-width: 768px) {
    .slider-track {
        flex-direction: row;
    }

    .slide {
        flex: 0 0 100% !important;
        height: 250px;
        filter: brightness(1);
    }

    .slide:hover {
        flex: 0 0 100% !important;
    }

    .slide-content {
        opacity: 1;
        transform: translate(-50%, -50%);
        font-size: 18px;
        padding: 10px 18px;
    }

    .nav-btn {
        width: 40px;
        height: 60px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .slide {
        height: 200px;
    }

    .slide-content h3 {
        font-size: 18px;
    }

    .nav-btn {
        width: 35px;
        height: 50px;
        font-size: 16px;
    }
}

@media (min-width: 1.98px) and (max-width: 1200.98px) {
    .hero-section {
        padding-top: 27px;
    }

    .logo-slider {
        width: 100%;
    }

    .odd-content {
        padding-top: 55px;
        padding-bottom: 45px;
    }

    .quote-text {
        font-size: 35px;
        line-height: 41px;
        padding-bottom: 20px;
    }
    .chairman-message-section {
        margin-top: 95px;
    }
}

@media (min-width: 1.98px) and (max-width: 991.98px) {

    .hero-btn {
        font-weight: bold;
        width: 178px;
        height: 44px;
    }

    .hero-txt {
        margin-bottom: 30px;
    }

    .logo-slider-title {
        font-size: 28px;
    }

    .wwa-button-a {
        font-size: 20px;
    }

    .wwa-button {
        padding-left: 10px;
        padding-right: 10px;
    }

    .who-we-are-img-section .wwa-button span img {
        width: 14px;
    }

    .who-we-are-img-section .wwa-button span {
        width: 14px;
    }

    .odd-content {
        padding-top: 25px;
    }

    .odd-content1 {
        width: 100%;
        padding-right: 37px;
    }

    .odd-content2 {
        width: 100%;
        padding-left: 37px;
        padding-right: 37px;

    }

    .odd-content2-img {
        position: unset;
        margin-top: 20px;
        margin-left: 0px;
    }

    .odd-content-txt1,
    .odd-content-txt2,
    .odd-content-txt3 {
        margin-left: 0;
    }

    .odd-content-txt3 {
        margin-bottom: 22px;
    }
   
}

@media (min-width: 1.98px) and (max-width: 767.98px) {

    .hero-btn {
        font-weight: bold;
        width: 155px;
        height: 36px;
    }

    .logo-track img {
        height: 60px;
        padding: 10px;
        margin-right: 2%;
    }

    .who-we-are-img-section-2 {
        width: 100%;
        order: 1;
        margin-bottom: 9px;
    }

    .who-we-are-img-section-1 {
        width: 48.85%;
        order: 2;
    }

    .who-we-are-img-section-3 {
        width: 48.85%;
        order: 3;
    }

    .odd-content {
        margin-top: -50px;
    }

    .odd-content-txt1 {
        margin-bottom: 0px;
    }

   
}

@media (min-width: 1.98px) and (max-width: 575.98px) {
    .hero-section-img-container {
        margin-top: -11.5%;
    }

    .hero-hidden-img {
        width: 100%;
        padding-bottom: 20px;
    }

    .hero-hidden-img2 {
        display: none;
    }

    .logo-slider {
        width: 45%;
    }

    .logo-slider-title {
        font-size: 25px;
    }

    .logo-track img {
        height: 50px;
        padding: 10px;
        margin-right: 2%;
    }

    .odd-content-txt1,
    .odd-content-txt2,
    .odd-content-txt3 {
        line-height: unset;
    }

    .odd-content {
        margin-top: -26px;
    }

    .odd-content1 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .odd-content2 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .odd-content {
        padding-bottom: 33px;
    }

    .quote-text {
        font-size: 26px;
        line-height: 31px;
    }

    .quote-author {
        font-size: 21px;
    }

    .chairman-section-content {
        padding-left: 15px;
        padding-right: 15px;
    }
}



@media (min-width: 1.98px) and (max-width: 369.98px) {

    .logo-slider-title {
        font-size: 21px;
    }

    .odd-content-txt2,
    .odd-content-txt3 {
        font-size: 24px;
    }

    .quote-image img {
        width: 95%;
    }

    .quote-text {
        font-size: 24px;
        line-height: 30px;
    }
}