:root {
    --black: #0B0B0B;
    --white: #FFFFFF;
    --yellow: #FFD400;
    --golden: #D4A017;
    --gray: #F5F5F5;
    --dark-gray: #333333;
    --light-gray: #E0E0E0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    /* overflow-x: hidden; */
    position: relative;
}
a {
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--black);
}
.txt-cen{
    text-align: center;
}
.allfix-wrap{
    max-width:1350px;
    width:95%;
    margin:auto;
}

/* ==========================================
   Navigation Bar
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
    /* background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%); */
}

.navbar.scrolled {
    background: var(--black);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid var(--golden);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
}

.logo h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    color: var(--white);
    font-weight: 700;
}

.logo h2 span {
    color: var(--yellow);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--yellow);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.btn-nav {
    background: var(--yellow);
    color: var(--black) !important;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--golden);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 212, 0, 0.4);
}

.btn-nav::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}
/* page header  */
.page-header {
  /* background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%); */
  background-image: url(../allfiximages/NewCharacter/teamban.jpg);
  background-position: bottom;
  background-size: cover;
  background-repeat: repeat;
  background-blend-mode: overlay;
  background-color: rgba(0, 0, 0, 0.805);
    padding: 150px 0 80px 0;
    text-align: center;
    color: var(--white);
    margin-top: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-header h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: var(--golden);
}

/* ==========================================
   Hero Section
   ========================================== */


  #randomImage {
    max-width: 400px;
    display: block;
    margin: 20px auto;
  }
  #container{
    display: grid;
    
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* gap:30px; */
    align-items: center;
     opacity: 1;
  transition: opacity 1s ease-in-out;
  }
  #fixedText{
    display: none;
  }
  #randomText{
    font-size: 4rem;
    color:white;
    font-family: emoji;
    font-weight: 600;

  }
.hero {
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 50px 0px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 160, 23, 0.1) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    padding: 20px;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-title span {
    color: var(--yellow);
}

.hero-subtitle {
    font-size: 28px;
    color: var(--golden);
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-text {
    font-size: 18px;
    color: var(--light-gray);
    margin-bottom: 40px;
}
/* ==========================================
   Buttons
   ========================================== */

.btn-primary {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid var(--yellow);
    margin:20px 0px;
}

.btn-primary:hover {
    background: var(--golden);
    border-color: var(--golden);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 160, 23, 0.4);
}

.btn-primary i {
    margin-right: 8px;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--black);
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--black);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--yellow);
    transform: translateY(-2px);
}

.glow-btn {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 212, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 212, 0, 0.8), 0 0 60px rgba(212, 160, 23, 0.6);
    }
}

/* ==========================================
   Animations
   ========================================== */

.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease-in 0.9s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* about section */
/* === About Section === */
.about-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  opacity: 0;
  transform: translateY(100px);
}

.about-content {
  
  display: grid;
  grid-template-columns: repeat(auto-fit ,minmax(500px ,1fr));
  align-items: center;
  justify-content: center;
  gap:20px;
  /* padding:0px 20px; */
}

.about-text {
  flex: 1 1 400px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #0066ff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #004dcf;
}

.about-image {
 
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.about-img2{
  display: none;

}
.about-img2 img{
  margin-top:20px;
  max-width:300px;
}
/*  */
/* From Uiverse.io by Praashoo7 */ 
.main {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
}
.main img{
    max-width: 150px;
}
.up {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.down {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.card1 {
     width: 40%;
  min-height: 270px;
  outline: none;
  border: none;
  background: white;
  border-radius: 150px 5px 5px 5px;
   box-shadow: rgba(50, 50, 93, 0.568) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
 transition: 1s ease-in-out;
}

.instagram {
  margin-top: 1.5em;
  margin-left: 1.2em;
  fill: #cc39a4;
}

.card2 {
  width: 40%;
 min-height: 270px;
  outline: none;
  border: none;
  background: white;
  border-radius: 5px 150px 5px 5px;
  box-shadow: rgba(50, 50, 93, 0.568) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: 1s ease-in-out;
}

.twitter {
  margin-top: 1.5em;
  margin-left: -.9em;
  fill: #03A9F4;
}

.card3 {
  width: 40%;
 min-height: 270px;
  outline: none;
  border: none;
  background: white;
  border-radius: 5px 5px 5px 150px;
  box-shadow: rgba(50, 50, 93, 0.568) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: 1s ease-in-out;
}

.github {
  margin-top: -.6em;
  margin-left: 1.2em;
}

.card4 {
   width: 40%;
 min-height: 270px;
  outline: none;
  border: none;
  background: white;
  border-radius: 5px 5px 150px 5px;
  box-shadow: rgba(50, 50, 93, 0.568) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
 transition: 1s ease-in-out;
}

.discord {
  margin-top: -.9em;
  margin-left: -1.2em;
  fill: #8c9eff;
}

.card1:hover {
  cursor: pointer;
  scale: 1.1;
  background-color: #cc39a4;
}

.card1:hover .instagram {
  fill: white;
}

.card2:hover {
  cursor: pointer;
  scale: 1.1;
  background-color: #03A9F4;
}

.card2:hover .twitter {
  fill: white;
}

.card3:hover {
  cursor: pointer;
  scale: 1.1;
  background-color: black;
}

.card3:hover .github {
  fill: white;
}

.card4:hover {
  cursor: pointer;
  scale: 1.1;
  background-color: #8c9eff;
}

.card4:hover .discord {
  fill: white;
}
/*  */
/* service section */
.services-section {
      padding: 60px 20px;
      text-align: center;
      background-color: #111;
    }

    .services-section h2 {
      font-size: 2.5rem;
      margin-bottom: 40px;
      color: #f1c40f;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .services-container {
      display: grid;
        grid-template-columns: repeat(auto-fit ,minmax(300px ,1fr));
      gap:30px;
    }
.services-container:nth-of-type(2){
    margin-top: 20px;

}
    .service-card {
      background-color: #1a1a1a;
      border: 1px solid #f1c40f;
      border-radius: 12px;
      padding: 25px;
      /* width: 280px; */
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 0 20px #f1c40f66;
    }

    .service-card img {
      width: 60px;
      height: 60px;
      margin-bottom: 20px;
    }

    .service-card h3 {
      font-size: 1.4rem;
      margin-bottom: 10px;
      color: #f1c40f;
    }

    .service-card p {
      font-size: 1rem;
      color: #ccc;
      margin-bottom: 15px;
    }

    .view-btn {
      padding: 10px 16px;
      background-color: #f1c40f;
      color: #111;
      border: none;
      border-radius: 6px;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .view-btn:hover {
      background-color: #ffd700;
    }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0; top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.85); /* Semi-background */
    }

    .modal-content {
      background-color: #1a1a1a;
      margin: 10% auto;
      padding: 30px;
      border-radius: 10px;
      width: 90%;
      max-width: 500px;
      text-align: center;
      animation: fadeIn 0.4s ease-out;
      position: relative;
      box-shadow: 0 0 30px rgba(241, 196, 15, 0.6);
      border: 1px solid #f1c40f;
    }

    .modal-image {
      width: 80px;
      height: 80px;
      object-fit: contain;
      margin-bottom: 20px;
    }

    .modal h2 {
      margin-bottom: 15px;
      font-size: 1.8rem;
      color: #f1c40f;
    }

    .modal p {
      font-size: 1rem;
      color: #eee;
    }

    .close {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 28px;
      font-weight: bold;
      color: #ccc;
      cursor: pointer;
    }

    .close:hover {
      color: #fff;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }
/* work section */
.work-section{
    padding:50px 20px;
     color:var(--dark-gray)
}
.work-section h1{
    font-size: 40px;
  text-shadow:
    -1px -1px 0 black,
     1px -1px 0 black,
    -1px  1px 0 black,
     1px  1px 0 black;
}
.work-content{
    padding:20px 0px;
}
.work-content p{
    font-size: 18px;
    letter-spacing: 1px;
    color:var(--dark-gray)

}
/* =
=========================================
   Footer
   ========================================== */

.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    
    margin-bottom: 40px;
    padding:20px;
}

.footer-col h3 {
    font-size: 26px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col h3 span {
    color: var(--yellow);
}

.footer-col h4 {
    font-size: 20px;
    color: var(--yellow);
    margin-bottom: 15px;
}

.footer-col p {
    margin-bottom: 10px;
    color: var(--light-gray);
}

.footer-desc {
    margin-top: 10px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--yellow);
}

.footer-col i {
    margin-right: 10px;
    color: var(--golden);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--golden);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--yellow);
    color: var(--black);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: var(--light-gray);
}
/* counter */

    .counter-box {

      background: #111;
      padding: 50px 70px;
      /* border-radius: 20px; */
      text-align: center;
      box-shadow: 0 0 30px rgba(255, 215, 0, 0.7);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .counter-box:hover {
      /* transform: scale(1.5); */
      box-shadow: 0 0 50px rgba(255, 215, 0, 1);
    }

    h1 {
      font-size: 2.2rem;
      font-weight: 600;
      color: #FFD700;
      margin-bottom: 20px;
      text-shadow: 0 0 10px #FFD700;
    }

    #visitorCount {
      font-size: 4rem;
      font-weight: bold;
      color: #fff;
      text-shadow: 0 0 15px #FFD700, 0 0 30px #FFD700;
    }

    
    /* privacy */
    .legal-content{
      margin:30px ;
    }
    .legal-content h2{
      margin:5px 0px;
      line-height: 1.4;
      font-size: 25px;
      font-family: emoji;
    }
    .legal-content p{
      line-height: 1.5;
      color:#000;
      margin:5px 0px;
      font-size: 17px;
    }

    /* whatsapp icon */
    .whatsapp-float{
      position: fixed;
    bottom: 15%;
    right: 5%;
    }
    .whatsapp-float img{
      max-width: 40px;
    }
    /* From Uiverse.io by MijailVillegas */ 
.card {
  max-width: fit-content;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  gap: 1rem;
  backdrop-filter: blur(15px);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.192),
    inset 0 0 5px rgba(255, 255, 255, 0.274), 0 5px 5px rgba(0, 0, 0, 0.164);
  transition: 0.5s;
      position: fixed;
    bottom: 12%;
    right: 3%;
   
}

.card:hover {
  animation: ease-out 5s;
  background: rgba(173, 173, 173, 0.05);
}

.card ul {
  padding: 15px;
  display: flex;
  list-style: none;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  flex-direction: column;
}

.card ul li {
  cursor: pointer;
}

.svg {
  transition: all 0.3s;
  /* if you find some problems change w - h : 30px*/
  padding: 15px;
  height: 55px;
  width: 55px;
  border-radius: 100%;
  color: rgb(255, 128, 0);
  fill: currentColor;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3),
    inset 0 0 5px rgba(255, 255, 255, 0.5), 0 5px 5px rgba(0, 0, 0, 0.164);
}

.text {
  opacity: 0;
  border-radius: 5px;
  padding: 5px;
  transition: all 0.3s;
  color: rgb(255, 174, 0);
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  z-index: 9999;
  box-shadow: -5px 0 1px rgba(153, 153, 153, 0.2),
    -10px 0 1px rgba(153, 153, 153, 0.2),
    inset 0 0 20px rgba(255, 255, 255, 0.3),
    inset 0 0 5px rgba(255, 255, 255, 0.5), 0 5px 5px rgba(0, 0, 0, 0.082);
}

/*isometric prooyection*/
.iso-pro {
  transition: 0.5s;
}
.iso-pro:hover a > .svg {
  transform: translate(15px, -15px);
  border-radius: 100%;
}

.iso-pro:hover .text {
  opacity: 1;
  transform: translate(25px, -2px) skew(-5deg);
}

.iso-pro:hover .svg {
  transform: translate(5px, -5px);
}

.iso-pro span {
  opacity: 0;
  position: absolute;
  color: #1877f2;
  border-color: #1877f2;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3),
    inset 0 0 5px rgba(255, 255, 255, 0.5), 0 5px 5px rgba(0, 0, 0, 0.164);
  border-radius: 50%;
  transition: all 0.3s;
  height: 60px;
  width: 60px;
}

.iso-pro:hover span {
  opacity: 1;
}

.iso-pro:hover span:nth-child(1) {
  opacity: 0.2;
}

.iso-pro:hover span:nth-child(2) {
  opacity: 0.4;
  transform: translate(5px, -5px);
}

.iso-pro:hover span:nth-child(3) {
  opacity: 0.6;
  transform: translate(10px, -10px);
}

   
/* responsive */
@media only screen and  (max-width: 875px) {
  .about-content {
    
    text-align: center;
  }
.about-image{
    margin-top: 30px;
}
  .about-text h2 {
    font-size: 2rem;
  }
  .text-cen ,.about-text{
    text-align: center;
  }
  .mob-btn{
    margin:20px auto;
  }
}
@media only screen and (max-width:780px){
     .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
    }

    .nav-menu.active {
        left: 0;
    }
    .social-links{
        justify-content: center;
    }
    
    /* .about-image ,.about-text {
        max-width: 400px;
    } */
    #randomImage{
        max-width: 300px;
    }
    #randomText {
        font-size: 40px;
    }
    .main img {
    max-width: 100px;
    
}
.about-image{
  display: none;
}
.about-img2{
  display: block;

}
.footer{
  text-align: center;
}
}
@media only screen and (max-width:500px){
  .page-header {
    padding:80px 20px;
    min-height: 50vh;
  }
  .page-header h1  {
    font-size: 35px;
  }
  .page-header p{
    padding:10px ;
  }
   .about-content {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}
@media only screen and (max-width:350px){
   .services-container {
       grid-template-columns: repeat(auto-fit, minmax(263px, 1fr));
   }
  }
