@import url("https//fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;1,100;1,300&display=swap");
* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: none;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: #fff;
}

html::-webkit-scrollbar-thumb {
  background: #10221b;
}

section {
  padding: 5rem 9%;
}

.btn {
  margin-top: 1rem;
  display: inline-block;
  border: 0.2rem solid #10221b;
  color: #10221b;
  cursor: pointer;
  background: white;
  font-size: 1.7rem;
  padding: 1rem 3rem;
}

.btn:hover {
  background: darkblue;
  color: #f3f3f3;
}

.heading {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 4rem;
  color:black;
}

.header {
  position:fixed ;
  top: 0;
  left: 0;
  right: 0;
  padding: 0rem 4%;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;

    width: 100%;
    height: 13.5%;
    overflow: hidden;
    visibility: visible;
    opacity: 1; 
}

.header.active {
  background: #f7f5f5;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}


.header .logo {
  margin-right: auto;
  font-size: 1.550rem;
  color: #111413;
  font-weight: bolder;
}

.header .logo i {
  color: #4c2191;
}


.header .images{
  float: inline-start;
  margin-right: 2rem;
  margin-left: 0;
}
.header .navbar a {
  margin-left: 2rem;
  font-size: 1.7rem;
  color: #070707;
}

.header .navbar a:hover {
  color: #219150;
}

.header .navbar a.active {
  color: darkblue; /* Change color for active link */
  font-weight: bold; /* Optionally make the active link bold */
  /* Add any additional styles for the active link here */
}

.header .navbar #nav-close {
  font-size: 5rem;
  cursor: pointer;
  color: #10221b;
  display: none;
}

.header .icons a,
.header .icons div {
  font-size: 2.5rem;
  margin-left: 2rem;
  cursor: pointer;
  color: #10221b;
}

.header .icons a:hover,
.header .icons div:hover {
  color: #219150;
}

.header #menu-btn {
  display: none;
}






.footer {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(37, 28, 28, 0.5)), to(rgba(0, 0, 0, 0.5))), url(../images/footer-bg.jpg) no-repeat;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/footer-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: darkblue;
  padding: 2rem 9%;
}

.footer .box-container .box h3 {
  font-size: 2rem;
  padding: .5rem 0;
  color: #ffffff;
}

.footer .box-container .box a {
  display: block;
  font-size: 1.4rem;
  color: #f5f4f4;
  padding: 0.5rem 0;
}

.footer .box-container .box a i {
  color: #07d3ee;
  padding-right: .5rem;
}

.footer .box-container .box a:hover {
  color: #b63333;
}

.footer .box-container .box a:hover i {
  padding-right: 0rem;
}

.footer .credit {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 0rem;
  padding: 0rem;
  padding-top: 1rem;
  font-size: 1.25rem;
  color: #eeecec;
}

.footer .credit span {
  color: #53cfd8;
}

@media (max-width: 1200px) {
  .header {
    padding: 2rem;
  }
  section {
    padding: 3rem 2rem;
  }
  .about .content{
    position: absolute;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
    scroll-padding-top: 7rem;
  }
}
@media (max-width: 768px) {
  .header #menu-btn {
    display: inline-block;
  }
  .header .navbar {
    position: fixed;
    top: 0;
    left: -110%;
    background: #f8f5f5;
    z-index: 10000;
    width: 35rem;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header .navbar.active {
    left: 0;
    -webkit-box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.8);
            box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.8);
  }
  .header .navbar a {
    margin: 1rem 0;
    font-size: 3rem;
  }
  .header .navbar #nav-close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 2rem;
  }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    display: none;
  }
  .about{
    min-height: 100rem;
  }
  .about .content{
    margin-top: 0%;
    position: absolute;
  }
  .home .content
  {
    position: fixed;
    align-items: center;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }

  .heading {
    font-size: 3rem;
  }

}
@media (max-width:516px){
  .category .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(29rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(29rem, 1fr));
    gap: 1.5rem;
   
  }
  .category .box-container .box {
    text-align: center;
    padding: 1rem;
   width: auto;
  }
}


h1 {
  color: darkblue;
  text-align: center;
  font-size: 3.5rem;
  margin-top: auto;
}
h5{
  color: darkblue;
  text-align: center;
  font-size: 1.5rem;
  margin-top: auto;
}


p {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 10px;
  text-align: justify;
}
h4{
  font-size: 2rem;
  color: darkblue;
  text-align: center;
  margin-bottom: 2rem;
}

.phone-numbers,
.whatsapp-numbers {
    display: flex;
}


.box-container {
    display: flex;
    flex-wrap: wrap;
}

.box {
    width: 22.5%; /* Two boxes per row by default */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    padding: 10px;
}
.box:nth-child(2) {
  width: 32.5%; /* Adjust width of the second box */
}

@media only screen and (max-width: 768px) {
  .box {
      width: 50%; /* Two boxes per row for screens less than 480px */
  }
  .box:nth-child(1){
    width: 35%;
  }
  .box:nth-child(2){
    width: 65%;
  }
  .box:nth-child(3){
    width: 35%;
  }
  .box:nth-child(4){
    width: 65%;
  }
  #date-time-display {
    display: none;
  } 
}
.headermargin{
  position:relative ;
  width: 100%;
  height: 13.5vh;
}

.box h5{
  color: white;
  text-align: left;
  font-weight: 500;
  font-size: 1.4rem;
  padding: 0.5rem 0;
}

.webmail {
  background-color: darkblue; /* Example background color */
  color: #fff; /* Example text color */
  padding: 8px 12px; /* Adjust padding as needed */
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center; /* Aligns the text center within the button */
  text-decoration: none;
  margin: 0px;
  margin-left: 2%;
}

.webmail span {
  display: block; /* Makes spans block-level elements to stack vertically */
  text-align: center;
}

.webmail:hover {
  background-color: #0056b3; /* Example hover background color */
}

#date-time-display {
  font-family: Arial, sans-serif;
  font-size: 18px;
  color: white;
  position: fixed;
  top: 13%;
  right: 0px;
  background-color: darkblue;
  padding: 5px 10px;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}
/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
  padding-top: 42px;
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

/* The Close Button */

/* Grid container for links */
.grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.grid-item {
  background-color: #f1f1f1;
  text-align: center;
  height: 80px;
}

.grid-item a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
}

.grid-item:hover {
  background-color: #ddd;
}
@media screen and (max-width: 768px) {
  .grid-container {
      grid-template-columns: repeat(3, 1fr);
  }
}