@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:#f15a29;
--accent-color: #f29b7d;
--primary-color-dark: #d64e21;
 --primary: rgb(0, 0, 0);

}

@font-face {
  font-family: 'Roc Grotesk-Wide';
  src: url('/fonts/RocGrotesk-WideBold.woff2') format('woff2'),
       url('/fonts/RocGrotesk-WideBold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roc Grotesk';
  src: url('/fonts/RocGrotesk-Wide.woff2') format('woff2'),
       url('/fonts/RocGrotesk-Wide.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}


body {
  font-family: 'Roc Grotesk', sans-serif;
  background-color: #fff;
  color: #121212;
}

p{
  font-family: "Poppins", sans-serif;
}

h1{
  font-family: 'Roc Grotesk-Wide', sans-serif;
}


/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 30px;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  z-index: 999;
}

.logo {
  display: block;
  width: fit-content;
  height: auto;
}

.logo img {
  height: 70px; /* adjust as needed */
  width: auto;
  display: block;
}


.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links .highlighted {
  padding: 20px 15px;
  background: linear-gradient(90deg, #fbeaff, #f0f0f0);
  border-radius: 6px;
}

/* Dropdown container */
.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown .dropdown-link{
  display: flex;
  align-items: center;
}

.nav-links .dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.nav-links .dropdown-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
  margin-top: -.2rem;
}

/* Optional: rotate arrow on hover */
.nav-links .dropdown:hover .arrow {
  transform: rotate(180deg);
}

.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 250px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: none;
  flex-direction: column;
  z-index: 1000;
  padding: 10px 0;
  margin-top: 2rem;
}

.dropdown-menu.show {
  display: block;
}

.nav-links .dropdown-menu li {
  border-bottom: 1px solid #eee;
}

.nav-links .dropdown-menu li a {
  display: block;
  padding: 12px 16px;
  color: #333;
  font-size: 14px;
  text-decoration: none;
}

.nav-links .dropdown-menu li a:hover {
  background: #f5f5f5;
}

/* Show dropdown on hover */
/*.nav-links .dropdown:hover .dropdown-menu {*/
/*  display: flex;*/
/*}*/


.nav-actions {
  display: flex;
  gap: 10px;
}

.nav-actions button {
  background: #f0f0f0;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
}

.nav-actions .menu {
  background: var(--primary-color);
  color: #fff;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 360px;
  height: 100vh;
  background: var(--primary-color);
  padding: 30px 20px;
  z-index: 999;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav .close-btn {
  align-self: flex-end;
  background: white;
  border: none;
  font-size: 24px;
  padding: 6px 10px;
  cursor: pointer;
  color: var(--primary-color);
}

.mobile-nav ul {
  margin-top: 40px;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.mobile-nav ul li a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
  width: 100%;
}


/* Hero Section */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 160px 60px 60px;
  min-height: 100vh;
  overflow: hidden;
}

.slider {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  display: none;
}

.hero-slide.active {
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  border: none;
  font-size: 32px;
  padding: 10px;
  cursor: pointer;
  z-index: 5;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

.material-icons-outlined {
  font-size: 32px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 70%;
}

.hero-content h1 {
    font-family: 'Roc Grotesk-Wide', sans-serif;
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 10px;
  font-weight: 900;
}

.hero-content h2 {
  font-size: 30px;
  margin: 10px 0 30px;
}

.hero-content .blue {
  color: #4aa6ff;
}

.hero-content .green {
  color: var(--primary-color);
}

.stats {
  display: flex;
  gap: 100px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
}

.stats span {
  display: block;
  font-size: 14px;
  font-weight: normal;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 3rem;
}

.hero-buttons button {
  padding: 2rem 5rem;
  font-size: 14px;
  border: none;
  font-weight: 500;
  letter-spacing: .1rem;
  cursor: pointer;
  text-transform: uppercase;
}

button.startup {
  background-color: var(--primary-color);
  color: #fff;
}

button.startup:hover {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

button.investor {
  background-color: #1b1c1e;
  color: #fff;
}

.hero-image-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  pointer-events: none; /* prevent blocking clicks on buttons */
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  transform-style: preserve-3d;
  pointer-events: none;
}


.section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 5%;
  background-color: #0077cc;
  color: #fff;
}

.about{
  margin-top:6.5rem;
}

.top {
  position: relative;
  margin-bottom: 1.5rem;
  background-color: var(--accent-color);
  padding: 0.3rem 1rem;
  width: fit-content;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
  font-family: "Poppins", sans-serif;
  overflow: hidden; /* Ensures shimmer doesn't overflow */
  color: #fff; /* Optional for contrast */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.top::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  height: 100%;
  width: 150%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    left: -150%;
  }
  100% {
    left: 100%;
  }
}

.grid_content{
  margin-top: 2rem;
}

.grid_container{
  padding: 1rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.grid_container .grids {
  position: relative;
  background: #f5f7fc;
  padding: 1rem;
  color: #121212;
  text-align: center;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.grid_container .grids::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  width: 200%;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 20%,
    oklch(97.604% 0.0071 268.596) 50%,
    rgba(255, 255, 255, 0) 80%
  );
  animation: shimmer-sweep 2.5s infinite;
  pointer-events: none;
}

@keyframes shimmer-sweep {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.text-content {
  max-width: 50%;
}
.text-content h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}
.text-content p {
  font-size: 1.1rem;
  line-height: 1.6;
}
.image-content img {
  width: 100%;
  max-width: 600px;
}

.highlights {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 3rem;
}

.highlights h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 600;
  color: #000;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.highlight-item:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.highlight-item span.material-symbols-outlined {
  font-size: 36px;
  color: #0077cc;
  flex-shrink: 0;
}

.highlight-item h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
}

.highlight-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}

.countdown-section {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 100vh;
  margin-bottom: 3rem;
}

.left-content {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  text-align: center;
}

.left-top h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.left-middle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  flex: 1;
  padding: 0 0.5rem;
  text-align: left;
}

.info-item .info-item-content{
  display: flex;
  gap: 1rem;
  padding: 2rem 0;
}

.info-item .info-item-content .icon{
  border: 2px solid #ddd;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  height: fit-content;
  padding: .5rem;
  display: flex;
  align-items: center;
  border-radius: .5rem;
}

.info-item .info-item-content .content{
  line-height: 1.8;
}

.info-item .info-item-content .content{
  font-size: 1rem;
}

.info-item div .content{
  display: flex;
  flex-direction: column;
}

.info-item span {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.left-bottom {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.left-bottom button {
  padding: 1.5rem 3rem;
  background: var(--primary-color);
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.right-content {
  flex: 2;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.countdown-box {
  flex: 2;
  background: #121212;
  color: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.countdown-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 60%
  );
  transform: rotate(45deg);
  animation: shimmerDiagonal 4s ease-in-out infinite;
  z-index: 0;
}

@keyframes shimmerDiagonal {
  0% {
    transform: translate(-100%, -100%) rotate(45deg);
    opacity: 0;
  }
  50% {
    transform: translate(0%, 0%) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: translate(100%, 100%) rotate(45deg);
    opacity: 0;
  }
}


.countdown-box h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  z-index: 1;
  position: relative;
}

.countdown-display {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  z-index: 1;
  position: relative;
  flex-wrap: wrap;
}

.time-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #1e1e1e;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  min-width: 80px;
  box-shadow: 0 0 0.5rem rgba(0,0,0,0.4);
}

.time-segment span {
  font-size: 2rem;
  font-weight: bold;
  color: #e62955;
}

.time-segment small {
  font-size: 0.8rem;
  color: #aaa;
  margin-top: 0.25rem;
}


.info-box {
  flex: 4;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-color: black; /* fallback if there are gaps */
  color: white;
  padding: 1.5rem;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.5rem;
  position: relative;
  z-index: 0;
  height: 100%; /* Maintain full height */
}

.info-box::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.info-box p {
  z-index: 2;
  margin: 0;
  font-weight: bold;
}


/* .energy-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
  font-family: 'Segoe UI', sans-serif;
  color: #121212;
}

.energy-title {
  margin-bottom: 3rem;
  text-align: center;
}

.energy-title h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.energy-title h2::after {
  content: '';
  display: block;
  margin: 0.5rem auto 0;
  width: 60px;
  height: 4px;
  background: #2b3990;
}

.energy-title p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 1rem auto 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
  text-align: left;
}

.mission-item {
  background: #f5f7fc;
  padding: 2rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mission-item .material-symbols-outlined {
  font-size: 32px;
  color: #2b3990;
} */


.investment-section {
  margin: auto;
  padding: 4rem 0;
  font-family: 'Inter', sans-serif;
  color: #121212;
}

.investment-tabs {
  display: flex;
  gap: 2rem;
  border-bottom: 1px solid #ddd;
  margin-bottom: 3rem;
}

.investment-tabs h2 {
  font-size: 1.8rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
}

.investment-tabs h2.active::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: #2b90ef;
  bottom: 0;
  left: 2rem;
}

.investment-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-bottom: 2.5rem;
  padding: 0 2rem;
}

.investment-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 0 3rem;
}

.investment-card:nth-child(2) {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

.icon-box {
  flex-shrink: 0;
  border: 1px solid #000;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box img {
  width: 24px;
  height: 24px;
}

.investment-card p {
  font-size: 1rem;
  line-height: 1.6;
}

.investment-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0 4rem;
}

.btn {
  background: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.btn:hover {
  background: var(--primary-color-dark);
}


.summit-hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
  color: white;
  padding: 2rem;
  background: url('/assets/images/IMG_5354.JPG') center/cover no-repeat;
  overflow: hidden;
}

.awards {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
  color: white;
  padding: 2rem;
  background: url('/assets/images/IMG_5262.jpg') center/cover no-repeat;
  overflow: hidden;
}

.sponsor {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
  color: white;
  padding: 2rem;
  background: url('/assets/images/IMG_5241.JPG') center/cover no-repeat;
  overflow: hidden;
}

.tour {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
  color: white;
  padding: 2rem;
  background: url('/assets/images/masdar.avif') center/cover no-repeat;
  overflow: hidden;
}

.summit-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.summit-hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    transparent 40%,
    rgba(255, 255, 255, 0.08),
    transparent 60%
  );
  animation: shimmer-top 4s infinite linear;
  z-index: 2;
  pointer-events: none;
}

@keyframes shimmer-top {
  0% {
    transform: translateX(-100%) translateY(-100%);
  }
  100% {
    transform: translateX(100%) translateY(100%);
  }
}

.summit-hero-content {
  position: relative;
  z-index: 3;
  width: 60%;
} 

.summit-hero-content h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.summit-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  animation: btn-shimmer 2.5s infinite;
}

@keyframes btn-shimmer {
  0% {
    left: -150%;
  }
  100% {
    left: 100%;
  }
}


.summit-section {
  padding: 4rem 1.5rem;
  background: #f9f9f9;
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1400px;
  margin: auto;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.8rem 1.4rem;
  border: none;
  background: #e0e0e0;
  color: #121212;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
  font-size: 1rem;
}

.tab-btn.active {
  background: var(--primary-color, #f15a29);
  color: #fff;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Lists and Grids */
.grid {
  display: grid;
  gap: 1rem;
}

.topics {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  font-size: 0.95rem;
  line-height: 3;
  font-weight: 500;
}

.list {
  padding-left: 1.2rem;
  font-size: 0.95rem;
  list-style-type: disc;
  line-height: 3;
  font-weight: 500;
}

.delegates {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.delegates ul {
  padding-left: 1.2rem;
  list-style-type: disc;
    line-height: 3;
  font-weight: 400;
}

.delegates h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.cta {
  margin-top: 1.2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  background: var(--primary-color, #f15a29);
  font-family: "Poppins", sans-serif;
  color: white;
  padding: 0.9rem 1.6rem;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #cf471b;
}

.btn.alt {
  background: #e0e0e0;
  color: #121212;
}

.btn.alt:hover {
  background: #cacaca;
}

.summit-schedule {
  padding: 4rem 1.5rem;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
}

.summit-schedule .container {
  max-width: 1400px;
  margin: auto;
}

.summit-schedule .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #121212;
}

.agenda-day {
  margin-bottom: 3rem;
}

.agenda-day h3 {
  font-size: 1.4rem;
  color: var(--primary-color, #f15a29);
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-color, #f15a29);
  padding-left: 1rem;
}

.agenda-day ul {
  list-style: none;
  padding-left: 0;
}

.agenda-day ul li {
  padding: 0.75rem 1rem;
  background: #f5f5f5;
  margin-bottom: 0.5rem;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  font-size: 0.95rem;
  display: flex;
  gap: 1rem;
}

.agenda-day ul li strong {
  color: #2b2b2b;
  min-width: 70px;
}

.summit-panel {
  display: none;
}
.summit-panel.active {
  display: block;
}

.summit-tab-btn {
  padding: 0.8rem 1.2rem;
  border: none;
  background: #eee;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.summit-tab-btn.active {
  background: var(--primary-color, #f15a29);
  color: #fff;
}
.summit-tabs-header {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.awards-header{
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
}


.awards-tabs-header {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.awards-tab-btn {
  padding: 0.75rem 1.25rem;
  background: #e0e0e0;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 4px;
  font-size: 0.95rem;
}

.awards-tab-btn.active {
  background: var(--primary-color, #f15a29);
  color: #fff;
}

.awards-panel {
  display: none;
}

.awards-panel.active {
  display: block;
}

.list {
  padding-left: 1.2rem;
  font-size: 0.95rem;
  list-style-type: disc;
}

.cta {
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .awards-tab-btn {
    flex: 1 1 100%;
  }
}

.nomination-section {
  margin: auto;
  padding: 4rem 0;
  font-family: "Poppins", sans-serif;
  color: #121212;
}

.nomination-tabs {
  display: flex;
  gap: 2rem;
  border-bottom: 1px solid #ddd;
  margin-bottom: 3rem;
}

.nomination-tabs h2 {
  font-size: 1.8rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
}


.nomination-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  padding: 0 2rem;
  margin-bottom: 2.5rem;
}

.nomination-card {
  font-size: 1rem;
  line-height: 1.7;
}

.nomination-card ul,
.nomination-card ol {
  padding-left: 1.5rem;
  margin-top: 1rem;
  line-height: 3;
}

.nomination-card p{
  margin-top: 1rem;
}

.nomination-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0 2rem;
}

.center {
  padding: 4rem 1.5rem;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: poppins;
}
.title {
  font-size: 40px;
  font-weight: 700;
}
.profiles {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.profile {
  width: fit-content;
  height: fit-content;
  min-width: 350px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  padding-top: 20px;
  margin: 20px;
  max-height: 500px;
  transition: 0.5s ease-in-out;
}
.profile img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.details {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  margin-top: 1rem;
}
.details span {
  font-weight: 300;
}
.card {
  width: 320px;
  height: 300px;
  margin-bottom: 20px;
  background: var(--primary);
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  border-radius: 6mm;
  position: relative;
}
.head {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: left;
  margin-bottom: 5px;
}
.head img {
  margin: 0;
  width: 60px;
  height: 60px;
  border-radius: 5mm;
}
.name {
  font-size: 16px;
  font-weight: 200;
  width: fit-content;
  margin-left: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0 8px;
  border-radius: 3mm;
}
.content {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-size: 15px;
  position: relative;
}
.role {
  font-weight: 200;
  font-size: 14px;
}

.content::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 70%;
  transform: translate(-50%, 0);
  background: var(--secondary);
  width: 60px;
  height: 30px;
  filter: blur(30px);
}

.card::before {
  position: absolute;
  content: "location_pin";
  font-family: "Material Icons";
  color: var(--primary);
  font-size: 85px;
  top: calc(100% - 7px);
  left: 50%;
  transform: translate(-50%, 0) rotate(180deg);
}
.profile:hover {
  max-height: 500px;
}
.profile:hover #picture {
  border: 5px solid var(--primary);
}
.profile:nth-child(odd) {
  --secondary: rgb(0, 0, 0);
  --primary: rgb(255, 124, 10);
}


.tourism-section {
  background: #f7fafe;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
  color: #102a43;
}

.tourism-section .container {
  max-width: 1400px;
  margin: 0 auto;
}

.tourism-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  text-align: center;
}

.tourism-section .intro {
  font-size: 1.1rem;
  margin-bottom: 30px;
  text-align: center;
  line-height: 2;
}

.highlight-block {
  background: #e0f0ff;
  border-left: 6px solid #0070c9;
  padding: 16px 20px;
  margin: 30px 0;
  border-radius: 6px;
  font-size: 1.05rem;
}

.highlight-block p{
  line-height: 2;
}

.tour-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #00457c;
}

.tour-box p {
  line-height: 1.6;
  margin-bottom: 16px;
}

.tour-sites {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
  line-height: 2;
}

.tour-sites li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.tour-sites li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2a7ae2;
  font-weight: bold;
}

.tour-info {
  font-weight: 500;
  margin-bottom: 30px;
  background: #eef6ff;
  padding: 15px;
  border-left: 5px solid #2a7ae2;
  border-radius: 5px;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}


.sponsor-section {
  padding: 80px 20px;
  background: #f6f9fc;
  color: #121212;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-tagline {
  font-size: 1.4rem;
  color: #2b3990;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.sponsor-cta .highlight {
  background: #e8eef9;
  border-left: 4px solid #2b3990;
  padding: 10px 15px;
  font-weight: 500;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.sponsor-block {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sponsor-block h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #2b3990;
}

.sponsor-block p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.sponsor-block ul {
  padding-left: 20px;
  font-size: 0.95rem;
  line-height: 1.8;
  font-family: "Poppins", sans-serif;
  margin-bottom: 1rem;
}

.sponsor-block ul li {
  margin-bottom: 8px;
}

.btn-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 20px;
}

/* Core Layout */
.sponsors-section {
  background: #f6f8fc;
  padding: 80px 20px;
  font-family: 'Roc Grotesk Wide', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1e1e2f;
  margin-bottom: 10px;
}

.section-header .tagline {
  font-size: 1.2rem;
  color: #555f78;
}

/* Sponsor Tiers */
.sponsor-tier {
  margin-bottom: 50px;
}

.sponsor-tier h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #2a2a40;
  border-left: 4px solid #2b3990;
  padding-left: 12px;
}

/* Sponsor Cards */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
}

.sponsor-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.sponsor-card img {
  max-height: 100px;
  margin-bottom: 10px;
}

.sponsor-card span {
  display: block;
  font-size: 0.95rem;
  color: #3c3c5a;
}

/* Featured Partner */
.featured {
  background: #2b3990;
  border-radius: 16px;
}

.featured img {
  max-height: 300px;
  filter: brightness(0) invert(1);
}

.stand{
  width: 40%;
}

/* CTA Blocks */
.cta-area {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #d9e0ea;
}

.cta-block h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #1c1c30;
}

.cta-block p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 16px;
}

.buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}


/* Reveal Animation (for JS Scroll Reveal) */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}


/* Existing styles omitted for brevity – keep them as is */

/* Shimmer Overlay */
.map-hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin-top: 7rem;
}

.map-overlay {
  position: relative;
  width: 100%;
  height: 100%;
}

.map-overlay iframe {
  width: 100%;
  height: 100%;
  filter: brightness(0.6); /* Dark overlay effect */
  z-index: 1;
}

/* Shimmer Animation */
.shimmer {
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 25%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 75%
  );
  animation: shimmerMove 3s infinite linear;
  z-index: 2;
  pointer-events: none;
}

@keyframes shimmerMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* Contact Wrapper */
.contact-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background-color: #fff;
}

.contact-inner {
  display: flex;
  max-width: 1100px;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  flex-wrap: wrap;
}

/* Left Column Image */
.contact-image {
  flex: 1;
  min-width: 300px;
  background-color: #eaeaea;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Column Info */
.contact-info {
  flex: 1;
  min-width: 300px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2b3990;
}

.contact-info p {
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.6;
}


/* Responsive Handling */
@media (max-width: 768px) {
  .contact-inner {
    flex-direction: column;
  }

  .contact-info {
    padding: 30px 20px;
  }
}



.site-footer {
  background-color: #0b0b0b;
  color: #e0e0e0;
  font-family: "Poppins", sans-serif;
  padding: 4rem 1.5rem 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer-branding h2 {
  font-size: 1.75rem;
  color: var(--primary-color-dark);
  margin-bottom: 0.5rem;
}

.footer-branding .tagline {
  font-size: 1rem;
  color: #bbb;
  margin: 0;
}

.footer-branding .event-details {
  margin-top: 0.25rem;
  font-size: 0.95rem;
  color: #888;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.link-group h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.link-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-group li {
  margin-bottom: 0.4rem;
}

.link-group a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.link-group a:hover {
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-icons img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.social-icons img:hover {
  opacity: 1;
}

.footer-credits {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: #aaa;
}

.footer-credits .hashtags {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: #666;
}




@media (max-width: 768px) {
  .countdown-section {
    flex-direction: column;
  }

  .left-content,
  .right-content {
    border: none;
  }

  .left-middle {
    flex-direction: column;
    gap: 1rem;
  }

  .info-item {
    border-left: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
  }

  .info-item:last-child {
    border-bottom: none;
  }

  .left-bottom {
  flex-direction: column;
}
}




@media (max-width: 768px) {
  .text-content, .image-content {
    max-width: 100%;
    text-align: center;
  }
  .section {
    flex-direction: column;
  }
    .summit-hero-content {
  width: 100%;
}
}


@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    padding: 120px 30px 40px;
    text-align: center;
  }

  .hero-content {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content h2 {
    font-size: 28px;
  }

  .stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-image-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 40px;
  }

  .hero-image {
    justify-content: center;
  }

  .hero-image img {
    max-width: 70%;
  }

  .slider-btn {
    font-size: 24px;
    padding: 6px;
  }
}

@media screen and (max-width: 992px) {
  .nav-links {
    display: none !important;
  }
}


@media (max-width: 600px) {
  .hero {
    padding: 130px 20px 30px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content h2 {
    font-size: 22px;
  }

  .stats {
    flex-direction: column;
    gap: 15px;
  }

  .hero-buttons button {
    width: 100%;
    padding: 12px;
    font-size: 13px;
  }

  .hero-image img {
    max-width: 90%;
  }
}

