/********** Split Section Starts **********/
.split-section {
  display: flex;
  width: 100%;
  background-color: white;
  padding: 40px;
  box-sizing: border-box;
  margin-top: 90px;
  }
  
  .side-nav {
  margin-bottom: 20px; /* Optional: Add space between nav and content */
  }
  
  .side-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  }
  
  .side-nav ul li {
  background-color: #EEE7E6;
  padding: 15px;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
  cursor: pointer;
  margin-bottom: 10px;
  }
  
  .side-nav ul li:last-child {
  margin-bottom: 0; /* Remove bottom margin for the last item */
  }
  
  .side-nav ul li:hover {
  background-color: #9B9695;
  color: white;
  }
  
  .side-nav ul li a {
  color: black;
  text-decoration: none;
  display: block;
  }
  
  .right-section {
    width: 100%;
    background-color: white; /* Background color for right section */
    padding: 20px;
    box-sizing: border-box;
    margin: 0 auto; /* Center the right-section */
  }
  
  .right-section h2 {
    text-align: center;
    color: #000;
  }
  
  .right-section h3 {
    margin-top: 20px;
    color: #000;
    text-align: left;
    margin-bottom: 15px;
  }
  .right-poster {
      display: flex;
  }
  .right-poster img {
      margin-left: 50px;
      height: 215px;
  }
  .right-section p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 25px;
    text-align: justify;
  }
  
  .image-gallery {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .image-gallery img {
    width: 23%; /* Adjust the width of each image as needed */
    height: auto;
    border-radius: 5px;
    object-fit: cover;
    margin: 5px;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px; /* Add margin bottom to separate from images */
    font-size: 25px; /* Increase font size for bigger icons */
  }
  
  .social-icons a {
    color: #002347;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #1474e2;
  }
  .learn-more {
      display: flex;
      justify-content: center;
      margin-top: 20px;
  }
  .learn-more-button {
      background-color: #002347;
      color: #fff;
      padding: 10px 20px;
      border-radius: 10px;
      text-decoration: none;
      transition: background-color 0.3s;
  }
    
  .learn-more-button:hover {
      background-color: #4070fd;
  }
    
  
  /********** Split Section Ends **********/
  @media (max-width: 768px) {
    .split-section {
        flex-direction: column; /* Stack sections vertically */
        padding: 20px; /* Adjust padding */
    }
  
    .left-section-wrapper,
    .right-section {
        width: 100%; /* Full width for mobile */
        padding: 10px; /* Adjust padding */
    }
  
    .right-section h2,
    .right-section h3 {
        text-align: center; /* Center headings */
    }
  
    .right-section p {
        font-size: 16px; /* Adjust font size */
    }
  
    .right-poster {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center align */
    }
  
    .right-poster img {
        margin-left: 0; /* Remove margin for mobile */
        height: auto; /* Maintain aspect ratio */
        width: 80%; /* Adjust size */
        margin-top: 10px; /* Add spacing */
    }
  
    .image-gallery {
        flex-wrap: wrap; /* Allow wrapping */
        justify-content: center; /* Center images */
    }
  
    .image-gallery img {
        width: 45%; /* Adjust width for mobile */
        height: auto; /* Maintain aspect ratio */
        margin: 5px; /* Add spacing */
    }
  
    .social-icons {
        font-size: 20px; /* Reduce icon size */
    }
  
    .learn-more-button {
        padding: 8px 15px; /* Adjust padding */
    }
  }
  