html { scroll-behavior: smooth; }


body {
      
    font-family: Arial, sans-serif;
    cursor: url('path/to/cur.png') 16 16, auto; 
    margin: 0;
    padding: 0;
    text-align: center;
    background-image: linear-gradient(black, rgb(22, 21, 21));
    color: #ffffff;
    padding-top: 120px;
}

header {
    background-image: linear-gradient(to bottom right, rgb(0, 0, 0), rgb(32, 32, 31));
    color: white;
    padding: 10px 20px;
}
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(to bottom right, rgb(0, 0, 0), rgb(32, 32, 31));
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}


.logo-container {
    display: flex;
    align-items: center;
    padding-left: 20px; /* Adjust spacing */
}

.logo {
    width: 120px;
    height: auto;
    margin-right: 10px; }

header h1 {
    margin: 0;
    font-size: 22px;
}

.content {
  padding: 16px;
}

.navbar {
    
    color:rgb(255, 255, 255) ;
    padding: 10px 0;
    text-align: center;
    position: relative;
    z-index: 1000;
}

.menu {
    list-style: none;
    color: #ffffff;
    
    
  top: 0;
   overflow: hidden;
   
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.menu li {
    position: relative;
    margin: 0 15px;
}

.menu a {
    text-decoration: none;
    color: #ffffff;
    
    font-size: 18px;
    padding: 10px 15px;
    display: block;
}

.menu a:hover {
    background-color: #ffffff;
    border-radius: 5px;
    color: #000000;

} 

.menu a:hover {
    background-color: #ffffff;
    border-radius: 5px;
}



.slider {
    margin-top: 160px; 
    position: relative;
    z-index: 500; /* Lower than the submenu */
}

/* Bottom Bar: Search & Icons */
.bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: left;
    margin-top: 10px;
}
.wrapper, .main-content {
  background: transparent !important;
}

/* === Background Section === */
.hero-section {
  height: 100vh;
  background: url('image/ss.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  padding: 0 20px;
}

/* === Main Text Styling === */
.brand-name {
  font-size: 108px;
  font-weight: bold;
  background: linear-gradient(90deg,rgb(73, 60, 211), #cf2daf, #8a00d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1.2s ease-out forwards;
  opacity: 0;
}

.brand-name span {
  color: #f542ff;
}

.hero-tagline {
  font-size: 24px;
  color: #ccc;
  margin-top: 10px;
  animation: fadeInUp 1.4s ease-out forwards;
  opacity: 0;
}

/* === Description Text === */
.hero-description-container {
  margin-top: 30px;
  position: relative;
  animation: fadeInUp 1.8s ease-out forwards;
  opacity: 0;
}

.hero-description {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
  line-height: 1.6;
}

/* === Red Line Animation === */
.red-line {
  height: 3px;
  background: red;
  width: 0;
  margin: 20px auto 0;
  animation: redLineGrow 1.8s ease-out 2s forwards;
  border-radius: 10px;
}

/* === Fade and Slide Animations === */
@keyframes fadeInUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes redLineGrow {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 80%;
    opacity: 1;
  }
}



/* Parent for 3D perspective */
.coin-wrapper {
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* The rotating coin */
.coin {
  width: 500px;
  height: 500px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCoin 4s linear infinite;
}

/* Coin faces */
.coin-face {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  font-size: 60px;
  font-weight: bold;
  color: #2b1e00;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;

  background: radial-gradient(circle at 30% 30%, #e492f5, #8c25a5, #d41c84);
  box-shadow:
    inset 4px 4px 8px rgba(255, 255, 255, 0.4),
    inset -4px -4px 8px rgba(0, 0, 0, 0.3),
    0 0 40px 15px rgba(189, 113, 177, 0.536), /* Outer glow */
    0 0 80px 30px rgba(231, 115, 231, 0.282); /* Extended glow */

  text-shadow: 1px 1px 2px rgba(98, 98, 202, 0.3);
}

.front {
  transform: translateZ(5px);
}

.back {
  transform: rotateY(180deg) translateZ(5px);
}



/* Rotation animation */
@keyframes rotateCoin {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }

  
 




}





.scroll-container {
      overflow: hidden;
      white-space: nowrap;
      box-sizing: border-box;
      border-top: 1px solid #ccc;
      border-bottom: 1px solid #ccc;
    }

    .scroll-text {
      display: inline-block;
      animation: scroll-left 15s linear infinite;
      font-size: 3rem;
      font-weight: bold;
      color: transparent;
      -webkit-text-stroke: 1px #b9b3b3; /* Outline text effect */
    }

    /* Duplicate text for seamless scrolling */
    .scroll-text span {
      padding: 0 2rem; /* spacing between repeats */
    }

    @keyframes scroll-left {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }



* {box-sizing:border-box}

/* Remove gray background behind the slideshow */
.slideshow-container {
  position: relative;
  max-width: 1445px;
  margin: 40px auto;
  border-radius: 20px;
  overflow: visible; /* changed from hidden */
  background: transparent;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  height: 500px;
}


/* Style images inside the slideshow */
.mySlides img {
  width: 100%;
  display: block;
  border-radius: 15px; /* make images rounded too */
  height: 500px;
}

/* Move arrows outside the image area */
.prev, .next {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  font-size: 24px;
  padding: 12px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 10;
}

.prev {
  left: -30px; /* adjust for responsiveness */
}

.next {
  right: -30px;
}

@media (max-width: 768px) {
  .prev, .next {
    left: 10px;
    right: 10px;
  }
}


/* Number text (1 / 4) */
.numbertext {
  color: #f2f2f2;
  font-size: 14px;
  position: absolute;
  top: 10px;
  left: 16px;
}

/* Dots under slideshow */
.dot {
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: 0.4}
  to {opacity: 1}
}
/* Mission Banner Styling */
.mission-banner {
  position: relative;
  background: #160016;
  color: white;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

/* Trending News Ribbon */


/* Text Styling */
.mission-content h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0;
}

.mission-content p {
  font-size: 22px;
  font-weight: 600;
  margin: 10px 0 0;
}

/* Animated Down Arrow */
.down-arrow {
  margin-top: 30px;
  position: relative;
  width: 30px;
  height: 30px;
  margin-left: auto;
  margin-right: auto;
}

.down-arrow span {
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 3px solid #5e77db;
  border-right: 3px solid #5760a5;
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
  margin: 0 auto;
}

.down-arrow span:nth-child(2) {
  margin-top: -10px;
  animation-delay: 0.3s;
  border-color: #7140f9;
}

@keyframes bounce {
  0%, 100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(8px);
  }
}



.btn1 {
  display: inline-block;
  
  border-radius: 4px;
  background-color: #000000;
  border: white;
  color: #FFFFFF;
  text-align: center;
  font-size: 28px;
  padding: 20px;
  width: 400px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
  box-shadow:5px 5px 5px  rgb(114, 80, 123);
}

.btn1 span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.btn1 span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.btn1:hover span {
  padding-right: 25px;
}

.btn1:hover span:after {
  opacity: 1;
  right: 0;
}

.geographies {
  text-align: center;
  padding: 40px 20px;
  background-color: #280c30;
  color: white;
   padding-top: 170px;
}

.contain {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
  
}

/* ✅ Correct selector for the images */
.contain img {
   width: 280px;             /* same width for all */
  height: 180px;            /* same height for all */
  object-fit: cover;
  border-radius: 8px;
 animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.contain img:hover {
  transform: scale(1.05);
}

/* Responsive rule — still correct */
@media (max-width: 600px) {
  .contain {
    flex-direction: column;
    gap: 20px;
  }

  .contain img {
    max-width: 80%;
  }
}

.footer {
  background-color: #000;
  color: #ccc;
  text-align: center;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-logo {
  width: 40px;
  margin-bottom: 10px;
}

.footer-title {
  font-size: 24px;
  color: #fff;
  margin: 10px 0;
}

.footer-tagline {
  max-width: 600px;
  margin: 0 auto 20px;
  font-size: 16px;
  color: #aaa;
}

.footer-socials a {
  margin: 0 10px;
  font-size: 20px;
  color: #5b5bf4;
  text-decoration: none;
}

.footer-divider {
  border: 0;
  border-top: 1px solid #333;
  margin: 30px 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}
.footer-socials a:hover {
  color: #75078b;
  transform: scale(5.1);
  transition: all 0.2s ease-in-out;
}
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    margin-top: 10px;
  }

  .footer-links a {
    display: block;
    margin: 5px 0;
  }
}






.floating-login-btn {
  position: fixed;
  bottom: 20px;   /* Distance from bottom */
  right: 20px;    /* Change to `left: 20px` if you want it on the left */
  background-image: linear-gradient(rgb(225, 64, 163), rgb(118, 13, 141));

  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: background-color 0.3s ease;
  width: 150px;
}

.floating-login-btn:hover {
  background-color: #000000;
}




/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/* Card Container */
.card-container {
  padding: 20px;
}

/* Profile Card */
.profile-card {
  background: rgba(20, 10, 30, 0.9);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  width: 1445px;
  position: relative;
  border: 2px solid transparent;
  animation: glow 0.4s infinite alternate;
  box-shadow: 0 0 5px rgba(255, 0, 255, 0.4);
  height: 500px;
  padding-bottom: 50px;
  padding-top: 50px;
  line-height: 1.8;
  margin: auto;
}

@keyframes glow {
  0% {
    border-color: #8e2de2;
    box-shadow: 0 0 5px #8e2de2, 0 0 30px #4a00e0;
  }
  100% {
    border-color: #ff00ff;
    box-shadow: 0 0 10px #ff00ff, 0 0 40px #8e2de2;
  }
}


/* Name */
.profile-card h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 25px;
  color: white;
}

/* Title */
.profile-card h3 {
  font-size: 16px;
  color: #7e7eff;
  margin-bottom: 15px;
}

/* Description */
.profile-card p {
  font-size: 20px;
  color: #cccccc;
 margin: 0 auto;
  max-width: 1000px;
}

/* Social Icons */
.social-icons {
  margin-top: 20px;
}

.social-icons a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #8e2de2;
}

/* Blur background when modal is open */
/* Allow scrolling on body even when modal is open */
body.modal-open {
  overflow: auto; /* Remove this or set it to auto */
  backdrop-filter: none; /* Remove blur if needed */
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  pointer-events: none;
}

/* Modal Box */
.modal-box {
  background: #111;
  color: #f0f0f0;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.7);
  width: 600px;
  height: 400px;
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  text-align: left;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: floatIn 0.3s ease-out;
  z-index: 1000;
  pointer-events: auto;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #ff69b4;
}

/* Modal Title */
#modal-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
  color: #fff;
}

/* Modal Content */
#modal-content {
  font-size: 16px;
  line-height: 1.6;
  color: #ddd;
  text-align: justify;
}



/* ===================== */
/* 📱 Responsive Fixes */
/* ===================== */

/* Tablet */
@media (max-width: 1024px) {
  body {
    padding-top: 90px;
  }

  .logo {
    width: 90px;
  }

  .brand-name {
    font-size: 8vw;
  }

  .hero-tagline {
    font-size: 20px;
  }

  .hero-description {
    font-size: 16px;
    padding: 0 15px;
  }

  .profile-card {
    width: 95%;
    height: auto;
  }

  .slideshow-container {
    height: auto;
  }

  .mySlides img {
    height: auto;
  }
}

/* ===================== */
/* 📱 Mobile Menu Centered */
/* ===================== */
@media (max-width: 768px) {
  /* Full width dropdown */
  .menu {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 100%; /* show below header */
    left: 0;
    width: 100%;
    border-radius: 0;
    padding: 20px 0;
    text-align: center;
    z-index: 1500;
  }

  .menu li {
    margin: 15px 0;
    width: 100%;
  }

  .menu a {
    font-size: 18px;
    padding: 12px 0;
    width: 100%;
    display: block;
  }

  /* Show menu when active */
  .menu.active {
    display: flex;
  }

  /* Hamburger button (top-right) */
  .hamburger {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 2000;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    margin: 4px 0;
    transition: 0.3s;
  }

  /* Animate hamburger into X */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Resize logo & search */
  .logo {
    width: 70px;
  }

  .top-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .bottom-bar input[type="text"],
  .search-bar {
    width: 75%;
    font-size: 14px;
    margin-top: 10px;
  }
}

.card-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;   /* wraps on smaller screens */
  max-width: 1200px;
  margin: 0 auto;
}


.card {
  background: #282727;
  border-radius: 15px;
  width: 320px;  
  height: 530px;         /* fixed card width */
  flex: 1 1 300px;        /* responsive flex sizing */
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(222, 11, 163, 0.726);
}

.card video {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.card h3 {
  margin: 0 0 10px;
}

.card p {
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}















.emote-container {
  width: 100px;
  height: 100px;
  perspective: 800px; /* 3D depth */
  /* Optional: center locally within its own space */
  display: flex;
  justify-content: center;
  align-items: center;
}

.emote {
  font-size: 4rem;
  transform-style: preserve-3d;
  animation: spin 3s infinite linear;
}

/* 3D spin effect */
@keyframes spin {
  0% {
    transform: rotateY(0deg) rotateX(0deg);
  }
  50% {
    transform: rotateY(180deg) rotateX(20deg);
  }
  100% {
    transform: rotateY(360deg) rotateX(0deg);
  }
}

/* ===================== */
/* 🎯 Force Slideshow Arrow Fix */
/* ===================== */
.slideshow-container a,
.slideshow-container button {
  background: rgba(0, 0, 0, 0.5) !important;  /* small round dark bg */
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  font-size: 22px !important;
  font-weight: bold !important;
  color: #fff !important;
  line-height: 1 !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Position left & right */
.slideshow-container .prev {
  left: 10px !important;
}

.slideshow-container .next {
  right: 10px !important;
}

/* Hover effect */
.slideshow-container a:hover,
.slideshow-container button:hover {
  background: rgba(0, 0, 0, 0.8) !important;
}

