/* ----------------- General Resets and Basic Setup ----------------- */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', 'Helvetica', sans-serif;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;

}

/* ----------------- Hero Section with Video ----------------- */
.hero {
  width: 100%;
  /* Changed from 100vw to prevent potential horizontal scroll */
  height: 80vh;
  /* Good for desktop, but let's adjust for mobile */
  position: relative;
  overflow: hidden;
  /* Add minimum height for very small screens */
  min-height: 400px;
  /* Prevents hero from becoming too squished */
  /* Fallback background if video fails to load */
  background: linear-gradient(to right, #f5f7f9 0%, #adcaed4e 100%);
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  /* Add subtle filter for better text contrast if you add overlay text later */
  filter: brightness(0.95);
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .hero {
    height: 60vh;
    /* Reduce height for mobile devices */
    min-height: 300px;
    /* Adjust minimum height for mobile */
  }
}

/* Very Small Screens (e.g., flip phones) */
@media (max-width: 480px) {
  .hero {
    height: 50vh;
    min-height: 250px;
  }
}

/* -------------------------------- Responsive index Sections -------------------------------- */
/* ------------------ NAVBAR STYLES ------------------ */
:root {
  --navbar-height: 70px;
  --nav-z-index: 1000;
  --mobile-menu-width: 280px;
  --primary-blue: #007bff;
  --text-dark: #282727;
}

.custom-navbar {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--nav-z-index);
  min-height: var(--navbar-height);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar-logo img {
  height: calc(var(--navbar-height) - 25px);
  width: auto;
  transition: transform 0.3s ease;
}

/* Desktop Menu */
.navbar-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-links li a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-links li a:hover {
  background-color: rgba(0, 123, 255, 0.05);
}

.navbar-links li a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-blue);
  transition: width 0.3s ease;
}

.navbar-links li a:hover::after {
  width: 100%;
}

/* Mobile Toggle Button */
.navbar-toggle {
  display: none;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0.5rem;
  z-index: calc(var(--nav-z-index) + 4);
  flex-direction: column;
  gap: 5px;
}

.bar {
  width: 30px;
  height: 3px;
  background-color: var(--text-dark);
  transition: 0.4s;
  border-radius: 2px;
  transform-origin: center;
}

@media (max-width: 768px) {
  .navbar-toggle {
    display: flex !important;
  }

  .navbar-links {
    display: none;
    /* Ensures it's hidden initially */
  }

  .navbar-links.active {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0px 10px rgba(0, 0, 0, 0.2);
    padding-top: 60px;
  }
}

@media (max-width: 768px) {
  .navbar-toggle {
    display: flex !important;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1001;
  }

  .navbar-links {
    display: none;
  }

  .navbar-links.active {
    display: flex !important;
  }
}


/* ==================== SHOWCASE SECTION ==================== */
#showcase {
  background-color: #fff;
  padding: 70px 95px;
}

.showcase-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1400px;
}

/* Left Content Section */
.showcase-left {
  flex: 1;
  min-width: 300px;
}

.showcase-left h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.highlight {
  color: #1E90FF;
}

.showcase-left p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 2rem;
}

/* Right Section - Polaroids (Desktop Only) */
.showcase-right {
  flex: 1;
  position: relative;
  height: 500px;
}

.polaroid-container {
  position: relative;
  height: 100%;
  width: 100%;
}

/* Polaroid Styles - No Hover Effects */
.polaroid {
  position: absolute;
  width: 350px;
  background: #fffaf0;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: default;
  /* Disable pointer cursor */
  transition: none !important;
  /* Disable all animations */
}

/* Fixed Positioning */
.polaroid-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.polaroid-center .polaroid-caption p {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  /* optional: adjust size for better readability */
  margin: 0%;
  /* removes default paragraph margins */
  text-align: center;
  /* centers the text */
}


.polaroid-left {
  top: 45%;
  left: 30%;
  transform: translate(-35%, -50%) rotate(-30deg);
  z-index: 2;
  opacity: 0.8;
}

.polaroid-right {
  top: 45%;
  left: 55%;
  transform: translate(-35%, -50%) rotate(30deg);
  z-index: 2;
  opacity: 0.8;
}

.polaroid-image {
  height: 400px;
  overflow: hidden;
  border-bottom: 1px solid #ccc;
}



.polaroid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Transparent Info Box Fix */
.transparent-box-1 {
  width: 400px;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.2);
  border: 2px solid;
  border-image: linear-gradient(90deg, #0080ff, #38a3a5, #80ed99, #1e90ff);
  border-image-slice: 1;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  backdrop-filter: blur(8px);
  position: absolute;
  top: 70%;
  left: 70%;
  transform: translate(-50%, -50%);
  z-index: 4;
  animation: border-animate 3s linear infinite;
}

@keyframes border-animate {

  0%,
  100% {
    border-image-source: linear-gradient(90deg, #1e90ff, #38a3a5, #80ed99, #1e90ff);
  }

  50% {
    border-image-source: linear-gradient(90deg, #80ed99, #1e90ff, #38a3a5, #80ed99);
  }
}

.btn-explore {
  display: inline-flex;
  align-items: center;
  padding: .5rem 1.5rem;
  background-color: #2563eb;
  /* Modern blue color */
  color: white;
  font-family: 'Arial', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.btn-explore span {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.btn-explore:hover {
  background-color: #1d4ed8;
  /* Darker blue on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-explore:hover span {
  transform: translateX(4px);
}

.btn-explore:active {
  background-color: #1e40af;
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

/* Optional: Add a subtle background animation */
.btn-explore::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.6s ease;
}

.btn-explore:hover::after {
  left: 100%;
}

/* Contact Button Fix */
.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #007BFF;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: filter 0.3s ease;
}

.btn-contact:hover {
  filter: brightness(0.9);
}

.email-icon {
  width: 20px;
  height: 20px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z"/></svg>');
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
  .showcase-container {
    flex-direction: column;
    text-align: center;
  }

  .showcase-right {
    display: none;
  }

  .showcase-left {
    width: 100%;
    padding: 0 15px;
  }

  .showcase-left h2,
  .showcase-left p {
    text-align: center;
  }

  .btn-contact {
    margin: 20px auto;
    left: 25% !important;
    transform: translateX(-50%) !important;
    position: relative;
  }
}


/* ==================== Our Services SECTION ==================== */

.highlight-blue {
  color: #1E90FF;
  /* Blue color */
  font-weight: bold;
}

.about-us-section {
  background-color: #fff;
  padding: 50px 110px;
  gap: 40px;

}

.about-us-container {
  display: flex;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  /* height: 450px; */
  /* Restored fixed height */
}

/* Left Content */
.about-us-left {
  flex: 1 1 300px;
  text-align: left;
  position: relative;
}

.about-us-left h1 {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 20px;
  font-weight: bold;
}

.about-us-left p {
  font-size: 1.2em;
  color: #555;
  line-height: 2;
}

/* Middle Content */
.about-us-middle {
  flex: 1 20 300px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.about-us-middle img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  height: 445px;
  object-fit: cover;
}

/* Right Content */
.about-us-right {
  flex: 1 1 350px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-us-right img {
  position: absolute;
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  height: 400px;
  object-fit: cover;
  top: 0%;
  left: 30%;
  transform: translate(0, 0);
}



/* Transparent Boxes (Original Positioning) */
.transparent-box-2 {
  position: absolute;
  top: 1710px;
  left: 686.5px;
  transform: translate(-50%, -50%);
  background-color: rgba(253, 253, 253, 0.6);
  color: #2c2b2b;
  padding: 20px 30px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 10;
  max-width: 357px;
  width: 100%;
}



/* ==================== MOBILE RESPONSIVE ==================== */


/* ==================== Our Services SECTION ==================== */
@media (max-width: 768px) {
  .about-us-section {
    padding: 50px 20px;
    display: block;
    overflow-x: hidden;
  }

  .about-us-container {
    flex-direction: column;
    gap: 0;
    min-height: auto;
  }

  .about-us-left {
    order: 1;
    padding: 2rem 1.5rem;
  }

  .about-us-middle {
    order: 2;
    padding: 2rem 1.5rem;
  }

  .about-us-right {
    order: 3;
    padding: 2rem 1.5rem;
  }

  .about-us-right img {
    max-width: 200px;
    height: 200px;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
  }

  .transparent-box-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}



/*  */
/* ------ Features Section ------- */
.features-section {
  background-color: #fff;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 40px;

}

.features-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 600px;
}

/* Left Section Styles */
.features-left {
  flex: 1 1 60%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features-left-container {
  background-color: #007bff;
  padding: 60px;
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  width: 700px;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.features-left-image {
  width: 300px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.features-left-text h2 {
  font-size: 1.8em;
  color: white;
  margin-bottom: 15px;
}

.features-left-text p {
  font-size: 1em;
  color: white;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Button Styles */
.btn-request {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: #007bff;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-request:hover {
  background-color: #0056b3;
  color: white;
  transform: scale(1.1);
}

.arrow-icon {
  margin-left: 10px;
  font-size: 1.2em;
}

/* Pagination */
.pagination {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  height: 40px;
  align-items: center;
}

.pagination .arrow-button {
  background-color: white;
  color: #007bff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pagination .arrow-button:hover {
  background-color: #007bff;
  color: white;
}

/* Cards Section */
.capture-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
}

.card {
  position: relative;
  width: 220px;
  height: 320px;
  border-radius: 15px;
  overflow: hidden;
  border: 4px solid transparent;
  background: linear-gradient(white, white) padding-box,
}


.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.card p {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  text-align: center;
  font-size: 18px;
  padding: 12px 0;
  font-weight: bold;
}

@media (max-width: 768px) {
  .features-section {
    padding: 0;
    display: block;
    overflow-x: hidden;
  }

  /* 1. Full-width Header Container */
  .features-left-container {
    width: 100vw;
    margin-left: -20px;
    border-radius: 0;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-height: auto;
    height: auto;
    position: relative;
    z-index: 2;
  }

  .features-left-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto 1.5rem;
    display: block;
  }

  /* 2. Right Container Text Positioning */
  .features-right {
    order: 1;
    padding: 2rem 1.5rem;
  }

  .features-right h2 {
    font-size: 1.5rem;
    margin: 1rem 0 1.5rem;
    text-align: center;
    padding: 0 1rem;
  }

  /* 3. Two-at-a-time Swipe Cards */
  .capture-cards {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(50% - 10px);
    gap: 20px;
    padding: 0 1.5rem 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

  .card {
    width: 100%;
    height: 200px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    margin: 0;
    transform: translateZ(0);
    /* Improve scrolling performance */
  }

  /* Hide scrollbar */
  .capture-cards::-webkit-scrollbar {
    display: none;
  }

  /* Mobile Interaction Improvements */
  .features-container {
    flex-direction: column;
    gap: 0;
    min-height: auto;
  }

  .features-left {
    order: 1;
  }

  .features-right-content {
    text-align: center;
  }

  /* Ensure proper spacing */
  .features-right-image {
    margin: 0 auto 1rem;
    max-width: 200px;
  }
}

/* END FEATURES */

/* Event Memories Section */
.event-memories {
  font-family: Arial, sans-serif;
  color: #000;
  /* Default black font color */
}

/* Background Section with Parallax Effect */
.background {
  background: url('/static/images/Our Services middle .png') no-repeat center center;
  background-size: cover;
  height: 100vh;
  /* Full screen height */
  position: relative;
  background-attachment: scroll;
  /* Enables the image to move with the scroll */
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Parallax Content Box */
.overlay-box {
  background: rgba(255, 255, 255, 0.577);
  /* Semi-transparent white */
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  width: 80%;
  /* Adjust width to match your specification */
  margin: 0 auto;
  position: relative;
  top: 50%;
  /* Center vertically */
  transform: translateY(-50%);
}

.overlay-box h1 {
  font-size: 2.5rem;
  font-style: italic;
  font-weight: bold;
  margin-bottom: 15px;
}

.overlay-box p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Memory Containers */
.memory-containers {
  display: flex;
  justify-content: center;
  /* Centers the containers horizontally */
  gap: 20px;
  /* Space between containers */
  padding: 40px;
  background-color: #fff;
  flex-wrap: wrap;
  /* Makes the layout responsive */
}

.container {
  width: 350px;
  /* Equal width for containers */
  height: 500px;
  /* Equal height for containers */
  position: relative;
  /* Required for the animated frame */
  border-radius: 15px;
  /* Rounded corners for the frame */
  /* overflow: hidden; */
  /* Ensures content doesn't spill out */
  background: #fff;
  /* White container background */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  /* Subtle shadow for depth */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  /* Aligns text to the left */
  align-items: center;
  /* Add this line */

}

/* Gradient Frame Animation */
.container::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border-radius: 18px;
  /* Slightly more than container's border-radius */
  background-size: 300% 300%;
  /* Enlarged for smoother animation */
  animation: gradientFrame 6s infinite linear;
  /* Infinite animation */
  z-index: -1;
  /* Places it behind the content */
}

.container img {
  width: 100%;
  height: 50%;
  /* Proportion for image */
  object-fit: cover;
  /* Ensures proper scaling */
  border-bottom: 1px solid #ddd;
  border-radius: 12px 12px 0 0;
  /* Matches container's border-radius at the top */
}

.container h1,
.container h2,
.container h3 {
  font-size: 1rem;
  /* Consistent font size */
  padding: 10px;
  margin: 0;
  /* Removes default margin */
  color: #333;
  /* Neutral dark color for text */
}

.container p {
  font-size: 0.9rem;
  /* Slightly larger for better readability */
  padding: 10px;
  margin: 0;
  color: #555;
  /* Softer dark color for readability */
}

.container button {
  background: linear-gradient(90deg, #2b88e5, #00c6ff);
  /* Gradient background */
  color: #fff;
  /* White text */
  border: none;
  padding: 12px 25px;
  /* Slightly larger padding */
  margin: 10px auto 20px;
  font-size: 1.1rem;
  /* Slightly larger font size */
  font-weight: bold;
  /* Bold text */
  border-radius: 30px;
  /* Fully rounded edges */
  cursor: pointer;
  transition: all 0.4s ease;
  /* Smooth transition for all properties */
  box-shadow: 0 8px 15px rgba(0, 123, 255, 0.3);
  /* Glow shadow effect */
}

.container button:hover {
  background: linear-gradient(90deg, #0056b3, #0093c4);
  /* Darker gradient on hover */
  transform: translateY(-3px) scale(1.1);
  /* Slight upward and zoom effect */
  box-shadow: 0 12px 20px rgba(0, 123, 255, 0.5);
  /* More pronounced shadow on hover */
}

.container button:active {
  transform: translateY(0) scale(1);
  /* Return to normal on click */
  box-shadow: 0 6px 10px rgba(0, 123, 255, 0.2);
  /* Subtle shadow on click */
}


/* why choose eventsclicks */
.events-clicks-section {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  background-color: #fff;
  font-family: Arial, sans-serif;
}

.events-clicks-content {
  flex: 1 1 50%;
  max-width: 600px;
  margin-right: 2rem;
}

.events-clicks-content h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.events-clicks-content .highlight {
  color: #216FED;
  /* Bold blue for "EventsClicks" */
}

/* ========== Base Styles ========== */
.why-choose-eventsclicks {
  font-size: clamp(1.25rem, 4vw, 2rem);
  /* Fluid font scaling */
  margin: 1.5rem 0;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
}

.events-clicks-content p {
  font-size: clamp(0.9rem, 4vw, 1rem);
  /* 0.9rem-1rem scaling */
  line-height: 1.6;
  color: #333;
  max-width: 65ch;
  /* Optimal reading width */
}

.events-clicks-image {
  flex: 1 1 50%;
  text-align: center;
  margin: 2rem 0;
  background-color: #3079d25f;
  padding: clamp(1.5rem, 5vw, 4rem);
  /* Responsive padding */
  border-radius: 8px;
  display: flex;
  justify-content: center;
}

.events-clicks-image img {
  width: 100%;
  max-width: min(500px, 90vw);
  /* Never exceed 500px or 90% viewport */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  aspect-ratio: 1/1;
  /* Maintain square ratio */
  object-fit: cover;
  /* Ensure image fills container */
}

/* ========== Mobile Layout ========== */
@media (max-width: 768px) {
  .events-clicks-image {
    flex-direction: column;
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .events-clicks-content {
    order: 2;
    /* Move text below image */
  }

  .why-choose-eventsclicks {
    margin: 1rem 0;
    text-align: center;
  }

  .events-clicks-content p {
    text-align: justify;
    padding: 0 1rem;
  }

  .events-clicks-image img {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* ========== Small Mobile Optimization ========== */
@media (max-width: 480px) {
  .events-clicks-image {
    padding: 1rem;
    background-color: #3079d23d;
    /* Lighter background */
  }

  .events-clicks-content p {
    font-size: clamp(0.85rem, 3.5vw, 0.95rem);
    line-height: 1.5;
  }
}

/* Footer  */
:root {
  --footer-bg: #111;
  --primary-accent: #217aff;
  --footer-text: rgba(255, 255, 255, 0.9);
  --hover-transition: all 0.3s ease;
}

.footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  margin-top: auto;
  width: 100%;
  position: relative;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}

.footer-top-angle {
  height: 12px;
  background: var(--primary-accent);
  transform: skewY(-1.5deg);
  margin-bottom: 30px;
  width: 100%;
  position: relative;
  top: -6px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 5%;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-brand {
  flex: 1 1 300px;
  max-width: 400px;
  padding-right: 2rem;
}

.footer-links,
.footer-social {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-brand h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-accent);
}

.footer-brand p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.footer-contact li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.footer-links h3,
.footer-social h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--footer-text);
  text-decoration: none;
  transition: var(--hover-transition);
  font-size: 0.95rem;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-accent);
  transform: translateX(5px);
}

.footer-social ul {
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.footer-social a {
  color: var(--footer-text);
  font-size: 1.75rem;
  transition: var(--hover-transition);
  display: inline-block;
}

.footer-social a:hover {
  color: var(--primary-accent);
  transform: translateY(-3px);
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 2rem 5%;
  width: 90%;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 1.5rem;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand {
    padding-right: 0;
    text-align: center;
    max-width: 100%;
  }

  .footer-contact li {
    justify-content: center;
  }

  .footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-social ul {
    justify-content: center;
  }

  .footer-links a:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    padding: 2rem 5%;
  }

  .footer-social ul {
    gap: 1rem;
  }

  .footer-social a {
    font-size: 1.5rem;
  }
}






/* New styling for index */
/* ==================== CTA BANNER ==================== */
.cta-banner {
  width: 100%;
  background: linear-gradient(90deg, #007bff, #0056b3);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.cta-banner .cta-content {
  max-width: 800px;
  margin: auto;
}

.cta-banner h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-banner p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn-download {
  display: inline-block;
  padding: 12px 30px;
  background: #fff;
  color: #007bff;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.btn-download:hover {
  background: #f0f0f0;
  color: #0056b3;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 40px 20px;
  }

  .cta-banner h2 {
    font-size: 1.8rem;
  }

  .cta-banner p {
    font-size: 1rem;
  }

  .btn-download {
    font-size: 1rem;
    padding: 10px 25px;
  }
}


/* ==================== HOW IT WORKS ==================== */
.how-it-works-section {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.how-it-works-section h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
}

.how-it-works-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.step {
  max-width: 300px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

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

.step img {
  width: 100%;
  max-width: 150px;
  margin-bottom: 15px;
}

.step h3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 10px;
}

.step p {
  font-size: 1rem;
  color: #555;
}

@media (max-width: 768px) {
  .how-it-works-container {
    flex-direction: column;
    align-items: center;
  }

  .step {
    max-width: 90%;
  }
}




.discover-section {
  padding: 50px 20px;
  text-align: center;
}

.discover-section h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.highlight-eventsclicks {
  color: #007bff;
}

.discover-section p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* FAQ Section */
.faq-section {
  padding: 60px 20px;
  text-align: center;
}

.faq-section h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
}

.faq-container {
  max-width: 1000px;
  /* Wider FAQ container */
  margin: 0 auto;
}

.faq-item {
  background: white;
  /* White background for items */
  margin-bottom: 15px;
  /* Space between items */
  border-radius: 8px;
  /* Rounded corners */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  /* Subtle shadow */
  overflow: hidden;
  /* Hide content overflow */
  transition: max-height 0.3s ease-in-out;
  /* Smooth height transitions */
  max-height: 60px;
  /* Default height for closed state */
}

.faq-question {
  width: 100%;
  /* Full width */
  background: none;
  /* Transparent background */
  border: none;
  /* Remove borders */
  padding: 15px 20px;
  /* Add padding for spacing */
  font-size: 1.1rem;
  /* Font size for questions */
  font-weight: 600;
  /* Bold text */
  text-align: left;
  /* Align text to the left */
  cursor: pointer;
  /* Pointer cursor on hover */
  display: flex;
  /* Flexbox for layout */
  justify-content: space-between;
  /* Space between text and icon */
  align-items: center;
  /* Align items vertically */
  color: #007bff;
  /* Blue text color */
}

.faq-question i {
  transition: transform 0.3s ease-in-out;
  /* Smooth icon rotation */
}

.faq-answer {
  display: none;
  /* Hidden by default */
  padding: 15px 20px;
  /* Padding for content */
  font-size: 1rem;
  /* Font size for answers */
  color: #555;
  /* Gray text color */
  background: #ffffff;
  /* White background */
}

.faq-item.active {
  max-height: 200px;
  /* Height when expanded */
}

.faq-item.active .faq-answer {
  display: block;
  /* Show answer text */
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  /* Rotate icon on active */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .faq-section {
    padding: 50px 15px;
    /* Adjust padding for smaller screens */
  }

  .faq-container {
    width: 100%;
    /* Full width on mobile */
  }

  .faq-question {
    font-size: 1rem;
    /* Smaller font size */
    padding: 12px 15px;
    /* Adjust padding */
  }

  .faq-answer {
    font-size: 0.95rem;
    /* Slightly smaller font for answers */
    padding: 12px 15px;
    /* Adjust padding */
  }
}


/* ==================== WHY CHOOSE US SECTION ==================== */
.why-choose-us-section {
  padding: 80px 20px;
  text-align: center;

  /* Light gray background */
}

.why-choose-us-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.why-choose-us-section .highlight {
  color: #007bff;
  /* Blue highlight for branding */
}

.why-choose-us-section p {
  font-size: 1.2rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.features-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  flex: 1 1 250px;
  /* Flexibility for responsive layout */
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  color: #007bff;
  /* Icon color */
  margin-bottom: 15px;
}

.feature-item h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .features-container {
    flex-direction: column;
    align-items: center;
  }

  .feature-item {
    max-width: 90%;
  }
}