* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: myFont;
  src: url(sharpie.ttf);
}

@font-face {
  font-family: myPara;
  src: url(ranade.ttf);
}

h1 {
  font-family: myFont;
}

h4,
a,
h3,
h2,
p {
  font-family: myPara;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

/* General Navigation Bar Styling */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 90px;
  height: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  padding: 10px 15px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #b700ff;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: white;
}

.download-btn {
  padding: 12px 25px;
  background: white;
  color: black !important;
  text-decoration: none;
  border-radius: 5px;
  font-size: 15px !important;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.2);
}

.download-btn:hover {
  background: #b700ff;
  color: white !important;
  box-shadow: 0 6px 8px rgba(183, 0, 255, 0.4);
}

/* Dropdown Menu Styling */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background-color: black;
  border-radius: 8px;
  display: none;
  flex-direction: column;
  padding: 10px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  min-width: 200px;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  color: white;
  text-decoration: none;
  padding: 5px 15px;
  font-size: 14px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu a:hover {
  /* background-color: #b700ff; */
  color: white;
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-menu {
  display: flex;
}

/* Responsive Design */
/* Tablet (max-width: 768px) */
@media (max-width: 768px) {
  nav {
    padding: 15px 20px;
  }

  .nav-links {
    gap: 15px;
  }

  .download-btn {
    font-size: 13px;
    padding: 10px 20px;
  }

  .logo img {
    width: 70px;
    height: 30px;
  }

  .nav-links a {
    font-size: 14px;
  }

  .dropdown-menu {
    min-width: 180px;
  }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
  nav {
    display: none;
  }
}

/* Sidebar Styling */
/* Sidebar Styling */
.mobile-sidebar {
  display: none; /* Hidden initially */
  position: fixed; /* Fixed to make it sticky across all sections */
  top: 0;
  left: 0;
  height: 100%;
  width: 250px;
  background-color: black;
  z-index: 1000;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.3);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-sidebar.open {
  transform: translateX(0); /* Sidebar appears */
  display: block; /* Ensure visibility */
}

.sidebar-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.logo-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 100px;
  height: auto;
  margin-left: 50px;
}

.menu-toggle {
  position: sticky; /* Makes the toggle button sticky */
  top: 10px;
  left: 15px;
  background-color: #b700ff;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 20px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 1100; /* Ensure it appears above the sidebar */
}

.menu-toggle:hover {
  background-color: white;
  color: black;
}

.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.sidebar-links a:hover {
  background-color: #b700ff;
  color: white;
}

/* Dropdown Menu Styling */
.sidebar-links .dropdown-menu {
  display: none;
  flex-direction: column;
  margin-top: 10px;
}

.sidebar-links .dropdown.open .dropdown-menu {
  display: flex;
}

.sidebar-links .dropdown-menu li {
  margin-bottom: 10px;
}

/* Responsive Design for Mobile Only */
@media (max-width: 480px) {
  .mobile-sidebar,
  .menu-toggle {
    display: block;
  }
}

@media (min-width: 481px) {
  .mobile-sidebar,
  .menu-toggle {
    display: none;
  }
}

/* Banner Section */
.banner-wrapper {
  width: 100%;
  min-height: 100vh;
  background-color: #6f2da8;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.5s ease;
  padding: 1.042vw;
}

.banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 62.5vw;
  color: black;
  gap: 2.083vw;
}

.banner-content {
  flex: 1;
  text-align: left;
}

.banner-content h1 {
  font-size: 5.5em;
  margin-bottom: 1.042vw;
  color: black;
}

.banner-content p {
  font-size: 1.2em;
  line-height: 1.8;
  max-width: 31.25vw;
}

.banner-images {
  flex: 1;
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-images img {
  max-width: 120%;
  max-height: 120%;
  object-fit: contain;
  border-radius: 1.042vw;
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.banner-images img.active {
  opacity: 1;
}

/* Mobile (below 600px) */
@media (max-width: 600px) {
  .banner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .banner-wrapper {
    min-height: auto;
    padding: 10px;
  }

  .banner-images {
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    max-width: 100%;
    margin-top: 20px;
    position: relative;
  }

  .banner-images img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }

  .banner-images img.active {
    opacity: 1;
    position: relative;
  }

  .banner-content h1 {
    font-size: 3.5em;
  }

  .banner-content p {
    font-size: 1.1em;
    max-width: 100%;
  }
}

/* Tablet (601px to 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
  .banner-wrapper {
    padding: 20px;
  }

  .banner {
    flex-direction: column;
  }

  .banner-images {
    order: 1;
    height: auto;
    max-width: 100%;
  }

  .banner-content h1 {
    font-size: 4.5em;
  }

  .banner-content p {
    font-size: 1.1em;
    max-width: 100%;
  }
}

/* Small Laptop (1025px to 1366px) */
@media (min-width: 1025px) and (max-width: 1366px) {
  .banner-wrapper {
    padding: 1.042vw;
  }

  .banner {
    flex-direction: row;
  }

  .banner-content h1 {
    font-size: 3.5rem; /* Adjusted for small laptops */
  }

  .banner-images img {
    max-width: 120%;
    max-height: 120%;
  }

  .banner-content p {
    font-size: 1.2em;
  }
}

/* Desktop (1367px and above) */
@media (min-width: 1367px) {
  .banner-wrapper {
    padding: 1.042vw;
  }

  .banner {
    flex-direction: row;
  }

  .banner-content h1 {
    font-size: 5.5em; /* Keep h1 size for large screens */
  }

  .banner-images img {
    max-width: 120%;
    max-height: 120%;
  }

  .banner-content p {
    font-size: 1.2em;
  }
}

/* Main Content Section */
.main-content-wrapper {
  background-color: white;
  padding: 80px 20px;
  text-align: center;
}

.main-content {
  max-width: 800px;
  margin: 0 auto;
}

.main-content h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #6f2da8;
}

.main-content p {
  font-size: 1.2em;
  line-height: 1.8;
  color: #333;
}

/* App Download Section */
.app-download-section {
  background-color: #f9f9f9;
  padding: 50px 20px;
}

/* Container for layout */
.app-download-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Left Content (App Store and Google Play Images) */
.app-download-content {
  flex: 1;
  text-align: center;
}

.app-download {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.app-download img {
  width: 200px;
  transition: transform 0.3s ease;
}

.app-download img:hover {
  transform: scale(1.1);
}

/* Right Content (Mockup Image) */
.app-download-mockup {
  flex: 1;
  text-align: center;
}

.app-download-mockup img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.app-download-content-heading {
  font-size: 55px;
  color: #6f2da8;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .app-download-container {
    flex-direction: column;
  }

  .app-download img {
    width: 150px;
  }

  .app-download-mockup img {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .app-download img {
    width: 120px;
  }

  .app-download-mockup img {
    max-width: 250px;
  }
}

/* App Mockups Section */
.app-mockups-wrapper {
  background-color: white;
  padding: 150px;
  text-align: center;
  overflow: hidden; /* Prevent images from overflowing */
}

.app-mockups-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #6f2da8;
}

.app-mockups {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  max-width: 100%;
  gap: 10px;
  margin: 0 auto;
}

.app-mockups img {
  width: 100%;
  max-width: 14.063vw;
  height: auto;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0;
}

.app-mockups img:hover {
  transform: scale(1.05);
}

/* Responsive Design for smaller screens */
@media (max-width: 1024px) {
  .app-mockups img {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .app-mockups img {
    width: 45%;
  }
}

/* Mobile-Specific Styles (Only affect small screens below 480px) */
@media (max-width: 480px) {
  .app-mockups {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-content: center;
  }

  .app-mockups img {
    width: 100%;
    max-width: none;
  }

  .app-mockups-title {
    font-size: 2em;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .banner {
    flex-direction: column;
    text-align: center;
  }

  .banner-content {
    margin-bottom: 30px;
    text-align: center;
  }

  .banner-content h1 {
    font-size: 2.5em;
  }

  .banner-content p {
    margin: 0 auto;
  }

  .banner-images {
    height: 50vh;
  }

  .app-mockups img {
    width: 150px;
  }

  .main-content h2 {
    font-size: 2em;
  }

  .main-content p {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 2em;
  }

  .app-download img {
    width: 150px;
  }

  .app-mockups-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .banner-content h1 {
    font-size: 1.8em;
  }

  .banner-content p {
    font-size: 1em;
  }

  .app-download img {
    width: 120px;
  }

  .app-mockups img {
    width: 120px;
  }
}

/* EVENTS Section */
.not-just-dating-wrapper {
  background-color: #f4f4f9;
  padding: 60px 20px;
}

.not-just-dating-title {
  font-size: 3em;
  color: #6f2da8;
  text-transform: uppercase;
  margin-bottom: 50px;
  font-weight: 700;
  text-align: center;
}

.not-just-dating-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.not-just-dating-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  max-width: 560px;
}

.not-just-dating-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.not-just-dating-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  max-height: 250px;
  object-fit: cover;
}

.not-just-dating-card h2 {
  font-size: 1.8em;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

.not-just-dating-card p {
  font-size: 1em;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

@media (max-width: 992px) {
  .not-just-dating-content {
    flex-wrap: wrap;
    gap: 20px;
  }

  .not-just-dating-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .not-just-dating-title {
    font-size: 2.5em;
  }

  .not-just-dating-card {
    flex: 1 1 100%;
  }
}

/* VIBGYOR Events Section */
.vibgyor-events {
  background: linear-gradient(135deg, #805ad5, #ed64a6, #fda4af);
  padding: 40px 20px;
  text-align: center;
  color: #fff;
}

.vibgyor-events-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 10px;
}

.vibgyor-events h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.vibgyor-events p {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.6;
  color: #fdfdfd;
}

.vibgyor-cta-button {
  display: inline-block;
  background-color: #fff;
  color: black;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 20px;
}

.vibgyor-cta-button:hover {
  background-color: #b700ff;
  color: white;
}

/* For tablets (768px and below) */
@media (max-width: 768px) {
  .vibgyor-events h1 {
    font-size: 2rem;
  }

  .vibgyor-events p {
    font-size: 0.9rem;
  }

  .vibgyor-cta-button {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

/* For phones (480px and below) */
@media (max-width: 480px) {
  .vibgyor-events h1 {
    font-size: 1.8rem;
  }

  .vibgyor-events p {
    font-size: 0.85rem;
  }

  .vibgyor-cta-button {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

/* For larger laptops (1200px and above) */
@media (min-width: 1200px) {
  .vibgyor-events h1 {
    font-size: 3rem;
  }

  .vibgyor-events p {
    font-size: 1.1rem;
  }

  .vibgyor-cta-button {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

/* Browse Component Styling */
.Browse-component-wrapper {
  background-color: #f4f4f9;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.Browse-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left Side: Image */
.Browse-image {
  flex: 1;
  display: block;
  justify-content: center;
  align-items: center;
}

.Browse-image img {
  width: 340px;
  height: 669px;
  object-fit: contain;
  border-radius: 10px;
}

/* Right Side: Text Content */
.Browse-text {
  flex: 1;
  text-align: left;
}

.Browse-title {
  font-size: 3.5em;
  color: #6f2da8;
  margin-bottom: 20px;
}

.Browse-subtitle {
  font-size: 1.5em;
  margin-bottom: 20px;
  color: #555;
}

.Browse-list {
  list-style-type: disc;
  margin-left: 20px;
  font-size: 1.2em;
  line-height: 1.8;
  color: #333;
}

.Browse-list li {
  margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .Browse-content {
    flex-direction: column;
    text-align: center;
  }

  .Browse-image {
    margin-bottom: 20px;
    display: none;
  }

  .Browse-text {
    text-align: center;
  }
}

/* Discover Component Styling */
.discover-component-section {
  margin-left: 15.625vw;
}

.discover-component-wrapper {
  background-color: #f4f4f9;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.discover-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  flex-wrap: wrap;
}

/* Left Side: Text Content */
.discover-text {
  flex: 1;
  text-align: left;
}

.discover-title {
  font-size: 3.5em;
  color: #6f2da8;
  margin-bottom: 20px;
}

.discover-subtitle {
  font-size: 1.5em;
  margin-bottom: 20px;
  color: #555;
}

.discover-list {
  list-style-type: disc;
  margin-left: 20px;
  font-size: 1.2em;
  line-height: 1.8;
  color: #333;
}

.discover-list li {
  margin-bottom: 15px;
}

/* Right Side: Overlapping Images */
.discover-images {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.image-wrapper {
  position: relative;
  width: 340px;
  height: 669px;
}

.image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  position: absolute;
  transition: transform 0.3s ease;
}

.image-front {
  z-index: 2;
  transform: translate(20px, 20px);
}

.image-back {
  z-index: 1;
  transform: translate(-20px, -20px);
  opacity: 0.8;
}

/* Hover Effect */
.image-wrapper:hover .image-front {
  transform: translate(25px, 25px) scale(1.05);
}

.image-wrapper:hover .image-back {
  transform: translate(-25px, -25px) scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .discover-component-section {
    margin-left: 5vw;
  }

  .discover-content {
    flex-direction: column;
    text-align: left;
  }

  .discover-text {
    text-align: center;
    margin-bottom: 20px;
  }

  .discover-images {
    justify-content: center;
    display: none;
  }

  .image-wrapper {
    width: 280px;
    height: 550px;
  }
}

/* Work Section */
.work-section {
  display: flex;
  align-items: center;
  padding: 70px 20px;
  background-color: #f9f9f9;
  gap: 20px;
  justify-content: center;
}

.work-section .content {
  width: 40%;
  text-align: left;
}

.work-section .content h4 {
  color: #800080;
  font-weight: 600;
  margin-bottom: 10px;
}

.work-section .content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 10px 0;
}

.work-section .content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.work-section .join-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: bold;
  color: black;
  background-color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.work-section .join-button:hover {
  background-color: #555;
}

.work-section .images {
  width: 40%;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.work-section .images img {
  border-radius: 10px;
  width: 15.625vw;
  height: 15.625vw;
  object-fit: cover;
}

/* Responsive design */
@media (max-width: 768px) {
  .work-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .work-section .content {
    width: 100%;
    margin-bottom: 20px;
    justify-content: center;
  }

  .work-section .images {
    width: 100%;
    display: block;
    margin-top: 20px;
    text-align: center;
  }

  .work-section .images img {
    width: 80%;
    height: auto;
    margin-bottom: 10px;
  }

  .work-section .content h1 {
    font-size: 2rem;
  }

  .work-section .content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .work-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .work-section .content h1 {
    font-size: 1.5rem;
    justify-content: center;
  }

  .work-section .content p {
    font-size: 0.85rem;
  }

  .work-section .join-button {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* Wrapper for the Testimonials Section */
.testimonials-wrapper {
  background-color: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

/* Heading Wrapper */
.testimonials-heading-wrapper {
  text-align: center;
  margin-bottom: 40px;
  padding: 20px;
  background: linear-gradient(135deg, #6f2da8, #ff79c6);
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Main Heading */
.testimonials-heading {
  font-size: 2.5em;
  font-weight: bold;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: -webkit-linear-gradient(#ffffff, #d4b3e4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subheading */
.testimonials-subheading {
  font-size: 1.2em;
  margin-top: 10px;
  font-weight: 500;
  color: #f8d0ff;
  line-height: 1.5;
}

/* Slider Container */
.testimonials-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

/* Individual Testimonial */
.testimonial-slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

/* Testimonial Text */
.testimonial-text {
  font-size: 1em;
  font-style: italic;
  color: #555;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* Testimonial Author */
.testimonial-author {
  font-size: 0.9em;
  font-weight: bold;
  color: #6f2da8;
}

/* Dots Navigation */
.testimonial-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.testimonial-dot.active {
  background-color: #6f2da8;
}

/* Responsive Design */

/* Tablets (768px to 1024px) */
@media (max-width: 1024px) {
  .testimonials-heading-wrapper {
    padding: 15px;
  }
  .testimonials-heading {
    font-size: 2em;
  }
  .testimonials-subheading {
    font-size: 1em;
  }
  .testimonial-text {
    font-size: 0.95em;
  }
  .testimonial-author {
    font-size: 0.85em;
  }
}

/* Mobile (480px to 767px) */
@media (max-width: 767px) {
  .testimonials-wrapper {
    padding: 20px 10px;
  }
  .testimonials-heading-wrapper {
    margin-bottom: 30px;
    padding: 10px;
  }
  .testimonials-heading {
    font-size: 1.8em;
  }
  .testimonials-subheading {
    font-size: 0.9em;
  }
  .testimonial-text {
    font-size: 0.9em;
  }
  .testimonial-author {
    font-size: 0.8em;
  }
}

/* Very Small Devices (Below 480px) */
@media (max-width: 480px) {
  .testimonials-heading {
    font-size: 1.5em;
  }
  .testimonials-subheading {
    font-size: 0.8em;
  }
  .testimonial-text {
    font-size: 0.85em;
    line-height: 1.4;
  }
  .testimonial-author {
    font-size: 0.75em;
  }
  .testimonial-dots {
    gap: 5px;
  }
  .testimonial-dot {
    width: 8px;
    height: 8px;
  }
}

/* Contact Section Styles */
#contact {
  padding: 60px 20px;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-container h1 {
  text-align: center;
  color: #333;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: bold;
  color: #555;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  background: #f9f9f9; /* Clean, subtle background */
  color: #333;
}

.form-group textarea {
  resize: none;
  height: 120px;
}

input::placeholder,
textarea::placeholder {
  color: #888;
}

input:focus,
textarea:focus {
  border-color: #6a11cb;
  box-shadow: 0 0 8px rgba(106, 17, 203, 0.3);
}

.submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: linear-gradient(to right, #ff77a9, #ff9a8b, #fecfef);
  transition: transform 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    padding: 20px;
  }

  .form-row {
    flex-direction: column;
  }

  .form-group {
    width: 100%;
  }
}

/* Footer CSS */
/* Footer Styles */
.custom-footer {
  background-color: #121212;
  color: #fff;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

/* Left Section: Branding */
.footer-item.join-section {
  text-align: center;
  flex: 1;
  margin-bottom: 20px;
}

.footer-item p {
  font-size: 14px;
  margin-top: 10px;
  color: #bbb;
}

/* Center Section: Navigation Links */
.footer-links-center {
  display: flex;
  flex-wrap: wrap; /* Adjust links into multiple rows on smaller screens */
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex: 1;
  margin-bottom: 20px;
  text-align: center;
}

.footer-links-center a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links-center a:hover {
  color: #ff9a8b; /* Subtle hover effect */
}

/* Right Section: Social Media */
.footer-links-social {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.social-link {
  color: white;
  font-size: 20px;
  transition: transform 0.3s, color 0.3s;
}

.social-link:hover {
  color: #ff9a8b;
  transform: scale(1.1); /* Add scaling effect on hover */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .footer-container {
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
  }

  .footer-links-center {
    gap: 10px; /* Reduce spacing between links */
  }

  .footer-links-center a {
    font-size: 15px; /* Slightly larger font for medium screens */
  }

  .social-link {
    font-size: 18px; /* Adjust size of icons */
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column; /* Stack sections vertically */
    align-items: center; /* Center-align all sections */
    text-align: center;
  }

  .footer-item.join-section,
  .footer-links-center,
  .footer-links-social {
    flex: none;
    width: 100%; /* Make each section occupy full width */
    margin-bottom: 15px; /* Add spacing between sections */
  }

  .footer-links-center a {
    font-size: 14px;
  }

  .social-link {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .footer-item.join-section img {
    width: 150px; /* Scale down the logo for small screens */
  }

  .footer-links-center {
    gap: 8px; /* Reduce gap further for very small screens */
  }

  .footer-links-center a {
    font-size: 13px; /* Smaller font size for better readability */
  }

  .social-link {
    font-size: 16px; /* Scale down icons */
  }
}

@media (max-width: 360px) {
  .footer-container {
    padding: 20px 10px; /* Reduce padding for extra small screens */
  }

  .footer-links-center a {
    font-size: 12px; /* Ensure text doesn't overflow */
  }

  .social-link {
    font-size: 14px;
  }
}
