/* Reset */


@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}


* {box-sizing: border-box}
body {font-family: Verdana, sans-serif; margin:0}
.mySlides {display: none}
img {vertical-align: middle;}

/* Body Style */
body {
  background: #f0f0f0;
  overflow-x: hidden;
}

/* Toggle Button */
#menu-toggle {
  position: fixed;
  top: 15px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 100;
  font-size: 30px;
}

#menu-toggle .bar {
  width: 100%;
  height: 4px;
  background: #2C5F8B;
  transition: 0.3s;
}

/* Fullscreen Menu */
#fullscreen-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #2C5F8B;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  overflow: hidden;
}

#fullscreen-menu.active {
  left: 0;
  height: 100%;
}

.menu-content {
  text-align: center;
  color: #fff;
}

.menu-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #3D9A74;
}

.menu-content nav ul {
  list-style: none;
}

.menu-content nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.3s;
}



/* Toggle Button Active State */
#menu-toggle.active .bar {
  background: #fff;
}

/* Fullscreen Menu with Half-Circle Animation */
#fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: #2C5F8B;
  display: flex;
  justify-content: center;
  z-index: 50;
  overflow: hidden;
  clip-path: circle(0% at 0 0); /* Start with a small circle at the top-left corner */
  transition: clip-path 0.5s ease;
}

/* Active State for Expanding Circle */
#fullscreen-menu.active {
  clip-path: circle(150% at 0 0); /* Expands the circle to cover the whole screen */
}

.menu-content {
  text-align: center;
  color: #fff;
  margin-top: 10px;
}

.menu-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #3D9A74;
}

.menu-content nav ul {
  list-style: none;
}


.menu-content nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.3s;
}



/* Toggle Button Active State */
#menu-toggle.active .bar {
  background: #fff;
}
/* Responsive Styling for Mobile Devices */
@media (max-width: 600px) {
  #menu-toggle {
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
  }

  #menu-toggle .bar {
    height: 3px;
  }

  #fullscreen-menu {
    padding: 20px;
  }

  .menu-content h1 {
    font-size: 2rem;
  }

  .menu-content nav ul li a {
    font-size: 1.2rem;
  }
}

/* Responsive Styling for Tablets */
@media (min-width: 601px) and (max-width: 1024px) {
  #menu-toggle {
    top: 15px;
    left: 15px;
    width: 35px;
    height: 35px;
  }

  #menu-toggle .bar {
    height: 4px;
  }

  .menu-content h1 {
    font-size: 2.2rem;
  }

  .menu-content nav ul li a {
    font-size: 1.4rem;
  }
}

/* Additional Styling for Larger Screens (Desktop) */
@media (min-width: 1025px) {
  #menu-toggle {
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
  }

  #menu-toggle .bar {
    height: 4px;
  }

  .menu-content h1 {
    font-size: 2.5rem;
  }

  .menu-content nav ul li a {
    font-size: 1.5rem;
  }
}
/* Centering the Logo */
.logo {
  position: absolute;
  top:35%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  margin-left: 10px;
  margin-right: 5px;
  left: 10%;
  
}

/* Logo Image Styling */
.logo img {
  width: 80px; /* Default size */
  height: 80px;
  object-fit: contain;
}


.side_logo{
  visibility: hidden;
}

/* Responsive Adjustments for Mobile */


/* Responsive Adjustments for Desktop */
@media (min-width: 1025px) {
  .logo img {
    width: 80px;  /* Default logo size for desktops */
    height: 80px;
  }
  
}
@media (max-width: 600px) {
 
  .visib{
    visibility: hidden;
  }
  .side_logo{
    visibility: visible;
    left: 35px;
  }

  .logo img {
    width: 50px;
    height: 50px;
  }

  /* .logo {
    position: absolute;
    top:35%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    margin-left: 10px;
    margin-right: 5px;
    left: 10%;
    
  } */
}

/* Responsive Adjustments for Tablets */
@media (min-width: 601px) and (max-width: 1024px) {
  .logo img {
    width: 45px;  /* Slightly larger logo on tablets */
    height: 45px;
  }
}


/* Fullscreen Menu Layout */


/* Solid Color Section (30%) */
.solid-color-section {
  background-color: #2C5F8B; /* Solid color */
  color: white;
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}

.solid-color-section h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.solid-color-section p {
  font-size: 1.2rem;
  text-align: center;
}

/* Slider Section (70%) */
.slider-section {
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.slider {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.slide {
  min-width: 100%;
  transition: transform 0.5s ease;
}

.slider img {
  width: 100%;
  height: auto;
}

/* Slider Navigation (Prev/Next Buttons) */
.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.slider-nav button {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 1.5rem;
}

.slider-nav button:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  #fullscreen-menu {
    flex-direction: column;
  }
  
  .solid-color-section {
    width: 100%;
    height: 30%;
    text-align: center;
  }

  .slider-section {
    width: 100%;
    height: 70%;
  }
}

@media (max-width: 600px) {
  .solid-color-section h1 {
    font-size: 1.5rem;
  }

  .solid-color-section p {
    font-size: 1rem;
  }
}

/* Fullscreen Menu Layout */


/* Toggle Button Styling */
#menu-toggle {
  position: fixed;
  top: 1%;
  left:5px;
  font-size: 2rem;
  cursor: pointer;
  z-index: 111;
}

/* Menu Content */
.menu-content {
  text-align: center;
  color: #2C5F8B;
  
  
}

.menu-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

nav ul {
  list-style: none;
  padding: 0;
}

nav ul li {
  margin: 8px 0;
}

nav ul li a {
  text-decoration: none;
  color: #2C5F8B;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #3D9A74;
}

/* Dropdown Styling */
.dropdown {
  position: relative;
}

#dropdown-toggle {
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #2C5F8B;
  border-radius: 5px;
  width: auto; /* Allows the dropdown to resize based on content */
  min-width: 250px; /* Ensures a minimum width */
  max-width: 600px; /* Optional: Set a max width to control extreme cases */
  max-height: 400px; /* Limits height of dropdown */
  overflow-y: auto; /* Adds scroll if content overflows vertically */
  display: none;
  overflow: hidden; 
  flex-direction: column;
  z-index: 100;
  
}

.dropdown-menu li {
  list-style: none;
  text-align: center; /* Aligns text to the left */
  white-space: wrap; /* Allows text to wrap within the item */
  overflow: visible;
}

.dropdown-menu li a {
  color: #fff;
  font-size: 1.2rem;
  padding: 10px;
  display: block;
  text-decoration: none;
  transition: background 0.3s;
}



/* Show Dropdown on Active */
.dropdown.active .dropdown-menu {
  display: flex;
}

/* Responsive Styling for Mobile Devices */
@media (max-width: 600px) {
  .menu-content {
    padding: 20px;
  }

  .menu-content h1 {
    font-size: 2rem;
  }

  .menu-content nav ul li {
    margin: 10px 0;
  }

  .menu-content nav ul li a {
    font-size: 1.2rem;
  }

  .dropdown-menu {
    width: 90%;  /* Full width of mobile screen */
    left: 5%;    /* Center it on mobile */
    transform: none; /* Remove translate on mobile */
  }

  .dropdown-menu li a {
    font-size: 1rem;
  }
}

/* Responsive Styling for Tablets */
@media (min-width: 601px) and (max-width: 1024px) {
  .menu-content {
    padding: 30px;
  }

  .menu-content h1 {
    font-size: 2.2rem;
  }

  .menu-content nav ul li a {
    font-size: 1.4rem;
  }

  .dropdown-menu {
    width: 250px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Styling for Larger Screens (Desktop) */
@media (min-width: 1025px) {
  .menu-content h1 {
    font-size: 2.5rem;
  }

  .menu-content nav ul li a {
    font-size: 1.5rem;
  }

  .dropdown-menu {
    width: 500px;
    left: 50%;
    transform: translateX(-50%);
  }
}


/* .logo {
  position: absolute;
  top: 35%;
  text-align: center;
  z-index: 1;
} */

/* .logo img {
  width: 80px;  
  height: 80px;
} */

















.slideshow-container{
  margin: 0;
  height: 100%;
   

}
.mySlides {
  position: relative;
  width: 100%;
  height: 60%;
  
}

.mySlides img {
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%; /* Left 40% of the image */
  height: 100%; /* Full height of the image */
  background-color: rgba(255, 255, 255, 0.7); /* Semi-transparent solid color */
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  z-index: 1;
  backdrop-filter: blur(10px); /* Apply a blur effect */
}

.overlay-text {
  /* font-size: 1.5rem; */
  text-align: center;
  padding: 10px;
  /* background-color: rgba(44, 95, 139, 0.7); Same solid color for text background */
  border-radius: 10px;
}
.overlay-text p{ 
  font-size: 2rem;
   color: rgba(44, 95, 139);
  font-weight: 600; 
 }

.text {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  text-align: center;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
























/* Sticky Side Panel Styling */
.sticky-side-panel {
  position: fixed;
  top: 0;
  right: 0;
   /* Occupies 10% of the screen width */
  height: 100%; /* Full height of the viewport */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px; /* Spacing between icons */
  z-index: 11; /* Ensure it stays above other elements */
 
}


.sticky-side-panel_top{
  position: fixed;
  width: 25%; /* Full height of the viewport */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 11; /* Ensure it stays above other elements */
  height: 70px;
  top: 2%;
  left: 22px;
  
  

  
  

}

.orga_name p{
  font-size: 1rem;
  margin-left: 55px;
  font-weight: bolder;
  z-index: 11;
  color: black;
  padding: 5px;
  font-family: bold;
  border-radius: 5px;
  
  
}


.sticky-side-panel-left{
  position: fixed;
  top: 0;
  left: 0;
   /* Occupies 10% of the screen width */
  height: 100%; /* Full height of the viewport */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px; /* Spacing between icons */
  z-index: 11; /* Ensure it stays above other elements */


}

/* Social Media Icons Styling */
.sticky-side-panel a {
  display: block;

}
.sticky-side-panel-left a{
  display: block;
}

.sticky-side-panel-left i{
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ensure the icon fits well */
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5)); /* Add shadow for better visibility */
  transition: transform 0.3s;
  color:#ffffff;
  font-size: 35px;
}


.sticky-side-panel i {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ensure the icon fits well */
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5)); /* Add shadow for better visibility */
  transition: transform 0.3s;
  color:#ffffff;
  font-size: 35px;
}

/* Hover Effect for Icons */
.sticky-side-panel a:hover img {
  transform: scale(1.2); /* Slightly enlarge on hover */
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .sticky-side-panel {
    width: 15%; /* Increase width on smaller screens */
  }

  .sticky-side-panel a {
    width: 30px; /* Smaller icons for mobile */
    height: 30px;
  }
}

@media (min-width: 1025px) {
  
}


.loading {
  width: 100%;
  height: 100%;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(61, 154, 116); /* Slight transparency */
}

/* Secondary loading style (could be a spinner, for example) */
.loading2 {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Simple spinner animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Second loading screen with a different background color */
.loadingsend {
  width: 100%;
  height: 100%;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgb(113, 113, 113); /* Slight transparency */
}
.fixedwhite{
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  position: absolute;
  z-index: 99;

}

.textbox{
  width: 80%;
  height: 35%;
  z-index: 9;
  position: absolute;
  top: 40%;
  left: 10%;
  text-align: center;
  color: rgb(113, 113, 113);
  overflow-y: hidden;
  
  

}
.textbox h1{
 font-size: 70px;
 font-style: italic;
 padding-top: 25%;



}
.sptext{
 color: #2C5F8B;
}


/* For smaller screens, adjust the textbox to use a larger portion of the screen */
@media (max-width: 768px) {
  .textbox {
    width: 80%;  /* Takes up 80% of the screen width */
    height: auto; /* Height adjusts according to content */
    top: 10%;  /* Moves the box closer to the top */
    left: 10%; /* Moves the box closer to the left */
  }

  .overlay-text p{ 
    font-size: 0.8rem;
     color: rgba(44, 95, 139);
    font-weight: 600; 
   }

   .orga_name p{
    

    font-size: 0.7rem;
  margin-left: 55px;
  font-weight: bolder;
  z-index: 11;
  color: black;
  padding: 5px;
  font-family: bold;
  border-radius: 5px;
  top: 5px;
    
  }

}

/* For very small screens like mobile devices */
@media (max-width: 480px) {
  .textbox {
    width: 90%;  /* Takes up almost the full screen width */
    height: auto; /* Let the height adjust automatically */
    top: 5%; /* Closer to the top */
    left: 5%; /* Closer to the left */
  }
}



.letter{
  display:inline-block;
  opacity: 0;
  transform: translateY(20px);

}













.container {
  text-align: center;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: bold;
  color: #2C5F8B;
}

.ptext{
  
  width: 60%;
  height: auto;
  transform: translate(32%);
}

p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  color: #000000;
  text-align: center;
}

.button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1rem;
  color: white;
  background-color:#3D9A74;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
      font-size: 2.5rem;
  }

  p {
      font-size: 0.9rem;
  }

  .button {
      padding: 12px 25px;
      font-size: 0.9rem;
  }



}

@media (max-width: 480px) {
  h1 {
      font-size: 2rem;
  }

  p {
      font-size: 0.8rem;
  }
}
































/* General Styles */


.hero {
  background: linear-gradient(135deg, #3D9A74, #3ead7f);
  border-radius: 16px;
  width: 100%;
  padding: 2rem;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.text-content h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.app-buttons {
  display: flex;
  gap: 1rem;
}

.app-buttons a {
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  transition: background-color 0.3s;
}

.app-buttons a:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: white;
  color: #333;
  text-align: center;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  width: 200px;
}

.card h3 {
  font-size: 1.5rem;
  margin: 0.5rem 0 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .text-content h1 {
    font-size: 1.8rem;
  }

  .app-buttons {
    flex-direction: column;
    align-items: center;
  }

  .app-buttons a {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }

  .cards {
    flex-direction: column;
    gap: 1rem;
  }

  .card {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1rem;
  }

  .text-content h1 {
    font-size: 1.5rem;
  }

  .app-buttons a {
    padding: 0.8rem;
  }
}













.container1 {
  display: grid;
  gap: 20px;
  padding: 20px;

  /* Default layout: 3 boxes in the first row, 2 centered in the second row */
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
}
.container1 a{
text-decoration: none;
}
.container2 a{
  text-decoration: none;
  }
.container2{
  display: grid;
  gap: 20px;
  padding: 20px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
}

.box {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-container {
  height: 400px; /* Set a fixed height */
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the container while maintaining aspect ratio */
  transition: transform 0.3s ease;
  background-position: center;
  
  
}

.image-container:hover img {
  transform: scale(1.1); /* Zoom effect on hover */
 
}

.box p {
  margin: 10px 0 0;
  font-size: 1.1em;
  font-weight: bold;
  padding-bottom: 10px;
  z-index: 10;
  
}






@media (max-width: 900px) {
  .container1 {
    grid-template-columns: repeat(2, 1fr);
  }
  .container1 > .box:nth-child(4),
  .container1 > .box:nth-child(5) {
    grid-column: auto; /* Automatically align boxes */
  }
 
}

/* For small screens (1-column layout) */
@media (max-width: 600px) {
  .container1 {
    grid-template-columns: 1fr;
  }
  .container1 > .box {
    margin: 0 auto; /* Center the boxes in the 1-column layout */
  }
  .image-container {
    height: 300px; /* Reduce image height for smaller screens */
  }
}










footer {
  background-color: #2b2b2b;
  color: white;
  padding: 20px 40px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  text-align: center;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h3 {
  margin-bottom: 10px;
}

.footer-section p, .footer-section a {
  margin: 5px 0;
  color: white;
  text-decoration: none;
  font-size: 15px;
  text-align: center;
}
.text_left{

  text-align: center;
}
.footer-section a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #444;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 16px;
}

.social-icons a:hover {
  background-color: #555;
}

@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      align-items: center;
  }

  .footer-section {
      text-align: center;
  }
}






















.Thirdsec {
  display: flex;
  flex-wrap: wrap; /* Ensures responsiveness */
  justify-content: center;
  align-items: flex-start; /* Align text and images at the top */
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.meaingfull_text {
  flex: 1; /* Flexible width */
  min-width: 300px; /* Prevents shrinking too much */
  max-width: 50%; /* Limits width on larger screens */
  padding: 20px;
  margin-right: 10px;
  margin-top: 10%;
}

.meaningfull_img {
  flex: 1; /* Flexible width */
  min-width: 300px; /* Prevents shrinking too much */
  max-width: 50%; /* Limits width on larger screens */
  display: flex;
  flex-wrap: wrap; /* Allows images to wrap */
  justify-content: space-between; /* Distributes images evenly */
  gap: 10px; /* Adds spacing between images */
  padding: 20px;
  
}

.meaningfull_img img {
  width: calc(50% - 10px); /* Each image takes half the container width minus gap */
  height: auto; /* Maintain aspect ratio */
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .meaingfull_text,
  .meaningfull_img {
    max-width: 100%; /* Stack sections */
    margin-right: 0;
  }

  .meaningfull_img img {
    width: calc(100% - 10px); /* Images span full width in one column */
  }
}









.fourthsec {
  width: 100%;
  height: 500px;
  background-image: url(images/4.2%20Flood%20relief%201.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden; /* Ensure child elements don’t spill outside */
  margin-bottom: 20px;
}

.fourthsec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Semi-transparent black for dimming */
  z-index: 1; /* Place it below the text layer */
}

.fouth_layer {
  position: relative; /* Make it sit above the dimming effect */
  z-index: 2; /* Ensure text is above the dimming */
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.fouth_layer h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
   /* Add glow effect for emphasis */
}

.fouth_layer h3 {
  font-size: 1.2rem;
  margin-top: 20px;
  color: white;
  /* Subtle glow for readability */
}

/* Responsive Design */
@media (max-width: 768px) {
  .fourthsec {
    height: 400px;
  }
  .fouth_layer h1 {
    font-size: 2rem;
  }
  .fouth_layer h3 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .fourthsec {
    height: 300px;
  }
  .fouth_layer h1 {
    font-size: 1.5rem;
  }
  .fouth_layer h3 {
    font-size: 0.9rem;
  }
}

.flipped-image {
  width: 100%;
  transform: scaleX(-1);
}































.section-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: auto;
  padding: 50px 20px;
  background-color: #2C5F8B;
  border-radius: 10px;
}

.section-image {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.section-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.section-content {
  flex: 1;
  padding: 20px;
  min-width: 300px;
  color: #ddd;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.section-content h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #e6e6fa;
}

.section-content p {
  font-size: 1em;
  margin-bottom: 20px;
  color: #c7c7e2;
  text-align: left;
}

.section-button {
  background-color: #d4bfff;
  color: #292952;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.section-button:hover {
  background-color: #b49ff8;
}

@media screen and (max-width: 768px) {
  .section-container {
      flex-direction: column;
      text-align: center;
  }

  .section-content {
      align-items: center;
  }
}









/* today's chenges 27-Mar-25 */

















.container4 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background-color: #ffffff;
  justify-content: end;
}

.backgroun_color{
  width: 600px;
  height: 550px;
  background-color: #2C5F8B;
  border-radius: 5px;
  margin-top: 2%;
  margin-right: 7%;
  position: relative;
}

.backgroun_color_text{
  width: 600px;
  height: 500px;
  border-radius: 5px;
  margin-top: 4%;
  margin-right: 7%;
  position: absolute;
  margin-right: 45%;
  background-color: rgb(228, 228, 228);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 5px;

}

.backgroun_color_img{
  width: 400px;
  height: 400px;
  border-radius: 5px;
  background-image: url('./images/3.1 Leadership Development 2.jpg');
  position: absolute;
  margin-top: 7.8%;
  margin-right: 7%;
  margin-right: 17%;
  background-position: center;
  background-size: cover;
}
.backgroun_color_text p{
  padding: 10px;
  padding-top: 15%;
  font-size: 1.5rem;
}








@media (max-width: 1024px) {
  .backgroun_color,
  .backgroun_color_text,
  .backgroun_color_img {
    width: 80%;
    margin-right: 5%;
  }

  .backgroun_color_text{
    position: static;
  }

  .backgroun_color_img {
    height: 300px;
  }

  .backgroun_color_text p {
    font-size: 1.2rem;
  }

.sticky-side-panel_top{
 top: 0px;
 margin-left: 35px;

}
.visibl{
  visibility: hidden;
}
}

@media (max-width: 768px) {
  .container4 {
    flex-direction: row;
    align-items: center;
  }

  .backgroun_color{
    width: 100%;
    margin-right: 0;
    margin-top: 2%;
    height: 20px;

  }
  .backgroun_color_text{
    width: 100%;
    margin-right: 0;
    margin-top: 2%;

  }


  


  .backgroun_color_img {
    width: 100%;
    margin-right: 0;
    margin-top: 2%;
  }

  .backgroun_color_img {
    height: 250px;
  }

  .backgroun_color_text p {
    font-size: 1rem;
    padding-top: 70%;
  }
}

@media (max-width: 480px) {
  .backgroun_color_text p {
    font-size: 0.9rem;
    padding-top: 40%;
    
  }

  .backgroun_color_img {
    height: 200px;
    top: 150px;
  }
}































#hero {
  background: url('./images/4.2 Flood relief 1.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  
  
}

.hero-content h1{
  color: white;
}

.hero-content {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 10px;
}
.hero-content p {
  color: white;
}

.cta-button {
  display: inline-block;
  background: #2C5F8B;
  color: rgb(255, 255, 255);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
}

/* Sections */
section {
  padding: 50px;
  text-align: center;
}

#projects {
  background: #eaeaea;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.project-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-item img{
  width: 250px;
  height: 250px;
  background-position: center;
  background-size: cover;
  border-radius: 50%;


}
#about img{
  border-radius: 12px;
  width: 450px;
  height: 450px;
}














































.hero1 {
  background: linear-gradient(135deg, #2C5F8B, #3D9A74);
  color: white;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}
.hero1 h1 {
  font-size: 3rem;
  animation: fadeIn 1.5s ease-in-out;
  color: white;
}
.hero1 p {
  font-size: 1.2rem;
  max-width: 600px;
  opacity: 0.9;
  color: white;
  margin: auto;
}
.containerp {
  width: 90%;
  margin: 30px auto;
  background: white;
  padding: 25px;
  box-shadow: 5px 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
}

.containerp ul{
  font-size: 1.4rem;
}
h2 {
  color: #2C5F8B;
}
.content-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 20px 0;
  border-radius: 10px;
}
.cta {
  display: block;
  text-align: center;
  margin: 20px auto;
  background-color: #2C5F8B;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s;
}
.cta:hover {
  background-color: #3D9A74;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}



@keyframes fadeout {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateY(0); }
}




























































.content {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header-image {
  background-image: url('https://via.placeholder.com/1600x500'); /* Background Image */
  background-size: cover;
  background-position: center;
  height: 200px;
  margin-top: 20px;
}

.image-gallery {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

.image-item {
  text-align: center;
  flex-basis: 30%;
  box-shadow: 6px 4px 6px 4px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 20px;
  background-color: #fff;
}

.image-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.image-item p {
  font-size: 16px;
  color: #000000;
  margin-top: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .content {
      padding: 15px;
      margin: 5px;
  }

  header {
      padding: 15px;
  }

  .image-gallery {
      flex-direction: column;
      align-items: center;
  }

  .image-item {
      flex-basis: 80%;
      margin-bottom: 20px;
  }

.orga_name{

  visibility: hidden;
}
  .logo{
    top: 10px;
  }


  .containerp ul{
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  header {
      padding: 10px;
  }

  .content {
      margin: 0;
      padding: 10px;
  }

  footer {
      font-size: 12px;
      padding: 5px;
  }
}




.Thirdsec .heroimg{
   width: 20%;
   height: 20%;
   background-position: center;
   background-size: cover;
   border-radius: 25%;

}


.meaingfull_text h1{
  animation: fadeIn 1.5s ease-in-out;
}



























.container5 {
  display: flex;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1.5s ease-in-out;
  padding: 20px;
  
}
.text-content {
  flex: 1;
  padding: 50px;
  animation: slideInLeft 1.5s ease-in-out;
}
.text-content h1 {
  font-size: 32px;
  color: #333;
}
.text-content h1 span {
  color: #00aaff;
}
.text-content p {
  margin: 20px 0;
  color: #666;
  line-height: 1.6;
}
.btn {
  display: inline-block;
  padding: 12px 20px;
  background: #00aaff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
  transition: transform 0.3s ease;
}
.btn:hover {
  transform: scale(1.1);
}
.trustpilot {
  margin-top: 15px;
  color: #555;
}
.image-content1 {
  flex: 1;
  background: url('images/4.4 cultural programme 4.jpg') no-repeat center/cover;
  position: relative;
  animation: slideInRight 1.5s ease-in-out;
  border-radius: 40px 5px 40px 5px;

}
.image-content2 {
  flex: 1;
  background: url('images/4.4 Song 2.jpg') no-repeat center/cover;
  position: relative;
  animation: slideInRight 1.5s ease-in-out;
  padding:10px;
  margin-right: 10px;
  border-radius: 40px 5px 40px 5px;
}
.image-content::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes slideInRight {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@media (max-width: 768px) {
  .container {
      flex-direction: column;
  }
  .text-content, .image-content {
      flex: none;
      width: 100%;
  }
  .text-content {
      padding: 30px;
  }
}
@media (max-width: 768px) {
  .container5 {
      flex-direction: column;
      align-items: center;
  }
  .text-content {
      flex: none;
      width: 100%;
      text-align: center;
      padding: 30px;
      
      
  }

  .image-content1, .image-content2{
    height: 170px;
    flex: none;
      width: 100%;
      text-align: center;
      padding: 30px;

  }
}











.news-section {
  padding: 10px 20px;
  max-width: 1200px;
  margin: auto;
  background-color: #ffffff;
  border-radius: 10px;
}
.job_skills {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  gap: 15px;
}

.news-title {
  font-size: 2em;
  margin-bottom: 10px;
  color: #333;
}

.news-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
  
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.photo-grids {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.photo-grid2{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.photo-grid2 img{
  display: flex;
  width: auto;
  height: auto;
  gap: 15px;
}

.photo-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .news-title {
    font-size: 1.6em;
  }

  .news-description {
    font-size: 1em;
  }
}















.image-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.image-item {
  flex: 1 1 calc(20% - 10px); /* 5 per row with spacing */
  text-align: center;
}

.image-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.caption {
  margin-top: 5px;
  font-size: 14px;
  color: #333;
}

@media (max-width: 600px) {
  .image-item {
    flex: 1 1 48%; /* 2 per row on small screens */
  }
}

@media (max-width: 400px) {
  .image-item {
    flex: 1 1 100%; /* 1 per row on very small screens */
  }
}



 .img {
      filter: brightness(1.3) contrast(1.1);
    }















    .thumbnail {
      cursor: pointer;
      
    }

    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
    }

    /* .modal-content {
      display: block;
      margin: auto;
      max-width: 90%;
      max-height: 90%;
      margin-top: 60px;
    } */

    .close {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 35px;
      color: white;
      cursor: pointer;
    }


  .modal-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}