@import url('https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Jersey+25&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

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

:root {
  --primary-color: #06CCE9;
  --border-gradient: linear-gradient(to right,
      rgba(6, 204, 233, 0.36) 0%,
      rgba(6, 204, 233, 0.5) 27%,
      rgba(6, 204, 233, 0.36) 61%);
}

button {
  background: transparent;
  border: none;
  color: white;
}

body {
  background-color: black;
  color: white;
  z-index: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*====== NAVIGATION ======*/
nav {
  width: 90%;
  height: 100px;
  background: var(--border-gradient);
  border-radius: 20px;
  margin: 0 auto;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  position: sticky;
  top: 50px;
  z-index: 1;
}

nav::after {
  content: "";
  position: absolute;
  width: 99.5%;
  height: 95px;
  background: rgba(18, 15, 15, 0.948);
  z-index: -2;
  border-radius: 20px;
  backdrop-filter: blur(125px);
  /* For better browser support */
  -webkit-backdrop-filter: blur(125px);
}

.mainbar {
  position: relative;
  left: 40px;
}

nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 50px;
  margin: 0;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
}

li a {
  font-size: 26px;
  color: white;
  text-decoration: none;
}

.btn {
  padding: 30px;
  font-size: 30px;
  text-decoration: none;
  color: white;
  text-align: center;
  border: #06CCE9 solid 1px;
  background: rgba(18, 15, 15, 0.948);
  padding: 10px 20px;
  border-radius: 20px;
  position: relative;
}

.menu {
  display: none;
}

.sidebar {
  position: fixed;
  background-color: black;
  z-index: 9999;
  top: 20px;
  height: 100%;
  padding: 40px;
  right: 0;
  width: 70%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

}

nav .menu-icon {
  height: 50px;
  position: absolute;
  top: 20px;
  right: 30px;
}

.sidebar .close {
  align-self: flex-end;
}

.sidebar .close i {
  font-size: 70px;
}

@media (max-width: 1510px) {
  .mainbar li a {
    font-size: 20px;
  }

  .btn {
    padding: 20px;
    font-size: 24px;
  }
}

@media (max-width: 1309px) {
  nav .logo img {
    position: absolute;
    top: 30px;
    left: 30px;
  }

  .mainbar {
    display: none;
  }

  .menu {
    display: block;
  }

  .btn {
    position: absolute;
    right: 120px;
  }
}

@media (max-width: 728px) {
  nav .logo img {
    width: 170px;
  }
}

@media(max-width:598px) {
  .btn {
    display: none;
  }

  nav .logo img {
    position: absolute;
    width: 120px;
    top: 20px;
  }

  nav .menu-icon {
    width: 30px;
    height: 30px;
  }

  nav {
    height: 70px;
  }

  nav::after {
    height: 67px;
  }
}

/*====== HERO SECTION ======*/
#Hero {
  position: relative;
  width: 100%;
  height: 120vh;
  overflow: hidden;
}


.poster-container {
  width: 100%;
  height: 100%;
}

.circuit-graphic {
  position: absolute;
  top: 50%;
  left: 0;
  width: 400px;
  height: auto;
  transform: translateY(-50%);
  z-index: -1;
}


.content-wrapper {
  position: absolute;
  top: 22%;
  left: 50%;
  height: 100vh;
  transform: translate(-50%);
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

/* ===== Countdown Row ===== */
.countdown {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.time-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time-block .number {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.time-block .label {
  font-size: 34px;
  font-weight: 700;
  margin-top: 5px;
  color: #00c8ff;
  letter-spacing: 5px;
}


.logo-section {
  margin-bottom: 40px;
}

.logo-section img {
  margin-left: 30px;
  width: 700px;
}



.venue-info {
  margin-top: 20px;
  margin-bottom: 60px;
}

.venue-info .venue {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 7px;
}

.venue-info .date {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  color: #fff;
}

/* ===== Footer Logos ===== */
.footer-logos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.footer-logos h1 {
  font-family: 'Times New Roman', Times, serif;
  letter-spacing: 5px;
  color: var(--primary-color);
}

.footer-logo-item {
  background-color: #000;
  border-radius: 2rem;
}

.footer-logo-item img {
  width: 200px;
}


/* ===== Responsive Tweaks (optional) ===== */
@media (max-width: 1114px) {
  .time-block .number {
    font-size: 3.5rem;
  }

  .time-block .label {
    font-size: 25px;
  }
}

@media (max-width: 1024px) {
  .time-block .number {
    font-size: 4rem;
  }

  .logo-section img {
    width: 500px;
  }

}

@media (max-width: 880px) {
  .strip img {
    width: 150px;
    margin-top: 20px;
  }

  .content-wrapper {
    top: 22%;
  }
}

@media (max-width: 768px) {
  #Hero {
    height: 100vh;
  }

  .time-block .number {
    font-size: 3rem;
  }

  .content-wrapper {
    top: 22%;
  }

  .time-block .label {
    font-size: 1rem;
  }

  .techx-logo {
    font-size: 4rem;
  }

  .techx-logo .x-end {
    font-size: 4rem;
    transform: translateX(-6px) skewX(-10deg);
  }

  .tagline {
    font-size: 1.2rem;
  }


}

@media (max-width:568px) {
  .logo-section img {
    width: 400px;
  }

  .content-wrapper {
    top: 150px;
  }

  .time-block .number {
    font-size: 2.8rem;
  }

  .time-block .label {
    font-size: 14px;
  }

  .techx-logo {
    font-size: 3rem;
  }

  .techx-logo .x-end {
    font-size: 3rem;
    transform: translateX(-6px) skewX(-10deg);
  }

  .tagline {
    font-size: 1.1rem;
  }

}

@media (max-width: 488px) {
  .time-block .number {
    font-size: 2.5rem;
  }

  .time-block .label {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .logo-section img {
    width: 300px;
  }

  .footer-logos h1 {
    width: 80%;
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 40px;
  }

  .time-block .label {
    font-size: 10px;
  }

  .minute {
    margin-right: 10px;
  }
}

/* ====== about ====== */
/* General styling */
.about {
  background: #000;
  color: #fff;
  padding: 40px 20px;
}

.main-container {
  max-width: 1000px;
  margin: auto;
}

/* Section headings */
.sub-cont,
.dropdown {
  margin-bottom: 30px;
}

.about h1 {
  font-size: 30px;
  font-family: 'Jersey 25', sans-serif;
  font-weight: lighter;
  margin: 0;
}

.about .event-title {
  font-family: 'Jersey 25', sans-serif;
  font-weight: lighter;
  font-size: 30px;
  margin-bottom: 10px;
}

.about h1 span {
  color: #06CCE9;
}

p {
  line-height: 1.6;
  color: #ddd;
}

/* Dropdown structure */
.dropdown-header {
  display: flex;
  flex-direction: row;
  height: 50px;
  justify-content: space-between;
  align-items: center;
  background-color: #111;
  border: 2px solid #06CCE9;
  padding: 15px;
  border-radius: 8px;
}

/* Dropdown toggle button */
.dropdown-toggle {
  background: none;
  border: none;
  color: #06CCE9;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.dropdown-toggle.rotate {
  transform: rotate(180deg);
}

/* Dropdown content box */
.dropdown-content {
  display: none;
  background-color: #111;
  padding: 15px;
  margin-top: 5px;
  border-left: 4px solid #06CCE9;
  border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 18px;
  }

}

@media (max-width: 400px) {
  #About h1 {
    font-size: 19px;
  }
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0d0d0d;
  color: #f0f0f0;
  overflow-x: hidden;
}

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

.collab-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
}

.collab-section h3 {
  margin-bottom: 40px;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: lighter;
  font-size: 24px;
  color: var(--primary-color);
}

/* Wrap the slider in a container with 70% width */
.collab-container {
  width: 70%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

/* Slider retains full content width */
/* Outer viewport: visible area is 70% wide */
.collab-container {
  width: 70%;
  margin: 0 auto;     /* center optional */
  overflow: hidden;
}

/* slider wrapper (keeps things simple) */
.collab-slider {
  display: block;
}

/* Keep the track at its natural content width so items don't get squashed.
   inline-flex ensures the track can be wider than container without being scaled. */
.collab-track {
  display: inline-flex;        /* natural width = sum of both sets */
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
  animation: collab-marquee 20s linear infinite;
}

/* Each set is just a horizontal row (no forced width) */
.collab-track .set {
  display: flex;
  align-items: center;
  white-space: nowrap;
  box-sizing: border-box;
}

/* Logos: prevent growing/shrinking and reserve integer px height */
.collab-track .set img {
  display: block;
  flex: 0 0 auto;        /* don't grow or shrink */
  height: 60px;          /* integer pixels avoid subpixel rounding */
  width: 300px;
  object-fit: contain;
  margin-right: 40px;    /* explicit gap */
  -webkit-user-drag: none;
  user-select: none;
}

/* To avoid a visible double-gap at the seam, remove margin on last item in each set */
.collab-track .set img:last-child {
  margin-right: 20px;
}

/* Slightly larger on desktop */
@media (min-width: 768px) {
  .collab-track .set img { height: 80px; }
}

/* Animate by half the track's own width — because the track contains two identical sets */
@keyframes collab-marquee {
  0%   { transform: translate3d(0,0,0); }
  100% { transform: translate3d(-50%,0,0); }
}

/* Partners Section */
#partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

#partners h1 {
  font-size: 32px;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  margin-bottom: 20px;
}

.strip {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  background: #000;
}

.strip img {
  width: 200px;
}

@media (max-width: 500px) {
  #partners h1 {
    margin-bottom: 5px;
  }

  .strip img {
    width: 100px;
  }
}

@media (max-width: 360px) {
  .strip img {
    width: 80px;
  }
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 100px auto;
}

.containert {
  padding: 10px 50px;
  position: relative;
  width: 50%;
  animation: movedown 1s linear forwards;
  opacity: 0;
}

.containert p {
  font-size: 18px;
}

@keyframes movedown {
  0% {
    opacity: 1;
    transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.containert:nth-child(1) {
  animation-delay: 0s;
}

.containert:nth-child(2) {
  animation-delay: 1s;
}

.containert:nth-child(3) {
  animation-delay: 2s;
}

p {
  font-family: 'Cairo', sans-serif;
  color: #999999;
}

h2.h2-tb {
  font-family: 'Jersey 25', sans-serif;
  font-weight: lighter;
  margin-bottom: 10px;
}

.text-box-r {
  padding: 20px 30px;
  background: #0D0D0D;
  position: relative;
  border-radius: 2px;
  font-size: 15px;
  word-break: break-word;
  left: 25px;
  color: white;

}

.text-box-l {
  padding: 20px 30px;
  background: #0D0D0D;
  position: relative;
  border-radius: 6px;
  font-size: 15px;
  word-break: break-word;
  right: 25px;
  color: white;
}

.left-containert {
  left: 0;
}

.right-containert {
  left: 50%;
}

.containert img {
  position: absolute;
  width: 40px;
  border-radius: 50%;
  right: -20px;
  top: 32px;
  z-index: 10;
  border: 2px #06CCE9 solid;

}

.right-containert img {
  left: -20px;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background: #fff;
  top: 35px;
  left: 50%;
  margin-left: -3px;

  z-index: -1;
  animation: none;
  background: repeating-linear-gradient(to right,
      #06CCE9 0,
      #06CCE9 1px,
      transparent 2px,
      transparent 4px,
      #06CCE9 5px,
      #06CCE9 6px);

}

.timeline.animate::after {
  animation: moveline 5s linear forwards;
}



@keyframes moveline {
  0% {
    height: 0;
  }

  100% {
    height: 68%;
  }
}


.left-containert-arrow {

  position: absolute;
  top: 27px;
  right: -90px;
  z-index: 1;
  width: 79px;
  height: 22px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid transparent;
  background-color: #06CCE9;
  clip-path: polygon(100% 0%, 50% 50%, 100% 100%);
  transform: rotate(180deg);
}

.right-containert-arrow {

  position: absolute;
  top: 27px;
  left: -90px;
  z-index: 1;
  width: 79px;
  height: 22px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid transparent;
  background-color: #06CCE9;
  clip-path: polygon(100% 0%, 50% 50%, 100% 100%);
  transform: rotate(0deg);
}

.read-more-btn {
  margin-top: 20px;
  background-color: #06CCE9;
  /* cyan/blue */
  color: black;
  font-weight: bold;
  padding: 10px 30px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;

}

.read-btn-text {
  text-decoration: none;
  color: black;
}

.read-more-btn:hover {
  background-color: #0592a7;
}

@media screen and (max-width:600px) {
  .timeline {
    margin: 50px auto;
    min-width: 380px;
    right: 0px;
  }

  .timeline::after {
    left: 31px;
  }

  .containert {
    width: 100%;
    padding-left: 80px;
    padding-right: 25px;
  }

  .text-box {
    font-size: 13px;
  }



  .right-containert {
    left: 0;
  }

  .left-containert img,
  .right-containert img {
    left: 16px;
    width: 30px;
  }

  .left-containert-arrow {
    left: -45px;
    transform: rotate(0deg);
    top: 20px;
    width: 30px;
    height: 10px;
  }

  .right-containert-arrow {
    left: -45px;
    top: 20px;
    width: 30px;
    height: 10px;
    border-left: 0;
  }

  .text-box-l,
  .text-box-r {
    left: 13px;
  }
}

@media(max-width: 375px) {
  .timeline {
    margin: 50px auto;
    min-width: 300px;
    right: 0px;
  }

  .timeline::after {
    left: 30px;
  }

  .containert {
    width: 100%;
    padding-left: 60px;
    padding-right: 25px;
  }

  .containert p {
    font-size: 12px;
  }

  .text-box {
    font-size: 12px;
  }

  .right-containert {
    left: 0;
  }

  .left-containert img,
  .right-containert img {
    left: 16px;
    width: 30px;
  }

  .left-containert-arrow {
    left: -35px;
    transform: rotate(0deg);
    top: 20px;
    width: 30px;
    height: 10px;
  }

  .right-containert-arrow {
    left: -35px;
    top: 20px;
    width: 30px;
    height: 10px;
    border-left: 0;
  }

}

/* Base Styles */
body {
  background-color: #000000;
  /* Pure black background */
  color: #f0f0f0;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
}

/* Speaker Section */
.speakers-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #000000;
  /* Ensures section background is black */
}

.speakers-section h2 {
  font-size: 2.5rem;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(0, 207, 255, 0.3);
}

.speakers-section h3 {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: lighter;
  font-size: 24px;
  margin-bottom: 60px;
  color: #0CFFFF;
}

/* Speaker Cards Container */
.speaker-cards-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Individual Speaker Card */
.speaker-card {
  width: 350px;
  background: #121212;
  /* Slightly lighter than black for depth */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 207, 255, 0.1);
  border: 1px solid #222222;
  transition: all 0.3s ease;
}

.speaker-card h2 {
  margin-top: 90px;
  color: var(--primary-color);
}

.speaker-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 207, 255, 0.2);
  border-color: #00cfff;
}

/* Card Image */
.card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.speaker-card:hover .card-image img {
  transform: scale(1.05);
}

/* Card Content */
.card-content {
  padding: 25px;
  position: relative;
}

.speaker-info {
  display: flex;
  align-items: center;
  margin-top: -45px;
  margin-bottom: 20px;
}

.speaker-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #00cfff;
  object-fit: cover;
  background: #121212;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.social-icons {
  margin-left: auto;
  display: flex;
  gap: 15px;
}

.social-icons i {
  color: #00cfff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons i:hover {
  color: #ffffff;
  transform: scale(1.2);
}

/* Text Content */
.card-content h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin: 15px 0 10px;
}

.speaker-title {
  color: #00cfff;
  font-size: 0.9rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.session-desc {
  color: #bbbbbb;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Session Meta */
.session-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.session-time {
  color: #7f8c8d;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.session-time i {
  color: #00cfff;
  font-size: 1rem;
}

.coming-label {
  padding: 5px 15px;
  font-size: 0.8rem;
  color: #00cfff;
  background-color: rgba(0, 207, 255, 0.1);
  border: 1px solid #00cfff;
  border-radius: 20px;
  animation: pulse 2s infinite;
}

/* Animation */
@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 207, 255, 0.5);
  }

  50% {
    box-shadow: 0 0 10px 5px rgba(0, 207, 255, 0.3);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .speaker-cards-container {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .speaker-card {
    width: 100%;
    max-width: 400px;
  }

  .speakers-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .speaker-info {
    flex-direction: column;
    align-items: flex-start;
    margin-top: -40px;
  }

  .social-icons {
    margin-left: 0;
    margin-top: 10px;
  }

  .card-content {
    padding: 20px;
  }
}

/*````````````````````Offer Section````````````````````````````*/
.container {
  /*max-width: 900px;*/
  width: 70%;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}


.container h1 {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.container h3 {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  color: #0CFFFF;
  font-weight: lighter;
  font-size: 1.5rem;
  margin-bottom: 50px;
}

.section {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  align-items: center;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section .title {
  font-family: "Jersey 25", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1px;
  flex-basis: 30%;
  text-align: left;
  font-weight: 900;
  font-size: 1.8rem;
  white-space: nowrap;
}

.section .title .highlight {
  color: #00ffff;
}

.content .link {
  display: flex;
  flex-direction: row;
  text-decoration: none;
  align-items: center;
  color: #ffffff;
}

.link a {
  position: relative;
  top: 20px;
}

.section .title .flg {
  width: 25px;
  height: 25px;
  padding-left: 5px;
}

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

.section .content {
  flex-basis: 65%;
  font-weight: 300;
  font-size: 0.75rem;
  text-align: left;
  font-size: 16px;
}

.ctf p {
  position: relative;
  top: 20px;
}

.read-more-btn {
  position: relative;
  top: 5px;
  margin-top: 10px;
  padding: 8px 12px;
  background-color: #06cce9;
  color: black;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.read-more-btn:hover {
  background-color: #0499b3;
}

@media (max-width: 1114px) {
  .container {
    max-width: 95%;
  }
}

@media (max-width: 1024px) {


  .section .content {
    font-size: 0.7rem;
  }
}

@media (max-width: 728px) {
  .section {
    flex-direction: column;
    text-align: left;
  }

  .section.reverse {
    flex-direction: column;
  }

  .section .title,
  .section .content {
    flex-basis: 100%;
    text-align: left;
  }

  .section .title {
    margin-bottom: 10px;
  }
}

@media (max-width: 568px) {
  .container h3 {
    font-size: 18px;
  }

  .container h1 {
    font-size: 2.4rem;
  }

  .section .content {
    font-size: 1rem;
  }

  .read-more-btn {
    transform: translateX(0%);
    margin-bottom: 20px;
  }

  .ctf {
    margin-bottom: 20px;
  }
}


@media (max-width: 488px) {
  .container {
    padding: 0 10px;
  }

  .container h1 {
    font-size: 2rem;
  }

  .section {
    margin-bottom: 40px;
  }

  .section .content {
    font-size: 1rem;
  }

  .content .link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .link a {
    width: 100px;
    margin-top: 10px;
  }
}


/*=======Pricing=======*/



.pricing-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Header Styles */
header {
  text-align: center;
  margin-bottom: 3rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.1rem;
  color: #028fa4;
  letter-spacing: 1cqh;
  margin-bottom: 1.5rem;
}



/* Pricing Cards */
.pricing-cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
  padding: 20px;
}

.subtitle {
  color: #00cfff;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: lighter;
}

.pricing-card {
  background: #020202;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.02);
  width: 300px;
  overflow: hidden;
  border: 1px solid #06cce9;
}

.price-section {
  background: linear-gradient(75deg, rgba(0, 0, 0, 0.6), rgba(6, 204, 233, 0.3));
  backdrop-filter: blur(90px);
  /* Adds a blur effect */
  -webkit-backdrop-filter: blur(10px);
  /* Safari support */
  padding: 1.5rem;
  text-align: left;
  /* Changed from center to left */
  border-bottom: 1px solid #e0f2fe;
}

.price-section h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #06cce9;
  margin: 0 0 0.5rem 0;
  text-align: left;
  /* Added to ensure left alignment */
  padding-left: 0.5rem;
  /* Added for better spacing from edge */
}

.price {
  font-size: 2rem;
  font-weight: 350;
  color: #ffffff;
  text-align: center;
  /* Align price to left as well */
  padding-left: 0.5rem;
  /* Match h3 padding */
}

.features {
  list-style: none;
  padding: 1.5rem;
  margin: 0;
  text-align: left;
}

.features li {
  padding: 0.5rem 0;

  color: gray;
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.5rem;
}

.features li:last-child {
  border-bottom: none;
}

.features li::before {
  content: "•";
  color: gray;
  font-size: 1.6rem;
  position: absolute;
  left: 0;
}

.register-btn {
  display: block;
  width: calc(100% - 3rem);
  margin: 0 1.5rem 1.5rem;
  padding: 0.6rem;
  background: #000000;
  color: white;
  border: 1px solid #027182;
  /* Changed from border-color to border */
  border-radius: 0px;
  /* Fixed typo (was 00px) */
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
}

.register-btn a {
  text-decoration: none;
}

.register-btn:hover {
  background: #0c4149;
}

/* Replace your existing .pricing-cards styles with these: */

.pricing-cards::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar for Chrome/Safari */
}


.pricing-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 30px -10px rgba(6, 204, 233, 0.3);
  z-index: 20;
  border-color: #0af2ff;
  /* Brighter border on hover */
  transition: 0.5s ease-in-out;
}

/* Add a glowing effect */
.pricing-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(6, 204, 233, 0);
  transition: 0.4s ease;
  pointer-events: none;
}

.pricing-card:hover::after {
  box-shadow: 0 0 15px rgba(6, 204, 233, 0.6);
}

/* Make non-hovered cards recede slightly */
.pricing-cards:hover .pricing-card:not(:hover) {
  filter: brightness(0.7);
  opacity: 0.85;
}

/* Add these media queries for responsive behavior */
@media (max-width: 768px) {
  .pricing-page {
    overflow-x: hidden;
    padding: 1rem;
  }

  .pricing-cards {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;

  }

  .pricing-card {
    flex: 0 0 auto;
    width: 250px;
    /* slightly smaller width for easier swipe */
  }

  .pricing-card:first-child {
    margin-left: 300px
  }
}

@media (max-width: 500px) {
  .pricing-card:first-child {
    margin-left: 400px
  }

  .subtitle {
    letter-spacing: 0.2rem;
  }
}

@media (max-width: 418px) {
  .pricing-card:first-child {
    margin-left: 500px
  }
}

@media (max-width: 330px) {
  .pricing-card:first-child {
    margin-left: 550px
  }
}


/*=======Gallery=======*/
#Gallery {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin-top: 50px;
  background-color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}

#Gallery h1 {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-size: 42px;
  font-style: normal;
  margin-bottom: 10px;
}

#Gallery h3 {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  color: #0CFFFF;
  font-weight: lighter;
  font-size: 32px;
  font-style: normal;
  margin-bottom: 30px;
}

.gallery-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.gallery-content h1 {
  color: white;
  /* adjust as needed */
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

/* Grid style */
.parent {
  display: grid;
  grid-template-columns: repeat(4, 220px);
  grid-template-rows: repeat(4, 120px);
  gap: 8px;
  padding: 8px;
  box-sizing: border-box;
}

/* Image styling */
.parent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.parent img:hover {
  transform: scale(1.1);
}

/* Grid positions */
.div1 {
  grid-row: span 2 / span 2;
}

.div3 {
  grid-row: span 2 / span 2;
  grid-column-start: 1;
  grid-row-start: 3;
}

.div4 {
  grid-row: span 2 / span 2;
  grid-column-start: 2;
  grid-row-start: 1;
}

.div5 {
  grid-row: span 2 / span 2;
  grid-column-start: 2;
  grid-row-start: 3;
}

.div6 {
  grid-row: span 2 / span 2;
  grid-column-start: 3;
  grid-row-start: 1;
}

.div7 {
  grid-row: span 2 / span 2;
  grid-column-start: 3;
  grid-row-start: 3;
}

.div8 {
  grid-row: span 4 / span 4;
  grid-column-start: 4;
  grid-row-start: 1;
}

@media (max-width: 768px) {
  .gallery-content {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .parent {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    width: 100%;
    height: fit-content;
    gap: 20px;
  }

  .parent>div {
    flex: 0 0 auto;
    width: 180px;
    height: 180px;
  }

  .div1,
  .div3,
  .div4,
  .div5,
  .div6,
  .div7,
  .div8 {
    all: unset;
    flex: 0 0 auto;
    width: 180px;
    height: 180px;
  }

  .parent::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 500px) {
  #Gallery h3 {
    font-size: 18px;
  }
}

.main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8rem;
  background-color: black;
  transition: margin-top 0.3s ease;
  margin: 50px 65px;
}

.speak-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8rem;
  background-color: black;
  transition: margin-top 0.3s ease;
  margin: 50px 65px;
}

.speak {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
  padding: 20px;
  margin: 50px 35px;
}

.main-content h1 {
  font-size: 5rem;
  font-weight: bold;
  color: white;
  margin: 0;
  font-family: 'Jersey 25', sans-serif;
  font-weight: lighter;

}


span {
  color: #0CFFFF;
}

.main-img {
  border-radius: 50%;
}

.speaker-img img {
  border-radius: 5%;
  width: 391px;
  height: 464px;
}

.main-content,
.speak-content,
.speaker-content {
  margin-left: 40px;
}

.main-img img {
  width: 32vw;
  max-width: 500px;
  min-width: 200px;
  border-radius: 4%;
  box-shadow: 0 0 25px solid rgb(150, 5, 5);
  cursor: default;
  transition: 0.2s linear;
}

.text-section p {
  color: white;
  line-height: 22px;
  letter-spacing: 1px
}

p.desc {
  line-height: 22px;
  letter-spacing: 1px;
  color: white;
  max-width: 550px;
  margin-top: 10px;
}

.text-section {
  max-width: 1200px;
  margin: 80px;
  padding: 20px;
  color: white;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
  background-color: black;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.text-section p {
  margin: 0;
}

.speak-content h2 {
  color: white;
  font-size: 2rem;
  font-family: 'Jersey 25', sans-serif;
  margin: 0;
  font-weight: lighter;
}

.speaker-content h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 35px;
}

.speak-con .reg-btn {
  background-color: transparent;
  color: white;
  border: 2px solid #0CFFFF;
  padding: 15px 20px;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s ease;
  margin-right: 160px;
}

.speak-con .reg-btn:hover {
  background-color: #0CFFFF;
  color: black;
}

@media (max-width: 600px) {

  /* Adjust the .speak section */
  .speak {
    flex-direction: column;
    /* Stack items vertically */
    align-items: center;
    /* Center align items */
    text-align: center;
    /* Center text */
    margin: 20px;
    /* Reduce margin */
  }

  .speak-content h2 {
    font-size: 1.5rem;
  }

  .speak-con .reg-btn {
    margin-top: 15px;
    padding: 10px 15px;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;

  }

  .main {
    flex-direction: column;
    gap: 20px;
    margin: 20px;
  }

  .main-content h1 {
    font-size: 2.5rem;
    text-align: center;
  }

  .main-content p.desc {
    font-size: 0.9rem;
    text-align: center;
  }



  .speak-container {
    flex-direction: column;
    gap: 20px;
    margin: 20px;
  }

  .speaker-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    text-align: center;
  }

  .main-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    text-align: center;
  }

  .main-img img,
  .speaker-img img {
    width: 80%;
    max-width: 300px;
    height: auto;
  }

  .speaker-content h1 {
    font-size: 1.5rem;
    text-align: center;
  }

  .main-content {
    margin: 40px;
  }

  .text-section,
  .speaker-content,
  .speak-content {
    margin: 40px;
  }

  .speaker-content p.desc {
    font-size: 0.9rem;
    text-align: center;
  }
}

/* Footer */
.footer {
  /* bottom: 0 !important; */
  padding-bottom: 10px;
  background: #000;
  font-family: "Poppins", sans-serif;
  height: max-content;
  display: flex;
  flex-direction: column;
  color: white;
  align-items: center;
  /* overflow: hidden; */
  width: 100%;
}

.footer h1 {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-size: 42px;
  font-style: normal;
  margin-bottom: 10px;
}

.footer h3 {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  color: #0CFFFF;
  font-weight: lighter;
  font-size: 32px;
  font-style: normal;
  margin-bottom: 30px;
}

.footer img {
  translate: 0px -165px;
  position: relative;
  /* top: 165px; */


}

.footer-content {
  margin-top: 100px;
  display: flex;
  font-family: "Poppins", sans-serif;
  width: 100%;
  bottom: 0;
  gap: 180px;
  flex-direction: row;
  justify-content: space-evenly;
}

.footer-content p {
  color: rgb(134, 134, 134);
  font-size: small;
  margin-top: 20px;
}

.footer .rights {
  margin-top: 20px;
  display: flex;
  width: 88%;
  flex-direction: row;
  justify-content: space-between;
}

.footerRights {
  color: white;
  font-size: 14px;
  font-weight: 400;
  margin-top: 20px;
  text-align: center;
  width: 100%;
  padding: 10px 0;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 5px;
}

.footerRights a {
  color: #0CFFFF;
  text-decoration: none;
}

.map {
  width: 100%;
  display: flex;
  justify-content: center;
  height: 400px;
  position: relative;
  top: 40px;

}

.footer iframe {
  height: 100%;
  width: 80%;

}

#imgg {
  height: 150px;
  width: 600px;
  position: relative;
  top: -80px;
  left: 175px;

}



#frame {
  position: relative;
  width: 600px;
  height: 400px;
  background: url(/img/impulsee.jpeg) no-repeat;

}

.footer .fcontent div {
  display: flex;
  gap: 20px;
  font-size: 20px;
  place-items: center;
  justify-content: space-evenly;
  margin-top: 20px;
}

.fcontent div a {
  text-decoration: none;
  color: white;
}

.footer .fcontent div a:hover {
  cursor: pointer;
}

@media (max-width: 1000px) {
  #imgg {
    height: 500px;
    width: 500px;
  }

  .footer {
    background: #000;
    font-family: "Poppins", sans-serif;
    max-height: fit-content;
    display: flex;
    flex-direction: column;
    color: white;
    align-items: center;
    width: 100%;
    place-items: center;
  }

  .footer img {
    translate: 0px -20px;
    position: relative;
  }

  .footer-content {
    margin-top: 100px;
    display: flex;
    font-family: "Poppins", sans-serif;
    width: 100%;
    bottom: 0;
    gap: 35px;
    flex-direction: column;
    place-items: center;
    justify-content: space-evenly;
  }

  .footer-content p {
    color: rgb(134, 134, 134);
    font-size: small;
    margin-top: 20px;
  }

  .footer .rights {
    height: 10%;
    font-size: 10px;
    margin-top: 50px;
    display: flex;
    width: 80%;
    flex-direction: row;
    justify-content: space-between;
  }

  .map {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 50%;
    position: relative;
    top: 30px;

  }

  .fcontent {
    display: flex;
    flex-direction: column;
    place-items: center;

  }

  .footer iframe {
    height: 60%;
    width: 85%;
  }
}

.dropdown-nav {
  position: relative;
  display: inline-block;

}

.dropbtn-nav {
  color: white;
  text-decoration: none;
  font-size: 26px;
  padding: 10px 15px;
  cursor: pointer;
}

.dropdown-nav-content {
  display: none;
  position: absolute;
  background-color: #0D0D0D;
  min-width: 150px;
  margin-top: 10px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;

}

.dropdown-nav-content a {
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
}

.dropdown-nav-content a:hover {
  background-color: #0d0d0d;
  border-radius: 2px;
}

.dropdown-nav:hover .dropdown-nav-content {
  display: block;
}