/* Background for navbar */
.navbar-outer-container {
  background: linear-gradient(170deg, #060c62 60%, #ffd700 120%);
  position: relative;
  /* overflow: hidden; */
}
.navbar-outer-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-radial-gradient(
      circle at 20% 40%,
      #fff2 0px,
      #fff2 2px,
      transparent 6px
    ),
    repeating-radial-gradient(
      circle at 80% 70%,
      #fff1 0px,
      #fff1 1.5px,
      transparent 5px
    );
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.navbar-outer-container > * {
  position: relative;
  /* z-index: 1; */
}

/* /Background for navbar */

:root {
  --RSD-blue: #060c62;
  --RSD-yellow: #ffd700;
}
.centerize-x {
  display: flex;
  justify-content: center;
}

.centerize-y {
  display: flex;
  align-items: center;
}

.sp-x {
  margin: 0px 5px 0px 5px;
}

.sp-y {
  margin: 5px 0px 5px 0px;
}

.navbar-outer-container {
  width: 100%;
  height: 120px;
  /* background-color: #060c62; */
  background-color: var(--RSD-blue);

  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-container {
  /* background-color: #060c62; */

  height: 120px;
  width: 100%;
  max-width: 1500px;
  /* position: ; */
  padding: 0px 20px 0px 20px;
  display: flex;
  align-items: center;
  color: white;
  justify-content: space-between;
}

.nav-logo {
  width: 300px;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-info-container {
  width: 60%;
  display: flex;

  justify-content: center;
  align-items: center;

  height: 100%;
}

.nav-info {
  background-color: white;
  border-radius: 50px;
  height: 50px;
  width: fit-content;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0px 20px 0px 20px;
  justify-self: end;
  margin-left: 20px;
}

.nav-links {
  /* background-color: aquamarine; */
  height: 50%;
  width: fit-content;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.nav-link-btn,
.nav-link {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 18px;
  padding: 10px 20px;
  transition: all 0.3s ease-in-out;
  border-bottom: 3px solid #060c6200;
  /* border-right: 3px solid var(--RSD-yellow); */
}

.navline {
  width: 2px;
  height: 50%;
  margin: 0px 4px;
  /* background-color: var(--RSD-yellow); */
  border-right: 1px solid white;
}
.nav-link:hover,
.nav-link-btn:hover {
  border-bottom: 3px solid #ffd700;
  color: #ffd700;
}

.nav-toggle-container {
  display: none;
}


 /* Activities Dropdow  */
   
        .nav-dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-btn {
            background: white;
            border: none;
            color: var(--RSD-blue);
            font: inherit;
            cursor: pointer;
            padding: 5px 10px;
            border-radius: 4px;
            outline: none;
            margin-left: 6px;

        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #fff;
            min-width: 180px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
            z-index: 10;
            border-radius: 8px;
            overflow: hidden;
            top: 130%;
            left: 0;
            z-index: 2000;
        }

        .dropdown-content a {
            color: #060c62 !important;
            padding: 12px 18px;
            text-decoration: none;
            display: block;
            font-size: 1rem;
            background: #f7faff;
            transition: background 0.2s;
            border-bottom: 2px solid var(--RSD-blue);
        }

        .dropdown-content a:hover {
            background: #FFD700;
            color: #060c62;
        }

        .nav-dropdown.show .dropdown-content {
            display: block;
        }

        /* /Activities Dropdown */

/* mobile nav Style */
.mobile-screen-nav-container {
  width: 0px;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0px;

  /* background-color: var(--RSD-blue); */
  background-color: var(--RSD-blue);
  /* border: 3px solid #FFD700; */
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;

  transition: all 0.3s ease-in-out;
  /* transform: translateX(-100%);
         opacity: 0; */
  overflow: hidden;
}

.mobile-nav-btn-container {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: flex-end;
  padding: 10px;
}

.mobile-screen-nav-logo {
  width: 200px;
  height: 200px;
  margin-top: 30px;
}

.mobile-screen-nav-links {
  width: 280px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  transition: all 0.3s ease-in-out;
}

.mobile-screen-nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 18px;
  padding: 10px 20px;
  transition: all 0.3s ease-in-out;
  border-bottom: 2px solid #060c62;
}

.mobile-screen-nav-links a:hover {
  border-bottom: 3px solid var(--RSD-yellow);
  color: var(--RSD-yellow);
}


/* Footer css */

    .rsd-footer {
            background: linear-gradient(180deg, #060c62 70%, #FFD700 140%);
            color: #fff;
            padding: 40px 0 10px 0;
            font-family: 'Montserrat', Arial, sans-serif;
        }

        .rsd-footer {
            background: linear-gradient(135deg, #060c62 60%, #FFD700 120%);
            position: relative;
            color: #fff;
            padding: 40px 0 10px 0;
            font-family: 'Montserrat', Arial, sans-serif;
            overflow: hidden;
        }

        .rsd-footer::before {
            content: "";
            position: absolute;
            inset: 0;
            background: repeating-radial-gradient(circle at 20% 40%, #fff2 0px, #fff2 2px, transparent 6px),
                repeating-radial-gradient(circle at 80% 70%, #fff1 0px, #fff1 1.5px, transparent 5px);
            opacity: 0.5;
            pointer-events: none;
            z-index: 0;
        }

        .rsd-footer>* {
            position: relative;
            z-index: 1;
        }

        .footer-content {
            max-width: 1200px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 30px;
            padding: 0 20px;
        }

        .footer-nav-links {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 5px;
        }

        .footer-nav-links a:hover {
            color: var(--RSD-yellow);
        }

        .footer-logo img {
            width: 220px;
            margin-bottom: 10px;
            filter: drop-shadow(0 2px 50px #ffffff88);
        }

        .footer-contact h4,
        .footer-social h4 {
            color: #FFD700;
            font-size: 1.1rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .footer-contact {
            margin: 6px 0;
            font-size: 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
        }


        .footer-social-icons {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;

        }


        .footer-social a {
            color: #FFD700;
            font-size: 1.5rem;
            margin-right: 16px;
            transition: color 0.2s;
            text-decoration: none;
            display: flex;
            /* flex-direction: column; */
        }

        .footer-social a:hover {
            color: #fff;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 0px;
            /* font-size: 1rem; */
            padding: 10px 0;
           
            letter-spacing: 1px;
        }

      

/* /Footer css */

        @media (max-width: 700px) {
            .dropdown-content {
                position: static;
                min-width: 100%;
                box-shadow: none;
            }
        }

@media screen and (max-width: 980px) {
  .navbar-outer-container {
    height: 80px;
    /* position: fixed; */
    top: 0px;
    z-index: 1000;
  }

  .navbar-container {
    height: 80px;
  }

  .nav-info-container {
    display: none;
  }

  .nav-logo {
    width: 220px;
  }

  .nav-toggle-container {
    display: block;
  }
  .footer-contact {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                text-align: center;
                gap: 5px;
            }

            .footer-content {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;

                /* text-align: center; */
                text-align: center;
                gap: 18px;
            }

            .footer-logo img {
                width: 120px;
            }

            .footer-social-icons {
                display: flex;
                flex-direction: row;
            }
}

  /* @media (max-width: 980px) {
            
        } */
