
/* CRITICAL: Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure all containers don't exceed viewport */

body {
    font-family: 'Crimson Text', serif;
    color: #333;
    font-size: 20px;
    overflow-x: hidden; /* Prevent horizontal scroll during animations */
    padding-top: 0; /* Initially no padding needed */
    transition: padding-top 0.3s ease;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}



body.scrolled {
padding-top: 90px; /* Add padding when navbar is fixed */
}


/* Navbar Styles */
.navbar {
border-radius: 40px;
padding: 0.75rem 1.5rem;
background-color: white;
width: 100%;
max-width: 1320px;
margin: 0 auto;
transition: all 0.3s ease;
}

.navbar.fixed-top {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1030;
max-width: 100%;
border-radius: 0;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
width: 50px;
height: auto;
}

.nav-link {
    position: relative;
    color: black !important;
    margin: 0 10px;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.nav-link:hover {
opacity: 0.8;
}

.nav-link.active::after {
content: "";
position: absolute;
bottom: 4px;
left: 0;
width: 100%;
height: 2px;
background-color: black;
@media (max-width: 575.98px) {
 width: 14%;
}
}

/* Custom hamburger to X icon */
.navbar-toggler {
border: none;
background: transparent;
padding: 0;
}

.navbar-toggler:focus {
box-shadow: none;
}

.navbar-toggler .navbar-toggler-icon {
background-image: none;
position: relative;
height: 24px;
width: 30px;
transition: all 0.3s ease;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after,
.navbar-toggler .navbar-toggler-icon .middle-bar {
content: '';
position: absolute;
width: 100%;
height: 3px;
background-color: #333;
border-radius: 2px;
left: 0;
transition: all 0.3s ease;
}

.navbar-toggler .navbar-toggler-icon:before {
top: 0;
}

.navbar-toggler .navbar-toggler-icon .middle-bar {
top: 50%;
transform: translateY(-50%);
}

.navbar-toggler .navbar-toggler-icon:after {
bottom: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
transform: rotate(45deg);
top: 11px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon .middle-bar {
opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
transform: rotate(-45deg);
bottom: 10px;
}

.containers {
padding: 20px;
}

@media (min-width: 576px) {
.containers {
    padding: 20px 40px;
}
}

@media (min-width: 768px) {
.containers {
    padding: 20px 60px;
}
}

@media (min-width: 992px) {
.containers {
    padding: 20px 80px;
    margin: 14px;
}
}
.main-containers {
    background-color: #EBECE7;
    min-height: 100vh;
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-bottom: 20px;
}

.header-banner img.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.header-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 40px 20px;
}

.header-logo-container {
    margin-bottom: 36px;
}

.header-logo {
    width: 100px;
    height: 100px;
   
}

.header-text-container {
    margin-top: 130px;
}

.header-title {
    font-size: 32px;
    font-family: 'Kamerone Bold', serif;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.header-subtitle {
    font-size: 22px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.header-description {
    font-size: 18px;
    max-width: 800px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .header-banner {
        height: 100vh;
    }
    
    .header-logo {
        width: 80px;
        height: 80px;
    }
    
    .header-title {
        font-size: 24px;
    }
    
    .header-subtitle {
        font-size: 18px;
    }
    
    .header-description {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .header-banner {
        height: 100vh;
    }
    
    .header-logo {
        width: 70px;
        height: 70px;
    }
    
    .header-title {
        font-size: 20px;
    }
    
    .header-subtitle {
        font-size: 16px;
    }
    
    .header-description {
        font-size: 14px;
    }
}

/* Left-Aligned Text Section */
.text-sections {
    max-width: 100%;
    margin-bottom: 30px;
    padding: 0 15px;
}

.section-titles {
    font-family: 'Crimson Text', serif;
    font-size: 24px;
    font-weight: bold;
    color: #0044cc;
    text-transform: uppercase;
}

.section-descriptions {
    font-family: 'Crimson Text', serif;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

/* Card Section */
.cards-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -15px;
}

/* Card Container */
.card-containers {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
}

/* Image Container */
.image-containers {
    width: 90%;
    max-width: 350px;
    min-width: 220px;
    position: relative;
    background: white;
    border-radius: 0 0 80px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin-bottom: 20px;
    height: 229px;
}

@media (max-width: 991px) {
    .image-containers {
        width: 95%;
        max-width: 100%;
        min-width: 180px;
    }
}

@media (max-width: 576px) {
    .image-containers {
        width: 100%;
        max-width: 100%;
        min-width: 120px;
        padding: 10px;
        height: 180px;
    }
}

.inner-images {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 0 0 60px 0;
}

.inner-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.contents {
    text-align: left;
    padding: 0 10px;
}

.numbers {
    color: #B58042;
    font-size: 20px;
    font-weight: bold;
}

.titles {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.descriptions {
    font-size: 16px;
    color: #666;
    line-height: 1.4;
}

/* Responsive Design */
/* Extra small devices (phones, less than 576px) */
@media (max-width: 768px) {
    .main-containers {
        padding: 15px;
    }

    .section-titles {
        font-size: 20px;
    }

    .section-descriptions {
        font-size: 20px;
    }

    .card-containers {
        display: flex
;
max-width: 100%;
margin: 15px auto;
justify-content: space-between;
flex-direction: column;
align-content: flex-end;
align-items: center;

    }

    .image-containers {
        height: 200px;
    }

    .inner-images {
        height: 150px;
    }

    .numbers {
        font-size: 18px;
    }

    .titles {
        font-size: 16px;
    }

    .descriptions {
        font-size: 16px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .card-containers {
        max-width: 400px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .col-md-3:nth-child(1),
    .col-md-3:nth-child(3) {
        transform: translateY(-20px);
    }

    .col-md-3:nth-child(2),
    .col-md-3:nth-child(4) {
        transform: translateY(20px);
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .col-md-3:nth-child(1),
    .col-md-3:nth-child(3) {
        transform: translateY(-20px);
    }

    .col-md-3:nth-child(2),
    .col-md-3:nth-child(4) {
        transform: translateY(40px);
    }

    .text-sections {
        max-width: 600px;
    }

    .section-titles {
        font-size: 28px;
    }

    .section-descriptions {
        font-size: 20px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .main-containers {
        padding: 50px 15px;
    }

    .text-sections {
        max-width: 700px;
    }
}
h2 {
  font-size: 28px;
}

h1, h3, h4, h5, h6 {
    font-size: 20px;
    font-weight: 600;
}

.section-title {
    color: #B58042;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 28px;
}


.btn-primary {
    background-color: #B58042;
    border-color: #B58042;
    font-weight: 600;
    margin-top: 10px;
}

.btn-primary:hover {
    background-color: #B58042;
    border-color: #B58042;
}

.view-more-btn {
    background-color: #B58042;
    color: white;
    font-size: 16px;
    padding: 5px 15px;
    border-radius: 3px;
    font-weight: 600;
}

.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.scheme-number {
    font-weight: 600;
    color: #B58042;
    margin-bottom: 10px;
    font-size: 20px;
}

.welcome-section {
background-color: #f0f5f8;
position: relative;
margin: 20px;
border-radius: 46px;
margin-top: 60px;

box-shadow: 0 0 25px 5px rgba(0, 0, 0, 0.25);
}


.welcome-text {
    padding: 30px;
}
.industrial-coop-img {
width: 100%;
max-width: 350px;
height: auto;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.bg-light {
background-color: #ebece7 !important;
}

.intro-text {
color: #333 !important;
font-size: 20px;
line-height: 1.6;
}


.welcome-map {
    position: relative;
height: 115%;
display: flex
;
flex-wrap: nowrap;
align-content: center;
justify-content: center;
align-items: center;

}

.carousel-control-prev, 
.carousel-control-next {
    width: 10%;
    opacity: 0.8;
}

.carousel-item img {
    height: 350px;
    object-fit: cover;
}

.photo-gallery img {
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}


.thrust-sector {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s;
}

.thrust-sector:hover {
    background-color: #f8f9fa;
}

.thrust-icon {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.nav-arrow {
    background-color: #0047AB;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer Styles */
footer {
 background-color: #b1783b;
 color: white;
 padding: 20px 0;
 font-family: 'Poppins', sans-serif;
}

/* Update footer headings */
footer h5 {
 font-family: 'Roboto', sans-serif;
 font-weight: 500;
}

/* Update footer content */
footer p, footer li, footer a {
 font-family: 'Poppins', sans-serif;
}

.scheme-card {
    border: none;
    background-color: transparent;
}

.scheme-img {
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

p {
    font-size:  clamp(0.975rem, 3vw, 1.25rem);
}

.text-muted {
    color: #333 !important;
}

ul li {
color: #555;
font-size: 16px;
line-height: 1.7;
/* padding-left: 25px; */
position: relative;
}

ul li i {
position: absolute;
left: 0;
top: 5px;
color: #B58042;
font-size: 0.9rem;
}


.header-row {
margin-bottom: 40px;
}

@media (max-width: 767px) {

.intro-text {
margin: 20px 0;
}

.view-more-btn {
margin-top: 20px;
}

.industrial-coop-img {
margin: 0 auto 30px;
display: block;
}
}
.incentives-section{
 margin-top: 28px;
}
@media (max-width:576px){
 .incentives-section{
     margin-top: 35px;
 }
}
.incentives-section .nav-arrow {
background-color: #B58042;
color: #fff;
border-radius: 50%;
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
}
@media (max-width: 767px) {
.incentives-section .col-md-4 {
text-align: center !important;
margin-bottom: 56px;
}
.incentives-section .col-md-8 {
text-align: left !important;
}
}
.header-banner {
 position: relative;
 height: 100vh;
 overflow: hidden;
 display: flex;
 align-items: center;
 justify-content: center;
}

.bg-video {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
 z-index: 1;
 opacity: 0;
 transition: opacity 0.5s ease-in-out;
}

.bg-video.loaded {
 opacity: 1;
}

/* Mobile-specific video handling */
@media (max-width: 768px) {
 .bg-video {
     /* Ensure video stays visible on mobile */
     opacity: 1;
     transition: opacity 0.3s ease-in-out;
 }
 
 .video-poster.hidden {
     /* Completely hide poster on mobile to prevent loading effects */
     opacity: 0;
     pointer-events: none;
     display: none !important;
     visibility: hidden;
 }
 
 /* Prevent any loading animations on mobile */
 .video-poster::after {
     display: none !important;
 }
}

/* Poster image that shows before video loads */
.video-poster {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: 1;
 transition: opacity 0.5s ease-in-out;
}

.video-poster.hidden {
 opacity: 0;
 pointer-events: none;
 /* Ensure it stays hidden on mobile */
 display: none !important;
}

.poster-img,
.video-fallback {
 width: 100%;
 height: 100%;
 object-fit: cover;
}

.header-overlay {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: rgba(0, 0, 0, 0.5);
 z-index: 2;
}

.header-content {
 position: relative;
 z-index: 3;
 width: 100%;
 height: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #B58042 !important;
}

/* Loading animation for poster - REMOVED */
.carousel-images-track {
 margin-left: 0;
 padding: 0 15px;
}

@media (max-width: 768px) {
 .carousel-images-track {
   margin-left: -30px;
 }
}

@media (max-width: 576px) {
 .carousel-images-track {
   margin-left: -25px;
 }
}

@media (max-width: 425px) {
 .carousel-images-track {
   margin-left: -20px;
 }
}

@media (max-width: 375px) {
 .carousel-images-track {
   margin-left: -15px;
 }
}

@media (max-width: 320px) {
 .carousel-images-track {
   margin-left: -10px;
 }
}

.industrial-profile-carousel-section {
 position: relative;
 width: 100%;
 overflow: hidden;
}

.industrial-profile-carousel-section .carousel-flex-wrapper {
 width: 100%;
 min-height: 450px;
}

.carousel-images-track-wrapper {
 width: 100%;
 overflow: hidden;
 position: relative;
 cursor: grab;
}
.carousel-images-track {
display: flex;
align-items: center;
will-change: transform;
height: 100%;
user-select: none;
padding: 20px 0;

/* Responsive margins */
@media (min-width: 1200px) {
margin-left: -94px;
}

@media (max-width: 1199px) {
margin-left: -80px;
}

@media (max-width: 991px) {
margin-left: -60px;
}

@media (max-width: 767px) {
margin-left: -40px;
}

@media (max-width: 575px) {
margin-left: -20px;
padding: 15px 0;
}

@media (max-width: 375px) {
margin-left: -10px;
padding: 10px 0;
}
}

.carousel-img-center-rect, .carousel-img-side {
 background: #fff;
 border-radius: 18px;
 flex-shrink: 0;
 display: flex;
 align-items: center;
 justify-content: center;
 overflow: hidden;
}

.carousel-img-center-rect {
 box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.carousel-img-side {
 box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.carousel-img-center-rect img, .carousel-img-side img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 border-radius: 18px;
 pointer-events: none;
 user-select: none;
 -webkit-user-drag: none;
}

.nav-button {
 transition: all 0.2s ease;
 opacity: 0.8;
}

.nav-button:hover {
 opacity: 1;
 transform: scale(1.1);
}

/* Loading Line Styles */
.loading-line-container {
 position: relative;
 overflow: hidden;
}

  .loading-line {
    background: linear-gradient(90deg, #B58042 0%, #B58042 50%, #B58042 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
 0% { background-position: 200% 0; }
 100% { background-position: -200% 0; }
}

/* Responsive loading line */
@media (max-width: 768px) {
 .loading-line-container {
   width: 100px !important;
 }
}

@media (max-width: 480px) {
 .loading-line-container {
   width: 80px !important;
 }
}

/* Media queries for different screen sizes */
@media (max-width: 1200px) {
 .industrial-profile-carousel-section .carousel-flex-wrapper {
   min-height: 400px;
 }
}

@media (max-width: 992px) {
 .industrial-profile-carousel-section .carousel-flex-wrapper {
   min-height: 350px;
 }
}

@media (max-width: 768px) {
 .industrial-profile-carousel-section .carousel-flex-wrapper {
   min-height: 280px;
 }
}

@media (max-width: 576px) {
 .industrial-profile-carousel-section .carousel-flex-wrapper {
   min-height: 220px;
 }
}

@media (max-width: 425px) {
 .industrial-profile-carousel-section .carousel-flex-wrapper {
   min-height: 180px;
 }
}

@media (max-width: 375px) {
 .industrial-profile-carousel-section .carousel-flex-wrapper {
   min-height: 160px;
 }
}

@media (max-width: 320px) {
 .industrial-profile-carousel-section .carousel-flex-wrapper {
   min-height: 140px;
 }
}
.incentives-section {
 background-color: #ffffff;
}

.section-title {
    color: #B58042;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 28px;
    text-transform: uppercase;
    margin-top: 35px;
}

.incentives-intro {
 font-size: clamp(14px, 2.5vw, 18px);
 color: #666;
 line-height: 1.5;
}

.view-more-btn {
    background-color: #B58042;
    color: white;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    min-width: 120px;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.view-more-btn:hover {
    background-color: #B58042;
    color: white;
}

.image-container {
 height: 100%;
 min-height: 400px;
 display: flex;
 align-items: center;
 justify-content: center;
}

.main-image {
 width: 100%;
 height: 100%;
 max-height: 500px;
 object-fit: cover;
 border-radius: 8px;
 box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.incentives-list {
 height: 100%;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
}

.incentive-item {
 display: flex;
 align-items: flex-start;
 padding: 20px 0;
 border-bottom: 1px solid #eaeaea;
 transition: all 0.3s ease;
 flex: 1;
}

.incentive-item:last-child {
 border-bottom: none;
}

.incentive-item:hover {
 background-color: #f8f9fa;
 padding-left: 15px;
 padding-right: 15px;
 border-radius: 8px;
}

.incentive-icon {
 width: 56px;
 height: 56px;
 border-radius: 8px;
 object-fit: cover;
 margin-right: 18px;
 flex-shrink: 0;
}

.incentive-content {
 flex-grow: 1;
 margin-right: 15px;
}

.incentive-title {
 font-weight: bold;
 font-size: 16px;
 color: #333;
 margin-bottom: 8px;
}

.incentive-desc {
 font-size: 14px;
 color: #666;
 line-height: 1.5;
 width: 95%;
}

.incentive-arrow {
 flex-shrink: 0;
 align-self: center;
}

.arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #B58042;
    color: white;
    border-radius: 50%;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(181, 128, 66, 0.3);
}

hr {
 border-color: #e0e0e0;
 margin: 0;
}

/* Tablet Styles */
@media (max-width: 991px) {
 .section-title {
     font-size: 24px;
     text-align: center;
     margin-bottom: 15px;
 }

 .incentives-intro {
     text-align: center;
     margin-bottom: 15px;
 }

 .view-more-btn {
     display: block;
     margin: 0 auto;
 }

 .image-container {
     min-height: 300px;
 }
}

/* Mobile Styles */
@media (max-width: 767px) {
 .section-title {
     font-size: 22px;
     margin-bottom: 20px;
 }

 .incentives-intro {
     font-size: 16px;
     margin-bottom: 20px;
 }

 .image-container {
     min-height: 250px;
     margin-bottom: 30px;
 }

 .incentive-item {
     padding: 15px 0;
 }

 .incentive-title {
     font-size: 16px;
 }

 .incentive-desc {
     font-size: 14px;
 }

 .incentive-icon {
     width: 48px;
     height: 48px;
     margin-right: 15px;
 }

 .arrow-circle {
     width: 32px;
     height: 32px;
     font-size: 12px;
 }
}

/* Small Mobile Styles */
@media (max-width: 575px) {
 .section-title {
     font-size: 20px;
     letter-spacing: 1px;

 }

 .incentives-intro {
     font-size: 15px;
 }

 .view-more-btn {
     font-size: 12px;
     padding: 8px 16px;
     min-width: 100px;
 }

 .image-container {
     min-height: 200px;
 }

 .incentive-item {
     padding: 12px 0;
 }

 .incentive-title {
     font-size: 15px;
     margin-bottom: 6px;
 }

 .incentive-desc {
     font-size: 13px;
 }
}

/* Extra Small Mobile (320px) */
@media (max-width: 320px) {
 .container {
     padding-left: 10px;
     padding-right: 10px;
 }

 .section-title {
     font-size: 18px;
     letter-spacing: 1px;
 }

 .incentives-intro {
     font-size: 14px;
 }

 .view-more-btn {
     font-size: 11px;
     padding: 6px 12px;
     min-width: 50px;

 }

 .image-container {
     min-height: 180px;
 }

 .incentive-item {
     padding: 10px 0;
 }

 .incentive-icon {
     width: 40px;
     height: 40px;
     margin-right: 12px;
 }

 .incentive-title {
     font-size: 14px;
 }

 .incentive-desc {
     font-size: 12px;
     line-height: 1.4;
 }

 .arrow-circle {
     width: 28px;
     height: 28px;
     font-size: 10px;
 }
}

/* Ensure equal heights on desktop */
@media (min-width: 992px) {
 .row {
     display: flex;
     align-items: stretch;
 }

 .image-container,
 .incentives-list {
     height: 500px;
 }
}
.industrial-coop-section {
 background-color: #f8f9fa;
}

.section-title {
    color: #B58042;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 28px;
    text-transform: uppercase;
    line-height: 1.2;
}

.intro-text {
 font-size: clamp(14px, 2.5vw, 18px);
 color: #666;
 line-height: 1.5;
}

.image-container {
 height: 100%;
 min-height: 400px;
 display: flex;
 align-items: center;
 justify-content: center;
}

.main-image {
 width: 100%;
 height: 100%;
 max-height: 500px;
 object-fit: cover;
 border-radius: 8px;
 box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.content-container {
 height: 100%;
 display: flex;
 flex-direction: column;
 justify-content: center;
 min-height: 400px;
}

.content-heading {
 color: #333;
 font-weight: 600;
 font-size: 20px;
 line-height: 1.4;
}

.cooperative-list {
 list-style: none;
 padding: 0;
 margin: 0;
 display: flex;
 flex-direction: column;
}

.cooperative-item {
 display: flex;
 align-items: flex-start;
 padding: 15px;
 border-radius: 8px;
 transition: all 0.3s ease;
}

.cooperative-item:hover {
 transform: translateY(-2px);
 box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.bullet-icon {
    color: #B58042;
    font-size: 16px;
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.item-content {
 color: #555;
 font-size: 18px;
 line-height: 1.6;
 flex-grow: 1;
}

hr {
 border-color: #e0e0e0;
 margin: 0;
}

/* Tablet Styles */
@media (max-width: 991px) {
 .section-title {
     font-size: 24px;
     text-align: center;
     margin-bottom: 15px;
 }

 .intro-text {
     text-align: center;
     margin-bottom: 15px;
 }

 .image-container {
     min-height: 300px;
 }

 .content-container {
     min-height: auto;
 }
}

/* Mobile Styles */
@media (max-width: 767px) {
 .section-title {
     font-size: 22px;
     margin-bottom: 20px;
 }

 .intro-text {
     font-size: 16px;
     margin-bottom: 20px;
 }

 .image-container {
     min-height: 250px;
     margin-bottom: 30px;
 }

 .content-heading {
     font-size: 18px;
     margin-bottom: 25px;
 }

 .cooperative-item {
     padding: 12px;
     gap: 15px;
 }

 .bullet-icon {
     font-size: 14px;
     margin-right: 12px;
 }

 .item-content {
     font-size: 16px;
 }
}

/* Small Mobile Styles */
@media (max-width: 575px) {
 .section-title {
     font-size: 20px;
     letter-spacing: 1px;
     margin-top: 10px;
 }

 .intro-text {
     font-size: 15px;
 }

 .image-container {
     min-height: 200px;
 }

 .content-heading {
     font-size: 17px;
     margin-bottom: 20px;
 }

 .cooperative-list {
     gap: 15px;
 }

 .cooperative-item {
     padding: 10px;
 }

 .item-content {
     font-size: 15px;
     line-height: 1.5;
 }
}

/* Extra Small Mobile (320px) */
@media (max-width: 320px) {
 .container {
     padding-left: 10px;
     padding-right: 10px;
 }

 .section-title {
     font-size: 18px;
     letter-spacing: 1px;
 }

 .intro-text {
     font-size: 14px;
 }

 .image-container {
     min-height: 180px;
 }

 .content-heading {
     font-size: 16px;
     margin-bottom: 18px;
 }

 .cooperative-list {
     gap: 12px;
 }

 .cooperative-item {
     padding: 8px;
 }

 .bullet-icon {
     font-size: 12px;
     margin-right: 10px;
     margin-top: 2px;
 }

 .item-content {
     font-size: 14px;
     line-height: 1.4;
 }
}

/* Ensure equal heights on desktop */
@media (min-width: 992px) {
 .row {
     display: flex;
     align-items: stretch;
 }

 .image-container,
 .content-container {
     height: 500px;
 }
}
.photo-gallery-container {
 width: 100%;
 overflow: hidden;
 position: relative;
 margin-top: 20px;
 cursor: grab;
}

.photo-gallery-scroll {
 width: 100%;
 overflow: hidden;
}

.photo-gallery-track {
 display: flex;
 animation: scroll 40s linear infinite;
 transition: transform 0.3s ease;
}

.photo-gallery-track:hover {
 animation-play-state: paused;
}

.gallery-img {
 min-width: 250px;
 height: 200px;
 margin: 0 10px;
 object-fit: fill;
 border-radius: 8px;
 box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 transition: all 0.3s ease;
 z-index: 1;
 flex-shrink: 0;
}

.gallery-img:hover {
 transform: scale(1.2);
 min-width: 300px;
 height: 240px;
 object-fit: fill;
 z-index: 2;
 box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.loading-message {
 padding: 20px;
 text-align: center;
 color: #666;
 font-style: italic;
 min-width: 200px;
}

.error-message {
 padding: 20px;
 text-align: center;
 color: #dc3545;
 background-color: #f8d7da;
 border: 1px solid #f5c6cb;
 border-radius: 5px;
 margin: 10px;
 min-width: 200px;
}

@keyframes scroll {
 0% {
   transform: translateX(0);
 }
 100% {
   transform: translateX(-50%);
 }
}

  .gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.85);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    font-size: 1.5rem;
    color: #B58042;
    outline: none;
}
  /* .gallery-arrow:hover, .gallery-arrow:focus {
    background: #B58042;
    color: #fff;
    box-shadow: 0 4px 16px rgba(181,128,66,0.18);
} */
.gallery-arrow-left {
 left: 0;
 margin-left: 8px;
}
.gallery-arrow-right {
 right: 0;
 margin-right: 8px;
}
@media (max-width: 768px) {
 .gallery-arrow {
   width: 36px;
   height: 36px;
   font-size: 1.1rem;
 }
}