/*-----------------------------------*\
  #style.css
\*-----------------------------------*/


/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors - Updated color palette
   */

  --primary-blue: #3052a2;
  --green: #317d51;
  --gold: #d5b456;

  --bright-yellow-crayola: hsl(40, 100%, 50%);
  --medium-turquoise: hsl(172, 48%, 59%);
  --silver-chalice: hsl(0, 0%, 70%);
  --eerie-black-1: hsl(0, 0%, 13%);
  --eerie-black-2: hsl(0, 0%, 15%);
  --eerie-black-3: hsl(228, 10%, 10%);
  --raisin-black: hsl(220, 8%, 14%);
  --granite-gray: hsl(0, 0%, 38%);
  --sonic-silver: hsl(0, 0%, 47%);
  --pistachio_50: hsla(85, 56%, 64%, 0.5);
  --baby-powder: hsl(86, 41%, 97%);
  --light-gray: hsl(0, 0%, 80%);
  --pistachio: #d5b456;
  --platinum: hsl(0, 0%, 91%);
  --cultured: hsl(0, 0%, 94%);
  --white-60: hsla(0, 0%, 100%, 0.6);
  --white_50: hsla(0, 0%, 100%, 0.5);
  --white_10: hsla(0, 0%, 100%, 0.1);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --jet: hsl(0, 0%, 18%);
  --clr-bg-header: hsl(0, 0%, 0%);
  --clr-btn: hsl(0, 0%, 0%);
  --clr-dropdown: var(--green);
  --clr-nav-hover: var(--green);
  --clr-dropdown-hov: var(--green);
  --clr-dropdown-link-hov: var(--gold);
  --clr-light: #FAFAFA;

  /**
   * typography
   */

  --ff-oswald: 'Oswald', sans-serif;
  --ff-inter: 'Inter', sans-serif;
  --ff-roboto: 'Roboto', sans-serif;

  --fs-1: 13rem;
  --fs-2: 4rem;
  --fs-3: 3.5rem;
  --fs-4: 3rem;
  --fs-5: 2.4rem;
  --fs-6: 2.2rem;
  --fs-7: 2rem;
  --fs-8: 1.8rem;
  --fs-9: 1.5rem;
  --fs-10: 1.4rem;

  --fw-300: 300;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  /**
   * spacing
   */

  --section-padding: 60px;

  /**
   * shadow
   */

  --card-shadow: 0 5px 20px -8px hsla(0, 0%, 0%, 0.15);

  /**
   * transition
   */

  --transition-1: 0.05s ease;
  --transition-2: 0.25s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

a,
img,
span,
time,
input,
strong,
button,
ion-icon {
  display: block;
}

img {
  height: auto;
  max-width: 100%;
}

ion-icon {
  pointer-events: none;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline-offset: 4px;
}

::selection {
  background-color: var(--white_10);
}

html {
  font-family: var(--ff-roboto);
  color: var(--granite-gray);
  font-size: 10px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--white);
  font-size: 1.6rem;
  line-height: 1.8;
  overflow-x: hidden;
  max-width: 100vw;
}

::-webkit-scrollbar {
  width: 13px;
}

::-webkit-scrollbar-track {
  background-color: hsl(0, 0%, 95%);
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary-blue);
}





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 15px;
  max-width: 100%;
  overflow-x: hidden;
}

.section-subtitle {
  color: var(--color, var(--eerie-black-1));
  font-size: var(--fs, var(--fs-8));
  font-family: var(--ff, var(--ff-roboto));
  font-weight: var(--fw-700);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Headings - Bold and Clear */
.h1,
.h2,
.h3,
.h4,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--fw-700);
  line-height: 1.4;
}

.h1 {
  font-size: var(--fs-2);
  color: var(--eerie-black-1);
}

.h2 {
  font-size: var(--fs-3);
  color: var(--eerie-black-1);
}

.h3 {
  font-size: var(--fs-5);
  color: var(--eerie-black-1);
}

.h4 {
  color: var(--white);
  font-size: var(--fs-6);
}

.btn {
  position: relative;
  background-color: var(--btn-bg, var(--primary-blue));
  color: var(--white);
  font-weight: var(--fw-600);
  padding: 12px 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-2);
  border-radius: 4px;
}

.btn ion-icon {
  --ionicon-stroke-width: 55px;
  font-size: 1.8rem;
}

.btn:not(.btn-outline)::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--btn-bg, var(--primary-blue));
  transform: translate(5px, 5px);
  transition: var(--transition-2);
  border-radius: 4px;
}

.btn:is(:hover, :focus)::after {
  transform: translate(0, 0);
}

.btn-secondary {
  --btn-bg: var(--black);
}

.btn-secondary:is(:hover, :focus) {
  --btn-bg: var(--primary-blue);
}

.btn-outline {
  border: 2px solid var(--white);
  background-color: transparent;
}

.btn-white {
  --btn-bg: var(--platinum);
  color: var(--black);
}

.btn-primary {
  --btn-bg: var(--green);
}

.btn-primary:hover {
  --btn-bg: var(--primary-blue);
}

.section {
  padding-block: var(--section-padding);
}

.w-100 {
  width: 100%;
}

.section-text {
  line-height: 2;
}

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

/* Navbar */

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #000;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
}

nav .navbar {
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto;
  padding: 0 30px;
  gap: 20px;
}

.navbar .logo {
  flex-shrink: 0;
}

.navbar .logo a {
  display: block;
  text-decoration: none;
}

.navbar .logo-text {
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  margin: 0;
  line-height: 70px;
}

.navbar .nav-links {
  margin-left: auto;
}

nav .navbar .nav-links {
  line-height: 70px;
  height: 100%;
  flex-shrink: 0;
}

nav .navbar .links {
  display: flex;
}

nav .navbar .links li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}

nav .navbar .links li a {
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
  transform: rotate(180deg);
}

nav .navbar .links li .arrow {
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
}

nav .navbar .links li .sub-menu {
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: #317d51;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}

nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
  display: block;
}

.navbar .links li .sub-menu li {
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .links li .sub-menu a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.navbar .links li .sub-menu .more-arrow {
  line-height: 40px;
}

.navbar .links li .sub-menu .more-sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}

.links li .sub-menu .more:hover .more-sub-menu {
  display: block;
}

.navbar .search-box {
  position: relative;
  height: 40px;
  width: 40px;
}

.navbar .search-box i {
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.navbar .search-box .input-box {
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #317d51;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}

.navbar.showInput .search-box .input-box {
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #0000;
}

.search-box .input-box::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #0000;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}

.search-box .input-box input {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}

.navbar .nav-links .sidebar-logo {
  display: none;
}

.navbar .bx-menu {
  display: none;
}

@media (max-width:920px) {
  nav .navbar {
    max-width: 100%;
    padding: 0 20px;
  }

  .navbar .logo-text {
    font-size: 18px;
  }

  nav .navbar .links li {
    padding: 0 10px;
    white-space: nowrap;
  }

  nav .navbar .links li a {
    font-size: 14px;
  }
}

@media (max-width:800px) {

  .navbar .bx-menu {
    display: block;
  }

  nav .navbar .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background: #317d51;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }

  .navbar .nav-links .sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .sidebar-logo .logo-name {
    font-size: 20px;
    color: #fff;
  }

  .sidebar-logo i,
  .navbar .bx-menu {
    font-size: 25px;
    color: #fff;
  }

  nav .navbar .links {
    display: block;
    margin-top: 20px;
  }

  nav .navbar .links li .arrow {
    line-height: 40px;
  }

  nav .navbar .links li {
    display: block;
  }

  nav .navbar .links li .sub-menu {
    position: relative;
    top: 0;
    box-shadow: none;
    display: none;
  }

  nav .navbar .links li .sub-menu li {
    border-bottom: none;

  }

  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
    position: relative;
    left: 0;
  }

  .navbar .links li .sub-menu .more-sub-menu li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .links li:hover .htmlcss-arrow,
  .links li:hover .js-arrow {
    transform: rotate(0deg);
  }

  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
  }

  .navbar .links li .sub-menu .more span {
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu {
    display: none;
  }

  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu {
    display: none;
  }

  .navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu {
    display: block;
  }

  .navbar .nav-links.show1 .links .htmlcss-arrow,
  .navbar .nav-links.show3 .links .js-arrow {
    transform: rotate(180deg);
  }

  .navbar .nav-links.show2 .links .more-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width:370px) {
  nav .navbar .nav-links {
    max-width: 100%;
  }
}



/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  background-color: var(--white);
  color: var(--eerie-black-1);
  min-height: 500px;
  padding-block: 80px 40px;
  display: grid;
  align-items: center;
  background-position: center;
  background-image: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

@media (min-width: 992px) {
  .hero-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content {
    flex: 1;
    max-width: 55%;
  }

  .hero-image {
    flex: 1;
    max-width: 40%;
  }
}

.hero .section-subtitle {
  --color: var(--eerie-black-1);
  --ff: var(--ff-inter);
  --fs: var(--fs-7);
}

.hero-title {
  font-size: 35px;
  margin-block: 20px;
  line-height: 1.2;
  color: var(--eerie-black-1);
  font-weight: var(--fw-700);
}

.hero-text {
  font-family: var(--ff-inter);
  font-size: var(--fs-8);
  letter-spacing: -1px;
  max-width: 50ch;
  margin-block-end: 25px;
}

/* HERO REVEAL ANIMATIONS */
.hero .section-subtitle,
.hero-title,
.hero-text,
.hero .btn {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease-out forwards;
}

/* Stagger the animations */
.hero .section-subtitle {
  animation-delay: 0.2s;
}

.hero-title {
  animation-delay: 0.4s;
}

.hero-text {
  animation-delay: 0.6s;
}

.hero .btn {
  animation-delay: 0.8s;
}

/* Keyframes */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*-----------------------------------*\
  #FEATURES - SOLID GOLD BACKGROUND
\*-----------------------------------*/

.features {
  padding-block: 40px;
  background-color: var(--green) !important;
  margin-top: 0;
}

.features-list {
  display: grid;
  gap: 30px;
}

.features-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.features-item .item-icon {
  color: var(--gold);
  font-size: 5.5rem;
  margin-block-start: 10px;
  flex-shrink: 0;
}

.features-item .item-icon ion-icon {
  --ionicon-stroke-width: 25px;
}

.features-item .item-title {
  margin-block-end: 10px;
  color: var(--white);
  font-weight: var(--fw-700);
}

.features-item .item-text {
  max-width: 25ch;
  color: var(--white);
  font-size: var(--fs-9);
}





/*-----------------------------------*\
  #ABOUT - Centered "Why We Exist" Section
\*-----------------------------------*/

.about {
  padding-block-start: 60px;
}

.about-banner {
  position: relative;
  max-width: max-content;
  margin-block-end: 30px;
}

.deco-title {
  font-size: var(--fs-1);
  font-weight: var(--fw-700);
  white-space: nowrap;
  line-height: 0.5;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--light-gray);
  transform-origin: top left;
  transform: rotate(0.25turn);
  position: absolute;
  top: 55%;
  left: 100%;
  z-index: -1;
}

.deco-img {
  position: absolute;
  top: -40px;
  left: 0;
  z-index: -1;
}

.about-img {
  max-width: max-content;
  margin-block-end: 30px;
}

.about .section-subtitle {
  margin-block-end: 10px;
  justify-content: center;
}

.about .section-title {
  text-align: center;
  margin-bottom: 20px;
}

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

/* About Us intro paragraphs with proper spacing */
.about-intro {
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-intro:last-of-type {
  margin-bottom: 40px;
}

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

.about-cards>li {
  flex: 1 1 300px;
  max-width: 350px;
}

.tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-block: 25px 35px;
}

.tab-btn {
  background-color: var(--platinum);
  color: var(--granite-gray);
  font-size: var(--fs-8);
  font-weight: var(--fw-500);
  padding: 10px 32px;
}

.tab-btn.active {
  background-color: var(--primary-blue);
  color: var(--white);
}

.tab-list {
  margin-block: 25px 50px;
}

.tab-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-block: 5px;
}

.tab-item .item-icon {
  font-size: 3rem;
  color: var(--green);
}

.tab-text {
  color: var(--eerie-black-2);
  font-size: var(--fs-8);
  font-weight: var(--fw-500);
}





/*-----------------------------------*\
  #CTA
\*-----------------------------------*/

.cta-content {
  background-color: var(--green);
  text-align: center;
  padding: 50px 15px;
  margin-block-end: 30px;
}

.cta .section-title {
  color: var(--white);
  font-size: var(--fs-4);
  font-weight: var(--fw-700);
  line-height: 1.2;
  margin-block-end: 25px;
}

.cta .btn-outline {
  margin-inline: auto;
}

.cta-banner {
  background-color: var(--light-gray);
}

.cta-h3 {
  color: hsl(0, 0%, 100%);
  margin-bottom: 25px;
}



/*-----------------------------------*\
  #SERVICE - Equal height cards
\*-----------------------------------*/

.service {
  background-color: var(--baby-powder);
  background-repeat: no-repeat;
  background-position: center top;
  margin-block-start: -100px;
  padding-block-start: 120px;
}

.service .section-title {
  margin-block: 10px 40px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
  margin-top: 30px;
}

/* Equal height service cards */
.service-list>li {
  display: flex;
  width: 100%;
  max-width: 350px;
}

.service-card {
  background-color: var(--white);
  text-align: center;
  padding: 45px 40px;
  border-radius: 2px;
  outline: 3px solid transparent;
  box-shadow: var(--card-shadow);
  transition: var(--transition-2);
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 350px;
}

.service-card:is(:hover, :focus-within) {
  outline-color: var(--green);
}

.service-card .card-icon {
  color: var(--green);
  font-size: 7rem;
  max-width: max-content;
  margin-inline: auto;
}

.service-card .card-icon ion-icon {
  --ionicon-stroke-width: 20px;
}

.service-card .card-title {
  letter-spacing: -1px;
  margin-block: 10px;
  color: var(--primary-blue);
  font-weight: var(--fw-700);
}

.service-card .card-text {
  font-family: var(--ff-inter);
  flex-grow: 1;
}

.service-card .btn {
  margin-top: auto;
  justify-content: center;
}

.btn-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: var(--silver-chalice);
  font-size: var(--fs-8);
  font-weight: var(--fw-600);
  margin-block-start: 15px;
}

.btn-link span {
  text-decoration: underline;
}





/*-----------------------------------*\
  #DONATE
\*-----------------------------------*/

.donate-list {
  display: grid;
  gap: 60px;
}

.donate-card {
  box-shadow: var(--card-shadow);
}

.donate-card .card-banner {
  background-color: var(--light-gray);
}

.donate-card .card-content {
  background-color: var(--white);
  padding: 35px;
}

.progress-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.progress-text {
  display: flex;
  gap: 5px;
  font-size: var(--fs-8);
}

.progress-text data {
  color: var(--eerie-black-2);
  font-weight: var(--fw-600);
}

.donate-card .card-title {
  --fs-5: 2.1rem;
}

.progress-box {
  background-color: var(--cultured);
  border-radius: 20px;
  margin-block: 10px 20px;
}

.progress {
  height: 6px;
  width: 83%;
  background-color: var(--green);
  border-radius: inherit;
}

.progress-value {
  color: var(--green);
  font-size: var(--fs-7);
  font-weight: var(--fw-600);
}

.card-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  margin-block: 15px;
}

.donate-card .card-wrapper-text {
  display: flex;
  gap: 5px;
}

.donate-card .card-wrapper-text span {
  color: var(--sonic-silver);
  font-weight: var(--fw-500);
}

.card-wrapper-text data {
  font-weight: var(--fw-600);
}

.card-wrapper-text .green {
  color: var(--green);
}

.card-wrapper-text .yellow {
  color: var(--gold);
}

.card-wrapper-text .cyan {
  color: var(--medium-turquoise);
}





/*-----------------------------------*\
  #TESTIMONIALS
\*-----------------------------------*/

.testi {
  background-color: var(--jet);
}

.testi-content {
  padding: var(--section-padding) 15px;
}

.testi .section-title {
  color: var(--white);
  margin-block: 10px 40px;
  font-weight: var(--fw-700);
}

.testi-card {
  color: var(--white);
}

.testi-text,
.testi-name {
  font-size: var(--fs-8);
}

.testi-text,
.testi-title {
  font-family: var(--ff-inter);
}

.testi-text {
  padding-block-end: 30px;
  border-block-end: 1px solid var(--white_10);
  margin-block: 20px 30px;
}

.testi-name {
  font-weight: var(--fw-700);
  color: var(--gold);
}

.testi-title {
  color: var(--white_50);
  font-size: var(--fs-10);
}

.testi-banner {
  background-color: var(--light-gray);
}





/*-----------------------------------*\
  #PARTNER
\*-----------------------------------*/

.partner {
  background-color: var(--baby-powder);
}

.partner .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.partner-logo .color,
.partner-logo:is(:hover, :focus) .gray {
  display: none;
}

.partner-logo:is(:hover, :focus) .color,
.partner-logo .gray {
  display: block;
}





/*-----------------------------------*\
  #EVENT
\*-----------------------------------*/

.event {
  padding-block-end: 80px;
}

.event .section-subtitle {
  justify-content: center;
}

.event .section-title {
  text-align: center;
  margin-block: 15px 30px;
}

.event-list {
  display: grid;
  gap: 30px;
  margin-block-end: 70px;
}

.event-card {
  border: 1px solid var(--platinum);
  padding: 40px 30px;
  border-radius: 2px;
  outline: 3px solid transparent;
  transition: var(--transition-2);
}

.event-card:is(:hover, :focus-within) {
  outline-color: var(--green);
}

.event-card .card-time {
  background-color: var(--green);
  color: var(--white);
  font-weight: var(--fw-600);
  line-height: 1.3;
  max-width: max-content;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 10px 15px var(--pistachio_50);
}

.event-card .card-time .month {
  font-size: 2.1rem;
}

.event-card .card-time .date {
  font-size: var(--fs-4);
}

.event-card .card-subtitle {
  margin-block: 30px 5px;
  color: var(--green);
  font-size: var(--fs-8);
  font-weight: var(--fw-600);
  letter-spacing: -1px;
}

.event-card .card-title {
  color: var(--primary-blue);
  letter-spacing: -1px;
  font-weight: var(--fw-700);
}

.event-card .card-text {
  font-family: var(--ff-inter);
  margin-block: 5px 30px;
}

.event .btn-secondary {
  margin-inline: auto;
}

/* Programmes intro spacing */
.programmes-intro {
  margin-bottom: 30px;
}




/*-----------------------------------*\
  #INSTA POST
\*-----------------------------------*/

.insta-post-link {
  position: relative;
  background-color: var(--eerie-black-1);
  overflow: hidden;
}

.insta-post-link>img {
  transition: var(--transition-2);
}

.insta-post-link:is(:hover, :focus)>img {
  transform: scale(1.1);
  opacity: 0.5;
}

.insta-post-link>ion-icon {
  color: var(--white);
  font-size: 5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: var(--transition-2);
}

.insta-post-link:is(:hover, :focus)>ion-icon {
  opacity: 1;
}

.insta-post-list {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: inline mandatory;
}

.insta-post-list::-webkit-scrollbar {
  display: none;
}

.insta-post-item {
  min-width: 90%;
  scroll-snap-align: center;
}





/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-color: var(--raisin-black);
  color: var(--white);
  font-family: var(--ff-inter);
  padding-block: 40px;
}

.footer .container {
  margin-inline: 15px;
  background-color: var(--eerie-black-3);
  padding: 20px;
}

.footer-list,
.copyright {
  max-width: max-content;
  margin-inline: auto;
}

.footer-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px 40px;
  margin-block-end: 15px;
}

.footer-link,
.copyright-link {
  text-decoration: underline;
  transition: var(--transition-1);
}

.footer-link {
  color: var(--white_50);
}

:is(.footer-link, .copyright-link):is(:hover, :focus) {
  background-color: hsla(0, 0%, 100%, 0.05);
}

.copyright {
  text-align: center;
}

.copyright-link {
  display: inline-block;
}





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 450px screen
 */

@media (min-width: 450px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-3: 4rem;

  }



  /**
   * CTA
   */

  .cta {
    --fs-4: 4.1rem;
  }

}





/**
 * responsive for larger than 580px screen
 */

@media (min-width: 580px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-2: 5.5rem;

  }



  /**
   * DONATE
   */

  .donate-card {
    position: relative;
    padding-block-end: 150px;
    box-shadow: none;
  }

  .donate-card .card-content {
    position: absolute;
    width: 85%;
    bottom: 0;
    right: 0;
    border-radius: 4px;
    box-shadow: var(--card-shadow);
  }

  .donate-card .card-title {
    --fs-5: 2.4rem;
  }



  /**
   * EVENT
   */

  .event-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
  }

  .event-card .card-subtitle {
    margin-block-start: 0;
  }

  .event-card .card-title {
    font-size: var(--fs-5);
    line-height: 1.4;
  }



  /**
   * INSTA POST
   */

  .insta-post-item {
    min-width: 45%;
  }

}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * FEATURES, SERVICE
   */

  .features-list,
  .service-list {
    grid-template-columns: 1fr 1fr;
  }

  /* Ensure features has solid background on all screen sizes */
  .features {
    background-color: var(--green) !important;
  }



  /**
   * ABOUT
   */

  .banner-row {
    display: flex;
    gap: 20px;
  }

  .deco-title {
    top: 10%;
    left: calc(100% + 40px);
  }

  .about-img {
    margin-block-end: 0;
  }

  .about-img:first-child {
    margin-block-end: 30px;
  }



  /**
   * TESTIMONIALS
   */

  .testi-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
  }

  .testi-text {
    margin-block-start: 0;
  }



  /**
   * INSTA POST
   */

  .insta-post-item {
    min-width: 32%;
  }



  /**
   * FOOTER
   */

  .footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-inline: 40px;
  }

  .footer-list,
  .copyright {
    margin-inline: 0;
  }

  .footer-list {
    margin-block-end: 0;
  }

}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-2: 7.5rem;

  }



  /**
   * HEADER
   */

  .header {
    transition: var(--transition-2);
  }

  .header-action {
    display: flex;
    align-items: center;
    gap: 50px;
  }

  .search-btn {
    color: var(--white);
    font-size: 2.6rem;
  }

  .search-btn ion-icon {
    --ionicon-stroke-width: 50px;
  }



  /**
   * HERO
   */
  .flex-hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  @media (min-width: 768px) {
    .flex-hero {
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      gap: 60px;
    }
  }



  /**
   * FEATURES
   */

  .features {
    padding-block: 40px;
    background-color: var(--green) !important;
  }

  .features-list {
    grid-template-columns: repeat(4, 1fr);
  }



  /**
   * ABOUT
   */

  .banner-col {
    width: 50%;
  }

  .about-img {
    max-width: 100%;
  }

  .about-img-2 {
    min-width: 120%;
    margin-inline-start: -20%;
  }

  .about-img-3 {
    max-width: 90%;
  }

  .about .container {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: flex-start;
    gap: 120px;
  }

  .about-banner {
    margin-block-end: 0;
  }



  /**
   * CTA
   */

  .cta .container {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 30px;
  }

  .cta-content {
    margin-block-end: 0;
  }

  .cta .section-title {
    --fs-4: 5rem;
  }



  /**
   * SERVICE
   */

  .service-list {
    grid-template-columns: repeat(3, 1fr);
  }



  /**
   * DONATE
   */

  .donate-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
  }



  /**
   * TESTIMONIALS
   */

  .testi {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .testi-content {
    padding-inline: 30px 50px;
  }



  /**
   * EVENT
   */

  .event-card .wrapper {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    align-items: center;
  }

  .event-card .card-text {
    margin-block-end: 0;
  }



  /**
   * INSTA POST
   */

  .insta-post-item {
    min-width: 24%;
  }

}





/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-3: 4.4rem;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1400px;
    width: 100%;
    margin-inline: auto;
    padding-inline: 30px;
  }

  .section-title {
    line-height: 1.2;
  }



  /**
   * HEADER
   */

  .nav-open-btn,
  .nav-close-btn,

  .header {
    padding-block: 25px;
  }

  .lang-switch {
    position: relative;
    display: block;
    background-color: transparent;
    border: none;
    color: var(--white);
    font: inherit;
    font-size: var(--fs-8);
    font-weight: var(--fw-600);
  }

  .lang-switch option {
    color: var(--eerie-black-1);
  }




  /* Hidden by default */
  .dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding-left: 1rem;
  }

  /* Show dropdown */
  .has-dropdown.active .dropdown-menu {
    max-height: 500px;
    /* enough for items */
  }

  /* Rotate icon */
  .has-dropdown.active ion-icon {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }

  /* Dropdown links */
  .dropdown-link {
    display: block;
    padding: 10px 0;
    font-size: 0.95rem;
    color: inherit;
    opacity: 0.9;
  }

  .dropdown-link:hover {
    opacity: 1;
  }



  /**
   * HERO
   */



  /**
   * FEATURES - Ensure solid background at all sizes
   */

  .features {
    padding-block: 40px;
    margin-block-start: 0;
    background-color: var(--green) !important;
  }



  /**
   * ABOUT
   */

  .deco-img {
    left: -35px;
  }



  /**
   * DONATE
   */

  .donate-card {
    padding-inline-end: 120px;
  }

  .donate-card .card-content {
    width: 65%;
  }



  /**
   * PARTNER
   */

  .partner .container {
    justify-content: space-evenly;
  }



  /**
   * INSTA POST
   */

  .insta-post-item {
    min-width: 20%;
  }



  /**
   * FOOTER
   */

  .footer .container {
    margin-inline: 30px;
    width: auto;
  }

}

/* ============ SLIDER ============= */
.slider-container {
    width: 100%;
    padding: 30px 0;
    overflow: hidden;
    background: var(--baby-powder);
}
.slider{
    width: 100%;
    height: var(--height);
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 5% 95%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        #000 5% 95%,
        transparent
    );
}
.slider .list{
    display: flex;
    width: 100%;
    min-width: calc(var(--width) * var(--quantity));
    position: relative;
    height: var(--height);
}
.slider .list .item{
    width: var(--width);
    height: var(--height);
    position: absolute;
    left: 100%;
    animation: autoRun 15s linear infinite;
    transition: filter 0.5s;
    animation-delay: calc( (15s / var(--quantity)) * (var(--position) - 1) - 15s)!important;
    padding: 5px;
}
.slider .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
@keyframes autoRun{
    from{
        left: 100%;
    }to{
        left: calc(var(--width) * -1);
    }
}
.slider:hover .item{
    animation-play-state: paused!important;
    filter: grayscale(1);
}
.slider .item:hover{
    filter: grayscale(0);
}
.slider[reverse="true"] .item{
    animation: reversePlay 15s linear infinite;
}
@keyframes reversePlay{
    from{
        left: calc(var(--width) * -1);
    }to{
        left: 100%;
    }
}

/* Contact */
/* Container & Section */
.contact-section {
  margin: 2rem 0;
  font-family: Arial, sans-serif;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  background-color: #f5f5f5;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Image Section */
.contact-image {
  position: relative;
  min-height: 400px;
  filter: grayscale();
}

.contact-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Form Section */
.contact-form-container {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {
  .contact-form-container {
    padding: 2.5rem;
  }
}

.contact-form-container h1 {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

.contact-form-container p {
  margin-bottom: 1.5rem;
  color: #666;
}

/* Form */
.contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .contact-form .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: border 0.2s ease;
  background-color: #e8e8e8;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 2px var(--primary-blue);
}

.contact-form textarea {
  grid-column: 1 / -1;
}


.contact-form button:hover {
  background-color: var(--green);
}

/* cards */

.cardscontainer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 40px 0;
}

.cardscontainer .cards {
  position: relative;
  width: 350px;
  height: 520px;
  background: #ccc;
  margin: 20px;
  border-radius: 40px;
  overflow: hidden;
}

.cardscontainer .cards::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1000;
}

.cardscontainer .cards .icon {
  position: relative;
  width: 100%;
  height: 50%;
  background: #333;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cardscontainer .cards .icon img {
  filter: invert(1);
  max-width: 120px;
}

.cardscontainer .cards .icon::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #ccc;
}

.cardscontainer .cards .icon::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #333;
  border-bottom-left-radius: 80px;
}

.cardscontainer .cards:nth-child(1) .icon,
.cardscontainer .cards:nth-child(1) .icon::after,
.cardscontainer .cards:nth-child(1) .content::before,
.cardscontainer .cards:nth-child(1) .content .text a {
  background: var(--primary-blue);


}

.cardscontainer .cards:nth-child(2) .icon,
.cardscontainer .cards:nth-child(2) .icon::after,
.cardscontainer .cards:nth-child(2) .content::before,
.cardscontainer .cards:nth-child(2) .content .text a {
  background: var(--green);

}

.cardscontainer .cards:nth-child(3) .icon,
.cardscontainer .cards:nth-child(3) .icon::after,
.cardscontainer .cards:nth-child(3) .content::before,
.cardscontainer .cards:nth-child(3) .content .text a {

  background: var(--gold);
}


.cardscontainer .cards .content {
  position: relative;
  width: 100%;
  height: 50%;
  background: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
}


.cardscontainer .cards .content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #333;

}

.cardscontainer .cards .content::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #ccc;
  border-top-right-radius: 80px;
}


.cardscontainer .cards .content .text {
  z-index: 1;
  text-align: center;
  padding: 20px 30px;
  z-index: 1;
}

.cardscontainer .cards .content .text h2 {
  font-weight: 700;
  font-size: 1.7em;
  color: var(--primary-blue);
}

.cardscontainer .cards .content .text p {
  font-weight: 400;
  color: #333;
  margin: 10px 0;
}

.cardscontainer .cards .content .text a {
  display: inline-block;
  padding: 12px 25px;
  background: #333;
  color: #fff;
  margin-top: 10px;
  border-radius: 30px;
  text-decoration: none;
}

/* MODAL OVERLAY */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

/* MODAL BOX */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(90%, 500px);
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  transform: translate(-50%, -50%) scale(0.95);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1001;
  max-height: 80vh;
  overflow-y: auto;
}

/* Active states */
.modal.active,
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal.active {
  transform: translate(-50%, -50%) scale(1);
}

/* Close button */
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Modal headings */
.modal h3 {
  margin-bottom: 1rem;
  color: var(--primary-blue);
  font-weight: var(--fw-700);
}

/* Modal list with aligned icons */
.modal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.modal-list li:last-child {
  border-bottom: none;
}

.modal-list li ion-icon {
  font-size: 1.5rem;
  color: var(--green);
  flex-shrink: 0;
}

.modal-list li span {
  font-size: 1rem;
  color: var(--eerie-black-1);
  line-height: 1.4;
}

/* Mobile responsiveness fixes */
@media (max-width: 767px) {
  .hero {
    padding-block: 60px 30px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-block: 15px;
  }

  .hero-text {
    font-size: 1.5rem;
    margin-block-end: 20px;
  }

  .flex-hero {
    flex-direction: column;
    gap: 20px;
  }

  .flex-hero img {
    max-width: 200px;
    margin: 0 auto;
  }

  .features {
    padding-block: 30px;
    margin-top: 0;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .features-item {
    padding: 15px;
  }

  .features-item .item-icon {
    font-size: 4rem;
  }

  .about {
    padding-block-start: 40px;
  }

  .service {
    margin-block-start: 0;
    padding-block-start: 40px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .event {
    padding-block-end: 40px;
  }

  .container {
    padding-inline: 15px;
  }

  .section {
    padding-block: 40px;
  }

  .testi {
    display: block;
  }

  .testi-content {
    padding: 40px 15px;
  }

  .testi-banner {
    height: 300px;
  }

  .cta .container {
    display: block;
  }

  .cta-content {
    margin-block-end: 20px;
  }

  .insta-post-item {
    min-width: 80%;
  }
}

/* Ensure no horizontal overflow */
section,
article,
main,
footer,
.container {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header should not have scroll/overflow hidden */
header {
  max-width: 100%;
  overflow: visible;
}

/* Prevent scrollbars on flex-hero and its children */
.flex-hero,
.flex-hero>* {
  overflow: visible;
}

/* Contact details text should be black for visibility */
#contact_details .item-title,
#contact_details .item-text {
  color: var(--black);
}


/* ============ HERO SECTION ============= */
.creative-hero--section {
	background: #000;
	border-top: 2px solid #000;
	border-bottom: 2px solid #000;
	position: relative;
	overflow: hidden;
	margin-top: 70px;
}
.hero-section--bg{
	background: #fff;
	border-radius: 30px;
	z-index: 1;
	position: relative;
	padding: 80px 0px;
	overflow: visible;
}
.creative-hero--section .container{
	max-width: 1320px;
	margin-right: auto;
	margin-left: auto;
	padding: 0 30px;
}
.creative-hero--section .container .row{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.creative-hero--section .container .row .col-lg-6{
	flex: 0 0 auto;
	width: 55%;
	padding-left: 15px;
	padding-right: 15px;
}
.creative-hero--section .hero-content{
	transition: opacity 0.5s ease, filter 0.5s ease;
	animation: fadeInLeft 1s ease forwards;
	opacity: 0;
	filter: blur(4px);
	animation-delay: 0.3s;
	text-align: left;
}
.hero-content .hero-heading {
	font-size: 85px;
	font-weight: normal;
	letter-spacing: 1px;
	line-height: 1.176em;
	color: #000;
	font-family: "Cactus Classical Serif", serif;
	margin-top: 0;
	margin-bottom: .5rem;
	text-align: left;
}
/* Hero title and text - left aligned */
.hero-content .hero-title {
	font-size: 35px;
	font-weight: 700;
	line-height: 1.2;
	color: #000;
	margin-bottom: 20px;
	text-align: left;
}
.hero-content .hero-text {
	font-size: 18px;
	line-height: 1.6;
	color: #333;
	text-align: left;
	max-width: 50ch;
}
.hero-content .text-lg {
	font-size: 25px;
	line-height: 1.583em;
	color: #212529;
	padding-bottom: 30px;
	padding-top: 30px;
	font-family: "Josefin Sans", sans-serif;
	font-weight: 400;
	text-align: left;
}
.hero-content .creative-cta--wrap {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 10px;
}
.hero-content .creative-cta--wrap .creative-cta-btn {
	margin-top: 15px;
	margin-right: 48px;
}
.creative-cta--wrap .creative-cta-btn a{
	color: #000;
	font-weight: 700;
	font-size: 18px;
	padding: 0 35px;
	line-height: 50px;
	border: 1px solid #000;
	position: relative;
	display: inline-block;
	background: #fff;
	text-decoration: none;
	outline: none;
	transition: all .3s ease-in-out;
}
.creative-cta--wrap .creative-cta-btn a:before{
	content: '';
	position: absolute;
	content: "";
	top: -14px;
	height: 14px;
	width: calc(100% + 3px);
	left: 6px;
	transform: skewX(-45deg);
	background: #000;
	transition: all .3s ease-in-out 0s;
}
.creative-cta--wrap .creative-cta-btn a:after{
	content: '';
	position: absolute;
	content: "";
	right: -16px;
	height: calc(100% + 1px);
	width: 15px;
	top: -7px;
	transform: skewY(-45deg);
	background: #000;
	transition: all .3s ease-in-out 0s;
}
.creative-cta--wrap .creative-cta-btn a:hover{
	background: #dfff5e;
}
.creative-rating h3{
	font-size: 42px;
	margin-bottom: 0px;
	--bs-text-opacity: 1;
	color: #212529 !important;
	line-height: 1.2;
	margin-top: 0px;
}
.creative-rating p{
	font-size: 18px;
	color: rgba(0, 0, 0, .4);
	margin: 0;
	line-height: 1.7;
}
.creative-hero--section .media-wrapper {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 40%;
	background: #fff;
	border-radius: 0 30px 30px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
	z-index: 2;
}

.creative-hero--section .media-wrapper img{
	max-width: 100%;
	display: block;
}
.creative-hero--section .media-wrapper .home-avatar{
	margin-left: auto;
	margin-right: auto;
}
.shapes {
	position: absolute;
	z-index: -1;
}
.creative-hero--section .media-wrapper .shape_01 {
	right: 0;
	bottom: 14%;
	width: 41.1%;
	z-index: 1;
}
.creative-hero--section .media-wrapper .shape_02 {
	top: 34%;
	left: 0;
	transform: translateX(-50%);
	width: 19.34%;
}
@keyframes fadeInLeft{
	0% {
    opacity: 0;
    transform: translateX(-20px);
}
100% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}
}

/* ===================== Responsive Ipad Pro =========================== */
@media (max-width: 1399px) {
	.creative-hero--section .container{
		max-width: 100%;
		padding: 0px 20px;
	}
	.hero-section--bg{
		padding: 85px 0px;
		border-radius: 15px;
	}
	.hero-content .hero-heading{
		font-size: 55px;
	}
	.hero-content .text-lg{
		font-size: 18px;
	}
}
/* ===================== Responsive Ipad =========================== */
@media (max-width: 981px) {
	.creative-hero--section .container .row .col-lg-6{
		width: 66.66666667%;
	}
	.hero-content .hero-heading {
		font-size: 42px;
	}
	.hero-content .text-lg {
		font-size: 17px;
		padding-bottom: 10px;
	}
	.creative-rating h3{
		font-size: 30px;
	}
}
/* ===================== Responsive Iphone =========================== */
@media (max-width: 767px) { 
	.hero-section--bg{
		padding-top: 50px;
		padding-bottom: 10px;
	}
	.creative-hero--section .container{
		padding: 0px 15px;
	}
	.creative-hero--section .container .row .col-lg-6 {
		width: 100%;
		padding-left: 10px;
		padding-right: 10px;
	}
	.creative-hero--section .media-wrapper{
		position: relative;
		border-radius: 0 0 15px 15px;
		margin: 40px 0 -10px;
		width: 100%;
	}
	.hero-content .hero-heading {
        font-size: 38px;
    }
	.hero-content .hero-title {
		font-size: 28px;
		text-align: left;
	}
	.hero-content .hero-text {
		font-size: 16px;
		text-align: left;
	}
	.creative-rating {
		margin-top: 20px;
	}
}
/* ====================== Buy Me A Coffee =============================== */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
    .coffee-button {
      position: fixed;
      z-index:9;
      top: 20px;
      right: 20px;
      background-color: #FFC107;
      color: #333;
      padding: 8px 16px;
      border-radius: 20px;
      text-decoration: none;
      font-family: "Dancing Script", cursive;
      font-weight: 600;
      font-size: 20px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background-color 0.3s;
    }

    .coffee-button:hover {
      background-color: #FFD54F;
    }

    .coffee-icon {
      font-size: 24px;
      line-height: 1;
    }

    
/* Footer */
footer {
  width: 100%;
  padding: 50px 100px;
  background: #fff;
}

footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
}

footer .container .sec h2 {
  color: #333;
  font-weight: 600;
  margin-bottom: 15px;
}

footer .container .sec p {
  color: #555;
  line-height: 1.6;
}

/* Social icons */
footer .container .sci {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 40px);
  gap: 10px;
  list-style: none; /* ✅ removes bullets */
  padding: 0;
}

footer .container .sci li {
  list-style: none; /* ✅ bullet fix */
}

footer .container .sci li a {
  width: 36px;
  height: 36px;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

footer .container .sci li a i {
  color: #fff;
  font-size: 18px;
}

/* Image footer section */
footer .container .imageBox {
  display: flex;
  flex-direction: column;
  align-items: center; /* ✅ aligns image with other sections */
}

footer .container .imageBox img {
  max-width: 120px; /* adjust as needed */
  width: 100%;
  height: auto;
  margin-top: 10px;
  display: block; /* ✅ removes inline spacing issues */
}


/* Quick links */
footer .container .quickLinks ul {
  list-style: none;
  padding: 0;
}

footer .container .quickLinks ul li a {
  color: #555;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
}

/* Contact */
footer .container .contact .info {
  list-style: none;
  padding: 0;
}

footer .container .contact .info li {
  display: grid;
  grid-template-columns: 30px 1fr;
  margin-bottom: 16px;
}

footer .container .contact .info li span {
  color: #555;
  font-size: 20px;
}

footer .container .contact .info li a {
  color: #555;
  text-decoration: none;
}

/* Copyright */
.copyrightText {
  width: 100%;
  background: #fff;
  padding: 20px;
  text-align: center;
  color: #555;
  border-top: 1px solid rgba(0,0,0,0.15);
}

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

@media (max-width: 991px) {
  footer {
    padding: 40px;
  }

  footer .container {
    grid-template-columns: 1fr 1fr; /* ✅ tablet */
  }
}

@media (max-width: 600px) {
  footer .container {
    grid-template-columns: 1fr; /* ✅ mobile */
  }

  footer {
    padding: 30px 20px;
  }

  .copyrightText {
    padding: 15px;
  }
}
