@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {

  /*========== Colors ==========*/
  /* Primary Colors - Premium Red Theme */
  --primary-color: #dc2626;
  --secondary-color: #991b1b;
  --accent-color: #fbbf24;
  --bg-gradient: linear-gradient(135deg, #dc2626 0%, #7f1d1d 100%);
  --text-color: #1f2937;
  --white: #ffffff;
  --light-gray: #e5e7eb;
  --dark-gray: #6b7280;
  --border-radius: 12px;
  --box-shadow: 0 10px 25px rgba(220, 38, 38, 0.15);
  --premium-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
  --container-max-width: 900px;
  --header-height: 3.5rem;

  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: hsl(220, 24%, 12%);
  --header-color: rgba(220, 38, 38, 0.95);
  /* Glassmorphism background */
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;
  --quote-font-size: rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--bg-gradient);
  padding: 20px;
  color: var(--text-color);
  overflow-x: hidden;
}

/* Premium Hero Section */
.premium-hero {
  position: relative;
  width: 100%;
  max-width: var(--container-max-width);
  margin: 20px auto;
  padding: 60px 30px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(153, 27, 27, 0.05));
  border-radius: 24px;
  border: 2px solid rgba(220, 38, 38, 0.1);
  box-shadow: var(--premium-shadow);
  overflow: hidden;
}

.premium-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero {
  border: solid 1px rgba(220, 38, 38, 0.2);
  max-width: var(--container-max-width);
  background-color: var(--white);
  border-radius: var(--border-radius);
  text-align: center;
  width: 100%;
  display: block;
  margin: 20px 0;
  padding: 10px;
  box-shadow: var(--premium-shadow);
}

.mainheading {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.herodescription {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-color);
  text-align: center;
  margin: 0 auto 30px;
  max-width: 800px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

/* Stats Row */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease-out 0.4s both;
}

.stat-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  backdrop-filter: blur(10px);
  border: 2px solid rgba(220, 38, 38, 0.2);
  border-radius: 16px;
  padding: 20px 30px;
  text-align: center;
  min-width: 150px;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.25);
  border-color: var(--accent-color);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--dark-gray);
  font-weight: 500;
}

/* Hero Search Bar */
.hero-search {
  display: flex;
  max-width: 600px;
  margin: 30px auto;
  background: var(--white);
  border-radius: 50px;
  padding: 5px;
  box-shadow: 0 10px 40px rgba(220, 38, 38, 0.2);
  border: 2px solid rgba(220, 38, 38, 0.2);
  animation: fadeInUp 1.4s ease-out 0.6s both;
  transition: all 0.3s ease;
}

.hero-search:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 15px 50px rgba(220, 38, 38, 0.3);
  transform: translateY(-2px);
}

.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 15px 25px;
  font-size: 1rem;
  border-radius: 50px;
  color: var(--text-color);
}

.hero-search input::placeholder {
  color: var(--dark-gray);
}

.search-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  border-radius: 50px;
  padding: 15px 30px;
  color: var(--white);
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.search-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* Featured Categories */
.featured-categories {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
  animation: fadeInUp 1.6s ease-out 0.8s both;
}

.featured-label {
  font-weight: 600;
  color: var(--dark-gray);
  font-size: 0.95rem;
}

.category-chip {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(220, 38, 38, 0.1);
  border: 2px solid rgba(220, 38, 38, 0.3);
  border-radius: 25px;
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.category-chip:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
  border-color: var(--accent-color);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: var(--primary-color);
  font-size: 1.5rem;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

.mainquotes {
  width: 100%;
  max-width: var(--container-max-width);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 10px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}


.mainquotes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/static/images/bg.avif);
  background-size: cover;
  background-position: center;
  filter: blur(5px);
  z-index: -1;
}

.mainquotes::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3));
  z-index: -1;
}


/* Container Styles */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--premium-shadow);
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid rgba(220, 38, 38, 0.1);
  transition: all 0.3s ease;
}

.container:hover {
  box-shadow: 0 25px 70px rgba(220, 38, 38, 0.2);
}

/* Header Styles 
.header {
    font-size: 35px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}
*/
/* Content Styles */
.content {
  padding: 10px;
  margin-top: 10px;
  /* margin-bottom: 35px; */
}

.quote-area {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  min-height: 200px;
  font-size: 1.5rem;
  text-align: center;
}

.quote-area i {
  font-size: 20px;
  color: var(--primary-color);
}

.quote-area p {
  font-size: var(--quote-font-size);
}


/* Hide icons by default */
.fa-quote-left,
.fa-quote-right {
  display: none;
}

/* Show icons only on screens larger than 786px */
@media screen and (min-width: 786px) {

  .fa-quote-left,
  .fa-quote-right {
    display: inline-block;
  }
}




.author {
  display: flex;
  font-size: 18px;
  font-style: italic;
  justify-content: flex-end;
}

.author span:first-child {
  margin: -7px 5px 0 0;
  font-family: monospace;
}

/* Buttons Styles */
.buttons {
  border-top: 1px solid var(--light-gray);
  padding-top: 20px;
}

.download {
  font-size: 120%;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 20px;
}

.features ul {
  display: flex;
  list-style: none;
  margin-right: 10px;
  margin-bottom: 10px;
}

.features ul li {
  margin: 0 5px;
  height: 47px;
  width: 47px;
  display: flex;
  cursor: pointer;
  color: var(--primary-color);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(220, 38, 38, 0.05);
}

.features ul li:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

.features button,
.button {
  border: none;
  outline: none;
  color: var(--white);
  cursor: pointer;
  font-size: 16px;
  padding: 13px 22px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: var(--premium-shadow);
  border: 2px solid rgba(251, 191, 36, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.features button:hover,
.button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 25px 70px rgba(220, 38, 38, 0.4);
  border-color: var(--accent-color);
}

.features button.new-shayari,
.button {
  background-color: var(--primary-color);
}

.features button i {
  margin-right: 8px;
}

button.loading {
  opacity: 0.7;
  pointer-events: none;
}


/* Text Styles */
.text {
  text-align: justify;
}

.text h2 {
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
}

.text p {
  margin-bottom: 10px;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: var(--white);
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 30%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.close {
  color: var(--light-gray);
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: var(--text-color);
  text-decoration: none;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .container {
    padding: 20px;
  }

  .premium-hero {
    padding: 40px 20px;
    margin: 15px auto;
  }

  .mainheading {
    font-size: 2rem;
  }

  .herodescription {
    font-size: 1rem;
    padding: 0 10px;
  }

  .stats-row {
    gap: 15px;
  }

  .stat-card {
    padding: 15px 20px;
    min-width: 120px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .hero-search {
    flex-direction: column;
    border-radius: 16px;
    padding: 10px;
  }

  .hero-search input {
    border-radius: 12px;
    margin-bottom: 10px;
  }

  .search-btn {
    border-radius: 12px;
    width: 100%;
  }

  .featured-categories {
    flex-direction: column;
    gap: 10px;
  }

  /* 
    .header {
        font-size: 28px;
    } */

  .quote-area .quote {
    font-size: 18px;
    padding: 0 10px;
  }

  .features ul li {
    height: 40px;
    width: 40px;
  }

  .features button {
    font-size: 14px;
    padding: 10px 18px;
  }

  .controls button {
    font-size: 14px;
    padding: 8px 12px;
  }

  .shareChildBtn {
    font-size: 14px;
    padding: 8px 12px;
  }

  .modal-content {
    width: 80%;
  }
}

.pnbtn {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  top: 0;
  bottom: 0;
}

.share-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.share-button {
  border-radius: 20px;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 250px;
  width: 40%;
}

.share-button:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.shareconth2 {
  font-size: large;
  font-style: oblique;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
  border-bottom: solid 2px var(--light-gray);
}



/*=============== VARIABLES CSS ===============*/


/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}




ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.navcont {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white !important;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
  z-index: var(--z-fixed);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(251, 191, 36, 0.3);
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}

.nav__logo,
.nav__burger,
.nav__close {
  color: var(--white-color);
}

.nav__data {
  height: 100%;
  display: flex;
  margin-left: 15px;
  margin-right: 15px;
  justify-content: space-between;
  align-items: center;
}

.nav__link {
  margin-right: 20px;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: 700;
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.3s ease;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

.nav__logo:hover {
  transform: scale(1.05);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.4rem;
  color: var(--accent-color);
  text-shadow: 0 0 8px rgba(251, 191, 36, 0.8);
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger,
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.95), rgba(153, 27, 27, 0.95));
    /* Glassmorphism background */
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.4);
    /* Glassmorphism shadow */
    backdrop-filter: blur(15px);
    /* Glassmorphism effect */
    border-radius: 15px;
    /* Adjust as needed */
    padding: 1.5rem;
    /* Adjust padding as needed */
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Glassmorphism border */
  }

  .nav__menu::-webkit-scrollbar {
    width: 0;
  }

  .nav__list {
    padding-top: 1rem;
    text-align: left;
  }
}

.nav__link {
  color: var(--white);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: left;
  gap: 20px;
  align-items: center;

}

.nav__link:hover {
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  backdrop-filter: blur(10px);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  /* Glassmorphism hover effect */
}



/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}


/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link,
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--white-color);
  background-color: var(--black-color-light);
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color .3s;
}

.dropdown__link i,
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover,
.dropdown__sublink:hover {
  background-color: var(--black-color);
}

.dropdown__menu,
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover>.dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: var(--black-color-lighten);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .navcont {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
  .navcont {
    margin-inline: auto;
  }

  .nav {
    /* height: var(--header-height); */
    display: flex;
    justify-content: space-between;
  }

  .nav__toggle {
    display: none;
  }

  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }

  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
  }

  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item,
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu,
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
  }

  .dropdown__link,
  .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: .5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top .3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover>.dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }
}




/* ===============  CSS For Category   ================ */
.category {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 40px;
  margin-bottom: 20px;
  justify-content: space-around;
}

.category-link {
  border-radius: 20px;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background-color: rgba(220, 38, 38, 0.05);
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: calc(50% - 10px); /* 2 columns on desktop */
  box-sizing: border-box; /* Ensure padding doesn't affect width */
  position: relative;
  overflow: hidden;
}

.category-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.3), transparent);
  transition: left 0.5s;
}

.category-link:hover::before {
  left: 100%;
}

/* 1 column on mobile */
@media screen and (max-width: 500px) {
  .category-link {
    width: 90%; 
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .category-link {
    width: calc(30% - 10px); /* 2 columns on tablet */
  }
}

.category-link:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--premium-shadow);
  border-color: var(--accent-color);
}

.cat-content {
  text-align: center;
}

.cat-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 20px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border: solid 2px rgba(220, 38, 38, 0.2);
  border-radius: 20px;
  padding: 15px 0;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.15);
}




/* Footer Styles */
.footer {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  width: 100%;
  padding: 40px 20px;
  margin-bottom: 0;
  border-top: 2px solid rgba(251, 191, 36, 0.3);
  box-shadow: 0px -10px 30px rgba(220, 38, 38, 0.3);
}

.footer__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer__col {
  flex: 1 1 100%; /* Change to full width by default */
  margin-bottom: 20px;
}

.footer__col h3 {
  margin-bottom: 10px;
}

.footer__col ul {
  list-style: none;
  padding-left: 0;
}

.footer__col ul li {
  margin-bottom: 8px;
}

.footer__col a {
  color: var(--white);
  text-decoration: none;
}

.social-icons {
  display: flex;
  flex-direction: column;
}

.social-icon {
  margin-bottom: 10px; /* Adjust spacing between icons */
  color: var(--white);
  text-decoration: none;
}

a:hover {
  color: var(--accent-color); /* Premium gold accent on hover */
}

.button-wrapper {
  position: relative;
  width: 100%;
  margin-top: 20px; /* Adjust spacing between button and social icons */
}

.button {
  position: absolute;
  width: 100%;
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

/* Media Query for Mobile Devices */
@media (min-width: 768px) {
  .footer__col {
    flex: 1 1 30%; /* Change back to desired width for desktop */
  }
}
