* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root{
  --primary-textColor: #081b33;
  --secondary-textColor: #fff;
}
.main-textColor{
  color: var(--primary-textColor);
}
.second-textColor{
  color: var(--secondary-textColor);
}
.main-section {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #081b33;
}
.wa-chat-bubble{
  display: none !important;
}
h2,
p {
  padding: 0px;
}
li,
a {
  list-style: none;
  text-decoration: none;
  color: #ffffff;
}
.nav-container {
  display: none;
  height: 100%;
}

@media (min-width: 1150px) {
  .nav-container {
    display: block;
  }
  .menu-toggle {
    display: none;
  }
}
@media (min-width: 1151px) and (max-width: 1366px) {
  .nav-items {
    font-size: 1.1vw !important;
  }
}
.drop-icon {
  position: absolute;
  top: 80%;
  right: -0.5rem;
  transform: translateY(-50%);
  transition: transform 0.5s ease;
}

.nav-item:hover .drop-icon {
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}
.logo,
.logo-contain {
  width: 200px;
  height: 60px;
}
.logo > img,
.logo-contain > img {
  width: 100%;
  object-fit: contain;
}
.home_link {
  display: block;
  width: 100%;
  height: 100%;
}
.home_link > img {
  width: 100%;
  object-fit: contain;
}
.mobile-side-nav {
  margin-top: 60px;
}
.mob-sideNav-li {
  transition: all ease-in-out 0.3s;
}
.mob-sideNav-li:hover {
  transform: translateX(10px);
}
.justify-text ~ .text-danger {
  transition: all ease 0.3s;
}
.justify-text ~ .text-danger:hover {
  font-weight: 900;
}
.nav-links {
  padding: 5px 10px;
  /* background-color: #fff; */
  /* border-radius: 7px; */
  color: #fff;
  font-weight: 600;
}
#toggleBtn {
  color: #fff;
}
/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background-color: #081b33;
  color: white;
  padding: 20px;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 999;
}

.sidebar.active {
  transform: translateX(0);
}

.sidebar h2 {
  color: #18c3d5;
  margin-bottom: 20px;
}

.sidebar ul {
  list-style: none;
}

.sidebar ul li {
  margin: 15px 0;
}

.sidebar ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.sidebar ul li a:hover {
  color: #18c3d5;
}
.solid-bars {
  cursor: pointer;
}
.nav-items {
  height: 100%;
  display: flex;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  justify-content: space-evenly;
  gap: 5px;
  padding-left: 0px !important;
  align-items: center;
  text-transform: uppercase;
}

.nav-item {
  transition: all ease-in-out 0.3s;
}

.nav-item:hover {
  transform: translateY(-10px);
}

/* ---------------DROPDOWN START------------------- */

.nav-item {
  position: relative;
  z-index: 20;
  transition: all ease-in-out 0.3s;
}

.nav-item:hover .dropdown-container {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  /* margin-top: 20px; */
}
.dropdown-item {
  text-align: start;
}
.dropdown-container {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  width: 200px;
  transform: translateY(10px);
  opacity: 0;
  transition: 0.4s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 9999; /* make sure this is highest */
  pointer-events: none;
  border-radius: 6px;
  padding: 10px 0;
}

.dropdown-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-item {
  padding: 0;
}

.dropdown-links {
  display: block;
  padding: 10px 20px;
  color: #081b33;
  font-size: 14px;
  transition: 0.3s;
}

.dropdown-links:hover {
  background-color: #18c3d5;
  color: #fff;
}

/* ---------------DROPDOWN END------------------- */

.carousel-inner {
  border-radius: 50px;
}

@media (max-width: 1024px) {
  .carousel-inner {
    border-radius: 30px !important;
  }
}

@media (max-width: 767px) {
  .carousel-inner {
    border-radius: 15px !important;
  }
}

.divider {
  position: relative;
}

.side-nav-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  background-color: red;
  height: 100%;
  width: 100px;
  z-index: 100000000;
  /* transform: translateX(0%); */
}
.register-btn{
  color: #fff !important;
  background: transparent !important;
}
.common-button {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: #081b33;
  padding: 12px 24px;
  border-radius: 10px;
  background: linear-gradient(45deg, #18c3d5, #eedd62);
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  overflow: hidden;
  text-decoration: none;
}

.common-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, #eedd62, #18c3d5);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.common-button:hover::after {
  opacity: 1;
}

.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 100%;
  height: 8px;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 54px 55px,
    rgba(0, 0, 0, 0.22) 0px -12px 30px, rgba(0, 0, 0, 0.22) 0px 4px 6px,
    rgba(0, 0, 0, 0.27) 0px 12px 13px, rgba(0, 0, 0, 0.19) 0px -3px 5px;
  background-color: #081b33;
}
.divider-1 {
  position: relative;
  font-size: 4rem;
}
.divider-1::after {
  content: "";
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  width: 100%;
  height: 8px;
  background-color: #081b33;
}
.bg-gradient-color {
  color: #081b33;
  background: linear-gradient(45deg, #18c3d5, #eedd62);
}
.yt-image {
  position: relative;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #239a93;
  font-size: 80px;
}
.bg-wrapper {
  background-color: #ffff;
  padding: 20px 30px;
  border-radius: 20px;
}
.tag-name {
  font-size: 1.5rem;
  font-weight: 600;
}
.mob-btns {
  display: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 800;
  color: #081b33;
  background: linear-gradient(45deg, #18c3d5, #eedd62);
}
.mob-btns::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, #eedd62, #18c3d5);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.mob-btns:hover::after {
  opacity: 1;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .mob-btns {
    display: block;
  }
  .rounded-custome {
    border-radius: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .rounded-custome > h2 {
    font-size: 20px;
  }
  .rounded-custome > h4 {
    font-size: calc(1rem + 0.2vw) !important;
  }
  .play-btn {
    font-size: 65px !important;
  }
}
.reg-btn {
  color: #081b33;
}
.banner-content-up {
  display: block;
  position: absolute;
  top: 20px;
  right: 50px;
  z-index: 100;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 800;
  color: #081b33;
  background: linear-gradient(45deg, #18c3d5, #eedd62);
}
.banner-content-down {
  display: block;
  position: absolute;
  right: 45%;
  bottom: 60px;
  z-index: 100;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #081b33;
  background: linear-gradient(45deg, #18c3d5, #eedd62);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.banner-content-down::after,
.banner-content-up::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, #eedd62, #18c3d5);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.banner-content-down:hover::after,
.banner-content-up:hover::after {
  opacity: 1;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .banner-content-up,
  .banner-content-down {
    display: none;
  }
}
.attend-wrapper {
  flex-wrap: wrap;
  gap: 20px;
}

.attend {
  flex: 1 1 30%;
}

@media (max-width: 992px) {
  .attend {
    flex: 1 1 45%;
  }
}

.road-map {
  display: block;
}
.road-map-mobile {
  display: none;
}

@media (max-width: 768px) {
  .road-map {
    display: none;
  }
  .road-map-mobile {
    display: block;
  }
  .attend {
    flex: 1 1 100%;
  }
}
.attend-items {
  padding: 0px;
}
.attend-item {
  font-size: 18px;
  color: #081b33 !important;
  font-weight: 700;
}

.story-sofar-image {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
}
.story-sofar-image > img {
  object-fit: cover;
  border-radius: 10px;
  transition: all ease .5s;
}
.story-sofar-image > img:hover{
 transform: rotate(1deg) scale(1.1);
 filter: grayscale(1);
}
.dam-image {
  width: 440px;
  height: 225px;
}
.dam-image > img {
  object-fit: cover;
  border-radius: 10px;
}
.justify-text {
  text-align: justify;
  hyphens: auto;
}
.middle-banner {
  position: relative;
  background-image: url("../../assets/img/early-bird-tgy25.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 450px;
  width: 100%;
  border-radius: 10px; /* optional */
}
.middle-banner-container {
  position: relative;
}
.middle-banner::before {
  content: "";
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  z-index: 1000;
  height: 10px;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 54px 55px,
    rgba(0, 0, 0, 0.22) 0px -12px 30px, rgba(0, 0, 0, 0.22) 0px 4px 6px,
    rgba(0, 0, 0, 0.27) 0px 12px 13px, rgba(0, 0, 0, 0.19) 0px -3px 5px;
  background-color: #081b33;
  transform: translate(-50%, -50%);
}
.charchas-image {
  width: 100%;
  height: 225px;
}
.charchas-image > img {
  object-fit: cover;
  border-radius: 30px;
}
.sangam-image {
  height: 225px;
  overflow: hidden;
  border-radius: 30px;
}
.sangam-image > img {
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
  transition: all ease .5s;
}
/* .disc-list {
  padding-left: 1.5rem;
} */
.disc-list > li {
  list-style-type: disc;
  list-style-position: inside;
}

.saarSangam-image {
  width: 300px;
  height: auto;
  background-color: #fff;
}
.sangam-image > img:hover{
 transform: rotate(1deg) scale(1.1);
 filter: grayscale(1);
}

.partners-wrapper {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
}

.partners-title {
  font-weight: bold;
  color: #000;
  font-size: 2.5rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* Mobile default */
  align-items: center;
  justify-items: center;
}

.partners-grid img {
  width: 300px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 per row on md+ */
  }
}

@media (min-width: 992px) {
  .day-3rd {
    flex: 1;
  }
}

.custom-round-1 {
  border-radius: 30px 30px 0px 0px;
}
.custom-round-2 {
  border-radius: 0px 0px 30px 30px;
}

/* FOOTER CSS START */

.footer-contacts .icon {
  vertical-align: middle;
  text-align: left;
  min-width: 21px;
  font-size: 24px;
  line-height: 24px;
  color: #01b3a7;
}
.footer-corporate .rights {
  font-size: 12px;
}
p.rights > span,
p.rights > span > a {
  font-size: 14px;
  letter-spacing: 0.025em;
  font-weight: 500;
  color: #9b9b9b;
}
p.rights > span > a:hover {
  transition: all 0.3s ease-in-out;
}
p.rights > span > a:hover {
  color: #01b3a7;
}
/* FOOTER CSS END */

/* animation START  */

.autoShow {
  animation: text-appear both;
  animation-timeline: view();
  animation-range: entry 20% cover 70vh;
}

@keyframes text-appear {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.autoShow-left {
  animation: left-appear 1s both;
  animation-timeline: view();
  animation-range: entry 20% cover 70vh;
}

@keyframes left-appear {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.autoShow-right {
  animation: right-appear 1s both;
  animation-timeline: view();
  animation-range: entry 20% cover 70vh;
}

@keyframes right-appear {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.footer-logo {
  max-width: 300px;
  max-height: 100px;
}
.footer-logo > img {
  width: 100%;
}
.past-tab{
  position: relative;
}
/* .past-tab::before{
  content: '';
  position: absolute;
  top: 4px;
  right: -19px;
  margin-right: 10px;
  height: 80%;
  width: 2px;
  background-color: #fff;
} */
.past-tab{
  color: #01b3a7;
  font-weight: 700;
  transition: all ease .3s;
}
.past-tab:hover{
  color: #fff;
}

/*Animations*/

[data-animate-in] {
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

[data-animate-in="up"] {
  transform: translate3d(0, 24px, 0);
}

[data-animate-in="left"] {
  transform: translate3d(-25%, 0, 0);
}

[data-animate-in="right"] {
  transform: translate3d(25%, 0, 0);
}

[data-animate-in="down"] {
  transform: translate3d(0, -24px, 0);
}

[data-animate-in="fadeIn"] {
  transform: translate3d(0, 0, 0);
}

[data-animate-in].in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}

.page-loaded .fade-in,
.page-loaded.fade-in {
  opacity: 1;
}

.isSafari.isTouch [data-animate-in],
.isSafari.isTouch [data-animate-in="up"] {
  opacity: 1;
  transition: none;
  transform: none;
}

/* Animation Code */
.animation {
  will-change: transform;
}

@media screen and (min-width: 768px) {
  .fade-left-desktop,
  .fade-right-desktop {
    opacity: 0;
    transition: 1500ms all ease-in-out;
  }
  .fade-left-desktop {
    transform: translateX(50px);
  }
  .fade-right-desktop {
    transform: translateX(-50px);
  }
  .fade-left-desktop.animate,
  .fade-right-desktop.animate {
    opacity: 1;
    transform: translateX(0);
  }
  .fade-down-desktop,
  .fade-up-desktop {
    opacity: 0;
    transition: 1500ms all ease-in-out;
    transform: translateY(50px);
  }
  .fade-up-desktop {
    transform: translateY(50px);
  }
  .fade-down-desktop {
    transform: translateY(-50px);
  }
  .fade-down-desktop.animate,
  .fade-up-desktop.animate {
    opacity: 1;
    transform: translateY(0);
  }
  .grow-left-desktop,
  .grow-right-desktop {
    transform: scaleX(0);
    transform-origin: left;
    transition: 1200ms all ease-in-out;
  }
  .grow-left-desktop {
    transform-origin: right;
  }
  .grow-right-desktop {
    transform-origin: left;
  }
  .grow-left-desktop.animate,
  .grow-right-desktop.animate {
    transform: scaleX(1);
  }
  .grow-down-desktop,
  .grow-up-desktop {
    transform: scaleY(0);
    transition: 1200ms all ease-in-out;
  }
  .grow-up-desktop {
    transform-origin: bottom;
  }
  .grow-down-desktop {
    transform-origin: top;
  }
  .grow-down-desktop.animate,
  .grow-up-desktop.animate {
    transform: scaleY(1);
  }
  .stagger-desktop-1 {
    transition-delay: 300ms;
  }
  .stagger-desktop-2 {
    transition-delay: 600ms;
  }
  .stagger-desktop-3 {
    transition-delay: 900ms;
  }
  .stagger-desktop-4 {
    transition-delay: 1200ms;
  }
}
@media screen and (max-width: 767px) {
  .fade-down-mobile,
  .fade-up-mobile {
    opacity: 0;
    transition: 1500ms all ease-in-out;
  }
  .fade-up-mobile {
    transform: translateY(50px);
  }
  .fade-down-mobile {
    transform: translateY(-50px);
  }
  .fade-down-mobile.animate,
  .fade-up-mobile.animate {
    opacity: 1;
    transform: translateY(0);
  }
  .grow-left-mobile,
  .grow-right-mobile {
    transform: scaleX(0);
    transition: 1200ms all ease-in-out;
  }
  .grow-left-mobile {
    transform-origin: right;
  }
  .grow-right-mobile {
    transform-origin: left;
  }
  .grow-left-mobile.animate,
  .grow-right-mobile.animate {
    transform: scaleX(1);
  }
  .grow-down-mobile,
  .grow-up-mobile {
    transform: scaleY(0);
    transform-origin: top;
    transition: 1200ms all ease-in-out;
  }
  .grow-up-mobile {
    transform-origin: bottom;
  }
  .grow-down-mobile {
    transform-origin: top;
  }
  .grow-down-mobile.animate,
  .grow-up-mobile.animate {
    transform: scaleY(1);
  }
  .fade-mobile {
    opacity: 0;
    transition: 1000ms all ease-in-out;
  }
  .fade-mobile.animate {
    opacity: 1;
  }
}

/* Page Styles */
.box {
  width: 400px;
  padding: 3rem;
  background-color: #041f1e;
  color: #03cea4;
  border-radius: 10px;
}
.box-wrapper {
  position: relative;
  width: 400px;
  padding: 3rem;
  color: #041f1e;
}
.box-wrapper p {
  z-index: 1;
  position: relative;
}
.box-wrapper img {
  z-index: 1;
  position: relative;
  border-radius: 10px;
}
.box-background {
  background-color: #03cea4;
  border-radius: 10px;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.boxes-row {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.boxes-row > div {
  border: 1px solid #fafafa;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  margin: 0.5rem;
}
.card {
  display: flex;
  flex-direction: column;
}
.card img {
  width: 100%;
  height: 200px;
}
.card-content {
  background-color: #fff;
  padding: 1rem;
}
.box-background.showcase {
  width: 400px;
  height: 400px;
}
img.showcase {
  width: 400px;
  height: 400px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .box,
  .box-wrapper {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
  .boxes-row {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .boxes-row > div {
    margin-bottom: 2rem;
    width: 100%;
    max-width: 300px;
  }
}

/* animation END */

/* SCROLL TOP BUTTON START */

#button {
  display: inline-block;
  background-color: #18c3d5;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: -8px;
  right: 60px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #eedd62;
}
#button:active {
  background-color: #eedd62;
}
#button.show {
  opacity: 1;
  visibility: visible;
}

/* Styles for the content section */

.content {
  width: 77%;
  margin: 50px auto;
  font-family: "Merriweather", serif;
  font-size: 17px;
  color: #6c767a;
  line-height: 1.9;
}
@media (min-width: 500px) {
  .content {
    width: 43%;
  }
  #button {
    margin: 30px;
  }
}
.content h1 {
  margin-bottom: -10px;
  color: #03a9f4;
  line-height: 1.5;
}
.content h3 {
  font-style: italic;
  color: #96a2a7;
}

.banner-container {
  width: 100%;
  max-width: 1880px;
  height: 70vh;
  max-height: 665px;
  position: relative;
  overflow: hidden;
  perspective: 1200px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 50px;
  margin: 0 auto;
}

.banner-set {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.banner-set.active {
  opacity: 1;
  pointer-events: auto;
}

.gap {
  height: 1.2%;
  width: 100%;
  background: #081b33;
}

.nav-header {
  position: sticky;
  top: 0;
  z-index: 100000000;
  background: #081b33;
}

.top-img {
  width: 100%;
  height: calc((100% - 1.2%) / 2);
  object-fit: cover;
  display: block;
  transition: opacity 0.5s ease;
}

.banner-set:not(.active) .top-img {
  opacity: 0;
}

.bottom-img-wrapper {
  position: absolute;
  top: calc((100% - 1.2%) / 2 + 1.2%);
  width: 100%;
  height: calc((100% - 1.2%) / 2);
  transform-origin: top center;
  transform: rotateX(90deg);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
  opacity: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.banner-set.active .bottom-img-wrapper {
  transform: rotateX(0deg);
  opacity: 1;
}

.bottom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  box-sizing: border-box;
  pointer-events: none;
}

.nav-buttons button {
  padding: 12px;
  font-size: 18px;
  border: none;
  background: rgba(52, 152, 219, 0.8);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  pointer-events: auto;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-buttons button:hover {
  background: rgba(41, 128, 185, 0.8);
  transform: scale(1.1);
}

.nav-buttons button:active {
  transform: scale(1);
}

.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}
.register-btn {
  padding: 5px 16px;
  border: 1px solid #fff;
  background-color: transparent;
  border-radius: 28px;
  font-weight: 600;
  transition: all ease 0.3s;
}
.register-btn:hover {
  background-color: #eedd62;
  color: var(--primary-textColor) !important;
  border: none !important;
}
.dot.active {
  background: #3498db;
}

@media (max-width: 1024px) {
  .banner-container {
    height: 60vh;
    border-radius: 20px;
  }

  .nav-buttons button {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .banner-container {
    height: 30vh;
    border-radius: 15px;
  }

  .nav-buttons button {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .banner-container {
    height: 25vh;
    border-radius: 10px;
  }

  .nav-buttons button {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}


/* SCROLL TOP BUTTON END */
