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

:root {
  --primary-color: #ed7326;
  --secondary-color: #212429;
  --text-light: #d1d5db;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

body {
  font-family: "Poppins", sans-serif;
  background-image: url("assets/bg.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

nav {
  /* position: fixed; */
  isolation: isolate;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  z-index: 9;
}

.nav__header {
  padding: 0 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: var(--primary-color); */
}

.nav__logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}

.nav__logo img {
  display: flex;
  max-width: 36px;
}

.nav__logo span {
  display: none;
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
  position: absolute;
  top: 65px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background-color: var(--primary-color);
  transition: 0.5s;
  z-index: -1;
  transform: translateY(-100%);
}

.nav__links.open {
  transform: translateY(0);
}

.nav__links a {
  font-size: 1.2rem;
  color: var(--white);
}

.nav__links a:hover {
  color: var(--secondary-color);
}

.header__container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-block: 5rem 2rem;
  padding-inline: 1rem;
  display: grid;
  gap: 2rem;
}

.header__image img {
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
  display: flex;
}

.header__content {
  overflow: hidden;
  text-align: center;
}

.header__content h2 {
  position: relative;
  isolation: isolate;
  max-width: fit-content;
  /* margin-left: auto; */
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-color);
  text-align: right;
}

/* .header__content h2::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translate(calc(-100% - 1rem), -50%);
  height: 2px;
  width: 150%;
  background-color: var(--white);
} */

.header__content h1 {
  font-size: 4rem;
  font-weight: 600;
  color: var(--white);
  line-height: 4rem;
}

.h1__span-1 {
  font-size: 4rem;
  color: var(--primary-color);
}

.h1__span-2 {
  font-size: 2rem;
  font-weight: 400;
}

.header__content p {
  margin-bottom: 2rem;
  color: var(--text-light);
}

/* Header Time Section */
.header__time {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.header__time p {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 1rem 2rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 180px;
  justify-content: center;
}

.header__time p::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.header__time p:hover::before {
  left: 100%;
}

.header__time p:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.header__time p:first-child {
  position: relative;
}

.header__time p:first-child::before {
  content: '📅';
  font-size: 1.3rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.header__time p:last-child {
  position: relative;
}

.header__time p:last-child::before {
  content: '🕐';
  font-size: 1.3rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Enhanced time styling with better icon integration */
.header__time .time-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 1rem 2rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  min-width: 150px;
  justify-content: center;
}


.header__time .time-icon {
  font-size: 1.3rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}


.header__time .time-text {
  font-weight: 600;
  letter-spacing: 0.5px;
}

@keyframes subtlePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }
}

/* Icon glow effect */
.header__time .time-icon {
  position: relative;
}

.header__time .time-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(237, 115, 38, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.header__content .btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5rem;
  transition: 0.3s;
  cursor: pointer;
}

.header__content .btn:hover {
  color: var(--primary-color);
  background-color: var(--white);
}

.socials {
  padding-block: 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.socials a {
  font-size: 1.5rem;
  color: var(--text-light);
}

.socials a:hover {
  color: var(--primary-color);
}

.header__bar {
  font-size: 0.9rem;
  color: var(--text-light);
}

@media (width > 768px) {
  nav {
    position: static;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .nav__header {
    padding: 0;
    background-color: transparent;
  }

  .nav__logo span {
    display: flex;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    padding: 0;
    flex-direction: row;
    justify-content: flex-end;
    gap: 3rem;
    background-color: transparent;
    transform: none;
  }

  .nav__links a:hover {
    color: var(--primary-color);
  }

  .header__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    padding-block: 2rem;
  }

  .header__image {
    grid-area: 1/2/2/3;
  }

  .header__content {
    text-align: left;
  }

  .socials {
    justify-content: flex-start;
  }

  .header__time {
    justify-content: flex-start;
    gap: 1.5rem;
  }

  .header__time .time-item {
    min-width: 160px;
    padding: 0.9rem 1.8rem;
  }
}

/* About Us Section */
.about__container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 1rem 1rem;
  display: grid;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}

/* .about__container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(237, 115, 38, 0.05) 0%, rgba(33, 36, 41, 0.1) 100%);
  z-index: -1;
} */

.about__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}


.about__image:hover img {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.about__image:hover::before {
  transform: translateY(-10px);
}

.about__content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.about__content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.about__content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--white));
  border-radius: 2px;
}

.about__content p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 2rem;
  text-align: center;
}

 .btn-about {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary-color), #ff8c42);
  border: none;
  border-radius: 50px;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(237, 115, 38, 0.3);
}



.btn-about:hover::before {
  left: 100%;
}

.btn-about:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(237, 115, 38, 0.4);
  background: linear-gradient(135deg, #ff8c42, var(--primary-color));
}

/* Enhanced Features Section */
.features__container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 5rem 1rem;
  display: grid;
  gap: 2rem;
}

.features__header {
  text-align: center;
  margin-bottom: 3rem;
}

.features__header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.features__header p {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.features__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.feature__card {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--white));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature__card:hover::before {
  transform: scaleX(1);
}

.feature__card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature__icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature__card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.feature__card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Stats Section */
.stats__container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 4rem 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat__item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.stat__item:hover {
  transform: translateY(-5px);
}

.stat__number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Responsive Design for About Section */
@media (width > 768px) {
  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 4rem;
  }

  .about__image {
    grid-area: 1/1/2/2;
  }

  .about__content {
    text-align: left;
    grid-area: 1/2/2/3;
  }

  .about__content h2::after {
    left: 0;
    transform: none;
  }

  .about__content p {
    text-align: left;
    margin-left: 0;
  }

  .btn-about {
    justify-content: flex-start;
  }

  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats__container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (width > 1024px) {
  .about__container {
    gap: 6rem;
  }

  .about__content h2 {
    font-size: 2rem;
  }

  .about__content p {
    font-size: 1rem;
  }
}

/* Speakers Section */
.speakers__container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 5rem 1rem;
  /* background: linear-gradient(180deg, #87CEEB 0%, #4169E1 100%); */
  position: relative;
  overflow: hidden;
}

.speakers__header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.speakers__header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: inline-block;
  position: relative;
}

.speakers__header h2::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: 200px;
  height: 3px;
  background: var(--primary-color);
  margin-left: 1rem;
}

.speakers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.speaker__card {
  background: #212429;
  color: var(--white);
  border-radius: 25px 25px 15px 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.speaker__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.speaker__image {
  position: relative;
  height: 200px;
  /* background: var(--primary-color); */
  border-radius: 25px 25px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.speaker__image img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  position: relative;
  z-index: 2;
}

/* .speaker__bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.1) 10px,
      rgba(255, 255, 255, 0.1) 20px
    );
  z-index: 1;
} */

/* .speaker__bg-pattern::before {
  content: 'GROWFY';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  z-index: 1;
} */

.speaker__content {
  padding: 2rem;
  text-align: left;
}

.speaker__content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.speaker__title {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.speaker__points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.speaker__points li {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.2rem;
}

.speaker__points li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color);
  font-size: 1.2rem;
  font-weight: bold;
}

.speaker__points li:last-child {
  margin-bottom: 0;
}

/* Responsive Design for Speakers */
@media (max-width: 768px) {
  .speakers__container {
    padding: 3rem 1rem;
  }

  .speakers__header h2 {
    font-size: 2rem;
  }

  .speakers__header h2::after {
    width: 100px;
  }

  .speakers__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .speaker__card {
    max-width: 400px;
    margin: 0 auto;
  }

  .speaker__content {
    padding: 1.5rem;
  }

  .speaker__content h3 {
    font-size: 1.5rem;
  }

  .speaker__title {
    font-size: 0.9rem;
  }

  .speaker__points li {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .speakers__container {
    padding: 2rem 1rem;
  }

  .speakers__header h2 {
    font-size: 1.8rem;
  }

  .speakers__header h2::after {
    display: none;
  }

  .speaker__image {
    height: 150px;
  }

  .speaker__image img {
    width: 100px;
    height: 100px;
  }

  .speaker__content {
    padding: 1rem;
  }

  .speaker__content h3 {
    font-size: 1.3rem;
  }

  .speaker__title {
    font-size: 0.85rem;
  }

  .speaker__points li {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
  }

  .header__time {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .header__time .time-item {
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
    min-width: 160px;
    gap: 0.6rem;
  }

  .header__time .time-icon {
    font-size: 1.1rem;
  }

  .header__time .time-text {
    font-size: 0.9rem;
  }
}

/* Footer */
.footer__container {
  background: var(--secondary-color);
  padding: 2rem 1rem;
  margin-top: 3rem;
}

.footer__content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer__logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.footer__copyright {
  text-align: center;
}

.footer__copyright p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 400;
}
.footer__link {
  color: var(--primary-color) !important;
  font-weight: 600;
  transition: 0.3s;
}


/* Responsive Footer */
@media (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer__logo span {
    font-size: 1.3rem;
  }

  .footer__copyright p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .footer__container {
    padding: 1.5rem 1rem;
  }

  .footer__logo {
    gap: 0.5rem;
  }

  .footer__logo img {
    width: 35px;
    height: 35px;
  }

  .footer__logo span {
    font-size: 1.2rem;
  }

  .footer__copyright p {
    font-size: 0.8rem;
  }
}