body {
  padding: 0px;
  margin: 0px;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Navbar Styling */

.navbar-fix {
  padding: 0px 200px 0px 200px;
}

.logo-img {
  width: 200px;
  height: 80px;
  display: block;
}


@keyframes logoSlideFromFarRight {
  0% {
    transform: translateX(1000px);
    /* Far right */
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.logo-float-right {
  animation: logoSlideFromFarRight 2s ease-out forwards;
  animation-delay: 0.3s;
}

.navbar-nav .nav-link {
  /* font-family: "Josefin Sans", sans-serif; */
  color: #0ccfc5 !important;
  font-weight: 400;
  margin-left: 20px;
}

.navbar-nav .nav-link:hover {
  color: #fcae2e !important;
}




.floating-social-icons {
  position: fixed;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 999;
}

.floating-social-icons a {
  background-color: #fff;
  color: #000;
  font-size: 16px;
  text-align: center;
  margin: 5px 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.floating-social-icons a:hover {
  background-color: #fcae2e;
  color: #fff;
}






/* Hero Section */
.hero-section {
  height: 100vh;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.hero-img-background {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 1;
  padding: 0px 80px 0px 80px;
  margin-top: -30px;
}

.hero-content {
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 600px;
  text-align: right;
  padding-right: 200px;
  padding-bottom: 150px;
}

.hero-heading {
  /* font-family: 'Josefin Sans', sans-serif; */
  font-weight: 300;
  font-size: 1.7rem;
  letter-spacing: 3px;
  line-height: 1;
  color: #111;
  text-align: right;
  padding: 0 0 10px 0;
}


.btn-info {
  background-color: #0ccfc5;
  border: none;
  /* font-family: 'Josefin Sans', sans-serif; */
  font-weight: 400;
  border-radius: 999px;
  padding: 10px 28px;
  font-size: 1.2rem;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  display: inline-block;
  margin-top: 20px;
}

.btn-info:hover {
  background-color: #fdb44b;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.2);
}

.vertical-social {
  top: 3%;
  left: -8%;
  z-index: 3;
  /* font-family: 'Josefin Sans', sans-serif; */
  font-weight: 700;
  font-size: 16px;
  color: white;
  padding: 2px 100px 0px 230px;
  letter-spacing: 7px;

}

.vertical-donut {
  position: absolute;
  bottom: 10%;
  right: 0%;
  z-index: 3;
  /* font-family: 'Josefin Sans', sans-serif; */
  font-weight: 700;
  font-size: 16px;
  color: white;
  line-height: .8;
  text-align: right;
  letter-spacing: 7px;
  padding-right: 100px;
  /* nudges content left within its box */
  padding-bottom: 10px;
  /* gives it a bit of breathing space from the edge */
}

.vertical-donut span {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 1s ease forwards;
}

.vertical-donut span:nth-child(1) {
  animation-delay: 0.2s;
}

.vertical-donut span:nth-child(2) {
  animation-delay: 0.4s;
}

.vertical-donut span:nth-child(3) {
  animation-delay: 0.6s;
}

.vertical-donut span:nth-child(4) {
  animation-delay: 0.8s;
}

.vertical-donut span:nth-child(5) {
  animation-delay: 1s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hero-101 {
  bottom: 15%;
  left: 30%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
  /* font-family: "Comfortaa", sans-serif; */
  font-size: 70px;
  font-weight: 900;
  color: #000;
  z-index: 3;
  position: absolute;
}

/* Curved motion */
@keyframes heroDeepCurveIn {
  0% {
    transform: translate(800px, -300px);
    opacity: 0;
  }

  40% {
    transform: translate(200px, -100px);
    opacity: 1;
  }

  70% {
    transform: translate(-50px, 20px);
  }

  100% {
    transform: translate(0, 0);
  }
}

.hero-float-deep-curve {
  animation: heroDeepCurveIn 2.5s ease-out forwards;
  animation-delay: 0.3s;
}





.about-section {
  background: #fff;
  padding: 80px 20px;
  margin-top: -70px;
}

.about-title {
  /* font-family: 'Josefin Sans', sans-serif; */
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 30px;
}

.about-text {
  /* font-family: 'Josefin Sans', sans-serif; */
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #000;
}

/* Your existing .btn-info styling */
.btn-info {
  background-color: #0ccfc5;
  border: none;
  /* font-family: 'Josefin Sans', sans-serif; */
  font-weight: 400;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 1.2rem;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  display: inline-block;
  margin-top: 20px;
  color: white;
}

.btn-info:hover {
  background-color: #fdb44b;
  color: white;
}






.contact-section {
  background-color: #fcae2e;
  background-image: url('../img/donut-bg-pattern.png');
  background-repeat: repeat;
  background-size: auto;
  color: #000;
  /* font-family: 'Josefin Sans', sans-serif; */
  padding: 30px 10px 10px 10px;
}

.contact-section .container {
  max-width: 1200px;
  margin: 0px auto;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.section-title {
  /* font-family: 'Fredoka One', cursive; */
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 30px;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* ensures spacing is only between the two */
  gap: 60px;
  /* optional: increase/decrease spacing between the two boxes */
  max-width: 100%;
  /* was 800px, now full width */
  padding: 0 80px;
  /* controls left & right margin */
  margin: 0 auto;
}

.contact-info {
  flex: 1;
  min-width: 400px;
  font-size: 18px;
  font-weight: bolder;
  line-height: 1.8;
  margin-top: 50px;
  letter-spacing: 2px;
}

.social-icons {
  margin-bottom: 20px;
}

.social-icons a {
  display: inline-block;
  background-color: #000;
  color: #fff;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  background-color: #fff;
  color: #000;
}

.contact-form {
  flex: 1;
  min-width: 500px;
  padding: 0px;
}

.contact-form h4 {
  /* font-family: 'Josefin Sans', sans-serif; */
  font-size: 22px;
  margin-bottom: 20px;
}

.contact-form label {
  font-weight: 300;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 15px;
  margin-bottom: 12px;
  border: none;
  border-radius: 30px;
  font-size: 14px;
}

.contact-form .form-row {
  display: flex;
  gap: 10px;
}

.contact-form textarea {
  height: 40px;
  resize: none;
  overflow: hidden;
  border-radius: 30px;
}

.btn-submit {
  background-color: #00c9c9;
  color: #fff;
  border: none;
  padding: 5px 40px;
  border-radius: 25px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  margin-left: 15px;
}

.btn-submit:hover {
  background-color: #fdb44b;
}













/* ================================
   Responsive overrides (append)
   ================================ */

/* Respect users who prefer reduced motion */
/* Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ========== ≤1400px ========== */
@media (max-width: 1400px) {
  .navbar-fix {
    padding: 0 140px;
  }

  .hero-img-background {
    padding: 0 60px;
    margin-top: -10px;
  }

  .hero-content {
    padding-right: 140px;
    max-width: 560px;
  }

  .hero-heading {
    font-size: 1.6rem;
  }

  .hero-101 {
    font-size: 60px;
    left: 40%;
  }

  .vertical-donut {
    right: 10%;
    padding-right: 60px;
  }
}

/* ========== ≤1200px ========== */
@media (max-width: 1200px) {
  .navbar-fix {
    padding: 0 100px;
  }

  .logo-img {
    width: 170px;
    height: 70px;
  }

  .hero-section {
    height: 90vh;
  }

  .hero-img-background {
    padding: 0 40px;
  }

  .hero-content {
    padding-right: 100px;
    padding-bottom: 80px;
    max-width: 520px;
  }

  .hero-heading {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .hero-101 {
    font-size: 54px;
    left: 42%;
    gap: 20px;
    bottom: 16%;
  }

  .vertical-social {
    padding: 2px 40px 0 120px;
    letter-spacing: 6px;
  }

  .vertical-donut {
    right: 8%;
    bottom: 16%;
    letter-spacing: 6px;
  }

  .contact-wrapper {
    padding: 0 50px;
    gap: 40px;
  }

  .contact-info {
    min-width: 360px;
    font-size: 16px;
  }

  .contact-form {
    min-width: 420px;
  }
}

/* ========== ≤992px ========== */
@media (max-width: 992px) {
  .navbar-fix {
    padding: 0 40px;
  }

  .floating-social-icons {
    right: 10px;
  }

  .floating-social-icons a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
  }

  .hero-section {
    height: 80vh;
  }

  .hero-img-background {
    padding: 0 24px;
    width: 120%;
    max-width: 120%;
  }

  .hero-content {
    right: 6%;
    padding-right: 40px;
    padding-bottom: 40px;
    max-width: 480px;
  }

  .hero-heading {
    font-size: 1.4rem;
    letter-spacing: 1.5px;
  }

  .btn-info {
    padding: 10px 22px;
    font-size: 1.05rem;
  }

  .vertical-social {
    font-size: 14px;
    padding: 0 24px 0 70px;
  }

  .vertical-donut {
    font-size: 14px;
    right: 6%;
    padding-right: 30px;
  }

  .hero-101 {
    font-size: 48px;
    left: 50%;
    gap: 16px;
    bottom: 14%;
  }

  .about-section {
    padding: 60px 16px;
    margin-top: -40px;
  }

  .about-text {
    font-size: 17px;
    max-width: 760px;
  }

  .contact-section .container {
    padding: 0 16px;
  }

  .contact-wrapper {
    padding: 0 24px;
    gap: 24px;
  }

  .contact-info,
  .contact-form {
    min-width: 100%;
  }

  .contact-info {
    margin-top: 20px;
  }
}

/* ========== ≤768px (phones & small tablets) ========== */
@media (max-width: 768px) {
  .navbar-fix {
    padding: 0 20px;
  }

  .logo-img {
    width: 150px;
    height: 64px;
  }

  /* Use donut as background for a clean hero on mobile */
  .hero-section {
    min-height: 72vh;
    background-image: url('../img/donut.png');
    background-size: cover;
    background-position: 28% center;
    /* adjust if you want more/less zoom */
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(0, 0, 0, 0.05) 30%,
        rgba(0, 0, 0, 0.08) 70%,
        rgba(255, 255, 255, 0) 100%);
  }

  .hero-img-background {
    display: none !important;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 0 18px;
    max-width: 92%;
    margin-bottom: 72px;
    /* space above 101 */
  }

  .hero-heading {
    font-size: 1.22rem;
    line-height: 1.28;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  }

  .btn-info {
    margin-top: 14px;
    padding: 9px 18px;
    font-size: 0.98rem;
    position: relative;
    z-index: 2;
  }

  .vertical-social,
  .vertical-donut {
    display: none !important;
  }

  /* 101 safely inside hero */
  .hero-101 {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    left: 10%;
    top: 74%;
    transform: translateX(-50%);
    font-size: clamp(32px, 6vw, 44px);
    gap: 10px;
  }

  /* Float socials away from hero content */
  .floating-social-icons {
    top: auto;
    bottom: 10px;
    right: 10px;
    z-index: 3;
  }

  .floating-social-icons a {
    width: 34px;
    height: 34px;
    line-height: 34px;
    font-size: 13px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
  }

  .about-section {
    margin-top: 0;
    padding: 48px 12px;
  }

  .about-title {
    font-size: 26px;
  }

  .about-text {
    font-size: 16px;
    max-width: 640px;
  }

  .contact-section {
    padding: 24px 8px 12px;
  }

  .section-title {
    font-size: 26px;
  }

  .contact-form input,
  .contact-form textarea {
    border-radius: 18px;
    font-size: 15px;
    padding: 10px 14px;
  }

  .contact-form .form-row {
    flex-direction: column;
    gap: 0;
  }

  .btn-submit {
    width: 100%;
    margin-left: 0;
    padding: 10px 18px;
    font-size: 16px;
    border-radius: 20px;
  }
}

/* ========== ≤576px ========== */
@media (max-width: 576px) {
  .floating-social-icons {
    right: 8px;
  }

  .hero-section {
    height: 65vh;
  }

  .hero-heading {
    font-size: 1.15rem;
  }

  .btn-info {
    padding: 9px 18px;
    font-size: 0.98rem;
    border-radius: 999px;
  }

  .about-text {
    font-size: 15.5px;
  }

  .contact-info {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 1.5px;
  }
}

/* ========== ≤400px ========== */
@media (max-width: 400px) {
  .hero-section {
    height: 60vh;
  }

  .hero-heading {
    font-size: 1.05rem;
  }

  .hero-101 {
    font-size: 36px;
    gap: 10px;
  }

  .contact-wrapper {
    padding: 0 10px;
  }
}

/* Height guard for very short phones */
@media (max-height: 700px) and (max-width: 576px) {
  .hero-img-background {
    width: 130%;
  }
}

/* Safety: keep button text white */
.btn-info {
  color: #fff;
}