.full-image-section {
  /* height: 100vh; viewport एवढीच height */
  overflow: hidden; /* स्क्रोल होऊ देणार नाही */
}

.full-image-section img {
   background-color: rgba(0,0,0,0.5); 
  width: 100%;
  height:900px;
  object-fit: cover; 
  display: block;
}

.section {
    display: flex;
    flex-wrap: wrap;   
}
.section .image-side {
    flex: 1 1 50%;
    background-image: url('elephant.jpg'); 
    background-size: cover;
    background-position: center;
    background-color: #556b2f;
}
.heading{
    text-align: center;
    padding-top: 20px;
    font-weight: 600;
    color:#efd217;
    font-size:25px;
    padding-top: 30px;
}
.items{
    display: flex;
  align-items: center; /* ✅ Vertical center for text */
  gap: 30px;            /* space between image and text */
  margin: 20px 0;
}

.section .text-side {
    flex: 1 1 50%;
    background-color: #4a5a3b; /* green background */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.text-side h5 {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: normal;
    margin-bottom: 10px;
}
.attched {
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), /* Olive green overlay */
    url(image/img\ bg2.jpg);
  background-position: 100% 41.66%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 120%;
  object-fit: cover;

}


.text-side h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #c1a368; /* golden text */
}

.text-side h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}

.text-side ul {
    list-style: none;
    padding: 0;
}

.text-side ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.text-side ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c1a368; /* golden bullet */
}
.para{
  font-size: 20px;
  text-align: center;
  align-items: center;
}
.about-para{
  align-items: center!important;
}
@media (max-width: 768px) {
    .section {
        flex-direction: column;
        height: auto;
    }
    .section .image-side, .section .text-side {
        flex: 1 1 100%;
        height: 300px;
    }
    .section .text-side {
        height: auto;
        padding: 20px;
    }
}

/* Mobile view specific adjustments */
@media (max-width: 768px) {
    .full-image-section img.mobile-fit {
        width: 100%;       /* full width on mobile */
        height: auto;      /* maintain aspect ratio */
        object-fit: cover; /* cover the container nicely */
        display: block;    /* remove inline spacing */
        max-height: 400px; /* optional: control height on mobile */
    }
}

/* media query */
@media (max-width: 992px) {
  .section {
    flex-direction: column;
  }

  .section .image-side,
  .section .text-side {
    flex: 1 1 100%;
    width: 100%;
    height: auto;
  }

  .section .text-side {
    padding: 30px 20px;
    align-items: center;
    text-align: center;
  }

  .text-side h1 {
    font-size: 28px;
  }

  .text-side h3 {
    font-size: 16px;
  }

  .text-side ul li {
    font-size: 14px;
  }

  .para {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .text-side h1 {
    font-size: 24px;
  }

  .text-side h3 {
    font-size: 14px;
  }

  .para {
    font-size: 16px;
    padding: 0 10px;
  }

  .text-side {
    padding: 20px 15px;
  }
}

.back-button {
    position: fixed;
    top: 90%;
    right: 20px;
    transform: translateY(-50%);
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(207, 200, 200, 0.1);
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #0056b3;
}

/* ✅ Default spacing reset */
body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ✅ For Mobile view */
@media (max-width: 768px) {
  .row {
    display: flex;
    flex-direction: column !important;
  }

  .row .col-xl-6,
  .row .col-6 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  /* Image नेहमी आधी येईल */
  .row .image-side {
    order: 1;
  }

  /* Text नेहमी image च्या खाली */
  .row .about-para {
    order: 2;
    padding-top: 15px; 

 
  .heading {
    font-size: 24px !important;
    text-align: left !important;
  }

  .para {
    font-size: 16px !important;
    line-height: 1.6;
  }
}
}
@media (max-width: 412px) {
    .responsive-img {
        width: 100%;
        height: auto;          
        max-height: 300px;     
        object-fit: cover;     
    }
}

/* Desktop view remains unchanged */
@media (min-width: 413px) {
    .responsive-img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}
@media (max-width: 412px) {
    .full-image {
        width: 100%;
        height: auto;          
        max-height: 300px;     
        object-fit: cover;     
    }
}

/* Desktop view remains original */
@media (min-width: 413px) {
    .full-image {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}