@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;
}

body {
  font-family: "Poppins", sans-serif;
  width: 100vw;
  overflow-x: hidden;
}

    :root {
    --primary: #052525;
    --secondary: #0a3c3c;
    --accent: #2fa39a;
    --light: #e6f7f5;
    --dark: #011111;
    --gradient-1: linear-gradient(135deg, #052525 0%, #0a3c3c 50%, #2fa39a 100%);
    --gradient-2: linear-gradient(90deg, #011111 0%, #052525 40%, #2fa39a 100%)
}

header {
  width: 100%;
  height: 10vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #052525;
}

.logo img {
  width: 250px;
  padding: 0px 5px;
}

.nav_links {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-size: larger;
  font-weight: 600;
  gap: 25px;
}

.nav_links li {
  list-style: none;
  position: relative;
}

.nav_links li a {
  text-decoration: none;
  color: white;
}

i {
  cursor: pointer;
}

.icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 200;
}

.icons i {
  color: white;
  font-size: larger;
  padding-right: 50px;
}

.hamburger {
  display: none;
}

.lines {
  width: 25px;
  background-color: white;
  height: 3px;
  margin: 5px;
}

header nav ul li a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  left: 0;
  bottom: -8px;
}

header nav ul li a:hover::after {
  width: 100%;
  background-color: white;
}

.page {
  position: relative;
}

.drop_menu {
  display: none;
}

.drop_menu1 {
  display: block;
  position: absolute;
  left: 0;
  bottom: -65px;
  padding: 10px 6px;
  background-color:teal;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

@media screen and (max-width: 1200px) {
  .nav_links {
    font-size: large;
  }
}

@media screen and (max-width: 1150px) {
  .nav_links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .icons i {
    padding-right: 5px;
  }
}

/* ---------------------------------------------------------------------------- */

/* Sidebar */
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background-color: var(--dark);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  overflow-x: hidden;
  transition: 1s;
  padding-top: 20px;
  margin-top: 10vh;
}

.sidebar ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  padding: 10px 15px;
  position: relative;
}

.sidebar ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.sidebar ul li div span {
  color: var(--accent);
  text-decoration: none;
}

.flexdiv {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.sidebar ul li a:hover {
  color: #f1f1f1;
}

.sidebar ul li .submenu {
  list-style: none;
  padding-left: 15px;
  /* max-height: 0; */
  overflow: hidden;
  display: none;
}
.sidebar ul li .submenu2 {
  padding-left: 15px;
  display: none;
}
.submenu1 {
  padding-left: 15px;
  display: block;
}

/* Close button */
.sidebar .close-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 36px;
  cursor: pointer;
  color: var(--accent);
}


/******************************************************************************/
.section-title {
    text-align: center;
    font-size: 3.5rem;
    padding: 20px;
    width: 100%;
    color: #107575;
    margin-top: 20px;
}

.header3 {
    font-weight: 600;
    font-size: xx-large;
    padding: 10px;
    text-transform: capitalize;
}

/* About Section - Complete design */
.parent {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 40px;
    margin-top: 30px;
    margin: 40px;
}

.parent {
    padding: 10px 15px 10px 15px;
}


.card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-out;
    overflow: hidden;
    text-transform: capitalize;
    gap: 1rem;
}

.abimg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 10%;
}

.abimg>img {
    width: 100%;
    height: 100%;
    filter: brightness(30%);
}

/*  */

.content>.head {
    height: 300px;
    display: flex;
    align-items: center;
    color: #f2f9f8;
    text-align: center;
    padding: 20px;
}

img {
    width: 100%;
    object-fit: cover;
}

.stats-banner {
    background: linear-gradient(135deg, rgba(5, 37, 37, 0.9) 0%, rgba(47, 163, 154, 0.7) 100%);
    border-radius: 30px;
    padding: 30px 15px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    margin: 20px;
    color: #f2f9f8;
}


.stats-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px);
}

.stat-block {
    flex: 1;
    min-width: 50px;
    text-align: center;
    position: relative;
}

.stat-value {
    font-size: 3rem;
    font-weight: bold;
    color: #f2f9f8;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-desc {
    color: #f2f9f8;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.details {
    padding: 10px;
}

/******************************************************************************/
footer {
    height: 100%;
    text-align: center;
    color: var(--light);
    opacity: 0.8;
}

.footer-parent {
    display: grid;
    grid-template-columns: auto auto auto auto;
    background: rgba(5, 37, 37, 0.85);
    object-fit: cover;
    margin-top: 20px;
}

.set1 {

    padding: 20px;

    text-align: center;
}

.logo1 {
    height: 60px;
    width: 250px;
    object-fit: cover;
}

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

.footer-header {
    color: var(--accent);

}

.footer-li {
    display: flex;
    flex-direction: column;
    list-style: none;
}

.footer-li a {
    margin-top: 5px;
    text-decoration: none;
    color: #f2f9f8;
    padding: 5px;
}

.footer-li a:hover {
    color: #2fa39a;
}

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

.footer-para {
    color: #f2f9f8;
}

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

.set4 .footer-para {
    color: #f2f9f8;
    line-height: 2;
}

.svg {
    margin-top: 5px;
    padding: 2px;
    width: 40px;
    height: 40px;
    fill: #f2f9f8;
}

.svg:hover {
    fill: var(--accent);
}


/*********** MEDIA QUERY **************/

@media screen and (max-width:2561px) {

    .header3 {
        padding: 30px 35px;
    }

    .content .head {
        font-size: 18px;
        height: 250px;
    }

    .stats-banner {
        height: 250px;
    }

    .para {
        font-size: 30px;
        text-transform: capitalize;
        padding: 10px;
        text-align: justify;
    }

    .footer-header {
        font-size: 32px;
    }

    .logo1 {
        width: 250px;
    }

    .set1,
    .set2,
    .set3,
    .set4 {
        font-size: 26px;
    }
}

@media screen and (max-width:1441px) {
    #menu {
        display: none;
    }

    .logo {
        width: 280px;
    }

    .nav-links>li>a {
        font-size: 14px;
    }

    /* .section-title {
        margin-top: 20px;
    } */

    .header3 {
        font-size: 30px;
        padding: 30px 25px;
    }


    .parent {
        display: grid;
        grid-template-columns: auto auto;
        object-fit: cover;
    }

    .head {
        font-size: 22px;
        padding: 0px;
    }

    .stats-banner {
        height: 230px;
    }

    .para {
        font-size: 26px;
        text-align: justify;
    }
}

/* Laptop nrml */
@media screen and (max-width:1025px) {
    #menu {
        display: block;
        margin-left: auto;
    }
            .mobile-dropdown .dropdown-menu li a {
    font-size: 12px;
}

    .content .head {
        height: 245px;
        font-size: 18px;
    }

    .nav-links {
        display: none;
    }

    .anchor {
        display: none;
    }

    .nav-links>li>a {
        font-size: 10px;
    }

    .header3 {
        font-size: 26px;
        text-align: justify;
    }

    .section-title {
        font-size: 36px;
    }

    .parent {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .card {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .head {
        font-size: 18px;
    }

    .para {
        font-size: 24px;
    }

    .stats-banner {
        height: 180px;
    }

    .stats-banner::before {
        height: 280px;
    }
}

@media screen and (max-width:790px) {
    .menu-nav {
        width: 65%;
        font-size: 14px;
    }

    .menu-nav>a>.nav-links,
    .user-para {
        font-size: 14px;
    }
}

/* Tablet */
@media screen and (max-width:1110px) {
    .nav-links {
        display: none;
    }

    .user-para {
        font-size: 14px;
    }

    .content>.head {
        height: 170px;
        font-size: 14px;
    }

    .section-title {
        font-size: 32px;
    }

    .header3 {
        font-size: 20px;
        letter-spacing: 0.5px;
        padding: 10px;
        text-align: justify;
    }

    .para {
        font-size: 18px;
    }

    .footer-li {
        font-size: 16px;
    }

    .stats-banner {
        height: 180px;
        padding: 10px;
    }
}



/* Mobile L */

@media screen and (max-width:706px) {

    .parent {
        grid-template-columns: auto;
    }

    .header3 {
        font-size: 17px;
        padding: 15px;
    }

    .content .head {
        font-size: 12px;
        height: 150px;
    }

    .stats-banner {
        height: 180px;
        text-align: center;
        padding: 5px;
        margin: 2px;
    }

    .stat-value {
        font-size: 16px;
        text-align: center;
    }

    .stat-desc {
        font-size: 12px;
        text-align: center;
    }
}

@media screen and (max-width:375px) {

    .parent {
        grid-template-columns: auto;
    }


    .header3 {
        font-size: 17px;
        padding: 15px;
        letter-spacing: 0px;
        text-align: justify;
    }

    .stats-banner {
        height: 180px;
        text-align: center;
        padding: 5px;
        margin: 2px;
    }

    .stat-value {
        font-size: 16px;
        text-align: center;
    }

    .stat-desc {
        font-size: 12px;
        text-align: center;
    }

    .content .head {
        font-size: 12px;
        height: 130px;
    }
}

@media screen and (max-width:321px) {

    .header3 {
        font-size: 18px;
        /* padding: 15px; */
    }

    .stats-banner {
        height: 180px;
        text-align: center;
        padding: 5px;
        margin: 2px;
    }

    .stat-value {
        font-size: 16px;
        text-align: center;
    }

    .stat-desc {
        font-size: 12px;
        text-align: center;
    }

    .cta-button {
        padding: 10px;
        font-size: 18px;
    }
}

footer {
  height: 100%;
  text-align: center;
  color: var(--light);
  opacity: 0.8;
}

.footer-parent {
  display: grid;
  grid-template-columns: auto auto auto auto;
  background: rgba(5, 37, 37, 0.85);
  object-fit: cover;
  margin-top: 20px;
}

.set1 {
  padding: 10px;
}

.logo1 {
  height: 80px;
  object-fit: cover;
}

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

.footer-header {
  color: var(--accent);
}

.footer-li {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.footer-li a {
  margin-top: 5px;
  text-decoration: none;
  color: #f2f9f8;
  padding: 5px;
}

.footer-li a:hover {
  color: #2fa39a;
}

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

.footer-para {
  color: #f2f9f8;
}

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

.set4 .footer-para {
  color: #f2f9f8;
  line-height: 2;
}

.svg {
  margin-top: 5px;
  padding: 2px;
  width: 40px;
  height: 40px;
  fill: #f2f9f8;
}

.svg:hover {
  fill: var(--accent);
}

@media screen and (max-width: 1441px) {
  .footer-header {
    font-size: 26px;
  }
  .footer-li {
    font-size: 22px;
  }
  .footer-para {
    font-size: 22px;
  }
}

@media screen and (max-width: 1125px) {
  .footer-parent {
    display: grid;
    grid-template-columns: auto auto;
  }

  .footer-header {
    font-size: 24px;
  }
  .footer-li {
    font-size: 20px;
  }
  .footer-para {
    font-size: 20px;
  }
}

@media screen and (max-width: 850px) {
  .footer-header {
    margin-top: 10px;
  }

  .footer-parent {
    grid-template-columns: auto;
    padding: 30px;
  }

  .footer-li {
    font-size: 16px;
  }
  .footer-para {
    font-size: 18px;
  }
}

@media screen and (max-width: 428px) {
  .footer-header {
    margin-top: 10px;
  }

  .footer-li {
    font-size: 16px;
  }
}

@media screen and (max-width: 376px) {
  .footer-header {
    margin-top: 10px;
  }

  .footer-parent {
    grid-template-columns: auto;
    padding: 0px;
  }

  .footer-li {
    font-size: 14px;
  }

  .set1 {
    padding: 0px;
  }
  .footer-para {
    font-size: 14px;
    padding: 5px;
  }
  .logo {
    width: 200px;
  }
  .footer-parent {
    padding: 0px;
  }

  .footer-header {
    margin: 0px;
    font-size: 20px;
  }

  .set1,
  .set2,
  .set3,
  .set4 {
    padding: 10px;
  }
  .footer-li {
    font-size: 14px;
  }

  .set1 {
    padding: 0px;
  }
  .footer-para {
    font-size: 14px;
    padding: 5px;
  }
  .cta-button {
    padding: 10px;
    font-size: 18px;
  }
}
