/* General Styles */
*{
  font-family: "rakuten-sans", sans-serif;
}

body {
  margin: 0;
  font-family: Poppins , serif;
  background: linear-gradient(135deg, #000, #002244);

}

.navbar {
  background-color: #e0daff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 60px; /* Adjusted for better visibility */

}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  max-width: 1200px;
  margin: auto;
  height: 100%; /* Ensures content aligns perfectly */
}

.logo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
}

.logo-img {
  height: 40px;
  width: auto;
  max-width: 100%;
  cursor: pointer;
  opacity: 0;
  transform-origin: center top;
  transform: rotateX(90deg);
  animation: logoSplitRotate 1.5s ease-out forwards;
  transition: box-shadow 0.3s ease; /* Smooth transition for shadow changes */
}

@keyframes logoSplitRotate {
  0% {
      opacity: 0;
      transform: rotateX(90deg);
  }
  50% {
      opacity: 1;
      transform: rotateX(45deg);
  }
  100% {
      opacity: 1;
      transform: rotateX(0deg);
  }
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 50px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links li a {
  font-size: 19px;
  text-decoration: none;
  color: #000000;
  font-weight: 550;
  position: relative;
  overflow: hidden;
  
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: #000000;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-in-out;
}

.nav-links li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
 
}

.nav-links :active {
  transform: scale(0.9);
}
.nav-links :hover {
  color: rgb(57, 57, 255);
}


/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  gap: 5px;
 
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #000;
  transition: transform 0.3s ease-in-out;
  border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-toggle {
      display: flex;
  }

  .nav-links {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      background-color: #e0daff;
      position: absolute;
      top: 60px;
      right: 1px;
      height: 400px;
      width: 100%;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      padding: 10px 15px;
     
  }

  .nav-links.active {
      display: flex;
  }

  .navbar-container {
      flex-wrap: wrap;
  }
  .nav-links li {
  padding: 30px 0px;


  }
  .logo-img{
    height: 35px;
  }
}
@media (max-width: 277px){
  .logo-img{
    height: 25px;

  }
}

#cnt{
  background-color:#2979FF;
  padding: 5px 20px;
  border-radius: 20px;
  color: white;
 
&:hover::after{
  transform: scaleX(0);

} 
&:active{
  transform: scale(0.99);
}
&:hover{
  background-color:#1565C0 ;
}
}

@media (max-width: 215px){
  .logo-img{
    height: 20px;
}
}

.first-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  gap: 2rem;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #000, #002244);


}

.text-content {
  flex: 1;
  min-width: 280px;
}

.text-content h1 {
  font-size: 2rem;
  color: #B39DDB; /* Purple color */
}



@keyframes leftToRightAndBack {
  0% {
    transform: translateX(-100%);
    width: 0%;
    opacity: 0.5;
  }
  50% {
    transform: translateX(0);
    width: 100%;
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    width: 0%;
    opacity: 0.5;
  }
}

.underline,
.text-content .underline {
  height: 4px;
  background-color: #9C27B0; /* Light blue color */
  margin: 1rem 0;
  animation: leftToRightAndBack 2s ease-in-out infinite;
}



.text-content p {
  margin: 1rem 0;
  color: #E0E0E0;
  font-size: 1rem; /* Scales for small screens */
}

.buttons {
  margin-top: 1rem;
}

.primary-btn {
  background-color: #2979FF; /* Purple button */
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

.primary-btn:hover {
  background-color:  #1565C0;;
}

.secondary-btn {
  background-color: #fff;
  color: #2979FF;
  border: 2px solid #2979FF;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
}

.secondary-btn:hover {
  background-color: #1565C0;
  color: #FFFFFF;
}

.image-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 280px;
}

.image-content img {
  max-width: 74%;
  height: auto;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .first-section {
    flex-direction: column;
    text-align: center;
  }

  .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .buttons button {
    margin-bottom: 1rem;
  }

  .buttons button:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .text-content h1 {
    font-size: 1.5rem;
  }

  .text-content p {
    font-size: 0.9rem;
  }

  .primary-btn,
  .secondary-btn {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 349px) {
  .first-section {
    padding: 1rem;
  }

  .text-content h1 {
    font-size: 1.2rem;
  }

  .text-content .underline {
    width: 40px;
    height: 3px;
  }

  .text-content p {
    font-size: 0.8rem;
  }

  .primary-btn,
  .secondary-btn {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }

  .image-content img {
    max-width: 90%; /* Slight reduction for very small screens */
  }
}



@media (max-width: 309px) {
  .first-section {
    padding: 0.5rem;
    gap: 1rem;
  }

  .text-content h1 {
    font-size: 1rem; /* Adjust heading for very small screens */
  }

  .text-content .underline {
    width: 30px;
    height: 2px; /* Smaller underline for ultra-small screens */
  }

  .text-content p {
    font-size: 0.7rem; /* Adjust paragraph size */
  }

  .primary-btn,
  .secondary-btn {
    font-size: 0.6rem; /* Smaller buttons */
    padding: 0.3rem 0.6rem;
  }

  .image-content img {
    max-width: 80%; /* Further reduce image size */
  }
}


/* Initial state for animation */
.hidden {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

/* Final state after animation */
.visible {
  opacity: 1;
  transform: translateY(0);
}


.section {
  background: linear-gradient(135deg, #000, #002244);
  padding: 50px 20px;
  text-align: center;
  box-shadow: -22px -7px 12px 15px rgba(0, 0, 0, 0.3);  
}

.section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px; /* Adjusted spacing */
  color: white;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px; /* Added spacing from h2 */
}

.stat {
  text-align: center;
  max-width: 150px;
}

.stat .number {
  font-size: 2rem;
  font-weight: 700;
  color: #1e90ff;
}

.stat .label {
  font-size: 1rem;
  color: #aaa;
}

/* Aligning the stats section directly below the h2 */
.section {
  display: flex;
  flex-direction: column;
  align-items: center;
}


hr{
  height: 1%;
  padding: 0;
  margin: 0;
}



.scroll-container {
  position: relative;
  width: 100%;
  height: 45vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* background: linear-gradient(172deg, #000, #002244); */
  padding-bottom: 0px;
  background-color: #000;
 
}

.scroll-section {
  display: flex;
  gap: 16px;
  overflow-x: scroll; /* Enable horizontal scrolling */
  scroll-behavior: smooth; /* Smooth scrolling for buttons */
  padding: 15px 0px ;
  width: 100%;
  
}

.card {
  flex: 0 0 150px;
  height: 200px;
  background: linear-gradient(135deg, #4c2fff, #24ddbf);
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 255, 0.4), 0 6px 12px rgba(0, 0, 0, 0.6);
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  &:active{
    color: rgb(0, 85, 255);
  }
}

.card:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 255, 0.5), 0 8px 16px rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

@media (hover: none) {
  .card:hover {
    transform: none;
    box-shadow: none;
    cursor: default;
  }
}
.scroll-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.scroll-btn {
  pointer-events: auto;
  background-color: rgba(0, 51, 255, 0.5);
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  outline: none;
  transition: background 0.3s;
}

.scroll-btn:hover {
  background-color: rgb(0, 0, 0);
}

.left-btn {
  margin-left: 10px;
}

.right-btn {
  margin-right: 10px;
}



#scroll-heading{
  color: white; 
  text-align: center;
  font-size: 1.5rem;
}




/* Style for the floating container */
.float-container {
  position: fixed;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 2000px;
  padding: 2px;
  background: #000000;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: none; /* Initially hidden */
  z-index: 1000;
  color: white;
  margin: 10px;

}

.float-container h2 {
  margin: 0 0 15px;
  font-size: 24px;
  text-align: center;
}

.float-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.float-container ul li {
  padding: 10px 15px;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 20px;
}

.float-container ul li:hover {
  background-color: #171717;
  
}
.float-container {
  max-height: 750px; /* Adjust the height as needed */
  overflow-y: auto;
}


@media(max-width: 400px){
  .float-container ul li{
    font-size: 20px;
  }
  .float-container {
    left: 47%;
  }

}







.float-container a{
  text-decoration: none;
  color: white;
}




/* About Section Styling */
.about-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 50px;
  background-color: #111;
  color: #fff;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.about-heading {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: bold;
  animation: slideInFromTop 1s ease-out;
}

.about-content {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* About Images */
.about-images {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-image {
  width: 200px;
  height: 200px;
  border-radius: 15px;
  transition: transform 0.5s, box-shadow 0.5s;
  cursor: pointer;
}

/* 3D Hover Animation */
.about-image:hover {
  transform: perspective(500px) rotateY(20deg) rotateX(10deg);
  box-shadow: 0px 10px 20px rgba(255, 255, 255, 0.2);
}

/* About Text */
.about-text {
  max-width: 600px;
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: left;
  animation: slideInFromLeft 1s ease-out;
}

/* Animations */
@keyframes slideInFromLeft {
  from {
      opacity: 0;
      transform: translateX(-100%);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes slideInFromTop {
  from {
      opacity: 0;
      transform: translateY(-100%);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes slideInFromRight {
  from {
      opacity: 0;
      transform: translateX(100%);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}
.about-text b{
color: #007bff;
}

.about-section h1{
  margin: 20px;
  
  font-size: 33px;
  
}

.about-section p{
  color: rgb(193, 193, 193);
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 19px;
}





@media(max-width: 400px){
  .about-section p{
    font-size: 14px;
  }
  .about-section h1{
    font-size: 19px;
    text-align: center;
  }
}



/* Partners Section Styles */
#partners-section {
  text-align: center;
  padding: 30px;
  background-color: black;
  color: white;
}

.partners-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.partner-card {
  width: 220px;
  height: 320px;
  perspective: 1200px;
}

.partner-card-content {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  transition: transform 0.6s;
}

.partner-card:hover .partner-card-content {
  transform: rotateY(180deg);
}

.partner-card-content h3 {
  color: #f0f0f0;
  font-size: 1.6em;
  font-weight: bold;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  transform: translateZ(50px);
}






.menu-toggle {
  cursor: pointer;
}

.hamburger span, .cross span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px;
  background-color: #000;
}

.cross span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}

.cross span:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}








.footer-content {
  flex-direction: column;
  align-items: center;
}

.menu-toggle {
  cursor: pointer;
}

.hamburger span, .cross span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px;
  background-color: #000;
}

.cross span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}

.cross span:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}

.float-container {
  padding: 20px;
  position: relative;
  background-color: #fff;
  z-index: 1001; /* Ensure it is above the overlay */
}

.float-container h2 {
  margin-bottom: 10px;
  color: #003875;
}

.float-container a {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  background-color: #f0f0f0;
  text-decoration: none;
  color: #003875;
  border: 1px solid #ccc;
  box-sizing: border-box;
  transition: background-color 0.3s, color 0.3s;
}

.float-container a:hover {
  background-color: #003875;
  color: #ffffff;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #ff0000;
  color: #ffffff;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 14px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000; /* Ensure it is below the float-container */
  display: none; /* Initially hidden */
}


.card p {
  margin-top: 10px;
  font-size: 14px;
  color: #303030; /* Set a color for the description text */
}

.card {
  color: rgb(255, 255, 255);
}





.footer {
  background: linear-gradient(to right, #001022, #081f49, #001022);
  padding: 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  flex-direction: row;
}

.footer h2 {
  margin-bottom: 10px;
  color: #ffffff;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin: 5px 0;
}

.footer ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #4ca3dd;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-icon {
  font-size: 2rem;
  color: rgb(255, 255, 255);
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  transform: rotate(360deg) scale(1.2);
  color: #ff0000;
}

.contact-section p {
  margin: 5px 0;
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }
}

.download-section ul li{
  padding: 5px;
}
.contact-section {
color: white;
}   
.about-section{
  flex-direction: column;
  text-align: center;
}

.about-section h1{
font-size: 18px;

}



.about-section p{
  font-size: 14px;
}

.social-section i{
  margin: 10px;
}


#ua{
  color: rgb(0, 106, 255); 
  text-decoration: none;
  padding: 10px 19px ;
  
  &:hover{
    color: rgb(0, 0, 0);
  }
}

#ua1{
  color: white; 
  text-decoration: none;
  padding: 10px 19px ;
  
  &:hover{
    color: rgb(255, 255, 255);
  }
}

.primary-btn{
  padding-left:0px ;
  padding-right:0px ;
}

.secondary-btn{
  padding-left:0px ;
  padding-right:0px ;
}










.about-section p {
  font-size: 14px;
}

.social-section i {
  margin: 10px;
}

#ua {
  color: rgb(0, 106, 255);
  text-decoration: none;
  padding: 10px 19px;
}

#ua:hover {
  color: rgb(0, 0, 0);
}

#ua1 {
  color: white;
  text-decoration: none;
  padding: 10px 19px;
}

#ua1:hover {
  color: rgb(255, 255, 255);
}

.primary-btn {
  padding-left: 0px;
  padding-right: 0px;
}

.secondary-btn {
  padding-left: 0px;
  padding-right: 0px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

.float-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  display: none;
}

.close-btn {
  background-color: #2979FF;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 1rem;
}

.close-btn:hover {
  background-color: #1565C0;
}

#overlay-legal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

#float-container-legal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  display: none;
}

#close-btn-legal {
  background-color: #2979FF;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 0.5rem;
}

#close-btn-legal:hover {
  background-color: #1565C0;
}



.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

.float-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  display: none;
}

.close-btn {
  background-color: #2979FF;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 0.5rem;
}

.close-btn:hover {
  background-color: #1565C0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

.float-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  display: none;
}

.close-btn {
  background-color: #2979FF;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 0.5rem;
}

.close-btn:hover {
  background-color: #1565C0;
}



.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

.float-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  display: none;
}

.close-btn {
  background-color: #2979FF;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 0.5rem;
}

.close-btn:hover {
  background-color: #1565C0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

.float-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  display: none;
}

.close-btn {
  background-color: #2979FF;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 0.5rem;
}

.close-btn:hover {
  background-color: #1565C0;
}


.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

.float-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  display: none;
}

.close-btn {
  background-color: #2979FF;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 0.5rem;
}

.close-btn:hover {
  background-color: #1565C0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

.float-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  display: none;
}

.close-btn {
  background-color: #2979FF;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 0.5rem;
}

.close-btn:hover {
  background-color: #1565C0;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

.float-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  display: none;
}

.close-btn {
  background-color: #2979FF;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 0.5rem;
}

.close-btn:hover {
  background-color: #1565C0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

.float-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  display: none;
}

.close-btn {
  background-color: #2979FF;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 0.5rem;
}

.close-btn:hover {
  background-color: #1565C0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

.float-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  display: none;
}

.close-btn {
  background-color: #2979FF;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 0.5rem;
}

.close-btn:hover {
  background-color: #1565C0;
}

 @media (max-width: 600px) {
    .copyright {
      font-size: 0.95rem;
      padding: 10px 2px;
    }
    .copyright-break {
      display: none;
    }
  }