/*----------------------------------------------
  🎨 Global Styles
----------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Coiny|Josefin+Sans:400,700");
:root {
  --primary: #3795f4; /* Vibrant blue */
  --highlight: #FFFFFF; /* White */
  --contrast: #333333; /* Dark Gray */
  --neutral: #f5f7fa; /* Light neutral background */
  --accent: #f14b1f; /* Orange for hover effects */
  --background: #ffffff; /* White background */
  --ogency-black3: #222222; /* Darker gray for text stroke */
}

html {
  scroll-behavior: smooth;
}

.fa-solid, .fas {
  font-weight: 900;
  top: 2px;
  position: relative;
}

body {
  background: var(--background);
  color: var(--contrast);
  font-family: "Josefin Sans", sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

p, li {
  color: var(--contrast);
  font-size: 1rem;
  line-height: 1.8;
}

.zigzag {
  background: var(--accent);
  display: inline-block;
  font-size: 18px;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  margin-bottom: 15px;
  padding: 5px 15px;
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  color: var(--highlight);
}

#about h3 {
  font-size: 30px;
  padding-bottom: 10px;
}

.animated-border:hover::after {
  width: 100%;
}

.hero-section h6 {
  background: var(--highlight);
  display: inline-flex;
  width: 380px;
  margin-bottom: 20px;
  padding: 9px 10px;
  color: var(--contrast);
}

.hero-section span {
  background: var(--accent);
  padding: 6px 12px;
  color: var(--highlight);
  margin-right: 10px;
}

.iconlogo a {
  font-size: 35px;
  display: flex;
}

.iconlogo a h2 {
  font-size: 35px;
  color: var(--primary);
  padding: 3px 10px;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  font-weight: 700;
  font-style: normal;
}

@keyframes type {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes cursor {
  50% { border-color: transparent; }
}

.waviy {
  position: relative;
  -webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0, 0, 0, 0.2));
  font-size: 75px;
  font-family: 'Josefin Sans', sans-serif;
}

.waviy span {
  position: relative;
  display: inline-block;
  color: var(--primary);
  text-transform: uppercase;
  animation: waviy 1s infinite;
  animation-delay: calc(0.1s * var(--i));
}

@keyframes waviy {
  0%, 40%, 100% { transform: translateY(0); }
  20% { transform: translateY(-20px); }
}

.container h2 {
  font-size: 2.5rem;
}

div.bottom:before {
  content: "";
  position: absolute;
  left: 25px;
  bottom: 0;
  height: 15px;
  width: 70%;
  border-bottom: 5px solid var(--primary);
}

/* Animations */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes rotateBounce {
  0% { transform: scale(1) rotate(0deg); }
  30% { transform: scale(1.2) rotate(15deg); }
  60% { transform: scale(0.95) rotate(-10deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.stat-numbers::after {
  content: "+";
  font-weight: bold;
  margin-left: 2px;
}

.stat-numbers {
  font-size: 70px;
  font-weight: 800;
  color: var(--highlight);
  line-height: 1;
  display: block;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  transition: all 400ms ease;
}

/*----------------------------------------------
  🎨 Navbar
----------------------------------------------*/
@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hoverEffect {
  from { transform: scale(1) rotate(0deg); }
  to { transform: scale(1.05) rotate(2deg); }
}

.desktop-menu-footer {
  position: relative;
  transition: color 0.3s ease;
  display: flex;
  padding: 6px 0px 0px 0px;
}

.desktop-menu-footer img {
  position: relative;
  width: 23px;
  margin: 0px 6px 7px 0px;
  height: 25px;
}

.desktop-menu-item {
  position: relative;
  transition: color 0.3s ease;
  display: flex;
  padding: 6px 0px 0px 0px;
}

.desktop-menu-item img {
  position: relative;
  width: 20px;
  margin: 0px 6px 7px 0px;
}

.desktop-menu-item img:hover::before {
  filter: brightness(31.5);
}

.desktop-menu-item::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.desktop-menu-item:hover::after {
  width: 100%;
}

.desktop-menu-item:hover {
  animation: hoverEffect 0.3s ease-in-out forwards;
  color: var(--primary);
}

.active {
  font-weight: bold;
  color: var(--primary);
}

.desktop-menu-item.active::after {
  width: 100%;
}

.mobile-menu {
  transition: all 0.3s ease-in-out;
}

.mobile-menu-open {
  animation: slideIn 0.3s ease-in-out forwards;
}

.menu-item {
  animation: fadeIn 0.3s ease-in-out forwards;
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }

.btn-close.white {
  position: relative;
  z-index: 9;
  opacity: 1;
  top: -12px;
  left: -16px;
}

.info-item img {
  width: 35px;
  margin-right: 25px;
}

/*----------------------------------------------
  🎨 Hero Section (#topform-section)
----------------------------------------------*/
#topform-section {
  position: relative;
  background-size: cover;
  background-position: center;
  align-items: center;
  justify-content: center;
  z-index: 9;
  min-height: 120vh;
}

.iconlogo img {
  width: 200px;
}

.bgslido {
  background: url('../img/banner.jpg') center/cover fixed;
  background-blend-mode: multiply;
  background-color: #575157;
  display: flex;
  align-items: center;
  min-height: 350px;
  background-position: bottom;
}

.hero-section {
  padding: 100px 20px;
  width: 100%;
  position: relative;
  animation: fadeInUp 1s ease-out;
  text-align: center;
  justify-content: center;
}

.contact-control-icon {
  position: relative;
  left: -5px;
  z-index: 2;
  top: -10px;
  width: 25px;
  height: 24px;
  color: var(--primary);
}

.event-date {
  font-weight: 600;
  color: var(--highlight);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  font-size: 25px;
}

.event-date .form-control-icon {
  top: 16px;
  position: relative;
  left: -10px;
}

.event-date i {
  margin-right: 8px;
}

.event-title {
  position: relative;
}

.event-title h1 {
  font-size: 4rem;
  font-weight: 900;
  color: transparent;
  background: linear-gradient(58deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  overflow: hidden;
  white-space: nowrap;
}

.event-title img {
  width: 60px;
  position: absolute;
  left: -60px;
  top: 23px;
  animation: rotateBounce 2s ease-in-out infinite;
}

.event-location {
  font-weight: 600;
  color: var(--highlight);
  margin-bottom: 20px;
  display: flex;
  font-size: 25px;
}

.event-location .form-control-icon {
  top: 16px;
  position: relative;
  left: -10px;
}

.event-location i {
  margin-right: 6px;
}

.event-description {
  font-size: 35px;
  font-weight: 700;
  color: var(--highlight);
  line-height: 1.3;
  justify-content: left;
  margin: 20px auto;
}

.countdown-container {
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  max-width: 600px;
  position: absolute;
  bottom: 120px;
  backdrop-filter: blur(5px);
  background: var(--highlight);
  z-index: 99;
  padding: 10px 40px;
  animation: pulse 2s ease-in-out infinite;
}

.countdown {
  display: flex;
  justify-content: space-around;
}

.time-box {
  color: var(--highlight);
  padding: 1rem;
  border-radius: 0.75rem;
  width: 100px;
  flex: 1 1 80px;
  animation: pulse 2s infinite;
}

.time-box h3 {
  font-size: 2rem !important;
  margin: 0;
  color: var(--primary);
}

.time-box span {
  font-size: 0.9rem;
  opacity: 0.9;
  color: var(--primary);
  font-weight: 700;
}

.nav-pills {
  overflow-x: auto;
  flex-wrap: nowrap;
  width: 100%;
}

.nav-pills .nav-item {
  flex: 0 0 auto;
  transition: 0.3s;
  width: 47%;
  margin-right: 10px;
}

.nav-pills .nav-link {
  background: var(--highlight);
  color: var(--primary);
  font-size: 0.875rem;
  width: 80%;
}

.nav-pills .nav-link.active {
  background-color: var(--primary);
  color: var(--highlight) !important;
  font-weight: bold;
}

.nav-link:focus,
.nav-link:hover {
  color: var(--accent);
}

.addy .form-control-icon {
  top: 30%;
}

.form-control-icon {
  position: absolute;
  left: 25px;
  transform: translateY(-50%);
  color: var(--highlight);
  pointer-events: none;
  z-index: 2;
  top: 24px;
  width: 25px;
  height: 24px;
  color: var(--primary);
}

.form-section input:focus,
.form-section select:focus,
.form-section textarea:focus {
  box-shadow: 0 0 0 0.2rem rgba(55, 149, 244, 0.25) !important;
  border-color: var(--accent) !important;
}

.form-control.with-icon,
.form-select.with-icon,
textarea.with-icon {
  padding-left: 2.5rem;
  font-size: 0.8125rem;
}

textarea.with-icon {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.input-wrapper {
  width: 100%;
}

.invalid-feedback {
  display: none;
  color: var(--primary);
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-select:invalid ~ .invalid-feedback,
.was-validated textarea:invalid ~ .invalid-feedback {
  display: block;
}

.calicon .form-control-icon {
  top: 23px;
  left: 15px;
}

.calicon textarea {
  height: 70px;
  padding-left: 50px;
  font-size: 0.8125rem;
}

/*----------------------------------------------
  🎨 About Section (#about)
----------------------------------------------*/
#about h6 {
  color: var(--accent) !important;
  padding-bottom: 10px;
  font-size: 18px;
}

#about p {
  padding-bottom: 15px;
  font-size: 17px;
}

#about {
  padding: 4rem 0;
  background: var(--neutral);
}

#about img {
  height: 550px;
  object-fit: cover;
}

#about h4 {
  color: var(--contrast);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 27px;
  padding-top: 5px;
  padding-bottom: 5px;
}

#about h6 {
  color: var(--contrast);
}

/*----------------------------------------------
  🎨 Stats Section
----------------------------------------------*/
.stats-section {
  background: url('../img/numberlist.jpg') center/cover fixed;
  background-color: #545454;
  background-blend-mode: multiply;
  align-items: center;
  background-position: bottom;
  justify-content: center;
  display: grid;
}

.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 60px 20px;
  gap: 30px;
}

.stat-box {
  background-color: #111;
  border: 1px solid #222;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  transition: 0.3s;
}

.stat-box:hover {
  background-color: #1a1a1a;
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 30px;
  color: #aaa;
  margin-bottom: 20px;
}

.stat-number {
  font-size: 37px;
  font-weight: 800;
  line-height: 1;
  display: block;
  color: var(--highlight);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--ogency-black3);
  transition: all 400ms ease;
}

.stat-label {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 500;
  color: #eee;
}

.icon-box {
  justify-content: center;
  display: flex;
}

.icon-box img {
  width: 50px;
  margin-bottom: 15px;
}

.animated-link {
  position: relative;
  display: inline-block;
  font-size: 24px;
  color: var(--primary);
  text-decoration: none;
  padding-bottom: 5px;
}

.animated-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: var(--accent);
  transition: width 0.4s ease;
}

.animated-link:hover::after {
  width: 100%;
}

/*----------------------------------------------
  🎨 Key Dates Section (#keydates)
----------------------------------------------*/
#keydates {
  padding: 4rem 0;
  background: var(--neutral);
}

#keydates h2 {
  font-size: 2.5rem;
}

.event-card {
  background: var(--highlight);
  border: 1px solid var(--primary);
  border-radius: 12px;
  padding: 7px 3px 10px 25px;
  color: var(--contrast);
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.iconmassge {
  width: 60px;
  height: 60px;
}

.event-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(55, 149, 244, 0.3);
}

.event-card i {
  font-size: 16px;
  margin-right: 5px;
  position: relative;
  top: 5px;
}

.event-card .form-control-icon {
  position: relative;
  left: -9px;
  top: 22%;
  transform: translateY(-50%);
  color: var(--highlight);
  width: 25px;
  height: 24px;
}

.event-card h5 {
  font-size: 20px;
  font-weight: bold;
  display: flex;
  color: var(--primary);
  position: relative;
  top: 15px;
  line-height: 30px;
  font-family: 'Josefin Sans', sans-serif;
  margin-bottom: 15px;
}

.event-card p {
  font-size: 14px !important;
  padding-left: 0px;
  position: relative;
  top: 0px;
  text-align: left;
  margin-right: 16px;
  padding-bottom: 10px;
  line-height: 30px;
  padding-top: 20px;
}

/* Connect with Us */
.hero-section2 {
  position: relative;
  padding: 70px 20px 150px 9vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: linear-gradient(156deg, var(--primary) -21%, #2f282f 99%);
  overflow: hidden;
}

.headline {
  font-size: 6vw;
  font-weight: bold;
  color: var(--highlight);
  letter-spacing: 0.03em;
  z-index: 2;
}

.faded-text {
  position: absolute;
  top: 50%;
  font-size: 6vw;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.1);
  letter-spacing: 0.03em;
  z-index: 1;
  pointer-events: none;
}

.circle-btn {
  position: absolute;
  top: 55%;
  left: 27vw;
  width: 80px;
  height: 80px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: box-shadow 0.3s;
  z-index: 3;
  cursor: pointer;
}

.circle-btn:hover {
  box-shadow: 0 0 15px 5px rgba(241, 75, 31, 0.3);
}

.arrow {
  color: var(--highlight);
  font-size: 2rem;
}

/*----------------------------------------------
  🎨 Housing Section (.safe-section)
----------------------------------------------*/
.safe-section ul li {
  background: rgba(0, 0, 0, 0.29);
  color: var(--highlight);
  padding: 4px 0px 5px 15px;
  width: 50%;
}

.safe-section {
  padding: 3rem 0;
  background: url('../img/aboutbanner.jpg') center/cover fixed;
  background-color: #2f2f2f;
  background-blend-mode: multiply;
  align-items: center;
  background-position: bottom;
  justify-content: center;
  display: grid;
  min-height: 350px;
}

.safe-section ul {
  display: flex;
  width: 100%;
}

.safe-section img {
  width: 100%;
}

.safe-section p, .safe-section li {
  color: var(--highlight);
}

.safe-section h3 {
  padding-top: 5px;
  color: var(--primary);
  font-weight: 500;
  font-size: 30px;
}

.safe-section h2 {
  font-size: 2.5rem;
}

.secure-icon {
  position: absolute;
  top: 10%;
  left: 10%;
  transform: translate(-10%, -10%);
}

.icon-circle {
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: var(--contrast);
}

.icon-circle i {
  font-size: 24px;
  color: var(--primary);
}

/*----------------------------------------------
  🎨 Footer
----------------------------------------------*/
.stat-number2 i {
  color: var(--primary) !important;
  font-size: 20px;
}

.stat-number2 {
  color: var(--primary);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 25px;
}

.stat-label2 {
  font-size: 14px;
  color: var(--contrast);
  line-height: 25px;
}

.footer {
  box-shadow: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  border-top: 1px solid var(--primary);
  padding: 40px 20px 20px;
  color: var(--contrast);
}

.footer h5, .footer h2 {
  color: var(--primary);
  font-size: 30px;
}

.footer li {
  margin-bottom: 0;
  font-size: 15px;
  margin-top: 15px;
}

.footer a, .footer p, .footer .fas {
  color: var(--contrast);
  text-decoration: none;
}

.footer a:hover, .footer .fas:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--primary);
  margin-top: 30px;
  padding-top: 15px;
  font-size: 14px;
  text-align: center;
}

.underline {
  padding-top: 5px;
  text-decoration: underline wavy var(--primary);
}

/*----------------------------------------------
  🎨 Contact Us
----------------------------------------------*/
.contactpic {
  position: relative;
  background-image: url('../img/mainbanner.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-color: #9e9e9e;
  background-blend-mode: multiply;
  align-items: center;
  background-position: bottom;
  justify-content: center;
  display: grid;
  min-height: 300px;
  padding-top: 105px;
}

.breadcrumb p {
  display: ruby;
  color: var(--highlight);
  bottom: 5px;
}

.contactpic span {
  text-transform: uppercase;
  display: block;
}

.contactpic .text1 {
  color: var(--highlight);
  font-size: 45px;
  font-weight: 300;
  letter-spacing: 8px;
  margin-bottom: 20px;
  position: relative;
  animation: text 2.5s 1;
  font-family: 'Coiny';
  margin-top: 30px;
}

i.fa-plus {
  position: absolute;
  color: var(--primary);
  bottom: 85px;
  right: 177px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 49px;
}

.breadcrumb {
  justify-content: center;
  display: flex;
  width: 100%;
  white-space: nowrap;
  color: var(--highlight);
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.contform-section {
  flex: 1 1 50%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.12);
  margin-top: 60px;
  margin-bottom: 20px;
  border-radius: 15px;
  background: var(--neutral);
}

.contform-section .form-group {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contform-section .btn-slide-fill {
  height: 52px;
}

.z-99 {
  z-index: 9999;
}

.z9 {
  z-index: 99;
}

.form-section {
  flex: 1 1 50%;
  z-index: 999;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--neutral);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.12);
  margin-bottom: 20px;
  border-radius: 15px;
}

.form-section h5 {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--highlight);
}

.form-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--primary);
}

#exampleModal {
  z-index: 99999;
}

.form-section h4 {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 200;
}

.form-group {
  display: flex;
  gap: 20px;
  margin-bottom: -8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 0px 7px 15px;
  border: none;
  font-size: 1rem;
  outline: none;
  border: 2px solid var(--primary);
  margin-bottom: 20px;
}

.form-group textarea {
  resize: none;
  height: 60px !important;
  padding: 12px 20px;
}

.btn-submit {
  background-color: var(--primary);
  color: var(--highlight);
  padding: 16px 30px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-submit:hover {
  background-color: var(--accent);
  transform: scale(1.05);
}

.image-section {
  flex: 1 1 50%;
  background: url('../img/contactimg.jpg') center center / cover no-repeat;
  min-height: 500px;
  position: relative;
  top: 70px;
  animation: float 2s ease-in-out infinite;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--neutral);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  overflow: hidden;
  margin: 60px 0px;
}

.map-section {
  flex: 1 1 60%;
  min-height: 450px;
}

.map-section iframe {
  width: 100%;
  border: 0;
}

.info-section {
  flex: 1 1 40%;
  padding: 40px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--neutral);
}

.info-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary);
}

.info-section hr {
  border: none;
  border-top: 2px dashed var(--primary);
  width: 60px;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.icon-circle {
  background-color: var(--neutral);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 20px;
}

.modal-backdrop.show {
  z-index: 9;
}

.info-text {
  line-height: 1.5;
}

.info-text strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--contrast);
}

.continess .form-control:focus {
  color: var(--contrast);
  border-color: var(--accent);
  outline: 0;
  box-shadow: none;
}

/*----------------------------------------------
  🎨 About Us
----------------------------------------------*/
.our-story-section .shadows {
  background: var(--neutral);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.24);
  padding: 50px 40px;
}

.our-story-section {
  margin-top: 80px;
  margin-bottom: 50px;
}

.our-story-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary);
}

.our-story-subtitle {
  color: var(--primary);
  font-size: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Josefin Sans', sans-serif;
}

.our-story-text {
  color: var(--contrast);
  font-size: 1rem;
  line-height: 1.8;
}

.our-story-img {
  max-width: 100%;
  border-radius: 8px;
  animation: float 2s ease-in-out infinite;
}

/*----------------------------------------------
  🎨 Play Button
----------------------------------------------*/
.wrapperbox {
  margin: 0;
  height: 5vh;
  display: grid;
  place-items: center;
}

.wrapperbox button {
  font-size: 8px;
  font-weight: 600;
  color: var(--highlight);
  text-decoration: none;
  text-transform: uppercase;
  padding: 6px 30px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  transition: 0.2s;
  transform: scale(2);
}

.wrapperbox button span {
  position: relative;
  z-index: 0;
  color: var(--highlight);
}

.wrapperbox button .liquid {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 200px;
  background: var(--primary);
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.7);
  z-index: -1;
  transition: 0.6s;
}

.wrapperbox button .liquid::after,
.wrapperbox button .liquid::before {
  position: absolute;
  content: "";
  width: 200%;
  height: 200%;
  top: 0;
  left: 0;
  transform: translate(-25%, -75%);
}

.wrapperbox button .liquid::after {
  border-radius: 45%;
  background: rgba(20, 20, 20, 1);
  box-shadow: 0 0 10px 5px var(--primary);
  animation: animate 5s linear infinite;
  opacity: 0.8;
}

.wrapperbox button .liquid::before {
  border-radius: 40%;
  box-shadow: 0 0 10px rgba(26, 26, 26, 0.5), inset 0 0 5px rgba(26, 26, 26, 0.5);
  background: rgba(26, 26, 26, 0.5);
  animation: animate 7s linear infinite;
}

@keyframes animate {
  0% { transform: translate(-25%, -75%) rotate(0); }
  100% { transform: translate(-25%, -75%) rotate(360deg); }
}

.wrapperbox button:hover .liquid {
  top: -120px;
}

.wrapperbox button:hover {
  box-shadow: 0 0 5px var(--primary), inset 0 0 5px var(--primary);
  transition-delay: 0.2s;
}

/*----------------------------------------------
  🎨 Registration & Housing Pages
----------------------------------------------*/
.registration-page {
  margin-top: 50px;
  margin-bottom: 50px;
}

.registration-page img.main {
  height: 575px;
  width: 100%;
  object-fit: cover;
  margin-top: 20px;
  animation: float 2s ease-in-out infinite;
}

.housing-page {
  margin-top: 50px;
  margin-bottom: 50px;
}

.housing-page img.main {
  height: 500px;
  width: 100%;
  object-fit: cover;
  margin-top: 120px;
  animation: float 2s ease-in-out infinite;
}

/*----------------------------------------------
  🎨 Modal (Group Registration)
----------------------------------------------*/
#groupform.modal-content {
  background: none;
  box-shadow: none;
  border: none;
  top: 50px;
}

.btn-slide-fill {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  position: relative;
  overflow: hidden;
  padding: 7px 12px 1px 15px;
  transition: color 0.4s ease, transform 0.3s ease;
}

.btn-slide-fill::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--primary);
  z-index: -1;
  transition: width 0.4s ease;
}

.btn-slide-fill:hover {
  color: var(--highlight);
  transform: scale(1.05);
}

.btn-slide-fill:hover::before {
  width: 100%;
}

.justicent {
  align-items: center;
  display: flex;
  justify-content: center;
}

.rolling-text {
  font-size: 15px;
  line-height: 50px;
  height: 60px;
  text-decoration: none;
  overflow: hidden;
  color: var(--contrast);
  font-weight: 500;
}

.rolling-text:hover .letter, .rolling-text.play .letter {
  transform: translateY(-100%);
}

.rolling-text .letter {
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}

.letter:nth-child(1) { transition-delay: 0s; }
.letter:nth-child(2) { transition-delay: 0.015s; }
.letter:nth-child(3) { transition-delay: 0.03s; }
.letter:nth-child(4) { transition-delay: 0.045s; }
.letter:nth-child(5) { transition-delay: 0.06s; }
.letter:nth-child(6) { transition-delay: 0.075s; }
.letter:nth-child(7) { transition-delay: 0.09s; }
.letter:nth-child(8) { transition-delay: 0.105s; }

.flatpickr-calendar {
  border: 1px solid var(--primary);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.inRange {
  background-color: var(--primary);
  color: var(--highlight);
}

.flatpickr-day.today {
  border-color: var(--primary);
}

/*----------------------------------------------
  🎨 Preloader & Go to Top Button
----------------------------------------------*/
.scroll-progress-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 10000;
  opacity: 1;
  pointer-events: auto;
}

.scroll-progress-svg {
  width: 68px;
  height: 68px;
  transform: rotate(-90deg);
}

.scroll-progress-circle-bg {
  fill: none;
  stroke: #000;
  stroke-width: 8;
}

.scroll-progress-circle {
  fill: none;
  stroke: var(--accent);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 175.92918860102841;
  stroke-dashoffset: 175.92918860102841;
  transition: stroke-dashoffset 0.3s ease;
}

.slick-next:before, .slick-prev:before {
  font-family: 'Font Awesome 6 Free' !important;
  font-size: 34px !important;
  color: var(--accent) !important;
}

.slick-next {
  right: -45px !important;
}

.slick-prev {
  left: -45px !important;
}

.slick-next, .slick-prev {
  display: block !important;
  width: 45px !important;
  height: 50px !important;
  color: var(--accent) !important;
}

.scroll-percent-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: var(--accent);
  pointer-events: none;
  font-weight: 600;
}

/*----------------------------------------------
  🎨 Button
----------------------------------------------*/
.btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 25px;
  height: 100px;
}

button {
  position: relative;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  outline: none;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  transition: all 0.5s;
  z-index: 1;
  padding: 12px 15px;
}

.btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--primary);
  transition: all 0.5s;
  z-index: -1;
}

.btn-outline:hover {
  color: var(--highlight);
}

.btn-outline:hover::before {
  width: 100%;
}

.btn-pulse {
  background-color: var(--highlight);
  border: 2px solid var(--primary);
  color: var(--contrast);
  padding: 12px 15px;
}

.btn-pulse:hover {
  animation: pulse 1.5s infinite;
}

.btnabout {
  display: flex;
}

/*----------------------------------------------
  🎨 Testimonial
----------------------------------------------*/
.testim {
  width: 100%;
}

.testim .wrap {
  position: relative;
  width: 100%;
  max-width: 1020px;
  padding: 40px 20px;
  margin: auto;
}

.testim .arrow {
  display: block;
  position: absolute;
  color: var(--accent);
  cursor: pointer;
  font-size: 2em;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  background: rgba(0, 0, 0, 0.94);
  padding: 15px 20px;
}

.testim .arrow:hover {
  color: var(--highlight);
}

.testim .arrow.left {
  left: 70px;
}

.testim .arrow.right {
  right: 70px;
}

.testim .dots {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 60px;
  left: 0;
  display: block;
  z-index: 3333;
  height: 12px;
}

.testim .dots .dot {
  list-style-type: none;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  margin: 0 10px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.testim .dots .dot.active {
  animation: testim-scale 0.5s ease-in-out forwards;
}

.testim .cont {
  position: relative;
  overflow: hidden;
}

.testim .cont > div {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 0 70px 0;
  opacity: 0;
}

.testim .cont > div.inactive {
  opacity: 1;
}

.testim .cont > div.active {
  position: relative;
  opacity: 1;
}

.testim .cont div .img img {
  display: block;
  width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 50%;
}

.testim .cont div h2 {
  color: var(--accent);
  font-size: 1em;
  margin: 15px 0;
}

.testim .cont div p {
  font-size: 1.15em;
  color: var(--contrast);
  width: 70%;
  margin: auto;
}

.testim .cont div.active .img img {
  animation: testim-show 0.5s ease-in-out forwards;
}

.testim .cont div.active h2 {
  animation: testim-content-in 0.4s ease-in-out forwards;
}

.testim .cont div.active p {
  animation: testim-content-in 0.5s ease-in-out forwards;
}

.testim .cont div.inactive .img img {
  animation: testim-hide 0.5s ease-in-out forwards;
}

.testim .cont div.inactive h2 {
  animation: testim-content-out 0.4s ease-in-out forwards;
}

.testim .cont div.inactive p {
  animation: testim-content-out 0.5s ease-in-out forwards;
}

@keyframes testim-scale {
  0% { box-shadow: 0px 0px 0px 0px #eee; }
  35% { box-shadow: 0px 0px 10px 5px #eee; }
  70% { box-shadow: 0px 0px 10px 5px var(--primary); }
  100% { box-shadow: 0px 0px 0px 0px var(--primary); }
}

@keyframes testim-content-in {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes testim-content-out {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-100%); }
}

@keyframes testim-show {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes testim-hide {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(0); }
}

/*----------------------------------------------
  🎨 Blog
----------------------------------------------*/
.btn-Fx {
  overflow: hidden;
  color: var(--contrast);
  display: inline-block;
  position: relative;
  font-size: 1rem;
  padding: 10px 16px;
  background-color: var(--neutral);
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-Fx span {
  display: block;
  position: relative;
  z-index: 10;
  font-weight: 700;
}

.btn-Fx:hover {
  color: var(--highlight);
}

.btn-Fx:before {
  content: "";
  position: absolute;
  background-color: var(--primary);
  width: 120%;
  height: 0;
  padding-bottom: 120%;
  top: -110%;
  left: -10%;
  border-radius: 50%;
  transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
}

.btn-Fx:hover:before {
  transform: translateZ(0) scaleZ(1);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.btn-Fx:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  transform: translate3d(0, -101%, 0);
  transition: transform 0.4s;
}

.btn-Fx:hover:after {
  transform: translateZ(0);
  transition-duration: 0.05s;
  transition-delay: 0.4s;
  transition-timing-function: linear;
}

.content-container {
  width: 100%;
  position: relative;
  max-width: 1200px;
  margin: 50px auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.front-blog {
  width: 100%;
}

.front-blog-list {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: stretch;
}

.front-blog-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.front-blog-top .dec-title {
  color: var(--contrast);
}

.front-blog-top .btn-Fx {
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 8px 15px;
}

.article-blog {
  color: var(--contrast);
  position: relative;
  width: 100%;
  height: 330px;
  border-radius: 15px;
}

.excel-service {
  background-color: #2f2f2f;
}

.article__thumbnail {
  position: relative;
  height: calc(100% - 90px);
  width: 100%;
  background-size: cover;
  background-position-x: center;
  background-blend-mode: lighten;
  opacity: 1;
  transition: all 0.6s ease-out;
  border-radius: inherit;
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.2);
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.article-blog:hover .article__thumbnail {
  opacity: 1;
  background-color: transparent;
}

.article__body {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
  height: 100px;
  padding: 20px;
  background-color: var(--neutral);
  transition: all 0.4s;
  z-index: 2;
  overflow: hidden;
  border-radius: inherit;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.2);
}

.article-blog:hover .article__body {
  background-color: rgba(55, 149, 244, 0.1);
  backdrop-filter: blur(50px);
  height: 250px;
}

.article__category {
  display: block;
  width: 100%;
  transition: color 0.4s;
  font-size: 14px;
  letter-spacing: 0.8px;
}

.article__title {
  padding-bottom: 20px;
  max-height: 65px;
  overflow: hidden;
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 1.4;
  margin: 0;
}

.article__excerpt {
  opacity: 0;
  transition: opacity 0.4s;
  line-height: 1.6;
  font-size: 14px;
  color: var(--contrast);
}

.article__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 20px 20px 20px;
  line-height: inherit;
  height: 42px;
  width: 100%;
}

.article__footer .footer__readmore {
  position: relative;
  display: block;
  height: 22px;
  float: right;
  overflow: hidden;
}

.article__footer .footer__readmore-text {
  display: inline-block;
  padding-right: 5px;
  transform: translateY(30px);
  color: inherit;
  vertical-align: middle;
  transition: all 0.4s;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: bold;
}

.article__footer .footer__readmore-arrow {
  display: inline-block;
  height: 100%;
}

.article__footer .footer__readmore-arrow svg {
  transition: fill 0.4s;
}

.article-blog:hover {
  color: var(--contrast);
}

.article-blog:hover .footer__readmore-text {
  transform: translateY(-2px);
}

.article-blog:hover .article__excerpt {
  opacity: 1;
}

/*----------------------------------------------
  🎨 Service 2
----------------------------------------------*/
.sidebar {
  width: 280px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 20px;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  height: 100%;
  z-index: 1000;
}

.sidebar h2 {
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: var(--highlight);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sidebar ul {
  list-style: none;
}

.sidebar ul li {
  padding: 8px 20px;
  margin: 5px 0;
  cursor: pointer;
  font-size: clamp(1rem, 3vw, 1.1rem);
  font-weight: 500;
  color: #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sidebar ul li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.sidebar ul li:hover::before {
  left: 100%;
}

.sidebar ul li:hover,
.sidebar ul li.active {
  background: rgba(255, 255, 255, 0.15);
  color: var(--primary);
  transform: translateX(5px);
}

.contentsidemenu {
  flex: 1;
  margin-left: 280px;
  transition: margin-left 0.4s ease;
}

.contentsidemenu img {
  width: 600px;
  height: 500px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 1;
}

.contentsidemenu img.loading {
  opacity: 0;
  transform: scale(0.95);
}

.menu-toggle {
  display: none;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  cursor: pointer;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  color: var(--highlight);
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1100;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

/*----------------------------------------------
  🎨 Slider
----------------------------------------------*/
.slider-container {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  background: #000;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  animation: zoomIn 8s ease-in-out infinite;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
}

.slide.active {
  opacity: 1;
}

@keyframes zoomIn {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.hero-section {
  top: 100px;
  z-index: 10;
  padding: 60px 80px;
  color: var(--highlight);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out, visibility 0s;
}

.hero-section[data-slide="0"].active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.hero-section[data-slide="0"] {
  transform: translateX(-30px);
}

.hero-section[data-slide="1"].active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  animation: fadeScaleIn 0.8s ease-in-out;
}

.hero-section[data-slide="1"] {
  transform: scale(0.9);
  top: -360px;
}

@keyframes fadeScaleIn {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

.hero-section h6 span {
  color: var(--highlight);
  font-weight: 600;
}

.event-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
  width: 100%;
  color: var(--highlight);
}

.btn-slide-fill {
  background: linear-gradient(45deg, var(--accent), var(--primary));
  color: var(--highlight);
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.justcent {
  display: flex;
  justify-content: center;
}

.btn-slide-fill:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(55, 149, 244, 0.4);
}

.controls-container {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

.control {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.control.active {
  background-color: var(--primary);
  transform: scale(1.3);
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25px;
  color: var(--highlight);
  background: rgba(0, 0, 0, 0.5);
  padding: 15px 22px;
  border-radius: 85%;
  cursor: pointer;
  z-index: 20;
  transition: background 0.3s ease;
  height: 60px;
  width: 60px;
}

.arrow:hover {
  background: var(--primary);
}

.arrow-left {
  left: 20px;
}

.arrow-right {
  right: 20px;
}

/*----------------------------------------------
  🎨 Service 1
----------------------------------------------*/
.service-section {
  padding: 60px 0;
}

.title-area {
  text-align: center;
  margin-bottom: 40px;
}

.sec-title {
  font-size: 2.5em;
  color: var(--primary);
  margin-top: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.sec-subtitle.visible,
.sec-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card {
  border-bottom: 3px solid var(--accent);
  background: var(--highlight);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  height: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.service-card .service-icon {
  width: 40px;
  height: 40px;
  margin: 10px auto;
}

.service-card .service-title {
  font-size: 1.2em;
  color: var(--primary);
  margin: 10px 0;
  text-transform: uppercase;
}

.service-card .service-desc {
  font-size: 0.9em;
  color: #7f8c8d;
  margin: 0;
  text-align: justify;
}

.service-card .divider {
  width: 50%;
  height: 2px;
  background: var(--accent);
  margin: 10px auto;
}

.slick-slide {
  margin: 0 10px;
}

.slick-list {
  margin: 0 -10px;
}

.slick-prev,
.slick-next {
  z-index: 1;
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
}

.slick-prev:hover,
.slick-next:hover {
  background: #219653;
}

.slick-prev:before,
.slick-next:before {
  color: var(--highlight);
}

.social {
  display: flex;
}

.social img {
  width: 30px;
  margin-right: 15px;
  margin-top: 20px;
}

.desktop-menu-footer i {
  position: relative;
  top: 5px;
}

.shadowcont {
  padding: 50px;
  display: flex;
  margin-bottom: 50px;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.12);
  margin-top: 60px;
  border-radius: 15px;
  background: var(--neutral);
}

.is-invalid~.invalid-feedback {
  font-weight: 700;
  position: relative;
  top: -15px;
}

/*----------------------------------------------
  🎨 Media Queries
----------------------------------------------*/
@media (min-width: 992px) {
  .mobile-menu,
  .mobile-toggler {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .mob0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .mobile-menu-item {
    position: relative;
    transition: color 0.3s ease;
    display: flex;
  }

  .mobile-menu-item img {
    position: relative;
    width: 20px;
    margin: 0px 6px 7px 0px;
  }

  .hero-section2 {
    padding: 42px 0 62px 0;
    min-height: 180px;
  }

  .headline, .faded-text {
    font-size: 9vw;
  }

  .circle-btn {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 61%;
    left: 11vw;
  }

  .circle-btn .arrow {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .event-card h5 {
    font-size: 20px;
    font-weight: bold;
    display: flex;
    color: var(--accent);
    font-family: 'Josefin Sans', sans-serif;
    width: 90%;
    margin-left: 15px;
    padding-bottom: 10px;
  }

  .event-card .form-control-icon {
    position: relative;
    left: -9px;
    top: 22%;
    transform: translateY(-50%);
    color: var(--highlight);
    width: 20px;
    height: 19px;
  }

  .event-card p {
    font-size: 16px !important;
    padding-left: 15px;
    position: relative;
    top: -8px;
    width: 90%;
  }

  .housing-page img {
    margin-top: 15px;
  }

  #topform-section {
    min-height: auto;
  }

  .hero-slide::after {
    display: none;
  }

  .hero-slide {
    display: block;
  }

  .hero-section {
    position: absolute;
    z-index: 10;
    padding: 50px 22px !important;
    color: var(--highlight);
    width: 100% !important;
    top: 0px !important;
  }

  .event-title h1 {
    font-size: 2rem;
    animation: none;
    background: none;
    color: var(--highlight);
  }

  .event-description {
    font-size: 25px;
  }

  .countdown-container {
    position: relative;
    top: -20px;
    width: 100%;
    left: 0 !important;
  }

  .countdown {
    gap: 0.5rem;
  }

  .time-box {
    padding: 0.5rem;
  }

  .form-section {
    padding: 15px;
  }

  .form-section input,
  .form-section select {
    font-size: 0.875rem;
  }

  .playbtn {
    width: 100%;
  }

  #about img {
    margin-top: 1.5rem;
  }

  .stat-box {
    width: 100%;
    margin-bottom: 20px;
  }

  #keydates .col-md-4 {
    margin-bottom: 1rem;
  }

  .safe-section img {
    margin-bottom: 1.5rem;
  }

  .contactpic {
    min-height: 250px;
    padding-top: 60px;
    background-position: center;
    text-align: center;
  }

  .contactpic .text1 {
    font-size: 2rem;
    letter-spacing: 2px;
    word-break: break-word;
    line-height: 1.2;
    padding: 0 10px;
  }

  .breadcrumb p {
    font-size: 13px;
    bottom: 10px;
    text-align: center;
    width: 100%;
    position: static;
    margin-top: 15px;
  }

  .contact-container {
    flex-direction: column;
    margin: 30px 0px;
  }

  .image-section {
    min-height: 200px;
    top: 0;
    animation: none;
  }

  .contform-section,
  .form-section {
    padding: 15px;
    margin-top: 20px;
  }

  .contform-section .form-group,
  .form-section .form-group {
    flex-direction: column;
    gap: 8px;
  }

  .contactpic .text1::before,
  .contactpic .text1::after {
    display: none;
  }

  .slider-container {
    height: 580px;
  }

  .hero-section {
    padding: 30px;
  }

  .event-title h2 {
    font-size: 2rem;
  }

  .sidebar.active {
    transform: translateX(0);
  }

  .contentsidemenu {
    margin-left: 0;
  }

  .menu-toggle {
    display: block;
  }

  .contentsidemenu img {
    width: clamp(250px, 90vw, 600px);
  }

  .testim .arrow {
    font-size: 19px;
    padding: 6px 8px;
    height: 30px;
    width: 30px;display: none;
  }

  .testim .arrow.left {
    left: -6px;
  }

  .testim .cont div p {
    font-size: 16px;
    color: var(--contrast);
    width: 94%;
    margin: auto;
    text-align: center;
  }

  .slick-slide {
    margin: 0;
  }

  .service-card img {
    height: 150px;
  }
}

@media (max-width: 700px) {
  .scroll-progress-container {
    width: 60px;
    height: 60px;
    bottom: 35px;
    right: 45px;
  }

  .scroll-progress-svg {
    width: 60px;
    height: 60px;
    font-weight: 900;
  }

  .scroll-percent-label {
    font-size: 15px;
  }

  .front-blog-list {
    flex-direction: column;
  }

  .article__thumbnail {
    height: 220px;
    background-position: bottom;
  }

  .article__body {
    position: absolute;
    background-color: rgba(55, 149, 244, 0.1);
    backdrop-filter: blur(50px);
  }

  .article__excerpt {
    max-height: auto;
    overflow: visible;
  }
}

@media (max-width: 600px) {
  .hero-section2 {
    padding: 32px 0 40px 0;
  }

  .hero-content {
    padding: 0 10px;
  }

  .circle-btn {
    width: 44px;
    height: 44px;
  }

  .headline, .faded-text {
    font-size: 10vw;
  }

  .cta-row {
    margin-top: 2vw;
  }

  .faded-text {
    position: absolute;
    top: 55%;
    left: 130px;
  }
}

@media (max-width: 576px) {
  .event-title h1 {
    font-size: 2rem;
  }

  .event-description {
    font-size: 25px;
  }

  .container h2 {
    font-size: 1.75rem;
  }

  .form-section h2 {
    font-size: 1.5rem;
  }

  .info-section h2 {
    font-size: 1.5rem;
  }

  .our-story-title {
    font-size: 1.25rem;
  }

  .our-story-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .sidebar {
    padding: 20px 15px;
  }

  .sidebar h2 {
    font-size: 1.4rem;
  }

  .sidebar ul li {
    padding: 5px 15px;
    font-size: 0.95rem;
    width: 130px;
  }

  .contentsidemenu {
    padding: 15px;
  }

  .contentsidemenu img {
    width: 100%;
  }
}

@media (max-width: 300px) {
  body {
    font-size: 14px;
  }

  .testim .cont div p {
    line-height: 25px;
  }
}

@media (max-width: 869px) {
  .hero-slide {
    display: block;
  }

  .contact-container {
    flex-direction: column;
  }

  .map-section,
  .info-section {
    flex: 1 1 100%;
  }

  .info-section {
    padding: 20px 15px;
  }
}

@media (min-width: 1200px) {
  .container h2 {
    font-size: 2.5rem;
  }

  .event-title h1 {
    font-size: 3rem;
  }

  .event-description {
    font-size: 36px;
  }

  .time-box {
    width: 100px;
  }

  .stat-box {
    margin: 0 25px;
  }

  .nav-link:focus, .nav-link:hover {
    color: var(--accent) !important;
  }

  .form-section h2 {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 300;
  }

  .form-section h4 {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 200;
  }

  .info-section h2 {
    font-size: 2rem;
    font-weight: 400;
  }

  .our-story-section img {
    height: 500px;
    width: 100%;
    object-fit: cover;
  }

  .registration-page img.main {
    height: 575px;
  }

  .housing-page img.main {
    height: 500px;
  }
}

@media (max-width: 1199px) {
  span.regi {
    font-size: 2rem !important;
  }
  .testim .arrow.right {
    right: -40px;
}
.slick-next {
    right: -3px !important;display: none!important;
}
.arrow{display:none;}
.slick-prev {
    left: -6px !important;display: none!important;}
  .sidebar ul {  width: 1050px;}
  .contactpic .text1 {
    color: var(--highlight);
    font-size: 2.5rem;
    margin-bottom: 0px;
    margin-top: 45px;
  }

  .registration-page img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    margin-top: 0px;
  }

  .form-section,
  .image-section {
    flex: 1 1 100%;
    padding: 20px 15px;
  }

  .form-group {
    flex-direction: column;
  }
}