/* Navbar */
.fixed-top {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.logimg {
  width: 70px;
  margin-left: 9px;
  height: 70px;
}

/* Text */
.logtext {
  font-weight: 900;
  font-style: italic;
  text-shadow: 1px 1px 1px #FFDD09;
  font-size: 16px;
  padding-left: 10px;
}

.logtext1 {
  padding-left: 26px;
}

.logtext2 {
  padding-left: 50px;
  color: #FFDD09;
  font-weight: 800;
  text-shadow: 0px 0.5px 5px black;
}

.navbar-inverse .navbar-brand, .navbar-inverse .navbar-nav>li>a {
  text-shadow: none;
}

.navbar-brand {
  padding: 0px;
}

.navbar-nav>li>a {
  color: black !important;
  font-size: 1.5rem;
  font-weight: 550;
  text-transform: uppercase;
  line-height: 7rem;
  padding: 0px;
  letter-spacing: 0.5px;
}

.navbar-nav>li {
  margin-left: 35px;
}

.navbar-nav {
  float: right;
}
html {
  scroll-behavior: smooth;
}


/* Home Page */
.Home {
  margin-top: 7rem;
}

.carousel-inner .item img {
  width: 100%;
  height: 625px;
  object-fit: cover;
}

.carousel-head {
  font-size: 2.9rem;
}

.carousel-text {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  line-height: 40px;
  font-weight: 900;
}

#blog {
  background-color: #bdadad;
}

#blog .section-heading {
  text-align: left;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: rgba(0, 0, 0, 0.5);
  min-height: 562px;
  padding-left: 100vh;
  overflow: hidden !important;
}

#blog .section-heading h4 {
  margin-top: 0px;
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

#blog .section-heading .line-dec {
  width: 270px;
  height: 1px;
  background-color: rgba(250, 250, 250, 0.5);
  margin: 20px 0 15px 0;
}

#blog .section-heading p {
  color: #fff;
  padding-right: 70px;
  font-size: 1.6rem;
  line-height: 22px;
  text-align: justify;
}

.wrapper {
  text-align: center;
}

.tabs {
  list-style: none;
  margin-top: 40px;
  padding-right: 70px;
}

.tabs li {
  display: block;
  text-align: center;
  margin: 25px 0px;
}

.tabs a {
  display: block;
  text-align: center;
  text-decoration: none;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  color: #121212;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 12px;
  background-color: #fff;
}

.tabs a:hover {
  color: #f7c552;
}

.tabs .active {
  color: #f7c552;
}

#first-tab-group {
  margin-top: 30px;
  margin-bottom: 15px;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* About Us Started */
.tabs-content {
  padding: 40px 0;
}

.black-transparent-bg {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
}

.section-heading h4 {
  font-size: 1.75rem;
  color: #f8b400;
}

.line-dec {
  width: 50px;
  height: 3px;
  background-color: #f8b400;
  margin: 10px 0;
}

.card.ourmission {
  background-color: #f0f0f0;
  border: none;
  padding: 20px;
  border-radius: 10px;
}

.card-body h1 {
  font-size: 2rem; /* Increased font size */
  color: #2b2b6f; /* Suitable darker shade of blue for headers */
}

.card-text {
  font-size: 1.2rem; /* Increased font size for readability */
  color: #4a4a4a; /* Slightly darker grey for better contrast */
}

.values-section {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}

.value-figure {
  flex: 1;
  text-align: center;
}

.value-figure img {
  width: 100%;
  max-width: 150px; /* Max width of images remains same */
  height: 100px; /* Decreased height */
  object-fit: cover; /* Ensure the image maintains aspect ratio */
  border-radius: 8px;
}

.value-figure figcaption {
  font-size: 1.6rem; /* Further increased font size for desktop */
  color: #333;
  font-weight: bold; /* Keep text bold for emphasis */
}
/* Base styles for #Contact section */
#Contact {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  font-family: sans-serif;
  font-size: 1.6rem;
  line-height: 24px;
  min-height: calc(100vh - 80px); /* Full viewport height minus navbar height */
  padding-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* 
#Contact h1 {
  text-align: center;
  color: rgb(0, 0, 0);
  margin-top: 50px;
  margin-bottom: 50px;
}
 */
/* Media query for devices with max width of 768px */
@media (max-width: 768px) {
  #Contact {
    font-size: 1.4rem;
    padding-top: 40px;
  }

  #Contact h1 {
    font-size: 2rem;
  }
}

/* Media query for devices with max width of 576px */
@media (max-width: 576px) {
  #Contact {
    font-size: 1.2rem;
    padding-top: 30px;
    line-height: 20px;
  }

  #Contact h1 {
    font-size: 1.8rem;
  }
}

/* Responsive Styling */
@media (max-width: 768px) {
  .values-section {
    flex-direction: column;
    align-items: center;
  }

  .value-figure {
    margin-bottom: 20px;
  }

  .value-figure img {
    height: 80px; /* Decrease height further for smaller screens */
  }

  .section-heading p {
    font-size: 0.95rem;
  }

  .card-body h1 {
    font-size: 1.7rem; /* Adjusted for smaller screens */
  }
}

@media (max-width: 576px) {
  .values-section {
    flex-direction: column;
  }

  .value-figure img {
    max-width: 120px;
    height: 70px; /* Decreased height for mobile */
  }

  .value-figure figcaption {
    font-size: 1.1rem; /* Increased font size for mobile as well */
  }

  .card-body h1 {
    font-size: 1.5rem; /* Adjusted for mobile screens */
  }

  .card-text {
    font-size: 1rem; /* Slightly smaller for mobile readability */
  }

  .section-heading p,
  .card-text {
    font-size: 0.9rem;
  }
}

/* About Us End */
.img-fluid {
  height: 190px;
  width: 110px;
}

.cheight {
  height: 385px;
  overflow: auto;
}

.aboimg {
  width: 100%;
}

.exeimg img {
  height: 125px;
  border-radius: 10%;
}

#card2 {
  width: 112%;
}

#card3 {
  height: 620px;
  overflow: auto;
  border-width: 0px;
  position: inherit;
  width: 112%;
  margin-top: 70px;
}

/* Services */
.servicesfa {
  color: #fff;
  font-size: 24px;
}

#Services h1 {
  text-align: center;
  color: white;
  margin-top: 140px;
  margin-bottom: 50px;
}

.serviceread {
  margin-top: 50px;
  margin-bottom: 70px;
}

.read-more {
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  padding: 10px 20px;
  font-size: 2rem;
  border: 2px solid rgb(255, 255, 255);
  border-radius: 4px;
  text-decoration: none;
  border-style: groove;
}

.read-more:hover {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}

/* Events Start */
#Events {
  background-color: darkcyan;
  padding-bottom: 35px;
}

#Events h1 {
  text-align: center;
  color: white;
  margin-top: 50px;
  margin-bottom: 50px;
}
/* Assuming your navbar has a height of 80px (adjust this value if needed) */
#Governance {
  background-color: rgb(218, 218, 218);
  padding-bottom: 35px;
  min-height: calc(100vh - 80px); /* Full viewport height minus navbar height */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* #Governance h1 {
  text-align: center;
  color: rgb(0, 0, 0);
  margin-top: 50px;
  margin-bottom: 50px;
}
 */

#Events .eventimg {
  margin-top: 50px;
}

#Events .eventimg img {
  height: 350px;
  width: 100%;
}

/* Membership Styles */
#mebership {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 70px;
}

.membership-inner {
  width: 100%;
}

.membership-box {
  width: 100%;
}

#membership h1 {
  text-align: center;
  color: black;
  font-weight: 700;
  margin-top: 50px;
  margin-bottom: 50px;
}

.membership-table {
  margin: 0 auto;
  width: 90%;
  border: 1px solid #ccc;
  border-collapse: collapse;
}

.membership-table th,
.membership-table td {
  padding: 12px;
  text-align: center;
}

.membership-table th {
  background-color: #f2f2f2;
}

.membership-table td {
  border: 1px solid #ccc;
}

.membership-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Footer */
#footer {
  background-color: #007BFF;
}

.footer-text {
  padding: 15px 0;
  color: white;
  text-align: center;
}

.link {
  color: white;
}

.link:hover {
  color: #f9f9f9;
}
