/* === Shared Css === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
}
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
/* == Button === */
.btn-primary {
  background-color: #30b868;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 14px 24px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12), 0 10px 25px rgba(0, 0, 0, 0.08);
}
.btn-primary:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #30b868, #1f9d55);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 28px rgba(48, 184, 104, 0.35),
    0 0 20px rgba(48, 184, 104, 0.4);
}
.btn-outline {
  background: none;
  color: white;
  border: 1px solid white;
  border-radius: 5px;
  padding: 12px 28px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.btn-outline:hover {
  border: 3px solid #30b868;
  transform: translateY(-3px);
  box-shadow: 0px 0px 5px #30b868, 0px 0px 10px #30b868 inset;
}
/* === Main Css=== */
/* === Header Section Start === */
header {
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  padding: 15px 0;
}
.header-logo {
  cursor: pointer;
  transition: all 0.3s ease;
}
.header-logo:hover {
  transform: scale(1.07);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  cursor: pointer;
}
.header-menu {
  display: flex;
  align-items: center;
}
.header-menu ul {
  display: flex;
  gap: 25px;
  list-style: none;
  align-items: center;
}
.header-menu li {
  text-decoration: none;
}
.header-container .header-menu ul li {
  list-style: none;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
.header-container .header-menu ul li:hover {
  transform: scale(1.05);
}
.header-container .header-menu ul li a {
  color: black;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.header-container .header-menu ul li a:hover {
  color: #30b868;
  cursor: pointer;
}
/* === Header Section End === */

/* === Hero Section Start === */
.hero {
  position: relative;
  z-index: 2;
  background-image: url(./assets/hero-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 75px 120px 120px 130px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    hsla(121, 65%, 39%, 0.3),
    hsla(60, 100%, 1%, 0.6)
  );
  z-index: -1;
}
.hero-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero-container .hero-info .access-btn {
  margin-bottom: 18px;
  color: #30b868;
  text-transform: capitalize;
  padding: 9px 15px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 500;
  background: #ffffff;
  border: 1px solid rgba(48, 184, 104, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08),
    0 8px 22px rgba(48, 184, 104, 0.15);
  cursor: pointer;
  transition: all 0.35s ease;
  overflow: hidden;
}
.hero-container .hero-info .access-btn:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #30b868, #1f9d55);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 28px rgba(48, 184, 104, 0.35),
    0 0 20px rgba(48, 184, 104, 0.4);
}

.hero-container .hero-info h1 {
  color: white;
  font-size: 70px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.hero-container .hero-info h1 span {
  color: #30b868;
  font-size: 75px;
  font-style: 700;
  font-weight: bold;
  text-transform: capitalize;
}
.hero-container .hero-info p {
  color: white;
  font-size: 18px;
  line-height: 2;
  margin-bottom: 30px;
}
.hero-container .hero-btn {
  display: flex;
  gap: 20px;
}
/* === Hero Section End === */

/* === Notes Section Start */
.notes-section {
  text-align: center;
  margin-top: 50px;
}
.notes-section .notes-text-content h1 {
  color: black;
  font-size: 55px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.notes-section .notes-text-content p {
  color: #627382;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 50px;
}
.notes-section .notes-card {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20;
}
.notes-section .notes-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  cursor: pointer;
}
.notes-section .notes-card .notes-card-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
  padding: 25px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.notes-section .notes-card .notes-card-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}
.notes-section .notes-card .notes-card-content span,
.notes-section .notes-card .notes-card-content i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #f95555;
  color: #ffffff;
  border-radius: 50%;
  font-size: 24px;
}
.notes-section .notes-card .notes-card-content h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: black;
  text-align: center;
  text-transform: capitalize;
}
.notes-section .notes-card .notes-card-content p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: #627382;
  text-align: center;
  max-width: 240px;
}
/* === Notes Section End */

/* === Brain Image Section Start */
.brain-str-section {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 120px 0;
}
.brain-text-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.brain-str-section .brain-text-content .main-text h6 {
  color: #30b868;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.brain-str-section .brain-text-content .main-text h1 {
  color: black;
  font-size: 55px;
  font-weight: 700;
  line-height: 70px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.brain-str-section .brain-text-content .main-text p {
  font-size: 17px;
  font-weight: 400;
  line-height: 22px;
}
.brain-text-content .text-point p {
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 500;
}
.brain-text-content .text-point p i {
  margin-right: 5px;
  color: #30b868;
}
/* === Brain ImageSection End */

/* === clearly ImageSection Start */
.clearly-main-section {
  background-color: #f7f6f2;
  border-radius: 10px;
  margin-bottom: 120px;
}
.clearly-main-section .clearly-text-container {
  padding: 80px 40px;
  display: flex;
  gap: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.clearly-main-section .clearly-text-container h1 {
  font-size: 45px;
  font-weight: 700;
  color: black;
  text-transform: capitalize;
}
.clearly-main-section .clearly-text-container p {
  font-size: 17px;
  font-weight: 500;
  color: #627382;
  text-align: center;
}
/* === clearly ImageSection End */

/*  === Footer section Start */
.footer-container {
  background-color: #001931;
  padding: 120px 0px 30px 0px;
}

.footer-container .footer-logo-social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 85px;
}
.footer-container .footer-logo-social .footer-logo {
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-container .footer-logo-social .footer-logo:hover {
  transform: translateY(-3px);
  box-shadow: rgba(95, 101, 106, 0.2) 0px 8px 24px;
  cursor: pointer;
}
.footer-container .footer-logo-social .footer-icon h5 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 400;
}
.footer-container .footer-logo-social .footer-icon .social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.footer-container .footer-logo-social .footer-icon .social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #f0f0f0;
  border-radius: 100px;
  color: black;
  font-size: 22px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-container .footer-logo-social .footer-icon .social-icons a:hover {
  background-color: #30b868;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.footer-container .footer-border {
  max-width: 1400px;
  margin: 0 auto;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 30px;
  opacity: 0.2;
}
.footer-container .footer-text p {
  text-align: center;
  color: white;
  font-size: 17px;
}
/* === Footer section End */

/* === Media Query Start*/
/* === Mobile First (max-width: 576px) === */
@media (max-width: 576px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
    padding: 10px;
  }

  .header-menu ul {
    flex-direction: column;
    gap: 15px;
  }

  .hero {
    padding: 40px 20px;
  }

  .hero-container .hero-info h1 {
    font-size: 36px;
  }

  .hero-container .hero-info h1 span {
    font-size: 40px;
  }

  .hero-container .hero-info p {
    font-size: 16px;
    line-height: 22px;
  }

  .hero-container .hero-btn {
    flex-direction: column;
    gap: 15px;
  }

  .notes-section .notes-text-content h1 {
    font-size: 32px;
  }

  .notes-section .notes-text-content p {
    font-size: 16px;
  }
  .notes-section .notes-card .notes-card-content p {
    font-size: 14px;
  }

  .brain-str-section {
    flex-direction: column;
    padding: 60px 20px;
    gap: 30px;
  }
  .brain-str-section .brain-img img {
    width: 100%;
    height: auto;
    max-height: 400px; 
    object-fit: contain;
  }
  .brain-str-section .brain-text-content .main-text h1 {
    font-size: 32px;
    line-height: 42px;
  }

  .clearly-main-section .clearly-text-container h1 {
    font-size: 28px;
    text-align: center;
  }

  .footer-container .footer-logo-social {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }
}

/* === Tablet (min-width: 577px and max-width: 991px) === */
@media (min-width: 577px) and (max-width: 991px) {
  .header-container {
    padding: 0 15px;
  }

  .hero {
    padding: 60px 40px;
  }

  .hero-container .hero-info h1 {
    font-size: 48px;
  }

  .hero-container .hero-info h1 span {
    font-size: 52px;
  }
  .hero-container .hero-info p {
    font-size: 16px;
    line-height: 1.5;
    padding: 0 20px;
  }
  .notes-section .notes-text-content h1 {
    font-size: 40px;
  }

  .brain-str-section {
    flex-direction: column;
    padding: 80px 40px;
    gap: 40px;
  }

  .notes-section .notes-text-content p {
    font-size: 18px;
    padding: 0 20px;
  }
  .notes-section .notes-card .notes-card-content p {
    font-size: 16px;
  }
  .brain-str-section .brain-text-content .main-text h1 {
    font-size: 40px;
    line-height: 52px;
  }

  .clearly-main-section .clearly-text-container h1 {
    font-size: 32px;
  }

  .footer-container .footer-logo-social {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}

/* === Desktop (min-width: 992px and max-width: 1400px) === */
@media (min-width: 992px) and (max-width: 1400px) {
  .hero {
    padding: 80px 60px;
  }

  .hero-container .hero-info h1 {
    font-size: 60px;
  }

  .hero-container .hero-info h1 span {
    font-size: 65px;
  }

  .notes-section .notes-text-content h1 {
    font-size: 48px;
  }

  .brain-str-section {
    gap: 40px;
    padding: 100px 40px;
  }

  .brain-str-section .brain-text-content .main-text h1 {
    font-size: 48px;
    line-height: 60px;
  }

  .clearly-main-section .clearly-text-container h1 {
    font-size: 36px;
  }
}
/* === Media Query End */
