body.no-scroll {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-colour: #ffd6d8;
  --secondary-colour: ;
  --tertiary-colour: ;
  --font-main: ;
  --mobile-font: ;
  --black-font: #333;
  --white-font: #f2f2f2;
  --black: #363636ca;
  --grey: #989898;
  --light-grey: #e4e4e4;
  --light-border: #e5e7eb;
  --opaque-white: #f8f9fabd;
  --light-blue: #bbedfd;
  --blue: #71dafc;
  --light-pink: #fdc6e1;
  --pink-background: #ffd6d8eb;
  --salmon: #ffbbbeeb;
  --med-pink: #ff91b6;
  --pink: #ff6b9d;
  --neon-pink: rgb(255, 0, 120, 0.7);
  --green: #b1e7c9;
  --dark-green: #7ab38e;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--black-font);
  min-height: 100vh;
  scroll-behavior: smooth;
}

/*
body > * {
  padding: 0 4rem;
}
*/

body h1 {
  text-align: center;
  color: white;
  font-size: 2.8rem;
  background-clip: text;
  font-weight: 700;
  margin-bottom: 1.8rem;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.container > p {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: white;
  opacity: 0.9;
  text-shadow: 2px 1px 2px rgba(0, 0, 0, 0.3);
  justify-self: center;
  text-align: center;
}

main {
  min-height: 100vh;
  margin: 0 auto;
}

.container {
  max-width: 1600px;
  background: transparent;
  margin: 0 auto;
  padding: 6rem 0.5rem;
}

/* Sections */
section {
  padding: 2.5rem 0.8rem;
}

.section-white {
  background: #fff;
}

.section-light {
  background: #f8f9fa;
}

.section-light-pink {
  background: var(--light-pink);
}

.section-pink {
  background: var(--pink-background);
}

.section-med-pink {
  background: var(--med-pink);
}

.section-green {
  background: var(--green);
}

.section-light-blue {
  background: var(--light-blue);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--neon-pink);
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.nav-container {
  margin: 0 auto;
  padding: 0 2vw;
}

.logo {
  font-size: 1.9rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
}

.logo img {
  width: 12rem;
  height: 60px;
  margin-top: 0.5rem;
}

.logo > div {
  margin-left: 1rem;
}

header .nav-links {
  display: flex;
  list-style: none;
  gap: 1rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font: 1.3rem sans-serif;
  transition: all 0.3s ease;
  position: relative;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

.nav-links.scrolled a {
  color: #474747ca;
  font-weight: 200;
  text-shadow: none;
}

.nav-links a:hover {
  color: var(--pink);
  transform: translateY(-2px);
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--pink);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links .active {
  color: var(--pink);
  transform: translateY(-2px);
}

.nav-links.scrolled .active {
  color: var(--pink);
}

.nav-links .active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--pink);
  transform: translateY(-2px);
}

/*Hamburger Menu*/
.off-screen-menu a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  font: normal 400 2rem/0.1 "Josefin Sans", sans-serif;
}

.off-screen-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--pink);
  transition: width 0.3s ease;
}

.off-screen-menu .active {
  color: var(--pink);
  transform: translateY(-2px);
}

.off-screen-menu .nav-links .active {
  color: var(--pink);
  transform: translateY(-2px);
}

.off-screen-menu .active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--pink);
  transform: translateY(-2px);
}

/* off-screen-menu */
.off-screen-menu {
  background-color: var(--pink-background);
  height: 100vh;
  width: 100%;
  max-width: 450px;
  position: fixed;
  top: 0;
  right: -450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 3rem;
  transition: 0.3s ease;
}

.off-screen-menu.active {
  right: 0;
}

.off-screen-menu ul {
  list-style-type: none;
}

/* ham menu */
.ham-menu {
  display: none;
  height: 50px;
  width: 40px;
  margin-left: auto;
  position: relative;
}

.ham-menu span {
  height: 5px;
  width: 100%;
  background-color: var(--pink);
  border-radius: 25px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
}

.ham-menu span:nth-child(1) {
  top: 25%;
}

.ham-menu span:nth-child(3) {
  top: 75%;
}

.ham-menu.active span {
  background-color: white;
}

.ham-menu.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.ham-menu.active span:nth-child(2) {
  opacity: 0;
}

.ham-menu.active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.cta-button {
  display: inline-block;
  background: linear-gradient(200deg, var(--pink), var(--neon-pink));
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
  width: 240px;
  height: 60px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

/*Scroll Down Arrow*/
.scrollDown {
  display: flex;
  justify-content: center;
  align-items: center;
}

.scrollDown a {
  position: absolute;
  bottom: 20px;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
  font: normal 400 20px/1 "Josefin Sans", sans-serif;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding-top: 60px;
}

.scrollDown a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
}

.scrollDown a span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: "";
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: trans 2s infinite;
  animation: trans 2s infinite;
  box-sizing: border-box;
}

@-webkit-keyframes trans {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes trans {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*Learn More btns*/
.learn-more-wrap {
  position: relative;
  font-family: "Mukta", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  width: fit-content;
  z-index: 1;
}

.learn-more {
  width: 12rem;
  height: auto;
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  border: 1px var(--pink) solid;
  border-radius: 1.8rem;
}

.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: var(--pink);
  border-radius: 1.625rem;
}
.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.3rem;
  right: 0.1rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}
.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: var(--black-font);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

/* Footer */
footer {
  color: #f2f2f2;
  background: var(--salmon);
  border-radius: 30px 30px 0 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 3rem 0 0 0;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

footer::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

footer::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

footer p {
  padding: 0 0.6rem;
  font-size: 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  text-wrap: nowrap;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h3 {
  color: var(--neon-pink);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

.footer-section p {
  font-size: 1rem;
  line-height: 1.5;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 2vw;
  margin-top: 1vh;
}

footer .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(10px);
  border: 1px solid var(--pink);
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--pink);
}

footer .nav-links {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 0.4rem;
}

footer .nav-links a {
  color: #f2f2f2;
  text-decoration: none;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-bottom {
  text-align: center;
  align-items: center;
  padding: 1rem 0;
  margin-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

.footer-list {
  display: flex;
  flex-flow: column nowrap;
  gap: 0.6rem;
}

.city-name {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--pink);
  letter-spacing: 0.3px;
  position: relative;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-flow: column nowrap;
}

.footer-links li {
  position: relative;
}

.footer-links a {
  color: #f2f2f2;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  white-space: nowrap;
  padding-left: 1.2rem;
}

.footer-links a::before {
  content: "📍";
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--pink);
  transform: translateX(3px);
  padding-left: 1.3rem;
}

.footer-links a:hover::before {
  transform: scale(1.5);
}

@media (max-width: 768px) {
  header .nav-links {
    display: none;
  }

  .ham-menu {
    display: block;
  }

  .footer-section {
    min-width: auto;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom {
    padding-top: 15px;
    margin-top: 20px;
    line-height: 1.4;
  }

  .cta-button {
    width: 200px;
    height: 50px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {

  .cta-button {
    width: 148px;
    height: 40px;
    font-size: 0.7rem;
    padding: 11px 20px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .learn-more:hover .circle {
    width: 100%;
  }

  .learn-more:hover .button-text {
    color: white;
  }
}
