* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: var(--font-text);
}

body::-moz-selection {
  background-color: #303c97;
  color: #fff;
}

body::selection {
  background-color: #303c97;
  color: #fff;
}

/* Font Imports */
@font-face {
  font-family: "NaskhHadith";
  src: url("assets/fonts/18410-ah-naskh-hadith.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SimplifiedArabic";
  src: url("assets/fonts/Simplified Arabic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --primary-color: #303c97;
  --secondary-color: #64b3e4;
  --third-color: #ffffff;
  --font-title: "NaskhHadith", serif;
  /* For headings/titles */
  --font-text: "SimplifiedArabic", sans-serif;
  /* For paragraphs/body text */
  --paragraph-font-size: 20px;
  --paragraph-height: 3em;
  --title-font-size: 4em;
  --title-height: 3.2em;
}

html,
body {
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.title-font {
  font-family: var(--font-title);
}

p,
li,
a,
.text-font {
  font-family: var(--font-text);
}

body {
  background-color: #fff;
}

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

.default-padding {
  padding: 100px 0;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

/*
Change scrolling 
*/
/* Global scrollbar styles */
::-webkit-scrollbar {
  width: 15px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.btn-12,
.btn-12 *,
.btn-12 :after,
.btn-12 :before,
.btn-12:after,
.btn-12:before {
  border: 0 solid;
  box-sizing: border-box;
}

.btn-12 {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-color: var(--primary-color);
  background-image: none;
  color: #fff;
  cursor: pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 100%;
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(var(--primary-color), #fff);
  padding: 0;
  text-transform: uppercase;
}

.btn-12:disabled {
  cursor: default;
}

.btn-12:-moz-focusring {
  outline: auto;
}

.btn-12 svg {
  display: block;
  vertical-align: middle;
}

.btn-12 [hidden] {
  display: none;
}

.btn-12 {
  border-radius: 99rem;
  border-width: 2px;
  overflow: hidden;
  padding: 0.8rem 3rem;
  position: relative;
}

.btn-12 span {
  /* mix-blend-mode: difference; */
}

.btn-12:after,
.btn-12:before {
  background: linear-gradient(90deg, #fff 25%, transparent 0, transparent 50%, #fff 0, #fff 75%, transparent 0);
  content: "";
  inset: 0;
  position: absolute;
  transform: translateY(var(--progress, 100%));
  transition: transform 0.2s ease;
}

.btn-12:after {
  --progress: -100%;
  background: linear-gradient(90deg, transparent 0, transparent 25%, #fff 0, #fff 50%, transparent 0, transparent 75%, #fff 0);
  z-index: -1;
}

.btn-12:hover:after,
.btn-12:hover:before {
  --progress: 0;
}

.btn-12:hover span {
  mix-blend-mode: difference;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 0 2rem;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.nav-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  position: relative;
  width: 100%;
}

.nav-logo {
  width: 130px;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 1rem;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.nav-link.active {
  background: rgba(255, 255, 255, 0.9);
  color: #667eea;
  font-weight: 700;
}

.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.8rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(102, 126, 234, 0.1);
  border: 2px solid transparent;
}

.burger-menu:hover {
  background: rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
  transform: scale(1.05);
}

.burger-line {
  width: 28px;
  height: 3px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 3px;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
  background: #e74c3c;
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background: #e74c3c;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  /* Position directly below the nav container */
  right: 0;
  /* Align to the right side */
  width: 280px;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 10px;
  /* Small gap between navbar and dropdown */
  z-index: 9999;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.mobile-nav {
  list-style: none;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav .nav-link {
  display: block;
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
  border-radius: 12px;
  background: rgba(102, 126, 234, 0.05);
  border: 1px solid transparent;
  transition: all 0.2s ease;
  text-align: center;
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.active {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Demo content */
.content {
  margin-top: 100px;
  padding: 2rem;
  text-align: center;
  color: white;
}

.section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 2rem 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar-nav {
    display: none;
  }
  .burger-menu {
    display: flex;
  }
  .nav-container {
    padding: 0 1rem;
  }
  .navbar {
    padding: 0 1rem;
  }
  .mobile-menu {
    width: calc(100vw - 2rem);
    /* Full width minus padding */
    max-width: 300px;
  }
}
@media (max-width: 480px) {
  .mobile-menu {
    width: calc(100vw - 1rem);
    right: -1rem;
    /* Adjust for smaller screens */
  }
}
/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Animation for navbar appearance */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.navbar {
  animation: slideDown 0.5s ease-out;
}

/* Add overlay to prevent clicks on content when menu is open */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.hero {
  position: relative;
  color: #fff;
  padding: 400px 0;
  display: flex;
  align-items: center;
}
.hero .hero-image {
  display: none;
}
.hero .bg-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("assets/images/hero/bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.9;
}
.hero-content {
  max-width: 700px;
  margin-right: auto;
  padding-left: 2rem;
  color: var(--primary-color);
  position: absolute;
  left: 23em;
  top: 45%;
  transform: translate(-50%, -50%);
}
.hero-content h1 {
  font-size: 32px;
  line-height: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
}
.hero-content p {
  font-size: 30px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .hero-content p {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
    min-height: 60vh;
    text-align: center;
  }
  .hero::before {
    background-attachment: scroll;
  }
  .hero-content {
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: right;
  }
  .hero-content h1,
  .hero-content p {
    text-align: right;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about {
  background-color: var(--primary-color);
  position: relative;
  padding-top: 150px;
  padding-bottom: 70px;
}
.about .bottom-shape-about {
  position: absolute;
  left: 0;
  top: 100%;
  transform: translateY(-50%);
}
.about img.cow {
  width: 280px;
  position: absolute;
  left: 0;
  bottom: -49px;
  z-index: 1;
}
.about .bottom-shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 300px;
}
.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.about-image img {
  transition: transform 0.5s ease;
  width: 100%;
  height: auto;
}
.about-image:hover img {
  transform: scale(1.03);
}
.about-content {
  padding: 2rem;
}
.about-content h2 {
  color: #fff;
  font-size: var(--title-font-size);
  line-height: 20px;
  margin-bottom: 60px !important;
  position: relative;
}
.about-content h2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -22px;
  width: 80px;
  height: 3px;
  background: var(--secondary-color);
}
.about-content p {
  font-size: 20px;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 1.5rem;
}
.about-content ul li {
  font-size: 1.1rem;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  color: #fff;
}
.about .about-image {
  width: 400px;
  float: left;
}
.about .shape {
  width: 150px;
  height: auto;
}
.about .shape1 {
  position: absolute;
  right: 9em;
  bottom: 9em;
  /* Initial state - hidden */
  opacity: 0;
  transform: scale(0) rotate(-12deg);
  /* First animation: Check-in */
  animation: stillChecking 2s ease-in-out infinite;
  animation-delay: 0.5s;
}
.about .shape2 {
  position: absolute;
  right: 12em;
  bottom: 30px;
  animation: stillChecking 2s ease-in-out infinite;
  animation-delay: 0.5s;
}
.about .shape3 {
  position: absolute;
  right: 0em;
  bottom: 20px;
  animation: stillChecking 3s ease-in-out infinite;
  animation-delay: 0.5s;
}
@media (max-width: 992px) {
  .about-content {
    padding: 1rem 0;
  }
  .about-content h2 {
    font-size: 2rem;
    margin-top: 1.5rem;
  }
}
@media (max-width: 768px) {
  .about .row {
    flex-direction: column-reverse;
  }
  .about-image {
    margin-top: 2rem;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about {
    text-align: center;
  }
  .about-content {
    margin-top: 2rem;
  }
}
.features {
  position: relative;
  padding: 100px 0 200px 0 !important;
}
.features .shape-1 {
  position: absolute;
  right: 0;
  top: 38%;
  width: 200px;
  height: auto;
  z-index: 10;
}
.features .ui-08 {
  position: absolute;
  left: 0;
  top: 15%;
  width: auto;
  height: 90px;
  animation: circleMotion 20s linear infinite;
  transform-origin: center center;
}
.features .ui-15 {
  position: absolute;
  left: 0;
  top: 4%;
  width: auto;
  height: 149px;
  transform: rotate(20deg);
}
.features .ui-12 {
  position: absolute;
  left: 0;
  top: 18%;
  width: auto;
  height: 300px;
  transform: translateX(-5em);
}
.features .ui-16 {
  position: absolute;
  right: 0;
  top: -2%;
  width: auto;
  height: 300px;
  transform: translateX(5em);
}
.features .features-bottom-shape {
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  height: 178px;
}
.features .about-image {
  width: 530px;
  float: right;
}
.features h2 {
  line-height: 3.2em;
  color: var(--primary-color);
}
.features p {
  line-height: 2em;
  color: var(--primary-color);
  font-size: 26px;
}
.features .header {
  text-align: center;
  margin-bottom: 3rem;
}
.features .header .brand-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 1rem;
}
.features .header .brand-container .milk-icon {
  font-size: 3rem;
  color: var(--primary-color);
  transform: rotate(-15deg);
}
.features .header .brand-container > .brand-title {
  font-size: 25px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  line-height: 49px;
}
.features .header .subtitle {
  font-size: var(--paragraph-font-size);
  color: var(--primary-color);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
.features .milk-card {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 2rem auto;
  cursor: pointer;
  transition: all 0.3s ease;
}
.features .milk-card .card-inner {
  position: relative;
  width: 100%;
  height: 387px;
  background: white;
  transition: all 0.3s ease;
  background-image: url("assets/images/features/ui-card.png");
  /* <-- Add your image path here */
  background-size: cover;
  /* Ensures the image covers the card */
  background-position: center;
  /* Centers the image */
}
.features .milk-card .card-inner:hover {
  transform: translateY(-50px);
  z-index: 99999999;
}
.features .milk-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65%;
  padding: 0 48px 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.features .milk-card .card-content .card-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 35px;
}
.features .milk-card .card-content .card-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
  opacity: 0.8;
}
.features .milk-card .card-content .card-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  opacity: 0.7;
}
.features .cards-container {
  /* gap: 2rem; */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
}
@media (max-width: 768px) {
  .features .milk-card {
    width: 240px;
    height: 280px;
  }
  .features .milk-card .triangle-top {
    border-left-width: 70px;
    border-right-width: 70px;
    border-bottom-width: 100px;
  }
  .features .milk-card .card-content {
    padding: 1.5rem 1rem 1rem;
  }
  .features .milk-card .card-content .card-title {
    font-size: 1.2rem;
  }
  .features .milk-card .card-content .card-text {
    font-size: 0.85rem;
  }
  .features .header .brand-title {
    font-size: 2rem;
  }
  .features .header .milk-icon {
    font-size: 2.5rem;
  }
}
.features .fade-in {
  animation: fadeInUp 0.6s ease forwards;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.features .features-card {
  margin-top: 30px;
  margin-bottom: 100px;
  padding: 50px 0;
}
.features .features-card > .brand-title {
  font-size: var(--title-font-size) !important;
  font-weight: 700 !important;
  color: var(--primary-color) !important;
  font-family: var(--title-font-size) !important;
}
.features .features-card .subtitle {
  font-family: var(--paragraph-font-size);
  font-size: var(--paragraph-font-size);
}
.features .features-card .header-vita-features-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.features .features-card .header-vita-features-flex .ui-18 {
  width: 200px;
  height: 200px;
  margin-top: -75px;
}

.partner {
  background-color: var(--primary-color);
  padding: 0 0 200px;
  position: relative;
}
.partner .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
}
.partner .top-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 103px;
  background-image: url(assets/images/footer/bg.png);
}
.partner .partner-flex {
  display: grid;
  grid-template-columns: 1fr 300px 300px;
  gap: 2rem;
  align-items: start;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .partner .partner-flex {
    grid-template-columns: 1fr;
  }
}
.partner .be-partner h2 {
  color: var(--third-color);
  font-size: 30px;
  line-height: 70px;
}
.partner .be-partner p {
  color: var(--third-color);
  font-size: var(--paragraph-font-size);
}
.partner .partner-form ul {
  padding: 0;
  list-style: none;
}
.partner .partner-form ul li {
  color: var(--third-color);
  font-size: var(--paragraph-font-size);
  margin-bottom: 0.5rem;
  /* display: flex; */
}
.partner .partner-form ul li > img {
  width: 40px;
  margin-left: 10px;
}
.partner .form--section {
  background-image: url(assets/images/partners/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  position: relative;
  padding: 30px 0;
}
.partner .form--section select.form-select {
  text-indent: 14px;
  color: var(--primary-color);
  font-size: 20px;
}
.partner .form--section h2 {
  text-align: center;
  color: var(--third-color);
  margin-bottom: 40px;
  margin-top: 40px;
}
.partner form.partner-form-container {
  width: 600px;
  margin: 0 auto;
}
.partner form.partner-form-container > .buttons {
  margin-top: 50px;
  text-align: center;
  border-radius: 30px;
}
.partner form.partner-form-container .blob-btn {
  z-index: 1;
  position: relative;
  padding: 20px 46px;
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
  color: #0505a9;
  font-size: 16px;
  font-weight: bold;
  background-color: transparent;
  outline: none;
  border: none;
  transition: color 0.5s;
  cursor: pointer;
  border-radius: 30px;
}
.partner form.partner-form-container .blob-btn:before {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #0505a9;
  border-radius: 30px;
}
.partner form.partner-form-container .blob-btn:after {
  content: "";
  z-index: -2;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 100%;
  height: 100%;
  transition: all 0.3s 0.2s;
  border-radius: 30px;
}
.partner form.partner-form-container .blob-btn:hover {
  color: #ffffff;
  border-radius: 30px;
}
.partner form.partner-form-container .blob-btn:hover:after {
  transition: all 0.3s;
  left: 0;
  top: 0;
  border-radius: 30px;
}
.partner form.partner-form-container .blob-btn__inner {
  z-index: -1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: #ffffff;
}
.partner form.partner-form-container .blob-btn__blobs {
  position: relative;
  display: block;
  height: 100%;
  filter: url("#goo");
}
.partner form.partner-form-container .blob-btn__blob {
  position: absolute;
  top: 2px;
  width: 25%;
  height: 100%;
  background: #0505a9;
  border-radius: 100%;
  transform: translate3d(0, 150%, 0) scale(1.7);
  transition: transform 0.45s;
}
@supports (filter: url("#goo")) {
  .partner form.partner-form-container .blob-btn__blob {
    transform: translate3d(0, 150%, 0) scale(1.4);
  }
}
.partner form.partner-form-container .blob-btn__blob:nth-child(1) {
  left: 0%;
  transition-delay: 0s;
}
.partner form.partner-form-container .blob-btn__blob:nth-child(2) {
  left: 30%;
  transition-delay: 0.08s;
}
.partner form.partner-form-container .blob-btn__blob:nth-child(3) {
  left: 60%;
  transition-delay: 0.16s;
}
.partner form.partner-form-container .blob-btn__blob:nth-child(4) {
  left: 90%;
  transition-delay: 0.24s;
}
.blob-btn:hover .partner form.partner-form-container .blob-btn__blob {
  transform: translateZ(0) scale(1.7);
}
@supports (filter: url("#goo")) {
  .blob-btn:hover .partner form.partner-form-container .blob-btn__blob {
    transform: translateZ(0) scale(1.4);
  }
}
.partner form.partner-form-container input.form-control,
.partner form.partner-form-container select.form-select {
  padding: 20px;
  border: 1px solid var(--primary-color);
}
.partner form.partner-form-container input.form-control::-moz-placeholder {
  color: var(--primary-color);
  font-size: 20px;
}
.partner form.partner-form-container input.form-control::placeholder,
.partner form.partner-form-container input.form-control,
.partner form.partner-form-container textarea {
  color: var(--primary-color);
  font-size: 20px;
}
.partner form.partner-form-container textarea::-moz-placeholder {
  color: var(--primary-color) !important;
}
.partner form.partner-form-container textarea::placeholder {
  color: var(--primary-color) !important;
}

.modern-footer {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
  margin-top: auto;
}
.modern-footer .footer-logo img {
  width: 120px;
}
.modern-footer .social-icon i {
  color: #fff;
}

.modern-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    transform: translateX(100%);
    opacity: 1;
  }
}
.footer-content {
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 2;
}

.footer-section {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.footer-section:nth-child(1) {
  animation-delay: 0.2s;
}

.footer-section:nth-child(2) {
  animation-delay: 0.4s;
}

.footer-section:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.footer-logo::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--secondary-gradient);
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-logo:hover::after {
  width: 100%;
}

.footer-description {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer-title {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

li,
a,
i {
  color: var(--primary-color);
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--secondary-gradient);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
  transform: translateX(-10px);
  opacity: 0;
  animation: slideInLeft 0.6s ease forwards;
}

.footer-links li:nth-child(1) {
  animation-delay: 0.8s;
}

.footer-links li:nth-child(2) {
  animation-delay: 0.9s;
}

.footer-links li:nth-child(3) {
  animation-delay: 1s;
}

.footer-links li:nth-child(4) {
  animation-delay: 1.1s;
}

.footer-links li:nth-child(5) {
  animation-delay: 1.2s;
}

@keyframes slideInLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 20px;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary-gradient);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #0077b5;
  transform: translateX(5px);
}

.footer-links a:hover::before {
  width: 15px;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: scale(0);
  animation: popIn 0.6s ease forwards;
}

.social-icon:nth-child(1) {
  background: linear-gradient(45deg, #1da1f2, #0e71c8);
  animation-delay: 1.4s;
}

.social-icon:nth-child(2) {
  background: linear-gradient(45deg, #e4405f, #f093fb);
  animation-delay: 1.5s;
}

@keyframes popIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.social-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-icon:hover::before {
  left: 100%;
}

.footer-bottom {
  background: var(--darker-bg);
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: var(--secondary-gradient);
}

.copyright {
  color: var(--text-muted);
  margin: 0;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.8s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: float 6s infinite linear;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  left: 20%;
  animation-delay: 1s;
}

.particle:nth-child(3) {
  left: 30%;
  animation-delay: 2s;
}

.particle:nth-child(4) {
  left: 40%;
  animation-delay: 3s;
}

.particle:nth-child(5) {
  left: 50%;
  animation-delay: 4s;
}

.particle:nth-child(6) {
  left: 60%;
  animation-delay: 5s;
}

.particle:nth-child(7) {
  left: 70%;
  animation-delay: 0.5s;
}

.particle:nth-child(8) {
  left: 80%;
  animation-delay: 1.5s;
}

.particle:nth-child(9) {
  left: 90%;
  animation-delay: 2.5s;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .footer-content {
    padding: 3rem 0 1.5rem;
  }
  .social-icons {
    justify-content: center;
  }
  .footer-description {
    max-width: 90%;
    text-align: center;
    margin: auto;
  }
}
@keyframes checkAnimation {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-12deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) rotate(8deg);
  }
  75% {
    transform: scale(0.9) rotate(-3deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    /* After first animation, start the checking loop */
    animation: stillChecking 2s ease-in-out infinite;
    animation-delay: 0.5s;
  }
}
/* Phase 2: Still checking animation (continuous loop) */
@keyframes stillChecking {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: scale(1.05) rotate(2deg);
    opacity: 0.9;
  }
  50% {
    transform: scale(0.95) rotate(-1deg);
    opacity: 0.8;
  }
  75% {
    transform: scale(1.02) rotate(1deg);
    opacity: 0.9;
  }
}
#magic-cursor {
  position: absolute;
  width: 10px !important;
  height: 10px !important;
  pointer-events: none;
  z-index: 1000000;
}

#ball {
  position: fixed;
  display: block;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  width: 24px !important;
  height: 24px !important;
  background: transparent;
  border: 1px solid var(--primary-color);
  margin: 0;
  border-radius: 50%;
  pointer-events: none;
  opacity: 1 !important;
}

#ball .circle {
  background: var(--primary-color);
  width: 8px;
  height: 8px;
  top: 50%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
}

@keyframes circleMotion {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  25% {
    transform: translateX(50px) translateY(-50px) rotate(90deg);
  }
  50% {
    transform: translateX(100px) translateY(0) rotate(180deg);
  }
  75% {
    transform: translateX(50px) translateY(50px) rotate(270deg);
  }
  100% {
    transform: translateX(0) translateY(0) rotate(360deg);
  }
}
/*
Loading
*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999999;
}

.loading-container {
  height: 100px;
  position: relative;
  width: 200px;
  margin: 40px auto;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  transform: translate(-50%, -50%);
}

.orbiting-circle {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  /* Change color as needed */
  animation: orbit 2s linear infinite;
  top: 0;
  left: 40px;
  /* Half of container width minus half of circle width */
}

@keyframes orbit {
  0% {
    transform: rotate(0deg) translateX(40px) rotate(0deg);
    /* 40px is the orbit radius */
  }
  100% {
    transform: rotate(360deg) translateX(40px) rotate(-360deg);
  }
}
/*
    Whatsapp icon
*/
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  outline: none;
  /* Pulse animation */
  /* Tooltip */
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}
.whatsapp-float:active {
  transform: scale(0.95);
  transition: all 0.1s ease;
}
.whatsapp-float:hover .whatsapp-icon {
  transform: rotate(10deg);
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  animation: pulse 2s infinite;
  z-index: -1;
}
.whatsapp-float .tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.whatsapp-float .tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #333;
}
.whatsapp-float:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(-5px);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  fill: white;
  transition: all 0.3s ease;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
/* Mobile responsiveness */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
  .whatsapp-float .tooltip {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */