/* ===============================
   FUEL ONE - COMPLETE CSS STYLESHEET
   Modern, Responsive Design
   =============================== */

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rubik', sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #333;
  text-align: center;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding-bottom: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #ffd700;
  animation: blink-border 2s infinite;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
}

.logo:hover {
  transform: scale(1.1) rotate(5deg);
  border-color: #fff;
}

@keyframes blink-border {
  0% { 
    box-shadow: 0 0 15px #ffd700, 0 0 30px #ffd700; 
    border-color: #ffd700;
  }
  50% { 
    box-shadow: 0 0 25px #fff, 0 0 40px #fff; 
    border-color: #fff;
  }
  100% { 
    box-shadow: 0 0 15px #ffd700, 0 0 30px #ffd700; 
    border-color: #ffd700;
  }
}

.site-title {
  font-family: 'Righteous', cursive;
  font-size: 3rem;
  background: linear-gradient(45deg, #ffd700, #fff, #ffd700);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-text 3s ease infinite;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes gradient-text {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.marquee-text {
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
  background-size: 300% 300%;
  animation: gradient-bg 4s ease infinite;
  color: white;
  font-style: italic;
  font-weight: 600;
  padding: 0.8rem;
  margin: 1rem 0;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-size: 1.1rem;
  letter-spacing: 1px;
}

@keyframes gradient-bg {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

nav {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  margin: 0 1rem 1rem 1rem;
  padding: 0.5rem;
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding: 1rem 0;
}

nav ul li {
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

nav ul li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

nav ul li:hover::before {
  left: 100%;
}

nav ul li:hover {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1e3c72;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

nav ul li.active {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1e3c72;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* ===== MAIN CONTENT SECTIONS ===== */
.content-section {
  display: none;
  padding: 3rem 2rem;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.95);
  margin: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
  background-size: 300% 300%;
  animation: gradient-bg 3s ease infinite;
}

.content-section.active {
  display: block;
  animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hidden {
  display: none;
}

/* ===== VIDEO PLAYER ===== */
.video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
}

.video-container video {
  width: 100%;
  height: auto;
  max-height: 450px;
  border-radius: 15px;
  object-fit: cover;
  display: block;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.video-container video:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.video-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem 2rem;
  border-radius: 15px;
  backdrop-filter: blur(5px);
}

/* ===== STORY SECTION ===== */
.story-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 5rem 2rem;
  position: relative;
}

.story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.story-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: #2c3e50;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.story-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
  border-radius: 2px;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.story-card {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 10px 20px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.4s ease;
  transform-style: preserve-3d;
  animation: slideInUp 0.6s ease;
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.story-card:hover::before {
  opacity: 1;
}

.story-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.15),
    0 15px 30px rgba(0, 0, 0, 0.1);
}

.story-card h3 {
  color: #2c3e50;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea, #764ba2);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.story-card p,
.story-card ul {
  color: #5a6c7d;
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: left;
}

.story-card ul {
  list-style: none;
  padding-left: 0;
}

.story-card ul li {
  position: relative;
  padding-left: 1.5rem;
  margin: 0.8rem 0;
}

.story-card ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
}

.founder-sign {
  text-align: right;
  margin-top: 3rem;
  font-style: italic;
  color: #667eea;
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.tagline {
  text-align: center;
  font-size: 1.3rem;
  color: #2c3e50;
  margin-top: 1.5rem;
  font-weight: 600;
  background: linear-gradient(135deg, #667eea, #764ba2);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 2;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FOUNDER SECTION ===== */
.founder-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 5rem 2rem;
  position: relative;
}

.founder-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="%23667eea" opacity="0.1"/><circle cx="90" cy="90" r="1" fill="%23764ba2" opacity="0.1"/><circle cx="50" cy="30" r="1" fill="%23667eea" opacity="0.1"/></svg>');
  opacity: 0.5;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: #2c3e50;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 2;
}

.founder-card.upgraded {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.founder-left {
  flex: 1 1 350px;
  text-align: center;
}

.founder-photo-frame {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-radius: 25px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  animation: slideInLeft 0.8s ease;
  position: relative;
  overflow: hidden;
}

.founder-photo-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
}

.founder-photo-frame:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.founder-photo-frame img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 4px solid #667eea;
  transition: all 0.3s ease;
}

.founder-photo-frame:hover img {
  border-color: #764ba2;
  transform: scale(1.05);
}

.founder-name {
  margin-top: 1.5rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: #2c3e50;
  background: linear-gradient(135deg, #667eea, #764ba2);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.founder-role {
  font-style: italic;
  color: #5a6c7d;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.founder-right {
  flex: 2 1 600px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  animation: slideInRight 0.8s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #667eea, #764ba2);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #ffffff, #f0f8ff);
}

.info-card h4 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea, #764ba2);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.info-card p,
.info-card ul {
  color: #5a6c7d;
  font-size: 1.05rem;
  line-height: 1.7;
}

.info-card ul {
  list-style: none;
  padding-left: 0;
}

.info-card ul li {
  position: relative;
  padding-left: 1.5rem;
  margin: 0.8rem 0;
}

.info-card ul li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #667eea;
  font-size: 0.8rem;
}

.org-info {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 15px;
  color: white;
  text-align: center;
}

.org-info p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.org-info a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.org-info a:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 5rem 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="60" r="1.5" fill="%23ffffff" opacity="0.1"/></svg>');
  opacity: 0.3;
}

.contact-intro {
  max-width: 800px;
  margin: 0 auto 3rem auto;
  font-size: 1.2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  text-align: center;
  padding: 2rem;
  transition: all 0.4s ease;
  animation: fadeInScale 0.6s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.contact-card:hover::before {
  left: 100%;
}

.contact-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-card i {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.contact-card:hover i {
  transform: scale(1.2) rotate(5deg);
  color: #fff;
}

.contact-card h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.contact-card a {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
}

.map-box {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.map-box iframe {
  filter: grayscale(20%) contrast(1.1);
  transition: filter 0.3s ease;
}

.map-box:hover iframe {
  filter: grayscale(0%) contrast(1.2);
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ===== PRIVACY POLICY SECTION ===== */
.privacy-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 5rem 2rem;
  position: relative;
  color: #333;
}

.privacy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="15" cy="15" r="1" fill="%23667eea" opacity="0.1"/><circle cx="85" cy="85" r="1" fill="%23764ba2" opacity="0.1"/><circle cx="50" cy="35" r="1" fill="%23667eea" opacity="0.1"/></svg>');
  opacity: 0.5;
}

.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.privacy-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.effective-date {
  font-size: 1.1rem;
  color: #667eea;
  font-weight: 600;
  margin-bottom: 1rem;
}

.intro-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5a6c7d;
  text-align: left;
}

.intro-text a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
}

.intro-text a:hover {
  text-decoration: underline;
}

.privacy-sections {
  display: grid;
  gap: 2rem;
}

.privacy-card {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  animation: slideInUp 0.6s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.privacy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #667eea, #764ba2);
}

.privacy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  background: linear-gradient(145deg, #ffffff, #f0f8ff);
}

.privacy-card h3 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea, #764ba2);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.privacy-card p {
  color: #5a6c7d;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.privacy-card ul {
  list-style: none;
  padding-left: 0;
}

.privacy-card ul li {
  position: relative;
  padding-left: 1.5rem;
  margin: 0.8rem 0;
  color: #5a6c7d;
  font-size: 1.05rem;
  line-height: 1.7;
}

.privacy-card ul li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #667eea;
  font-size: 0.8rem;
}

.info-list h4 {
  color: #667eea;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem 0;
}

.info-list h4:first-child {
  margin-top: 0;
}

.sharing-info h4 {
  color: #667eea;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem 0;
}

.sharing-info h4:first-child {
  margin-top: 0;
}

.note {
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  border: 1px solid #ffd32a;
  border-radius: 10px;
  padding: 1rem;
  margin-top: 1.5rem;
}

.note p {
  margin: 0;
  color: #856404;
  font-size: 0.95rem;
}

.contact-card .contact-details {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 15px;
  padding: 1.5rem;
  color: white;
  margin-top: 1rem;
}

.contact-details p {
  margin: 0.5rem 0;
  color: white;
}

.contact-details a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
}

.contact-details a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Responsive Design for Privacy Section */
@media (max-width: 768px) {
  .privacy-section {
    padding: 3rem 1rem;
  }
  
  .privacy-header {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .privacy-card {
    padding: 1.5rem;
  }
  
  .privacy-card h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .privacy-section {
    padding: 2rem 0.5rem;
  }
  
  .privacy-header {
    padding: 1rem;
  }
  
  .privacy-card {
    padding: 1.2rem;
  }
}

/* ===== MODAL & ALERT ===== */
.custom-alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.alert-box {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border: none;
  padding: 3rem 2rem;
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 450px;
  animation: alertPopUp 0.6s ease forwards;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.alert-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #fff, #ffd700);
  background-size: 200% 200%;
  animation: gradient-bg 2s ease infinite;
}

.alert-box h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.alert-box p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.alert-box button {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border: none;
  color: #333;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.alert-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #ffed4e, #ffd700);
}

@keyframes alertPopUp {
  from {
    transform: scale(0.5) rotate(-5deg);
    opacity: 0;
  }
  to {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #fff, #ffd700);
  background-size: 200% 200%;
  animation: gradient-bg 3s ease infinite;
}

footer p {
  margin: 0.5rem 0;
  font-weight: 500;
}

footer p:first-child {
  font-size: 1.1rem;
  font-weight: 600;
}

footer p:last-child {
  color: #ffd700;
  font-weight: 600;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .site-title {
    font-size: 2.5rem;
  }
  
  .video-overlay-text {
    font-size: 1.8rem;
    padding: 0.8rem 1.5rem;
  }
  
  .story-title, .section-title {
    font-size: 2.2rem;
  }
  
  .founder-photo-frame img {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .logo {
    width: 80px;
    height: 80px;
  }
  
  .site-title {
    font-size: 2rem;
  }
  
  .marquee-text {
    font-size: 1rem;
    padding: 0.6rem;
    margin: 0.5rem 1rem;
  }
  
  nav ul {
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem;
  }
  
  nav ul li {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }
  
  .content-section {
    margin: 1rem;
    padding: 2rem 1.5rem;
  }
  
  .video-container {
    padding: 0.5rem;
  }
  
  .video-container video {
    max-height: 300px;
  }
  
  .video-overlay-text {
    font-size: 1.4rem;
    padding: 0.6rem 1rem;
  }
  
  .story-title, .section-title {
    font-size: 1.8rem;
  }
  
  .story-section,
  .founder-section,
  .contact-section {
    padding: 3rem 1rem;
  }
  
  .founder-card.upgraded {
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
  }
  
  .founder-left, .founder-right {
    width: 100%;
  }
  
  .founder-photo-frame {
    padding: 1.5rem;
  }
  
  .founder-photo-frame img {
    width: 180px;
    height: 180px;
  }
  
  .info-card {
    padding: 1.5rem;
  }
  
  .contact-cards {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .header-top {
    padding: 0.8rem;
  }
  
  .logo {
    width: 60px;
    height: 60px;
  }
  
  .site-title {
    font-size: 1.6rem;
  }
  
  .marquee-text {
    font-size: 0.9rem;
    padding: 0.5rem;
  }
  
  nav {
    margin: 0 0.5rem 0.5rem 0.5rem;
  }
  
  nav ul li {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  
  .content-section {
    margin: 0.5rem;
    padding: 1.5rem 1rem;
  }
  
  .video-container video {
    max-height: 250px;
  }
  
  .video-overlay-text {
    font-size: 1.1rem;
    padding: 0.5rem 0.8rem;
  }
  
  .story-title, .section-title {
    font-size: 1.5rem;
  }
  
  .story-section,
  .founder-section,
  .contact-section {
    padding: 2rem 0.5rem;
  }
  
  .card-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .story-card {
    padding: 1.5rem;
  }
  
  .founder-card.upgraded {
    padding: 1.5rem;
  }
  
  .founder-photo-frame {
    padding: 1rem;
  }
  
  .founder-photo-frame img {
    width: 150px;
    height: 150px;
  }
  
  .info-card {
    padding: 1.2rem;
  }
  
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-card {
    padding: 1.2rem;
  }
  
  .contact-card i {
    font-size: 2rem;
  }
  
  .alert-box {
    width: 95%;
    padding: 2rem 1.5rem;
  }
  
  .alert-box h3 {
    font-size: 1.4rem;
  }
  
  .alert-box p {
    font-size: 1rem;
  }
  
  .alert-box button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 320px) {
  .site-title {
    font-size: 1.4rem;
  }
  
  .story-title, .section-title {
    font-size: 1.3rem;
  }
  
  .founder-photo-frame img {
    width: 120px;
    height: 120px;
  }
  
  .story-card,
  .info-card,
  .contact-card {
    padding: 1rem;
  }
}

/* ===== UTILITIES ===== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 100;
  display: none;
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.scroll-top.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== END OF STYLESHEET ===== */
