/* Reset & basic */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', sans-serif;
  color: #e4e4e4;
  scroll-behavior: smooth;
  background-color: #0f0f17;
 
}
/*Style and colors*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bangers', cursive;
  letter-spacing: 1px;
}

/* ======== PARAGRAPHS ======== */
p {
  font-weight: 400;
  margin-bottom: 1rem;
  /* max-width: 800px; */
  font-size: 17px;       /* Perfect middle ground for readability */
  line-height: 1.7;      /* Adds breathing space between lines */
  color: #e4e4e4;        /* Gentle off-white for comfort on dark bg */
        /* maxwidth-width:750 Keeps paragraphs narrow and readable */
  margin-bottom: 1.2rem;
}
/* ======== Mail chimp Subscribe bubble styling ========== */
#mcMessage.bubble {
  display: none;
  width: 75px;
  height: 75px;
  line-height: 75px;
  text-align: center;
  font-family: 'Bangers', cursive;
  font-size: 12px;
  color: #155724;
  background-color: #d4edda;
  border-radius: 50%;
  box-shadow: 0 6px 0 #222;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

#mcMessage.bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-top-color: #d4edda;
}

#mcMessage.error {
  background-color: #f8d7da;
  color: #721c24;
}
#mcMessage.error::after {
  border-top-color: #f8d7da;
}


/* ======== LINKS ======== */
a {
  font-weight: 500;
  color: #ff2e63;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #ff6bcb;
}
footer {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: #999;
  text-align: center;
}

/*Style and colors*/

/* Navbar */
nav {
  display: flex;
  align-items: center;
  justify-content: center;
  /* justify-content: space-between; */
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15,15,23,0.9);
  backdrop-filter: blur(5px);
  z-index: 1000;
  padding: 0.5rem 1rem;
}
/* Group all three elements */
.nav-center-group {
  display: flex;
  align-items: center;
  gap: 1rem; /* spacing between logo, nav, and search/subscribe */
}
/* Search + subscribe container */
.search-subscribe {
  display: flex;
  align-items: center;
  gap: 1rem; /* spacing between search bar and subscribe button */
}


nav ul {
  list-style: none;
  display: flex;
  padding: 1rem 0;
  margin: 0 auto; /* centers the menu */
  flex: 1;
  gap: 1px;
  justify-content: center;
  transition: all 0.3s ease;
}
nav ul li {
  margin: 0 0.7rem;
  
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  font-size: 16px;
  letter-spacing: 0.2px;
  transition: color 0.3s ease;
  
}
nav ul li a:hover {
  color: #ff00ff;
}

/* Dropdown styling */
.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-menu {
  display: none; /* hide by default */
  position: absolute;
  top: 100%;
  left: 0;
  background: #1b1b27;
  padding: 0.5rem 0;
  list-style: none;
  min-width: 160px;
  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  z-index: 100;
}

.nav-links .dropdown-menu li {
  margin: 0;
}

.nav-links .dropdown-menu li a {
  color: #fff;
  padding: 0.5rem 1rem;
  display: block;
  text-decoration: none;
  transition: background 0.3s;
}

.nav-links .dropdown-menu li a:hover {
  background: #ff2e63;
}

/* Show dropdown on hover for desktop */
.nav-links .dropdown:hover .dropdown-menu {
  display: block;
}
/* Dropdown menu end */

/* Hamburger icon (hidden by default) */
.menu-toggle {
  display: none;
  cursor: pointer;
  color: #fff;
  font-size: 22px;
}

/* 🔸 Mobile Styles */
@media (max-width: 768px) {
  /* Hide actions and show hamburger */
  
  /* Dropdown menu */
  .nav-links .dropdown-menu {
    position: static;
    display: none;
    background: none;
    box-shadow: none;
  }

  /* Show dropdown when parent li has active class */
  .nav-links .dropdown.active .dropdown-menu {
    display: block;
  }
  /* Dropdown menu  end*/


  .subscribe-btn {
    display: none;

  }

  .menu-toggle {
    display: block;
  }

  /* Hide menu by default */
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    flex-direction: column;
    width: 100%;
    background: #1b1b27;
    text-align: center;
    padding: 20px 0;
    /* padding-left: 200px; */
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }
}

.search-container {
  display: flex;
  align-items: center;
  background: #1b1b26;
  border-radius: 20px;
  padding: 5px 20px;
  margin-right: 20px;
}

.search-container input {
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  padding: 5px;
}

.search-container button {
  background: none;
  border: none;
  color: #ff2e63;
  cursor: pointer;
}

.search-container button:hover {
  color: #ff5e8e;
}

/* Subscribe button */
.subscribe-btn {
  background: #ff2e63;
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-right: 15px;
}

/* 🔸 Search box collapses & Subscribe hides on smaller screens */
@media (max-width: 768px) {
  /* Hide subscribe button */
  .search-container {
    display: none;
  }
  .subscribe-btn {
    display: none;
  }

  /* Collapse search box into just an icon */
  .search-container input {
    display: none;
  }

  .search-container {
    background: none;
    padding: 0;
  }

  .search-btn {
    font-size: 18px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
  }
}

/* 🔸 Optionally make search visible again on tiny screens if clicked */
.search-container.active input {
  display: inline-block;
  background: #1b1b27;
  border-radius: 15px;
  padding: 4px 8px;
  margin-right: 5px;
}

.subscribe-btn:hover {
  background: #ff5e8e;
  transform: scale(1.05);
}


/* News Chyron */
.news-chyron {
  margin-top: 80px;/*navbar height */
  background: #111;
  overflow: hidden;
  white-space: nowrap;
  border-top: 2px solid #ff00ff;
  border-bottom: 2px solid #ff00ff;
}
.news-text {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 20s linear infinite;
}
.news-text p {
  color: #e5dc41;
  margin: 1px;
}
@keyframes scrollText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('images/background.png') no-repeat center center/cover;
  background-attachment: fixed; /* Parallax effect */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  /* Diagonal gradient overlay */
  background: linear-gradient(135deg, rgba(48,0,48,0.7), rgba(150,50,150,0.5) 50%, rgba(200,150,255,0.3));
  z-index: 1;
}
.hero-content {
  position: relative;
  color: #fff;
  z-index: 2;
  animation: fadeInUp 2s ease forwards;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: floatText 6s ease-in-out infinite alternate;
  
}
.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: floatText 4s ease-in-out infinite alternate-reverse;
}
.hero-btn {
  animation: floatText 5s ease-in-out infinite alternate;
}

/* Floating animation keyframes */
@keyframes floatText {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* Hero Section - Parallax retained */
.hero {
  height: 100vh;
  background: url('images/cover1.png') no-repeat center center/cover;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  background: linear-gradient(135deg, rgba(48,0,48,0.7), rgba(150,50,150,0.5) 50%, rgba(200,150,255,0.3));
  z-index: 1;
}
.btn {
  padding: 0.7rem 1.5rem;
  background: #ff00ff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}
.btn:hover {
  background: #e600e6;
}

/* Sections */
.section {
  /* padding: 6rem 2rem; */
  padding: 5rem 2rem;
}
/*  */
.about-section {
  color: #fff;
  padding: 60px 20px;
  text-align: center; /* for title + heading */
}

.about-header h2 {
  font-size: 32px;
  color: #ff2e63;
  margin-bottom: 10px;
}

.about-header h3 {
  font-size: 24px;
  margin-bottom: 40px;
  font-weight: normal;
  margin-top: 50px;
  padding-bottom: 10px;
}

.about-content-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;      /* space between image and bullets */
  flex-wrap: wrap; /* responsive: stack on small screens */
}


.about-image img {
  display: block;
  max-width: 250px;
  height: auto;
  border-radius: 10px;
  animation: bounce 2s infinite;
  
}

.about-bullets {
  max-width: 400px; /* width of bullets column */
  text-align: left;
}
.about-bullets h3 {
  margin-bottom: 10px;
}

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

.focus-list li {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 10px;
}

.focus-list i {
  color: #ff2e63;
  margin-right: 10px;
}

/*  */
.about-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  /* background-color: #2b1a50; */
  display: block;
}

/* Focus section */
.focus-section {
  background-color: #11111f; /* slightly lighter than body for contrast */
  color: #fff;
  padding: 60px 20px;
  text-align: center; /* heading centered */
}

.focus-section h2 {
  font-size: 32px;
  color: #ff2e63;
  margin-bottom: 30px;
}

.focus-list ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px; /* optional: center the bullets */
  text-align: left; /* align bullets left inside the centered container */
}

.focus-list li {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 10px;
}

.focus-list i {
  color: #ff2e63; /* accent color for check mark */
  margin-right: 10px;
}

/* Focus section */
.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px; /* space between image and text */
  flex-wrap: wrap; /* makes it responsive */
  padding: 60px 20px;
}
.about-section  {
  text-align: center;
  
}
.about-section h2 {
  text-align: center;
  color: #ff2e63;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px; /* optional rounded corners */
}

/* .about-content {
  max-width: 600px; /* text column width 
} */

.about-content h2 {
  text-align: left; /* heading aligned left now */
  font-size: 32px;
  color: #ff2e63;
  margin-bottom: 20px;
  display: flex;
}

.img-aboutplaceholder {
  width: 60%;
  /* margin-top: 2rem; */
  border-radius: 10px;

  display: block;
  /* width: 150px; */
  margin: 30px auto;
  animation: bounce 2s infinite;
}
/* Logo Bounce animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);   /* at rest */
  }
  30% {
    transform: translateY(-30px);  /* go up */
  }
  50% {
    transform: translateY(0);   /* back down */
  }
  70% {
    transform: translateY(-20px);  /* smaller bounce */
  }
  90% {
    transform: translateY(0);   /* rest */
  }
}

/* Character Text: center display */
.character-section {
   width: 100%;
  margin: auto;
  position: relative;
  text-align: center;
  overflow: visible;
  flex-direction: column;
  position: relative;
  padding: 100px 0;
  /* color: #fff; */
  /* height: 800px; */
}


.character-section {
  position: relative;
  width: 100%;
  padding: 100px 0; /* controls the section spacing */
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
}

/* Background layer only covers middle portion */
.character-section::before {
  content: "";
  position: absolute;
  top: 25%;        /* adjust upward/downward position */
  left: 0;
  width: 100%;
  height: 50%;     /* controls how tall the colored band is */
  background: linear-gradient(135deg, rgba(48,0,48,0.7), rgba(150,50,150,0.5) 50%, rgba(200,150,255,0.3));
  z-index: -1;     /* sits behind everything */
  border-radius: 0rem;
}

.character-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  overflow: visible;
}

/* 🎯 Highlight main character card */


/* Optional hover effect for center card (stronger lift) */


.card {
  width: 280px;
  /* height: 380px; */
  background: #1f1f2e;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  /* transform: translateY(-40px);  */
  display: flex;
  flex-direction: column; /* stack image and text vertically */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-60px) scale(1.03); /* subtle hover lift */
}

.card img {
  width: 100%;
  height: 280px;
  object-fit: cover; 
  display: block;
}

.card-text {
  padding: 15px;
  text-align: center;
  /* color: #fff; */
  /* color: #c2813c; */
  color: #e5dc41;
  opacity: 1;             
  transform: translateY(0); /* start slightly below */
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.card-text h3 {
  margin: 0 0 5px 0;
  font-size: 1.2rem;
  
}

.card-text p {
  margin: 0;
  font-size: 0.95rem;
  color: #ccc;
 
}
.card:hover .card-text {
  opacity: 1;             /* fade in */
  transform: translateY(0); /* slide up into place */
}

.main-card {
  width: 320px;     /* slightly bigger width */
  height: 420px;    /* slightly taller */
  
  z-index: 2;       /* ensures it appears above the others */
  transform: translateY(-50px); /* make it pop a bit more */
}
.main-card:hover {
  transform: translateY(-70px) scale(1.05);
}
.character-container { 
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 2; /* keeps text above cards */
  
}
.character-container h2 {
  color: #ff2e63;
  font-size: 32px;
}
/* Character aligned horizontally */
.character-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  margin-top: 3rem;
  overflow: visible; /* <== important: allows cards to peek outside */
}

/* Let cards overflow slightly */
.card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  overflow: hidden;
  width: 280px;
  height: 380px;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

/* Slight overflow look — cards “pop” out */
.card:nth-child(1) {
  transform: translateX(-20px);
}
.card:nth-child(3) {
  transform: translateX(20px);
}

/* Hover effect */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Full-width video section background */
#video{
  background: linear-gradient(180deg, #141421, #0f0f17);

}

/* Chatbot Section */
#chatbot-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 80px auto;
  padding: 40px 20px;
  width: 100%;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}
.chatbot h2 {
  color: #ff2e63;
  font-size: 32px;
}
.chatbot-container {
  /* background: rgba(20, 20, 30, 0.85); */
  background: linear-gradient(135deg, rgba(48,0,48,0.7), rgba(150,50,150,0.5) 50%, rgba(200,150,255,0.3));
  border: 2px solid #8a2be2;
  box-shadow: 0 0 25px #8a2be2aa;
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: bounce 2s;
  
}

.chatbot-header {
  text-align: center;
  padding: 20px;
  border-bottom: 1px solid #8a2be244;
}
.chatbot-header h2 {
  font-size: 32px;
  color: #e5dc41;
}

.chatbot-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #8a2be2;
  margin-bottom: 10px;
}

.chatbot-name {
  font-size: 1.5rem;
  color: #e4d4ff;
}

.chatbot-role {
  font-size: 0.9rem;
  color: #a78bfa;
}

.chatbot-window {
  background: #101018;
  height: 300px;
  overflow-y: auto;
  padding: 15px;
}

.bot-message, .user-message {
  margin: 10px 0;
  padding: 10px 14px;
  border-radius: 10px;
  max-width: 80%;
}

.bot-message {
  background: #272042;
  align-self: flex-start;
}

.user-message {
  background: #4b2ea5;
  align-self: flex-end;
  color: #fff;
}

.chatbot-input {
  display: flex;
  border-top: 1px solid #8a2be244;
}

.chatbot-input input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  padding: 15px;
  outline: none;
  font-size: 1rem;
}

.chatbot-input button {
  background: #8a2be2;
  border: none;
  color: white;
  padding: 0 25px;
  cursor: pointer;
  transition: background 0.3s;
}

.chatbot-input button:hover {
  background: #a855f7;
}
/* end of chatbot section */


.video-section {
  width: 100%;
  height: 40%;
  /* background: linear-gradient(180deg, #141421, #0f0f17); */
  color: #fff;
  padding: 80px 0;
  box-sizing: border-box;
  /* padding-bottom: 100px; */
}

/* Full-width section */
.video-section {
  width: 100%;
  
  /* background: lightblue; */
  color: #fff;
  padding: 80px 0; /* top & bottom spacing */
  box-sizing: border-box;
  
}

/* Keep content centered */
.video-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  
}
.video-inner h2 {
  color: #ff2e63;
  font-size: 32px;
}

/* Flex container for video and text */
.video-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap; /* Helps on smaller screens */
}

/* YouTube video styling */
.video-iframe iframe {
  width: 760px;
  height: 515px;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 46, 99, 0.3); /* glow effect */
  
}

/* Description beside video */
.video-description {
  max-width: 400px;
  text-align: left;
}

.video-description h3 {
  margin-bottom: 10px;
  /* color: #ff2e63; */
}

/* Responsive behavior */
@media (max-width: 900px) {
  .video-flex {
    flex-direction: column;
    text-align: center;
  }

  .video-description {
    text-align: center;
  }

  .video-iframe iframe {
    width: 100%;
    height: auto;
  }
}

/* Blog Section */
#blog {
  padding: 60px 20px;
  background:linear-gradient(180deg, #0f0f17, #1b1b2f);
  text-align: center;
}

#blog h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #ff2e63;
}

/* Container for all blog cards */
.blog-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  /* background-color: red; */
  /* background:linear-gradient(180deg, #0f0f17, #1b1b2f); */
  /* width: 100%; */
 
}

/* Each blog card */
.blog-card {
  display: flex;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease;
}

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

/* Left side: icon + featured image */
.blog-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* Featured icon spin */
.blog-icon {
  width: 50px;
  height: 50px;
  /* animation: spin 10s linear infinite; */
}

/* Featured image bounce animation */
.blog-image {
  width: 150px;
  border-radius: 8px;
  /* animation: bounce 2s infinite; */
}

/* Right side: text content */
.blog-right {
  text-align: left;
  flex: 1;
}

.blog-right h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #e5dc41;
}

.blog-right .sub-text {
  font-size: 0.95rem;
  margin-bottom: 15px;
  /* color: #555; */
  color: #c2813c;
}

.read-more {
  display: inline-block;
  padding: 8px 16px;
  /* background: #6200ea; */
  background: #ff2e63;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition:  0.3s ease;
}

.read-more:hover {
  background: #4500b5;
}

/* Spin animation for icon */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Bounce animation for image */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-20px); }
  60% { transform: translateY(-10px); }
}

/* Responsive: stack content on mobile */
@media (max-width: 768px) {
  .blog-card {
    flex-direction: column;
    text-align: center;
  }
  .blog-right {
    text-align: center;
  }
}




 /* News letter section*/
#newsletter p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #555;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 12px 20px;
  background: #6200ea;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #4500b5;
}
/* Newsletter section */

/* Responsive: stack newsletter inputs on small screens */
@media (max-width: 600px) {
  .newsletter-form {
    flex-direction: column;
  }
}


.page-card {
  width: 300px;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s, opacity 0.3s;
  /* background-color: green; */
  background-color: #b37407;
  padding-bottom: 90px;
}

.blog-card {
  width: 1000px;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s, opacity 0.3s;
  /* background-color: blue; */
  background-color: #1a1a2e;
  /* padding-bottom: 90px; */
  padding: 10px;
  
  
}
.page-card img {
  width: 100%;
  height: 100%;
  display: block;

}


.blog-card iframe {
  width: 100%;
  height: 100%;
  /* display: block; */
  display: flex;
  

}
.page-card:hover, .blog-card:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Contact Form */
#contact {
   background: #1a1a26; /* slightly lighter */
}

.contact-container h2 {
  color: #ff2e63;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  /* background-color: #2b1a50; */
  display: block;
  font-size: 32px;
}
.contact-container h3 {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  /* background-color: #2b1a50; */
  display: block;
}
.contact-container form {
  padding-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.contact-form input, 
.contact-form textarea {
  padding: 0.8rem;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
}
.contact-form button {
  padding: 0.8rem;
  background: #ff00ff;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  
}
.contact-form button:hover {
  background: #e600e6;
}
/* Contact Form Message */
.bubble {
  text-align: center;
  justify-content: center;
  align-items: center;
  
}
#form-message.bubble {
  text-align: center;
  display: none;
  width: 75px;             /* bubble width */
  height: 75px;            /* bubble height */
  line-height: 75px;       /* vertical center */
  background: #d4edda;     /* success green */
  color: #155724;
  border-radius: 50%;      /* perfectly round bubble */
  font-family: 'Bangers', cursive;
  font-size: 12px;
  position: fixed;
  top: 50%;                  /* vertical center */
  left: 50%;                 /* horizontal center */
  transform: translateX(-50%);
  box-shadow: 0 6px 0 #222;
  z-index: 9999;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

#form-message.bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-top-color: #d4edda;
}

/* Error bubble style */
#form-message.error {
  background: #f8d7da;
  color: #721c24;
}
#form-message.error::after {
  border-top-color: #f8d7da;
}


.subscription-container h2 {
  color: #ff2e63;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  /* background-color: #2b1a50; */
  display: block;
  font-size: 32px;
}

.subscription-container h3 {
  
  margin: auto;
  text-align: center;
  /* background-color: #2b1a50; */
  display: block;
  margin-bottom: 20px;
}

/* Fade animation */
.fade {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* Hero animation keyframes */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(50px);}
  100% { opacity: 1; transform: translateY(0);}
}




/* Footer */
footer {
  background: #111;
  color: #fff;
  padding: 3rem 2rem 1rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10rem;
  text-align: left;
}

/* Logo */
.footer-logo {
  text-align: center;
  margin-bottom: 1rem;
}
.footer-logo img {
  width: 120px;
  /* margin-bottom: 1rem; */
  height: auto;
}

/* Section Titles */
.footer-section h3 {
  margin-bottom: 1rem;
}

/* Lists */
.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ff2e63;
}

/* Social Icons */
.social li a i {
  margin-right: 8px;
  color: #ff2e63;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social li a:hover i {
  transform: rotate(360deg);
  color: #ff7eb6;
}

/* Policies */
.policies li a {
  font-size: 0.9rem;
}

/* Newsletter Form */
.footer-newsletter form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-newsletter input[type="email"] {
  padding: 0.5rem;
  border-radius: 4px;
  border: none;
  flex: 1 1 auto;
}

.footer-newsletter button {
  padding: 0.5rem 1rem;
  background: #ff2e63;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-newsletter button:hover {
  background: #ff46a0;
}

/* Footer bottom text */
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
}
/* Subscribe glow footer feature */
/* Glow effect */
.glow {
  box-shadow: 0 0 20px #ff2e63, 0 0 40px #ff2e63, 0 0 60px #ff2e63;
  transition: box-shadow 0.3s ease;
}
/* Subscribe glow footer feature */
/* Explosion Effect on footer subscribe button */
/* Mini explosion effect */
.explosion {
  position: relative;
}

.explosion::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, #ff2e63 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: explode 0.6s forwards;
  pointer-events: none;
}

@keyframes explode {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}

/* Explosion Effect on foote subscribe button */
/* Responsive */
@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem; /* reduced vertical spacing */
  }

  .footer-logo img {
    margin-bottom: 1.5rem;
  }

  .footer-section {
    margin-bottom: 1.5rem;
  }

  .footer-newsletter form {
    justify-content: center;
  }
}


/* Mobile */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  nav ul li {
    margin: 0 1rem;
  }
  .page-card, .blog-card {
    width: 90%;
  }
}
