@font-face {
  font-family: 'Montserrat'; 
  src: url('./Font/Montserrat-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:'Montserrat';
}

html,
body {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at 70%, #0D1164 0%, #07001b 40%, #000010 100%);
  color: white;
  margin: 0;
}

/* ========== Enhanced Visual Improvements ========== */

/* ========== ENHANCED TYPOGRAPHY & SPACING SYSTEM ========== */

/* Better text rendering and typography */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.7; /* Increased for better readability */
  letter-spacing: 0.01em; /* Subtle letter spacing */
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* ========== COMPREHENSIVE HEADING SYSTEM ========== */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: var(--spacing-md);
  line-height: 1.3; /* Optimized for headings */
  letter-spacing: -0.02em; /* Tighter for large text */
  font-weight: 600;
  text-rendering: optimizeLegibility;
}

/* Specific heading sizes and spacing */
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: var(--spacing-lg);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.25;
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  line-height: 1.3;
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.01em;
}

h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  line-height: 1.35;
  margin-bottom: var(--spacing-sm);
}

h5 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.4;
  margin-bottom: var(--spacing-xs);
}

h6 {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.4;
  margin-bottom: var(--spacing-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========== ENHANCED PARAGRAPH SYSTEM ========== */
p {
  margin-top: 0;
  margin-bottom: var(--spacing-md);
  line-height: 1.7; /* Optimal for body text */
  max-width: 70ch; /* Optimal reading width */
  letter-spacing: 0.01em;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
}

/* Special paragraph types */
.lead-text, .subtitle, .intro-text {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
  color: #A2D2FF;
  font-weight: 400;
}

.small-text, .caption {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.5;
  margin-bottom: var(--spacing-sm);
  color: #bbb;
}

/* ========== LIST FORMATTING ========== */
ul, ol {
  margin: 0 0 var(--spacing-md) 0;
  padding-left: var(--spacing-lg);
  line-height: 1.7;
}

li {
  margin-bottom: var(--spacing-xs);
  line-height: 1.6;
}

li:last-child {
  margin-bottom: 0;
}

/* Nested lists */
ul ul, ol ol, ul ol, ol ul {
  margin-top: var(--spacing-xs);
  margin-bottom: var(--spacing-xs);
}

/* ========== CONSISTENT SECTION SPACING ========== */
section {
  margin-bottom: var(--spacing-xxl);
  padding-top: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
}

/* Article spacing */
article {
  margin-bottom: var(--spacing-xl);
}

/* ========== TEXT ALIGNMENT & FLOW ========== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

/* ========== RESPONSIVE TEXT SCALING ========== */
@media (max-width: 768px) {
  body {
    line-height: 1.6;
    font-size: 16px; /* Ensure minimum readable size */
  }
  
  p {
    max-width: 100%; /* Full width on mobile */
    margin-bottom: var(--spacing-sm);
  }
  
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--spacing-sm);
  }
  
  section {
    margin-bottom: var(--spacing-xl);
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-md);
  }
}

@media (max-width: 480px) {
  body {
    line-height: 1.5;
  }
  
  p {
    margin-bottom: var(--spacing-xs);
    line-height: 1.6;
  }
  
  section {
    margin-bottom: var(--spacing-lg);
  }
}

/* CSS Custom Properties for consistent theming */
:root {
  --primary-blue: #1e56ff;
  --secondary-blue: #0f34a3;
  --accent-cyan: #00d9ff;
  --text-light: #A2D2FF;
  --bg-dark: #07001b;
  --border-glow: #5fbeed;
  --success-green: #00ff88;
  --warning-orange: #ff8c00;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-xxl: 3rem;
}

/* Enhanced glassmorphism effects */
.track-card, .blog-card, .speaker-card, .team-member, .faq-item, .agenda-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
}

/* Improved button interactions */
.btn {
  box-shadow: 0 4px 15px rgba(30, 86, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 86, 255, 0.4);
}

/* Enhanced card hover effects with shimmer */
.track-card, .blog-card, .speaker-card, .team-member {
  position: relative;
  overflow: hidden;
}

.track-card::before, .blog-card::before, .speaker-card::before, .team-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.1), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}

.track-card:hover::before, .blog-card:hover::before, .speaker-card:hover::before, .team-member:hover::before {
  left: 100%;
}

/* Ensure content stays above shimmer effect */
.track-card > *, .blog-card > *, .speaker-card > *, .team-member > * {
  position: relative;
  z-index: 2;
}

/* Enhanced text shadows for better readability */
.page1 h1, .page2 h1, .page3 h1, .speakers-section h1, .team-section h1, .agenda-section h1, .faq-section h1, .conduct-section h1, .blog-section h1, .ethics-section h1 {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Loading animation for images */
.loading-placeholder {
  background: linear-gradient(90deg, #0a1026 25%, #132046 50%, #0a1026 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Enhanced navigation glassmorphism */
nav {
  background: rgba(9, 4, 28, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(18, 4, 51, 0.6);
}

/* Better touch targets for mobile */
.btn, .dropdown-btn, .agenda-tab {
  min-height: 44px;
  min-width: 44px;
}

/* Improved focus states */
.btn:focus, .dropdown-btn:focus, .agenda-tab:focus {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.2);
}

/* Enhanced countdown boxes */
.time-box {
  backdrop-filter: blur(15px);
  background: rgba(15, 52, 163, 0.2);
  border: 2px solid var(--secondary-blue);
  box-shadow: 0 4px 20px rgba(15, 52, 163, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.time-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(15, 52, 163, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

/* Enhanced social icons */
.social-icons a {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icons a:hover {
  transform: translateY(-2px) scale(1.1);
}

/* Improved paragraph readability */
p {
  max-width: 65ch;
}

/* Better mobile experience */
@media (max-width: 768px) {
  /* Improved mobile button spacing */
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  /* Better mobile card spacing */
  .track-card, .blog-card, .speaker-card, .team-member {
    margin-bottom: 1rem;
  }
}

/* Enhanced button loading states */
.btn.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  color: white;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Scroll-based navigation effects */
body.scrolling-down nav {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

body.scrolling-up nav {
  transform: translateY(0);
  transition: transform 0.3s ease;
}

/* Staggered card animations */
.track-card, .blog-card, .speaker-card, .team-member, .faq-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--secondary-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(30, 86, 255, 0.4);
}

/* Enhanced focus management */
.focus-trap {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 2px;
}

/* Improved mobile touch feedback */
@media (max-width: 768px) {
  .btn:active, .dropdown-btn:active, .agenda-tab:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
}

/* Enhanced glassmorphism for better depth */
.track-card, .blog-card, .speaker-card, .team-member, .faq-item, .agenda-card {
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.track-card:hover, .blog-card:hover, .speaker-card:hover, .team-member:hover {
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(95, 190, 237, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Performance optimizations */
.animated-element {
  will-change: transform;
  transform: translateZ(0); /* Force hardware acceleration */
}

/* Reduced motion support enhancement */
@media (prefers-reduced-motion: reduce) {
  .track-card::before, .blog-card::before, .speaker-card::before, .team-member::before {
    display: none;
  }
  
  .btn:hover, .time-box:hover, .social-icons a:hover {
    transform: none;
  }
  
  .back-to-top {
    transition: none;
  }
  
  .dropdown {
    transition: none;
  }
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #000;
  color: #fff;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 9999;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 6px;
}

/* Focus styles for better accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #00d9ff;
  outline-offset: 2px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}



/* ========== Navigation Bar ========== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 13vh;
  padding: 0rem 3rem;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  flex-wrap: wrap;
  backdrop-filter: blur(12px);
  background: #09041c;
  border-bottom: 1px solid #120433;
}

/* Logo Styling */
.logo img {
  height: 13vh;
  width: 12vw;
  object-fit: cover;
}

/* Navbar Menu */
.navbar {
  display: flex;
  gap: 2.5rem;
  font-size: 1.1rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

/* Navbar h3 elements (containing links) */
.navbar h3 {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
}

/* Navbar Links */
.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
  position: relative;
  display: inline-block;
}

/* Active page indicator */
.navbar a[aria-current="page"],
.navbar a.active {
  color: #1c55ff;
  text-shadow: 0 0 25px #00d9ff, 0 0 40px #0f34a3;
}

/* Hover Effects - Only for direct navbar links, not dropdown links */
.navbar > h3 > a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #1c55ff;
  transition: 0.3s ease;
}

.navbar > h3 > a:hover::after,
.navbar > h3 > a[aria-current="page"]::after,
.navbar > h3 > a.active::after {
  width: 100%;
}

.navbar a:hover {
  color: #1c55ff;
  text-shadow: 0 0 25px #00d9ff, 0 0 40px #0f34a3;
  transition: color 0.3s ease, text-shadow 0.3s ease, filter 0.3s ease;
}

/* Remove underline animation from dropdown links */
.dropdown a::after {
  display: none;
}

.dropdown a:hover {
  text-shadow: none; /* Remove text shadow from dropdown links */
}

/* ========== DROPDOWN SYSTEM ========== */

/* Dropdown container */
.dropdown-container {
  position: relative;
  display: inline-block;
}

/* INVISIBLE BRIDGE TO PREVENT CLOSE */
.dropdown-container::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  height: 15px; /* SAME AS YOUR GAP */
  width: 100%;
  background: transparent;
  pointer-events: auto; /* allow mouse to hover */
}

/* Dropdown button */
.dropdown-btn {
  background: transparent;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  transition: color 0.3s ease;
  font-weight: 500;
}

.dropdown-btn:hover {
  color: #1c55ff;
}

/* Arrow rotation */
.dropdown-btn i {
  transition: transform 0.3s ease;
}

.dropdown-container:hover .dropdown-btn i {
  transform: rotate(180deg);
}

/* Enhanced dropdown animations */
.dropdown {
  background: radial-gradient(circle at center, #07001b, #000010);
  padding: 0.8rem;
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 15px); /* REAL VISIBLE GAP */
  left: 0;
  box-shadow: 0 0 5px #00d9ff, 0 0 10px #0f34a3;
  z-index: 100;
  border-radius: 5px;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 150px;
}

.dropdown-container:hover .dropdown {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* Dropdown links */
.dropdown a {
  text-decoration: none;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.dropdown a:hover {
  background: rgba(28, 85, 255, 0.2);
  color: #1c55ff;
}

/* CFP Button */
.btn-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.btn {
  padding: 0.4rem 0.8rem;
  border: none;
  border-radius: 1rem;
  color: #eaffff;
  font-weight: 300;
  font-size: clamp(0.9rem, 1vw, 1.5rem);
  background: linear-gradient(90deg, #1e56ff, #0f34a3);
  cursor: pointer;
  transition: 0.4s ease;
}

.btn:hover {
  box-shadow: 0 0 15px #00d9ff, 0 0 40px #0f34a3;
  transform: scale(1.10);
}
/* ========== RESPONSIVE NAVBAR DESIGN ========== */

/* For large screens (1024px and above) */
@media (min-width: 1024px) {
  nav {
    padding: 0 6rem;
    height: 12vh;
  }

  .logo img {
    height: 10vh;
    width: 10vw;
  }

  .navbar {
    gap: 3rem;
    font-size: 1.1rem;
  }

  .navbar a {
    font-size: 1.05rem;
  }

  .dropdown {
    min-width: 12vw;
  }

  .btn-container {
    justify-content: flex-end;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
}

/* For tablets (1024px and below) */
@media (max-width: 1024px) {
  nav {
    padding: 0 2rem;
    height: auto;
  }

  .navbar {
    gap: 1.5rem;
    font-size: 0.95rem;
  }

  .dropdown {
    min-width: 14vw;
  }

  .btn {
    padding: 0.5rem 1.2rem;
  }
  
  .logo img {
    width: 120px;
  }
}

/* For mobile devices (768px and below) */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0.5rem;
  }

  .logo img {
    height: 10vh;
    width: 100px;
  }
  
  .navbar {
    width: 100%;
    margin: 1rem;
    gap: 1rem;
  }

  .dropdown {
    position: static;
    width: 100%;
    box-shadow: none;
    padding: 0.8rem;
    margin-top: 0.5rem;
  }

  .dropdown-container::after {
    display: none; /* Remove invisible bridge on mobile */
  }

  .btn-container {
    justify-content: center;
    margin-top: 1rem;
  }

  .btn {
    max-width: 250px;
    font-size: 1rem;
    text-align: center;
  }
}

/* For very small screens (480px and below) */
@media (max-width: 480px) {
  .navbar {
    gap: 0.5rem;
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .dropdown {
    width: 100%;
    font-size: 0.9rem;
  }
}
/* ---------------------------------------------------------------------------- */
/* Page 1 Styles */
.page1 {
   min-height: 88vh;
  padding: 4rem 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.page1 .img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: visible;
}

#bloom-img {
  height: 75vh;
  opacity: 0;
  transform-origin: center center;
  filter: blur(20px);
}

.glow {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, #0046FF 0%, transparent 70%);
  opacity: 0;
}


/* ========== PAGE-SPECIFIC ENHANCED TYPOGRAPHY ========== */

/* Page 1 (Hero Section) Typography */
.page1 h1 {
  color: #0046FF;
  font-size: clamp(2rem, 7vw, 5.5rem);
  text-align: left;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 2px 2px 4px #00FF00;
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.03em;
}

.page1 h2 {
  color: #A2D2FF;
  font-size: clamp(1.2rem, 4vw, 2rem);
  text-align: left;
  line-height: 1.3;
  font-weight: 400;
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  text-shadow: 1px 1px 2px #000;
  letter-spacing: -0.01em;
}

.page1 h3 {
  color: white;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  text-align: left;
  line-height: 1.4;
  font-weight: 300;
  margin-top: var(--spacing-xs);
  margin-bottom: var(--spacing-xs);
  text-shadow: 1px 1px 2px #000;
  letter-spacing: 0.01em;
}

/* Page 2 (Overview) Typography */
.page2 h1 {
  color: whitesmoke;
  font-size: clamp(2rem, 6vw, 5.5rem);
  text-align: center;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 2px 2px 4px #252424;
  margin-bottom: var(--spacing-xl);
  border-bottom: 2px solid #0f34a3;
  letter-spacing: -0.02em;
}

.page2 p {
  color: #A2D2FF;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  text-align: start;
  line-height: 1.7;
  font-weight: 300;
  text-shadow: 1px 1px 2px #252424;
  margin-top: var(--spacing-sm);
  letter-spacing: 0.01em;
  max-width: 65ch;
}

/* Page 3 (Tech Tracks) Typography */
.page3 h1 {
  color: whitesmoke;
  font-size: clamp(2rem, 5vw, 5rem);
  text-align: center;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 2px 2px 4px #252424;
  margin-bottom: var(--spacing-xxl);
  border-bottom: 2px solid #0f34a3;
  letter-spacing: -0.02em;
}

.track-card h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.track-card p {
  color: #cfdfff;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.7;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}
#countdown {
  display: flex;
  justify-content: flex-start; /* Center the boxes */
  gap: 20px; /* Gap between boxes */
  flex-wrap: wrap;
  margin-top: 50px;
}

.time-box {
  backdrop-filter: blur(10px); 
  border-radius: 15px;
  padding: 6px 20px;
  text-align: center;
  border: 2px solid #0f34a3;
  color: white;
  font-weight: 600;
  min-width: 100px;
  box-shadow: 0 4px 15px #0f34a3;
}

.time-box span {
  display: block;
  font-size: 50px;
  line-height: 1;
}

.time-box br {
  font-size: 18px;
}


/* -------------------------------------------------------------------------- */
/*======== Responsive Design ========= */

@media (min-width: 1024px) {
  .page1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 4rem 8rem;
    min-height: 90vh;
    gap: 3rem;
  }

  /* Left Side Text Section */
  .page1-content {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--spacing-sm);
  }

  .page1 h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.2;
  }

  .page1 h2 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    margin-top: 1rem;
  }

  .page1 h3 {
    font-size: 1.6rem;
    margin-top: 0.5rem;
  }

  /* Countdown Section */
  #countdown {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 25px;
    margin-top: 3rem;
  }

  .time-box {
    min-width: 110px;
    padding: 12px 25px;
    font-size: 1rem;
  }

  .time-box span {
    font-size: 3.2rem;
  }

  /* Right Side Image */
  .page1 .img-wrap {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #bloom-img {
    width: 100%;
    max-width: 40vw;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    filter: blur(10px);
  }
}



/* For tablets */
@media (max-width: 1024px){
  .page1 {
    padding: 3rem 4rem;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: auto;
  }

  .page1 h1 {
    font-size: clamp(2rem, 6vw, 4.5rem);
    text-align: center;
  }

  .page1 h2 {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    text-align: center;
  }

  .page1 h3 {
    font-size: 1.3rem;
    text-align: center;
  }

  #bloom-img {
      
  max-width: 60vw;
    height: auto;
    margin-top: 30px; 
  }

  #countdown {
    justify-content: center;
  }
}

/* For mobile devices */
@media (max-width: 768px) {
  .page1 {
    padding: 2rem;
    flex-direction: column;
    text-align: center;
    height: auto;
  }

  .page1 h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .page1 h2 {
    font-size: 1.2rem;
  }

  .page1 h3 {
    font-size: 1rem;
  }
#bloom-img {
      
  max-width: 60vw;
    height: auto;
    margin-top: 30px; 
  }

  #countdown {
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
  }

  .time-box {
    min-width: 80px;
    padding: 5px 10px;
  }

  .time-box span {
    font-size: 32px;
  }

  .time-box br {
    font-size: 14px;
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .page1 {
    padding: 1.5rem 1rem;
  }

  .page1 h1 {
    font-size: 1.8rem;
  }

  .page1 h2 {
    font-size: 1rem;
  }

  .page1 h3 {
    font-size: 0.9rem;
  }

  #bloom-img {
    display: none;
  }

  .time-box {
    min-width: 70px;
    padding: 5px 10px;
  }

  .time-box span {
    font-size: 25px;
  }
}
/* ---------------------------------------------------------------------------------- */

/* page2 */
.page2 {
  min-height: 100vh;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding: 2rem;
  padding-top: 5rem;
}

.page2 h1 {
  color: whitesmoke;
  font-size: clamp(2rem, 6vw, 5.5rem);
  text-align: center;
  line-height: 1.3;
  font-weight: 700;
  text-shadow: 2px 2px 4px #252424;
  margin-bottom: 25px;
  border-bottom: 2px solid #0f34a3;
}

.content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
}

/* Left collage image section */
.left {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  margin-top: 50px;
}

.collage-img {
  width: 100%;
  max-width: 500px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Hover zoom and glow */
.collage-img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(162, 210, 255, 0.5);
}

/* Right text section */
.right {
  width: 45%;
  text-align: start;
  padding: 2rem;
}

.page2 p {
  color: #A2D2FF;
  font-size: 22px;
  text-align: start;
  line-height: 2;
  font-weight: 300;
  text-shadow: 1px 1px 2px #252424;
  margin-top: 12px;
}

.page2 a {
  color: #A2D2FF;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page2 a:hover {
  color: #fff;
}

/* Scroll animation text setup */
.scroll-float {
  overflow: hidden;
}

.scroll-float-text {
  display: inline-block;
  font-size: clamp(1.6rem, 8vw, 10rem);
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
}

.char {
  display: inline-block;
}

/* ---------------- Responsive Design ---------------- */

/* Tablets */
@media (max-width: 1024px) {
  .content {
    flex-direction: column;
    align-items: center;
  }

  .left, .right {
    width: 80%;
  }

  .collage-img {
    max-width: 400px;
  }

  .page2 p {
    text-align: center;
    font-size: 17px;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .page2 {
    padding: 2rem 1rem;
  }

  .collage-img {
    max-width: 350px;
  }

  .page2 h1 {
    font-size: 2rem;
  }

  .page2 p {
    font-size: 16px;
    text-align: center;
  }

  .right {
    padding: 1rem;
  }
}

/* Small screens */
@media (max-width: 480px) {
  .collage-img {
    max-width: 280px;
    border-radius: 15px;
  }

  .page2 p {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* --------------------------------------------------------------------------------- */
/* -------- Page 3 (Tech Tracks Section) -------- */
.page3 {
  min-height: 100vh;
  color: #ffffff;
  text-align: center;
  padding: 4vw ;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page3 h1 {
  color: whitesmoke;
  font-size: clamp(2rem, 5vw, 5rem);
  text-align: center;
  line-height: 1.3;
  font-weight: 700;
  text-shadow: 2px 2px 4px #252424;
  margin-bottom: 80px;
  border-bottom: 2px solid #0f34a3;
  
}

/* Card container (responsive grid) */
.tracks-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
}

/* Individual cards */
.track-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 18px;
  padding: 2rem;
  text-align: left;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.08);
}

/* Hover animation */
.track-card:hover {
  transform: translateY(-8px);
  border-color: #00d9ff;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

/* Icons */
.track-card i {
  font-size: 2.5rem;
  color: #00d9ff;
  margin-bottom: 1rem;
  display: block;

}

/* Card titles */
.track-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

/* Card descriptions */
.track-card p {
  color: #cfdfff;
  font-size: 1rem;
  line-height: 1.6;
}

/* ------- Responsive Design ------- */
@media (max-width: 1024px) {
  .page3 {
    padding: 8vw 6vw;
  }

  .page3 h1 {
    font-size: 4vw;
  }
}

@media (max-width: 768px) {
  .page3 {
    padding: 10vw 5vw;
  }

  .page3 h1 {
    font-size: 6vw;
  }

  .track-card {
    padding: 1.5rem;
  }

  .track-card i {
    font-size: 2rem;
  }

  .track-card h3 {
    font-size: 1.2rem;
  }

  .track-card p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .page3 {
    padding: 12vw 4vw;
  }

  .page3 h1 {
    font-size: 7vw;
  }

  .track-card {
    padding: 1.2rem;
  }

  .track-card h3 {
    font-size: 1.1rem;
  }

  .track-card p {
    font-size: 0.9rem;
  }
}


/* footer */
footer {
  backdrop-filter: blur(20px);
   background:#09041c;
  border-top: 1px solid #120433;
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
    margin-top: auto;
  /* flex-direction: column; */
  /* gap: 1.2rem;  */
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.social-icons a i {
  font-size: 1.5rem;
  color: white;
  transition: color 0.3s ease;

}
footer a{
  text-decoration: none;
}
footer a:hover {
  box-shadow: 0 0 30px #1B56FD;
}


footer button {
  padding: 0.5rem ;
  border: none;
  border-radius: 0.6rem;
  text-align: center;
 background: linear-gradient(90deg, #1e56ff, #0f34a3);
  color: white;
  font-weight: 500;
  font-size: clamp(0.9rem, 1.1vw, 1.3rem);
  cursor: pointer;
  transition: 0.4s ease;
   box-shadow: 0 0 5px #1e56ff, 0 0 60px #0f34a3;
}

footer button i {
  font-size: 1rem;
  padding-right: 5px;
}


footer button:hover {
  box-shadow: 0 0 30px #064ACB;
}

footer p {
  color: white;
  margin: 0;
  font-size: 1rem;
}
/* --------------------------------------------------------------------------- */
/* ============ Responsive Design =========== */
/* ============ Responsive Styles ============ */

/* Tablets */
@media (max-width: 1024px) {
  footer {
    padding:  1rem;
    gap: 1.2rem;
  }

  .social-icons a i {
    font-size: 1.9rem;
  }

  footer button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }

  footer p {
    font-size: 0.85rem;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  footer {
    padding:  0.5rem;
    gap: 1rem;
  }

  .social-icons {
    gap: 1rem;
    justify-content: center;
  }

  .social-icons a i {
    font-size: 1.6rem;
  }

  footer button {
    font-size: 0.95rem;
  }

  footer p {
    font-size: 0.8rem;
    margin-left: 20px;
  }
}

/* Small Mobiles */
@media (max-width: 480px) {
  footer {
    padding: 1.2rem 0.5rem;
    gap: 0.8rem;
  }

  .social-icons {
    gap: 0.8rem;
  }

  .social-icons a i {
    font-size: 1.4rem;
  }

  footer button {
    width: 90%;
    padding: 0.5rem;
    font-size: 0.9rem;
  }

  footer p {
    font-size: 0.75rem;
  }
}

/* ---------------------------------------------------------------------------------------- */
/* SPEAKER PAGE */

.speakers-section {
  background: radial-gradient(circle at center, #001223 0%, #07001b 40%, #000010 100%);
  padding: 4rem 10rem;
  text-align: center;
}

.speakers-section h1 {
   color: whitesmoke;
  width: 100%;
  font-size: clamp(2rem, 6vw, 3.6rem);
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-sm);
  font-weight: 600;
  position: relative;
  display: inline-block;
  align-items: center;
  line-height: 1.2;
  letter-spacing: -0.02em;
 border-bottom: 1px solid #0f34a3;
}

.speaker-subtitle {
  color: #bbb;
  margin-bottom: var(--spacing-xxl);
  line-height: 1.7;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.01em;
}



.speakers-container {
  display: flex;
  justify-content: center;
 align-items: stretch; 
  flex-wrap: wrap;
  gap: 2.5rem;
  
}

.speaker-card {
border: 1px solid #D4F6FF;
  
  border-radius: 20px;
  width: 23vw;
  height: clamp(22vh,58vh,80vh);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  
}

.speaker-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px #5fbeed, 0 0 50px #0f34a3 ;
}

.speaker-card img {
  width: 22vh;
  height: 22vh;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  box-shadow: 0 0 10px #D4F6FF;
}


.speaker-card h2 {
  color: #fff;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  margin-bottom: var(--spacing-xs);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.speaker-card h3 {
  color: whitesmoke;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
  line-height: 1.4;
}

.speaker-card p {
  color: #A2D2FF;
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
  max-width: 100%;
}

/* Social Icons */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-links a i {
  color: #A2D2FF;
  font-size: 1.5rem;
  transition: 0.3s ease;
}
.social-links a{
  text-decoration: none;

}

.social-links a:hover i {
  color: #5fbeed;
  filter: drop-shadow(0 0 8px #5fbeed);
}
/* --------------------------------------------------------------------------- */
/* ============ Responsive Design =========== */

/* Tablets (1024px and below) */
@media (max-width: 1024px) {
  .speakers-section {
    padding: 3rem 5rem;
    text-align: center;
  }

  .speakers-container {
    justify-content: center;
    gap: 2rem;
  }

  .speaker-card {
    width: 40vw;
    height: auto;
    padding: 1.5rem;
  }

  .speaker-card img {
    width: 18vh;
    height: 18vh;
  }

  .speaker-card h2 {
    font-size: 1.3rem;
  }

  .speaker-card h3 {
    font-size: 0.95rem;
  }

  .speaker-card p {
    font-size: 0.9rem;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .speakers-section {
    padding: 2.5rem 2rem;
    text-align: center;
  }

  .speakers-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .speaker-card {
    width: 85vw;
    height: auto;
    padding: 1.2rem;
  }

  .speaker-card img {
    width: 16vh;
    height: 16vh;
  }

  .speaker-card h2 {
    font-size: 1.2rem;
  }

  .speaker-card h3 {
    font-size: 0.9rem;
  }

  .speaker-card p {
    font-size: 0.85rem;
  }

  .social-links a i {
    font-size: 1.2rem;
  }
}

/* Very Small Screens (480px and below) */
@media (max-width: 480px) {
  .speakers-section {
    padding: 2rem 1rem;
  }

  .speaker-card {
    width: 90vw;
    padding: 1rem;
  }

  .speaker-card img {
    width: 14vh;
    height: 14vh;
  }

  .speaker-card h2 {
    font-size: 1.1rem;
  }

  .speaker-card h3 {
    font-size: 0.85rem;
  }

  .speaker-card p {
    font-size: 0.8rem;
  }

  .social-links a i {
    font-size: 1rem;
  }
}
/* ---------------------------------------------------------------------------------------------- */

/* TEAM PAGE  */
.team-section {
  background: radial-gradient(circle at  70%, #0D1164 0%, #07001b 40%, #000010 100%);
  padding: 4rem 10rem;
  text-align: center;
}

.team-section h1 {
  color: whitesmoke;
  width: 100%;
  font-size: clamp(2rem, 6vw, 3.6rem);
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-sm);
  font-weight: 600;
  position: relative;
  display: inline-block;
  align-items: center;
  line-height: 1.2;
  letter-spacing: -0.02em;
   border-bottom: 1px solid #0f34a3;
}

.team-subtitle {
  color: #bbb;
  margin-bottom: var(--spacing-xxl);
  line-height: 1.7;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.01em;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20vw, 1fr));
  gap: 3rem;
  justify-items: center;
}

.team-member {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid #5fbeed;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: 0.3s ease;
 


}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px #5fbeed, 0 0 40px #5fbeed;
  border-color:  #5fbeed;
}


.team-member img {
  width:clamp(180px, 18vw, 280px);

  height:clamp(180px, 18vw, 280px);

  border-radius: 5%;
  border: 3px solid #5fbeed;
  object-fit: cover;
  margin-bottom: 1.2rem;
  transition: 0.3s;
}

.team-member:hover .team-member img {
  border-color: #5fbeed;
  filter: brightness(1.15);
}

.team-member h2 {
  color: #A2D2FF;
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  margin: var(--spacing-sm) 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.role {
  color: #bbb;
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  margin-bottom: var(--spacing-md);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.tags span {
  background: #91C8E4;
  border: 1px solid #093FB4;
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
  color:#093FB4;
  font-size: 0.9rem;
}



.social-links a:hover {
  color: #5fbeed;
  transform: scale(1.2);
} 
/* ------------------------------------------------------------------------- */
/* ===== Responsive Design ===== */

/* Tablets (1024px and below) */
@media (max-width: 1024px) {
  .team-section {
    padding: 3rem 5rem;
    text-align: center;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(40vw, 1fr));
    gap: 2.5rem;
  }

  .team-member {
    padding: 1.5rem;
  }

  .team-member img {
    width: clamp(150px, 25vw, 220px);
    height: clamp(150px, 25vw, 220px);
  }

  .team-member h2 {
    font-size: 1.3rem;
  }

  .role {
    font-size: 0.9rem;
  }

  .tags span {
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .team-section {
    padding: 2.5rem 2rem;
    text-align: center;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-member {
    width: 85vw;
    padding: 1.2rem;
  }

  .team-member img {
    width: clamp(140px, 60vw, 200px);
    height: clamp(140px, 60vw, 200px);
  }

  .team-member h2 {
    font-size: 1.2rem;
  }

  .role {
    font-size: 0.85rem;
  }

  .tags span {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
  }
}

/* Very Small Screens (480px and below) */
@media (max-width: 480px) {
  .team-section {
    padding: 2rem 1rem;
  }

  .team-member {
    width: 90vw;
    padding: 1rem;
  }

  .team-member img {
    width: clamp(120px, 70vw, 180px);
    height: clamp(120px, 70vw, 180px);
  }

  .team-member h2 {
    font-size: 1.1rem;
  }

  .role {
    font-size: 0.8rem;
  }

  .tags span {
    font-size: 0.75rem;
  }
}



/* ---------------------------------------------------------------------------------------- */
/* AGENDA PAGE */
.agenda-section { 
  background: radial-gradient(circle at  70%, #0D1164 0%, #07001b 40%, #000010 100%); background: radial-gradient(circle at center, #001223 0%, #07001b 40%, #000010 100%);
 padding: 4rem 10rem;
  
}

.agenda-section h1 {
  color: whitesmoke;
  width: 100%;
  font-size: clamp(2rem, 6vw, 3.6rem);
  margin-bottom: var(--spacing-xxl);
  padding-bottom: var(--spacing-sm);
  font-weight: 600;
  position: relative;
  display: inline-block;
  align-items: center;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.02em;
   border-bottom: 1px solid #0f34a3;
}


/* === AGENDA TABS === */
.agenda-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  background: rgba(0, 10, 40, 0.6);
  border: 1px solid #0f34a3;
  border-radius: 5px;
  overflow: hidden; 
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 2px;
}

.agenda-tab {
  flex: 1;
  min-width: 200px;
  text-align: center;
  color: white;
  padding: 0.1rem;
  cursor: pointer;
  transition: 0.3s ease;
  background: transparent;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.agenda-tab:last-child {
  border-right: none; 
}

.agenda-tab.active {
  background: linear-gradient(90deg, #0f34a3, #1e56ff);
  border: none;
}

.agenda-tab:hover {
  background: linear-gradient(90deg, #0f34a3, #1e56ff);
  transform: scale(1.03);
}

.agenda-tab  {
  display: block;
  font-weight: 500;
  font-size: 1rem;
  color: #00d9ff;
}

.agenda-tab .tab-title {
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
  margin-top: 4px;
}

.agenda-tab .tab-date {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
  .agenda-tabs {
    width: 90%;
  }
  .agenda-tab {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .agenda-tab:last-child {
    border-bottom: none;
  }
}

/* === AGENDA CARDS === */
.agenda-card {
  display: flex;
  align-items: center;
  border: 2px solid #132046;
  padding: 1rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  gap: 1.5rem;
  transition: all 0.3s ease;
  background: rgba(0, 10, 40, 0.6);
 
}

.agenda-card:hover {
  border-color: #1e56ff;
  box-shadow: 0 0 25px #1e56ff, 0 0 40px #0f34a3;
  transform: translateY(-3px);
}


.agenda-time {
  background: linear-gradient(180deg, #0f34a3, #1e56ff);
  color: #fff;
  text-align: center;
  min-width: 150px;
  border-radius: 10px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 0 15px rgba(15, 52, 163, 0.4);
}

.agenda-time span {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: #e0f7ff;
}

.agenda-time i {
  color: #00d9ff;
  margin-right: 5px;
}


.agenda-info {
  flex: 1;
  text-align: center;
}

.agenda-info h2.title {
  color: #ffffff;
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.agenda-info p {
  color: #ccc;
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  margin: var(--spacing-xs) 0;
  line-height: 1.6;
}

.agenda-info .location i {
  color: #00d9ff;
  margin-right: 5px;
}

.agenda-info .desc {
  color: #A2D2FF;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  margin-top: var(--spacing-xs);
  line-height: 1.6;
  text-align: center;
  max-width: 100%;
}

/* === Responsive Design === */
@media (max-width: 700px) {
  .agenda-card {

    text-align: center;
  }

  .agenda-date {
    min-width: unset;
    width: 100%;
    margin-bottom: 1rem;
  }

  .agenda-info {
    text-align: center;
  }
}


/* Tablets (1024px and below) */
@media (max-width: 1024px) {
  .agenda-section {
    padding: 3rem 5rem;
    text-align: center;
  }

  .agenda-tabs {
    justify-content: center;
    gap: 0.8rem;
  }

  .agenda-tab {
    padding: 1rem 2rem;
    min-width: 160px;
  }

  .agenda-tab .tab-title {
    font-size: 1.2rem;
  }

  .agenda-tab  {
    font-size: 1rem;
  }

  .agenda-tab .tab-date {
    font-size: 0.8rem;
  }

  .agenda-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.2rem;
  }

  .agenda-date {
    width: 60px;
    margin: 0 0 1rem 0;
  }

  .agenda-info h2 {
    font-size: 1.2rem;
  }

  .agenda-info p,
  .agenda-info .desc {
    font-size: 0.9rem;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .agenda-section {
    padding: 2.5rem 2rem;
  }

  .agenda-tabs {
  
    align-items: center;
    gap: 1rem;
  }

  .agenda-tab {
    width: 80%;
    padding: 1rem;
    min-width: auto;
  }

  .agenda-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1rem;
  }

  .agenda-date {
    width: 55px;
    padding: 8px 0;
    margin: 0;
  }

  .agenda-date .day {
    font-size: 1.6rem;
  }

  .agenda-date .month {
    font-size: 0.8rem;
  }

  .agenda-info h2 {
    font-size: 1.1rem;
  }

  .agenda-info p {
    font-size: 0.85rem;
  }

  .agenda-info .desc {
    font-size: 0.8rem;
  }
}

/* Very Small Screens (480px and below) */
@media (max-width: 480px) {
  .agenda-section {
    padding: 2rem 1rem;
  }

  .agenda-tab {
    width: 90%;
    font-size: 0.9rem;
    padding: 0.8rem;
  }

  .agenda-card {
    padding: 0.8rem;
    gap: 0.8rem;
  }

  .agenda-date {
    width: 50px;
    padding: 6px 0;
  }

  .agenda-date .day {
    font-size: 1.4rem;
  }

  .agenda-date .month {
    font-size: 0.75rem;
  }

  .agenda-info h2 {
    font-size: 1rem;
  }

  .agenda-info p,
  .agenda-info .desc {
    font-size: 0.75rem;
  }
}

/* ----------------------------------------------------------------------------- */
/* FAQ SECTION */
.faq-section {
 background: radial-gradient(circle at  70%, #0D1164 0%, #07001b 40%, #000010 100%);
  padding: 4rem 10rem;
  text-align: center;
}

.faq-section h1 {
color: whitesmoke;
  width: 100%;
  font-size: clamp(2rem, 6vw, 3.6rem);
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-sm);
  font-weight: 600;
  position: relative;
  display: inline-block;
  align-items: center;
  line-height: 1.2;
  letter-spacing: -0.02em;
 border-bottom: 1px solid #0f34a3;
}

.faq-subtitle {
  color: #bbb;
  margin-bottom: var(--spacing-xxl);
  line-height: 1.7;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.01em;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.faq-item {
  background: #0a1026;
  border: 1px solid #5fbeed;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 10px #001BB7;
  transition: 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 0 25px #5fbeed, 0 0 35px #5fbeed;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #A2D2FF;
  font-size: 1.2rem;
  text-align: left;
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #000033;
  
  padding: 0 2rem;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: #A2D2FF;
  line-height: 1.6;
  transition: all 0.4s ease;
}

.faq-answer p {
  margin: var(--spacing-lg) 0;
  color: #A2D2FF;
  line-height: 1.7;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  letter-spacing: 0.01em;
}

/* Summary (the clickable question) */
.faq-item summary {
  color: #A2D2FF;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  position: relative;
}

/* Custom + and – icons using ::after */
.faq-item summary::after {
  content: "+";
  font-size: 2rem;
  color: #5fbeed;
  transition: transform 0.3s ease;
}

/* When open, change + to – */
.faq-item[open] summary::after {
  content: "–";
  transform: rotate(180deg);
  color: #5fbeed;
}


/* When open, make visible */
.faq-item[open] .faq-answer {
  padding: 1rem 2rem 2rem;
  max-height: 300px;
  opacity: 1;


}
/* ----------------------------------------------------------------------- */
/* ===== Responsive Design ===== */

/* Tablets (1024px and below) */
@media (max-width: 1024px) {
  .faq-section {
    padding: 3rem 5rem;
    text-align: center;
  }

  .faq-section h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
  }

  .faq-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  .faq-question,
  .faq-item summary {
    font-size: 1.1rem;
    padding: 1.2rem 1.5rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .faq-section {
    padding: 2.5rem 2rem;
  }

  .faq-section h1 {
    font-size: 2rem;
    text-align: center;
  }

  .faq-subtitle {
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .faq-container {
    gap: 2rem;
  }

  .faq-item {
    border-radius: 0.8rem;
  }

  .faq-item summary {
    font-size: 1rem;
    padding: 1rem 1.2rem;
  }

  .faq-item summary::after {
    font-size: 1.6rem;
  }

  .faq-answer {
    padding: 0 1.2rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }
}

/* Very Small Screens (480px and below) */
@media (max-width: 480px) {
  .faq-section {
    padding: 2rem 1rem;
  }

  .faq-section h1 {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
  }

  .faq-subtitle {
    font-size: 0.85rem;
    margin-bottom: 2rem;
  }

  .faq-item summary {
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
  }

  .faq-item summary::after {
    font-size: 1.4rem;
  }

  .faq-answer {
    padding: 0.8rem 1rem 1.2rem;
  }

  .faq-answer p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
}

/* ------------------------------------------------------------------------ */
/* CONDUCT PAGE */
.conduct-section {
  background: radial-gradient(circle at 70%, #0d1164 0%, #07001b 40%, #000010 100%);
  padding: 4rem 10rem;
  color: whitesmoke;
}

.conduct-section h1 {
color: whitesmoke;
  width: 100%;
  font-size: clamp(2rem, 6vw, 3.6rem);
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-sm);
  font-weight: 600;
  position: relative;
  display: inline-block;
  align-items:center;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.02em;
   border-bottom: 1px solid #0f34a3;
}

.conduct-subtitle {
  color: #bbb;
  margin-bottom: var(--spacing-xxl);
  line-height: 1.7;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.01em;
}

.conduct-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  border-left: 2px solid rgba(95, 190, 237, 0.4);
  padding-left: 2rem;
}

.conduct-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.conduct-item .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem; 
}

.conduct-item::before {
  content: "";
  position: absolute;
  left: -2.6rem;
  top: 0.6rem;
  width: 1rem;
  height: 1rem;
  background: #00d9ff;
  border-radius: 50%;
  box-shadow: 0 0 15px #00d9ff;
}


.content h2 {
  color: #5fbeed;
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  margin-bottom: var(--spacing-sm);
  padding-right: var(--spacing-sm);
   text-align: start;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.content p {
  color: rgba(245, 245, 245, 0.9);
  line-height: 1.7;
  text-align: start;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  letter-spacing: 0.01em;
  margin-bottom: var(--spacing-sm);
}

.content a {
  color: #00ffaa;
  text-decoration: none;
}

.content a:hover {
  text-decoration: underline;
}


/* Responsive */
@media (max-width: 768px) {
  .conduct-section {
    padding: 3rem 2rem;
  }

  .conduct-timeline {
    padding-left: 1.5rem;
  }

  .conduct-item {
    flex-direction: column;
    gap: 0.5rem;
  }
  .conduct-item::before{
    left: -2.1rem;
   
  }
}


/* ------------------------------------------------------------------------------- */
/* Blog Page */
.blog-section {
    background: radial-gradient(circle at  70%, #0D1164 0%, #07001b 40%, #000010 100%);
    padding: 4rem 10rem;
    text-align: center;
}

/* Header */
.blog-section h1 {
    color: whitesmoke;
    width: 100%;
    font-size: clamp(2rem, 6vw, 3.6rem);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-sm);
    font-weight: 600;
    position: relative;
    display: inline-block;
    align-items: center;
    line-height: 1.2;
    letter-spacing: -0.02em;
    border-bottom: 1px solid #0f34a3;
}

.blog-subtitle {
    color: #bbb;
    margin-bottom: var(--spacing-xxl);
    line-height: 1.7;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.01em;
}

.blog-header {
    text-align: center;
    padding: 80px 20px;
}

.blog-header h1 {
    font-size: 2.8rem;
    color: #5fbeed;
}

.blog-header p {
    color: #ccc;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Blog grid container */
.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

/* Blog card styling */
.blog-card {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid #5fbeed;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px #5fbeed, 0 0 50px #0f34a3;
}

/* Image styling - changed to maintain aspect ratio */
.blog-card img {
    width: 100%;
    height: auto;          /* Changed from fixed height */
    aspect-ratio: 16 / 9;  /* Maintain 16:9 ratio for nice scaling */
    object-fit: cover;
    object-position: center;
}

/* Blog content padding */
.blog-content {
    padding: 25px;
}

/* Title */
.blog-content h3 {
    color: #5fbeed;
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    margin-bottom: var(--spacing-sm);
    word-wrap: break-word; /* Ensures long titles wrap */
    line-height: 1.3;
    letter-spacing: -0.01em;
}

/* Paragraph */
.blog-content p {
    color: whitesmoke;
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.01em;
}

/* Meta info layout */
.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: gray;
    margin-top: 15px;
}

/* Read more link */
.read-more {
    display: inline-block;
    margin-top: 20px;
    color: #A2D2FF;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.read-more:hover {
    color: #fff;
    text-decoration: underline;
}

/* ------------------------------------- */
/* ===== Responsive Design ===== */

/* Tablets (1024px and below) */
@media (max-width: 1024px) {
    .blog-section {
        padding: 3rem 4rem; /* Slightly reduced padding */
        text-align: center;
    }

    .blog-section h1 {
        font-size: clamp(1.8rem, 5vw, 3rem);
    }

    .blog-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .blog-container {
        gap: 2rem;
        /* Keep grid columns auto-fit for flexibility */
    }

    .blog-content h3 {
        font-size: 1.3rem;
    }

    .blog-content p {
        font-size: 0.95rem;
    }

    .blog-card img {
        aspect-ratio: 16 / 9;
        height: auto;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .blog-section {
        padding: 2.5rem 2rem;
    }

    .blog-section h1 {
        text-align: center;
        font-size: 2.2rem;
    }

    .blog-subtitle {
        text-align: center;
        font-size: 0.95rem;
    }

    .blog-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-card {
        width: 100%;
    }

    /* Image scaling */
    .blog-card img {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .blog-content h3 {
        font-size: 1.2rem;
    }

    .blog-content p {
        font-size: 0.9rem;
    }

    /* Meta stacked vertically */
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
        font-size: 0.85rem;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .blog-section {
        padding: 2rem 1rem;
    }

    .blog-section h1 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }

    .blog-subtitle {
        font-size: 0.85rem;
        margin-bottom: 2rem;
    }

    /* Image scaling */
    .blog-card img {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .blog-content {
        padding: 1rem;
    }

    .blog-content h3 {
        font-size: 1.1rem;
    }

    .blog-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .read-more {
        font-size: 0.9rem;
    }

    /* More spacing for meta */
    .blog-meta {
        gap: 0.4rem;
    }
}

/* -------------------------------------------------------------- */
/* ========== RESEARCH PAGE - COMING SOON ========== */

.research-section {
  background: radial-gradient(circle at 70%, #0D1164 0%, #07001b 40%, #000010 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl) 0;
}

.research-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--spacing-xl);
}

/* ========== COMING SOON CONTENT ========== */
.coming-soon-content {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(95, 190, 237, 0.2);
  border-radius: 24px;
  padding: var(--spacing-xxl);
  position: relative;
  overflow: hidden;
}

.coming-soon-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(95, 190, 237, 0.1), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.coming-soon-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #1e56ff, #00d9ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-xl);
  position: relative;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.coming-soon-icon i {
  font-size: 3.5rem;
  color: white;
}

.coming-soon-content h1 {
  color: whitesmoke;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff, #A2D2FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}

.coming-soon-badge {
  display: inline-block;
  background: linear-gradient(135deg, #00d9ff, #5fbeed);
  color: #000010;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-xl);
  position: relative;
  z-index: 2;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.coming-soon-description {
  color: #A2D2FF;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.coming-soon-cta {
  position: relative;
  z-index: 2;
}

.notify-btn {
  background: linear-gradient(135deg, #1e56ff, #0f34a3);
  color: white;
  border: none;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: 50px;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(30, 86, 255, 0.4);
}

.notify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 86, 255, 0.6);
  background: linear-gradient(135deg, #2d65ff, #1e43b3);
}

.notify-btn i {
  font-size: 1.2rem;
}

/* ========== RESPONSIVE DESIGN ========== */

@media (max-width: 768px) {
  .research-container {
    padding: 0 var(--spacing-md);
  }
  
  .coming-soon-content {
    padding: var(--spacing-xl);
  }
  
  .coming-soon-icon {
    width: 100px;
    height: 100px;
  }
  
  .coming-soon-icon i {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .research-container {
    padding: 0 var(--spacing-sm);
  }
  
  .coming-soon-content {
    padding: var(--spacing-lg);
  }
  
  .coming-soon-icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--spacing-lg);
  }
  
  .coming-soon-icon i {
    font-size: 2.5rem;
  }
  
  .notify-btn {
    width: 100%;
    justify-content: center;
  }
}



