.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.swiper-slide {
  position: relative;
}

.slide-image img {
  width: 100%;
  height: 100%;
  display: block;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay with transparency */
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay-content {
  text-align: center;
  color: #fff;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.hero-heading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease-out;
}

.hero-paragraph {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #fff;
  animation: fadeInUp 1.2s ease-out;
}

.btn:hover {
  background-color: #013a8a; /* Darker shade of the theme color */
}

@keyframes fadeInUp {
  0% {
      opacity: 0;
      transform: translateY(20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .hero-heading {
      font-size: 2rem;
  }

  .hero-paragraph {
      font-size: 1rem;
  }

  .btn {
      padding: 12px 25px;
  }
}

/* Full width and height of the slider */
.swiper-container {
  width: 100%;
  height: 100vh; /* Full height of the viewport */
  overflow: hidden;
}

.swiper-slide img {
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  object-fit: cover; /*Cover the container without distorting the aspect ratio */
}

/* Optional: Style for navigation buttons and pagination */
.swiper-button-next,
.swiper-button-prev {
  color: #fff; /* White color for buttons */
}

.swiper-pagination {
  position: absolute;
  bottom: 30px; /* Adjust pagination position */
  left: 0;
  right: 0;
  text-align: center;
}

.swiper-container .swiper-button-next, .swiper-container .swiper-button-prev {
  color: #fff;
}

.swiper-pagination .swiper-pagination-bullet {
  background: none;
  opacity: 1;
  border: 2px solid #fff;
}

.swiper-pagination .swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
  background: #014AB9;
  border: none;
}

.hero-section {
position: relative;
overflow: hidden;
}

.hero-section .swiper-button-prev,
.hero-section .swiper-button-next {
width: 45px;
height: 45px;
background-color: rgba(0, 0, 0, 0.35);
border-radius: 50%;
color: #fff;
font-size: 16px;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.3s ease;
opacity: 0;
}

.hero-section:hover .swiper-button-prev,
.hero-section:hover .swiper-button-next {
opacity: 1;
}

.hero-section .swiper-button-prev:hover,
.hero-section .swiper-button-next:hover {
background-color: #014AB9;
}

.swiper-button-prev {
left: 20px;
}
.swiper-button-next {
right: 20px;
}

.hero-btn {
padding: 12px 32px;
font-weight: 600;
color: #fff;
background: #014AB9;
border: none;
border-radius: 50px;
position: relative;
overflow: hidden;
z-index: 1;
display: inline-block;
transition: background 0.3s ease;
}

.hero-btn:hover {
background: #012F7D;
}

.hero-btn::after {
content: '';
position: absolute;
top: 0;
left: -35%;
width: 150%;
height: 100%;
background: linear-gradient(120deg, rgba(255,255,255,0.3), transparent, rgba(255,255,255,0.3));
transform: skewX(-20deg);
transition: left 0.5s ease;
z-index: -1;
}

.hero-btn:hover::after {
left: 110%;
}

.slide-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(1, 74, 185, 0.35); /* Tint */
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: #fff;
z-index: 1;
}

.swiper-container .swiper-button-prev:after, .swiper-container .swiper-rtl .swiper-button-next:after, .swiper-container .swiper-button-next:after, .swiper-container .swiper-rtl .swiper-button-prev:after {
  content: none;
}

.about-section {
  padding: 80px 0;
  background: #f9f9f9;
  overflow: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.about-text {
  max-width: 600px;
}
.about-text .section-header{
  text-align: left;
}
.about-text .dash-line{
  margin: 10px 0;
}
/*.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
}*/
.dash-line {
  width: 50px;
  height: 3px;
  background: #014AB9;
}
h2 {
  font-size: 28px;
  color: #333;
}
p {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .about-content {
      flex-direction: column;
      text-align: center;
  }
  .about-image img {
      max-width: 100%;
  }
}

.themed-section {
  background-color: #00193D;
  padding: 30px 0;
}

.themed-section h2, .themed-section p {
  color: #fff;
}

.blue-section .left-content {
  max-width: 600px;
}

.events-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.events-section.active {
  opacity: 1;
  transform: translateY(0);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2rem;
  color: #014AB9;
}

.dash-line {
  display: block;
  width: 50px;
  height: 3px;
  background-color: #014AB9;
  margin: 10px auto;
}

.cta-banner-section {
  position: relative;
  background-color: #00193D;
  /*background-image: url('../images/slider/Bhanu-Bhakta.png');*/
  background-size: cover;
  background-attachment: scroll;
  background-position: center;
  padding: 50px 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 74, 185, 0.7); /* Theme overlay */
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.banner-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color:#fff;
}

.banner-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #fff;
}

.view-all-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #014AB9;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.view-all-btn:hover {
  background-color: #012f7a;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.event-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.event-image {
  width: 100%;
  height: 100%;
  max-height: 450px;
}

.event-image img {
  width: 100%;
  height: 450px;
  object-fit: fill;
}

.event-info {
  padding: 20px;
  text-align: center;
}

.event-info h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.event-date {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 10px;
}

.event-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #014AB9;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out;
}

.btn:hover {
  background-color: #012F7C;
}

.view-more {
  text-align: center;
  margin-top: 40px;
}

.btn.btn-theme-white{
  background: #fff;
  color: #014AB9;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  text-decoration: none;
}

.fundraising-section {
  background-color: #f7f9fc;
  padding: 60px 0;
}

.container {
  width: 90%;
  margin: 0 auto;
}

.section-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.left-side {
  flex: 1;
  max-width: 600px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
  color: #014AB9;
  animation: fadeInUp 1s ease-out;
}

.section-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #666;
  animation: fadeInUp 1.2s ease-out;
}

.progress-container {
  width: 100%;
}

.raised-amount, .goal-amount {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background-color: #ddd;
  border-radius: 5px;
  margin: 10px 0;
  overflow: hidden;
}

.progress {
  height: 100%;
  background-color: #014AB9; /* Theme color */
  width: 0;
  border-radius: 5px;
  transition: width 1s ease-in-out;
}

.progress-percentage {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.right-side {
  flex: 1;
  max-width: 500px;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1.4s ease-out;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .section-title {
      font-size: 2rem;
  }

  .section-description {
      font-size: 1rem;
  }

  .progress-container {
      padding: 20px;
  }

  .right-side {
      max-width: 100%;
  }
}

@keyframes fadeInUp {
  0% {
      opacity: 0;
      transform: translateY(20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

.contact-us-section {
background-color: #014AB9;
color: #fff;
padding: 60px 20px;
}

.contact-us-section .container {
max-width: 1100px;
margin: 0 auto;
}

.contact-content {
display: flex;
gap: 50px;
/*flex-wrap: wrap;*/
align-items: flex-start;
justify-content: space-between;
}

.contact-left,
.contact-right {
flex: 1 1 48%;
}

.contact-left h2,
.contact-right h2 {
font-size: 1.8rem;
margin-bottom: 15px;
color: #fff;
}

.contact-left p {
margin-bottom: 20px;
font-size: 1rem;
color: #fff;
}

.contact-left ul {
list-style: none;
padding: 0;
}

.contact-left ul li {
margin-bottom: 10px;
font-size: 1rem;
display: flex;
align-items: center;
}

.contact-left ul li i {
margin-right: 10px;
font-size: 1.3rem;
color: #fff;
}

.contact-form .form-row {
display: flex;
gap: 20px;
flex-wrap: wrap;
margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
width: 100%;
padding: 12px 15px;
border: none;
border-radius: 8px;
font-size: 1rem;
color: #333;
box-sizing: border-box; /* Ensures padding and border are included in the width */
}

.contact-form input {
flex: 1 1 48%;
}

.contact-form textarea {
flex: 1 1 100%; /* Ensure it takes full width on mobile and tablet */
resize: vertical;
margin-bottom: 20px;
}

.contact-form button {
background-color: #fff;
color: #014AB9;
border: none;
padding: 12px 30px;
font-size: 1rem;
border-radius: 8px;
cursor: pointer;
transition: background 0.3s ease;
}

.contact-form button:hover {
background-color: #e6e6e6;
}

@media (max-width: 768px) {
.contact-content {
  flex-direction: column;
}

.contact-left,
.contact-right {
  flex: 1 1 100%;
}

.contact-form .form-row {
  flex-direction: column;
}
}

/* For Larger Screens (Fix Layout stacking issue at 1368px) */
@media (max-width: 1368px) {
/*.contact-content {
  gap: 30px;
}*/

.contact-left,
.contact-right {
  flex: 1 1 100%;
}
}

.google-map-container {
background-color: #f4f4f4;
padding: 20px 0;
}

.google-map-container .container {
max-width: 1200px;
margin: 0 auto;
}

.google-map-container h3 {
font-size: 1.5rem;
text-align: center;
margin-bottom: 20px;
color: #014AB9;
}

.google-map-container iframe {
width: 100%;
height: 450px;
border: none;
border-radius: 8px;
margin: 20px 0 60px 0;
}
@media (max-width: 1120px) {
  .hero-section .slide-image {
      width: 100%;
      height: 100%;
  }
}
@media (max-width: 768px) {
iframe {
  height: 300px;
}
}
@media (max-width: 460px) {
  .hero-section .slide-image {
      width: 100%;
      height: 100%;
  }
  .about-text .section-header {
      text-align: center;
  }
  .about-text .dash-line {
      margin: 10px auto;
  }
  /*.team-img-wrapper {
      height: 280px;
  }*/
  .google-map-container iframe {
      height: 320px;
  }
  .contact-content {
      text-align: center;
      align-items: center;
  }
  .contact-left ul li {
      align-items: center;
      justify-content: center;
  }
}

.about-content-section {
padding: 80px 0;
}
.about-two-col {
display: flex;
gap: 40px;
flex-wrap: wrap;
align-items: center;
}
.about-text {
flex: 1;
}
.about-text h2 {
font-size: 32px;
margin-bottom: 15px;
color: #014AB9;
}
.about-text p {
font-size: 16px;
line-height: 1.8;
}
.about-image {
flex: 1;
}
.about-image img {
width: 100%;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.about-mission-section {
background: #014AB9;
padding: 80px 20px;
text-align: center;
}
.about-mission-section h2 {
font-size: 30px;
margin-bottom: 20px;
color: #fff;
}
.about-mission-section p {
max-width: 700px;
margin: 0 auto;
font-size: 16px;
line-height: 1.8;
color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
.about-two-col {
  flex-direction: column;
}
}

.chairman-message-section {
background-color: #f7f9fc;
padding: 60px 20px;
}

.chairman-message-section .container {
max-width: 1200px;
margin: 0 auto;
}

.section-title {
text-align: center;
font-size: 32px;
color: #014AB9;
margin-bottom: 40px;
}

.chairman-content-wrapper {
display: flex;
flex-wrap: wrap;
gap: 40px;
align-items: flex-start;
justify-content: space-between;
}

.chairman-message-section h2 {
  margin-top: 0;
}

.chairman-text {
flex: 1 1 60%;
font-size: 16px;
line-height: 1.8;
color: #333;
}

.chairman-text ul {
padding-left: 20px;
margin: 15px 0;
}

.chairman-text ul li {
margin-bottom: 10px;
}

.signature {
margin-top: 20px;
font-weight: bold;
}

.team-btn-wrapper {
margin-top: 30px;
}

.view-all-btn {
background-color: #014AB9;
color: #fff;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
font-weight: 600;
transition: background-color 0.3s ease;
}

.view-all-btn:hover {
background-color: #013a93;
}

.chairman-image {
flex: 1 1 35%;
text-align: center;
}

.chairman-image img {
max-width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
max-height: 400px;
object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
.chairman-content-wrapper {
  flex-direction: column-reverse;
  align-items: center;
  text-align: center;
}

.chairman-text {
  text-align: left;
  flex: 1 1 100%;
}

.chairman-image {
  margin-bottom: 20px;
}
}

@media (max-width: 560px) {
  header {
    position: relative;
  }
  header.fixed {
    position: fixed;
  }
  .hero-section .swiper-container {
    height: 100%;
  }
  .about-content-section, .chairman-message-section, .events-section {
    padding: 40px 0;
  }
  .events-section {
    padding-bottom: 20px;
  }
  .google-map-container iframe {
    margin-bottom: 40px;
  }
  .about-text h2 {
    margin-top: 0;
  }
}