@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --primary: #c55327;
  --secondary: #2f2e7d;
  --bttext: #8cd1ff;
  /* --bgdark: #14a197; */
  --secondary-light: #e0f0fa;
  --headblue: #416cb4;
}

/* Text utilities */
.text-primary {
  color: var(--primary);
}
.text-secondary {
  color: var(--secondary);
}
.text-bttext {
  color: var(--bttext);
}
.text-headblue {
  color: var(--headblue);
}

/* Background utilities */
.bg-primary {
  background-color: var(--primary);
}
.bg-secondary {
  background-color: var(--secondary);
}
.bg-secondary-light {
  background-color: var(--secondary-light);
}
.bg-bgdark {
  background-color: var(--bgdark);
}
.bg-btbg {
  background-color: var(--btbg);
}

/* Global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: "Poppins", sans-serif;
  color: #000000;
  background-color: white;
}

.font-redressed {
  font-family: "Redressed", cursive;
  font-weight: 400;
}

.outfit {
  font-family: "Outfit", cursive;
}

.greatvibes {
  font-family: "Great Vibes", cursive;
}

/* -------------------------------                               ------------------------------------ */

/* -------------------------------       custom classes          ------------------------------------ */

/* -------------------------------                               -------------------------------*/

/* my contain sizes */
@media (min-width: 100px) {
  .contain {
    max-width: 1920px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
  }
  .paddingy {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .marginy {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .paddingx {
    padding-left: 20px;
    padding-right: 20px;
  }
  .define-text-manually {
    font-size: 55px !important;
    line-height: 1 !important;
  }
}

@media (min-width: 768px) {
  .contain {
    max-width: 1920px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
  }
  .paddingy {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .marginy {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .paddingx {
    padding-left: 30px;
    padding-right: 30px;
  }
  .define-text-manually {
    font-size: 90px !important;
    line-height: 1 !important;
  }
}

@media (min-width: 1024px) {
  .contain {
    max-width: 1920px;
    width: 83.333%;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    padding-left: 0px;
    padding-right: 0px;
  }
  .paddingy {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .marginy {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .paddingx {
    padding-left: 40px;
    padding-right: 40px;
  }
  .define-text-manually {
    font-size: 75px !important;
    line-height: 1 !important;
  }
  .define-text-manually-annual {
    font-size: 27px !important;
    line-height: 1 !important;
  }
}

.contain2 {
  max-width: 1920px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

/* hero section heading */
@media (min-width: 1350px) {
  .define-text-manually {
    font-size: 100px !important;
    line-height: 1 !important;
  }
  .define-text-manually-annual {
    font-size: 36px !important;
    line-height: 1 !important;
  }
  .paddingy {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .marginy {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

@media (min-width: 1650px) {
  .define-text-manually {
    font-size: 100px !important;
    line-height: 1 !important;
  }
  .define-text-manually-annual {
    font-size: 42px !important;
    line-height: 1 !important;
  }
  .paddingy {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .marginy {
    margin-top: 70px;
    margin-bottom: 70px;
  }
}

@media (min-width: 1850px) {
  .define-text-manually {
    font-size: 120px !important;
    line-height: 1 !important;
  }
  .define-text-manually-annual {
    font-size: 47px !important;
    line-height: 1 !important;
  }
}

/* Reset Swiper default arrow styles */
.swiper-button-prev,
.swiper-button-next {
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  color: inherit !important;
}

/* Hide the default pseudo arrows */
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none !important;
  content: "" !important;
}

/* header underline dropdown */
.link-underline {
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease-out; /* smooth scaling */
}

.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: currentColor;
  transition: all 0.3s ease-out;
  transform: translateX(0%);
  color: #f49a58;
}

.link-underline:hover::after {
  width: 100%;
}

.link-underline-white {
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease-out; /* smooth scaling */
}

.link-underline-white::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: currentColor;
  transition: all 0.3s ease-out;
  transform: translateX(0%);
  color: #ffffff;
}

.link-underline-white:hover::after {
  width: 100%;
}

.animate-float {
  animation: floatUpDown 3s ease-in-out infinite;
}

@layer utilities {
  .text-stroke-black {
    /* -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black; */
    color: white;
    text-shadow: 3px 3px 0 rgb(255, 255, 255), -3px 3px 0 rgb(255, 255, 255),
      3px -3px 0 rgb(255, 255, 255), -3px -3px 0 rgb(255, 255, 255);
  }
}

/* register button anim */
@keyframes borderShadowPulse {
  0% {
    border-color: #ffffff;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.35);
  }
  50% {
    border-color: #5f3279;
    box-shadow: 0 0 14px rgba(95, 50, 121, 0.8);
  }
  100% {
    border-color: #ffffff;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.35);
  }
}

.borderShadowPulse {
  animation: borderShadowPulse 1.8s ease-in-out infinite;
}

.rotate-mandal {
  animation: rotate 30s linear infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
