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


/*-------------------------------------------------------------------*/
#img {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

#img::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradientcircle(rgba(47, 163, 154, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.Blog {
    height: 80vh;
    width: 100%;
    position: relative;
    background: rgba(5, 37, 37, 0.85);
    backdrop-filter: blur(10px);
}

.Blog-img>img {
    width: 100%;
    height: 80vh;
    background-position: center;
    position: sticky;
}

@media screen and (max-width:650px) {
    .Blog {
        height: 50vh;
    }
    .Blog-img > img {
        height: 50vh;
    }
}

.content-header,
.content-para {
    color: #f2f9f8;
    padding: 10px;
    font-size: x-large;
}

.content-para {
    color: #f2f9f8;
    font-size: x-large;
    padding-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 20px 15px;
    background: #2fa39a;
    color: #f2f9f8;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
    box-shadow: 0 10px 30px rgba(47, 163, 154, 0.3);
    /* subtle teal glow */
}

.cta-button:hover {
    transform: translateY(-3px);
    background: #138a8a;
    /* darker accent teal */
    box-shadow: 0 15px 40px rgba(47, 163, 154, 0.5);
    /* teal glow */
    color: #f2f9f8;
    /* ensure text stays readable */
    transition: all 0.3s ease;
}

.cta-button1 {
    margin-top: 15px;
    /* padding: 10px; */
    width: 120px;
    height: 60px;
    background: #2fa39a;
    color: #f2f9f8;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
    box-shadow: 0 10px 30px rgba(47, 163, 154, 0.3);
}

.blog-bg {
    filter: brightness(20%);
    /* position: absolute; */
}

.Blog-content {
    position: absolute;
    top: 50%;
    inset: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    gap: 28px;
    margin-top: 28px;
    padding: 10px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 6px 30px rgba(2, 6, 23, 0.6);
}

.hero-card1,
.hero-card2,
.hero-card3,
.hero-card4,
.hero-card5,
.hero-card6 {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 20px;
}

.eyebrow {
    color: var(--accent);
    font-weight: 700;
    font-size: 13px;
}

/* Hidden state */
.display {
    display: none;
    opacity: 0;
}

/* Visible state */
.display1 {
    display: block;
    opacity: 1;
}

h2 {
    margin: 8px 0;
    font-size: 28px;
}

.lede {
    color: black;
    opacity: 0.8;
    line-height: 1.6;
    text-align: justify;
    padding: 2px;
}

.summary {
    background: var(--secondary);
    padding: 40px;
    line-height: 3;
    border-radius: 12px;
    cursor: pointer;
}

.summary {
    color: #e6f7f5;
}

.summary>h3 {
    color: #138a8a;
}

.summary ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.summary li {
    font-size: larger;
    width: 100%;
    /* padding: 10px 0; */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media screen and (max-width:1100px) {
    .summary li {
        font-size: large;
    }
    .summary h3 {
        font-size: 28px;
    }
}
@media screen and (max-width:800px) {
    .summary li {
        font-size: medium;
    }
    .summary h3 {
        font-size: 24px;
    }
}

.btn {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--accent);
    color: var(--dark);
    font-weight: 700;
}

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

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

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

    .cta-button1 {
        width: 180px;
        height: 70px;
        padding: 10px;
    }

    h2 {
        font-size: 36px;
    }

    .summary {
        font-size: 28px;
        /* margin: auto; */
    }

    h3 {
        text-align: center;
    }

    li {
        text-align: center;
    }

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

    .small {
        font-size: 26px;
        padding: 10px;
    }

    .eyebrow {
        font-size: 26px;
    }
}

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


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

    .lede {
        font-size: 22px;
        padding: 10px;
    }

    .small {
        font-size: 22px;
        padding: 10px;
    }

    .eyebrow {
        font-size: 22px;
    }

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

    .content-para {
        font-size: 28px;
    }

    .cta-button1 {
        width: 150px;
        height: 60px;
        padding: 10px;
    }

    h2 {
        font-size: 32px;
    }
}

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

    h2 {
        font-size: 26px;
    }

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

    .lede {
        font-size: 17px;
    }

    .small {
        font-size: 18px;
    }

    .eyebrow {
        font-size: 18px;
    }

    .contents-head {
        font-size: 28px;
    }

    .content-para {
        font-size: 20px;
    }

    .content-header {
        font-size: 24px;
    }
}

/* Tablet */

@media screen and (max-width:769px) {
    .nav-links {
        display: none;
    }

    .anchor {
        display: none;
    }

    #menu {
        display: block;
    }

    h2 {
        font-size: 22px;
        padding: 5px;
    }

    .lede {
        font-size: 14px;
        padding: 5px;
    }

    .small {
        font-size: 12px;
    }

    .eyebrow {
        font-size: 12px;
    }

    .contents-head {
        font-size: 26px;
    }

    .content-para {
        font-size: 18px;
    }
    .content-header {
        font-size: 20px;
    }

    .footer-header {
        margin-top: 10px;
    }

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

    .hero {
        gap: 0px;
    }
}

/* Mobile L*/

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

    .eyebrow {
        font-size: 12px;
    }

    h2 {
        font-size: 18px;
    }

    .lede {
        font-size: 10px;
        padding: 5px;
    }

    .summary>ul>li {
        font-size: 12px;
    }

}

/* Mobile M */

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

    .summary {
        padding: 60px 0px;
        text-align: center;
    }

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

    .eyebrow {
        font-size: 10px;
    }

    h2 {
        font-size: 16px;
    }

    .lede {
        font-size: 9px;
    }

    .small {
        font-size: 12px;
    }
}

/* Mobile S*/

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

    h2 {
        font-size: 14px;
    }

    .lede {
        font-size: 8px;
    }

    .small {
        font-size: 10px;
    }

    .eyebrow {
        font-size: 10px;
    }
    .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 {
    width: 250px;
  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;
  }

  .logo1 {
    width: 250px;
  }
  .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;
  }
}
