/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #000000;
background: linear-gradient(150deg, rgba(0, 0, 0, 1) 0%, rgba(56, 76, 130, 1) 50%, rgba(0, 0, 0, 1) 100%);
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Glassmorphism Effect */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
 height: 80px;
 background: #000000;
background: linear-gradient(150deg, rgba(0, 0, 0, 1) 0%, rgba(56, 76, 130, 1) 50%, rgba(0, 0, 0, 1) 100%);
}

/* image logo */
.logo {
    top: 10px;            /* Upar se gap */
    left: 10px;           /* Left se gap */
    display: flex;        /* Side by side align */
    align-items: center;  /* Vertical alignment */
    gap: -600px;             /* Dono logos ke beech ka gap */
}

/* First Image (Icon) */
#img1 {
    width: 150px;   /* Apne hisaab se size set karo */
    height: auto;
    margin-right: -30px;
}

/* Second Image (Name) */
#img2 {
    width: 150px;  /* Apne hisaab se size set karo */
    height: auto;
}

.menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.menu li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.menu li a:hover {
  color: #5c59ff;
}
.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

/* Arrow animation */
.arrow {
  transition: transform 0.3s ease;
}
.dropdown.open .arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background:rgb(190, 184, 184);
  /* background: rgba(255, 255, 255, 0.1); */
  backdrop-filter: blur(12px);
  border-radius: 10px;
  padding: 0.5rem 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 999;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.dropdown-content li {
  list-style: none;
}
.dropdown-content li a {
  display: block;
  padding: 0.7rem 1rem;
  color: white;
  text-decoration: none;
}
.dropdown-content li a:hover {
  background: #ffde59;
  color: #000000;
  font-weight: bolder;
}

/* Desktop hover */
.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 6rem 2rem;
  margin: 2rem auto;
  max-width: 900px;
  height: 400px;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}
.btn {
  background: #ffde59;
  color: #1f1c2c;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.btn:hover {
  background: #080808;
  transform: scale(1.05);
}

/* Sections */
.content {
  padding: 3rem 2rem;
  margin: 2rem;
  text-align: center;
}
.content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.card {
  padding: 2rem;
  border-radius: 15px;
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: auto;
}
form input,
form textarea {
  padding: 1rem;
  border: none;
  border-radius: 10px;
  outline: none;
  font-size: 1rem;
}
form button {
  align-self: center;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1rem;
  margin-top: auto;
  font-size: 0.9rem;
}

/* carousol */
/* Slideshow container */
.slideshow-container {
  position: relative;
  max-width: 100%;
  height: 500px; /* Height customize kar sakte ho */
  overflow: hidden;
}

/* Slides */
.mySlides {
  display: none;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Images */
.mySlides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Number text */
.numbertext {
  position: absolute;
  top: 8px;
  left: 16px;
  color: #f2f2f2;
  font-size: 18px;
  background-color: rgba(0,0,0,0.3);
  padding: 4px 8px;
  border-radius: 5px;
}

/* Caption text */
.text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 22px;
  background-color: rgba(0,0,0,0.3);
  padding: 8px 16px;
  border-radius: 5px;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.3s;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.3);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.6);
}

/* Dots */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fade animation */
.fade {
  animation-name: fade;
  animation-duration: 1s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}


/* Typing effect */
.animatedText {
  color: black;
  text-align: center;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 48px;
  display: inline-block;
  padding: 0;
  border-right: 1px solid #414141;
}

.typer {
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-bottom: 150px;
  transform: translateX(-50%);
  color: #fff;
  font-size: 22px;
  padding: 8px 16px;
  border-radius: 5px;
}

.hed {
    margin: 0px;
}




/* --------------------------------------------------------------- */
/* Animation stratergy  */
.anime {
  display: flex;
  justify-content: center;   /* Center horizontally */
  align-items: stretch;      /* Same height */
  gap: 20px;                 /* Equal gap between boxes */
  padding: 20px;
  flex-wrap: wrap;           /* Wrap for small screens */
  max-width: 1600px;         /* Space for 5 boxes */
  margin: 0 auto;            /* Center in body */
}

/* Container for 5 boxes */
.container {
  flex: 1 1 calc(20% - 20px);   /* 5 boxes in one row with equal gap */
  max-width: 300px;
  min-width: 200px;
}

.container .box {
  background-color: #4CBDFF;
  position: relative;
  width: 100%;
  height: 250px;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 15px;
}

/* Hover + icon effect */
.container .box .icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00507F;
  transition: 0.5s;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container .box:hover .icon {
  top: 20px;
  left: calc(50% - 40px);
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.container .box .icon img {
  width: 70%;
  height: 80%;
  transition: 0.5s;
}

.container .box:hover .icon img {
  width: 100%;
  height: 100%;
}

.container .box .content {
  position: absolute;
  box-sizing: border-box;
  top: 100%;
  height: 100%;
  text-align: center;
  padding: 20px;
  transition: 0.5s;
  opacity: 0;
  color: #fff;
}

.container .box:hover .content {
  top: 90px;
  opacity: 1;
}

.container .box .content h3 {
  margin: 10px;
  font-size: 24px;
}

/* 📱 Mobile responsive */
@media (max-width: 768px) {
  .container {
    flex: 1 1 100%;   /* Single box full width */
    max-width: 100%;
  }
}


    /* ---------------------Button Effect--------------------------------- */

          @import url('https://fonts.googleapis.com/css2?family=Belanosima&family=Rubik+Vinyl&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Lilita+One&display=swap');
       
       .spectacledcoder-glowing-button1
       {
            margin: auto;
            width: 250px;
            height: 70px;
            display: flex;
            border-radius: 35px;
            animation: rotation 3s linear 0s infinite;
            
       }
       .spectacledcoder-glowing-button1:hover
       {
        
            background: linear-gradient(var(--gradient-angle), rgb(255, 255, 255), rgb(0, 0, 0));
       }
       .spectacledcoder-glowing-button2
       {
            margin: auto;
            width: 250px;
            height: 70px;
            display: flex;
            border-radius: 35px;
            animation: rotation 3s linear 0s infinite;
            
       }
       .spectacledcoder-glowing-button2:hover
       {
        
            background: linear-gradient(var(--gradient-angle), rgb(0, 0, 0), rgba(255, 255, 255, 0));
       }
       .spectacledcoder-button1
       {
            width: 98%;
            height: 94%;
            background-color: rgba(0, 0, 0, 0.903);
            margin: auto;
            outline: none;
            border: none;
            border-radius: 35px;
            color: rgb(255, 255, 255);
            font-size: x-large;
            font-family: 'Belanosima', sans-serif;
       }
       .spectacledcoder-button2
       {
            width: 98%;
            height: 94%;
            background-color: rgba(255, 255, 255, 0.911);
            margin: auto;
            outline: none;
            border: none;
            border-radius: 35px;
            color: rgb(0, 0, 0);
            font-size: x-large;
            font-family: 'Belanosima', sans-serif;
       }
       .disclaimer
        {
            font-family: 'Belanosima', sans-serif;
            position: absolute;
            bottom: 0px; 
            left: 0; 
            margin-left: auto; 
            right: 0; 
            margin-right: auto; 
            width: fit-content;
            color: rgb(82, 82, 82);
            text-align: center;
        }
        .disclaimer a
        {
            text-decoration: none;
            color: #000000;
        }
        .disclaimer a:hover
        {
            font-weight: bolder;
        }
        ::selection
        {
            background-color: #000000;
            color: rgb(255, 255, 255);
        }
        @keyframes rotation 
        {
            0%
            {
                --gradient-angle: 0deg;
            }
            100%
            {
                --gradient-angle: 360deg;
            }    
        }
        @property --gradient-angle
        {
            syntax: "<angle>";
            initial-value: 0deg;
            inherits: false;
        }
      


/* Responsive */
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 70px;
    right: 20px;
    width: 220px;
    padding: 1rem;
    border-radius: 10px;
  }
  .menu.show {
    display: flex;
  }
  .menu-btn {
    display: block;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    margin-left: 1rem;
    opacity: 1;
    transform: translateY(0);
    display: none;
  }
  .dropdown.open .dropdown-content {
    display: block;
  }

   .logo {
        top: 5px;          /* Mobile par thoda kam gap */
        left: 5px;
        gap: 5px;          /* Mobile par normal gap rakh do */
    }

    #img1 {
        width: 100px;       /* Mobile ke liye chhota size */
        margin-right: 2px; /* Thoda hi gap */
    }

    #img2 {
        width: 100px;      /* Mobile ke liye adjust size */
    }
  
}




  .container {
      display: grid;
      grid-template-columns: repeat(5, 1fr); /* ✅ Desktop: 4 cards per row */
      gap: 20px;
      padding: 40px 20px;
      max-width: 4000px;
      margin: auto;
    }

    .card {
      background: #fff;
      color: #000;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      padding: 20px;
      text-align: center; /* ✅ Content center aligned */
      opacity: 0;
      width: 250px;
      height: 250px;
      transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
    }

    /* ✅ Hover effect */
    .card:hover {
      box-shadow: 0 8px 20px rgba(0, 123, 255, 0.8);
      transform: scale(0.95);
    }

    /* Animation */

   


    .card.animate { opacity: 1; transform: translate(0, 0); }
    .left-enter { transform: translateX(-100px); }
    .bottom-enter { transform: translateY(100px); }
    .right-enter { transform: translateX(100px); }
    .top-enter { transform: translateY(-100px); }

    /* Button */
    .btn {
      display: inline-block;
      margin-top: 15px;
      padding: 12px 25px;
      font-size: 16px;
      color: white;
      background: #007BFF;
      border: none;
      border-radius: 25px;
      cursor: pointer;
      transition: background 0.3s ease;
      width: 100%; /* ✅ Full width inside card */
    }

    .btn:hover { background: #0056b3; }

    /* 📱 Mobile Responsive */
    @media (max-width: 768px) {
      .container {
        grid-template-columns: 1fr; /* ✅ One card per row on mobile */
      }

      .card {
      background: #fff;
      color: #000;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      padding: 20px;
      text-align: center; /* ✅ Content center aligned */
      opacity: 0;
      transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
    }
    }

/* Expert Advoiser */
    #lll {
       background-image: url('./logo/robot.jpeg'); /* yaha apna image path dalo */
  background-size: cover;     /* pura box cover kare */
  background-position: center;/* center se fit ho */
  background-repeat: no-repeat;
    }



#lll::after {
  content: "";
  position: absolute;
  inset: 0; /* full cover */
  cursor: pointer;
}

/* Pure div clickable banane ke liye */
#lll {
  pointer-events: auto;
}
#lll::after {
  pointer-events: auto;
}


/* Expert Advoiser */
    #lll {
       background-image: url('./logo/robot.jpeg'); /* yaha apna image path dalo */
  background-size: cover;     /* pura box cover kare */
  background-position: center;/* center se fit ho */
  background-repeat: no-repeat;
    }



#lll::after {
  content: "";
  position: absolute;
  inset: 0; /* full cover */
  cursor: pointer;
}

/* Pure div clickable banane ke liye */
#lll {
  pointer-events: auto;
}
#lll::after {
  pointer-events: auto;
}
    

/* Copy Trading */
    #llll {
       background-image: url('./logo/Copy\ Trading.jpeg'); /* yaha apna image path dalo */
  background-size: cover;     /* pura box cover kare */
  background-position: center;/* center se fit ho */
  background-repeat: no-repeat;
    }



#llll::after {
  content: "";
  position: absolute;
  inset: 0; /* full cover */
  cursor: pointer;
}

/* Pure div clickable banane ke liye */
#llll {
  pointer-events: auto;
}
#llll::after {
  pointer-events: auto;
}


/*Strategy Devlpment */
    #lllll {
       background-image: url('./logo/Strategy\ Devlopment.jpeg'); /* yaha apna image path dalo */
  background-size: cover;     /* pura box cover kare */
  background-position: center;/* center se fit ho */
  background-repeat: no-repeat;
    }



#lllll::after {
  content: "";
  position: absolute;
  inset: 0; /* full cover */
  cursor: pointer;
}

/* Pure div clickable banane ke liye */
#lllll {
  pointer-events: auto;
}
#lllll::after {
  pointer-events: auto;
}

/*Account Handiling */
    #llllll {
       background-image: url('./logo/Account\ Handling.jpeg'); /* yaha apna image path dalo */
  background-size: cover;     /* pura box cover kare */
  background-position: center;/* center se fit ho */
  background-repeat: no-repeat;
    }



#llllll::after {
  content: "";
  position: absolute;
  inset: 0; /* full cover */
  cursor: pointer;
}

/* Pure div clickable banane ke liye */
#llllll {
  pointer-events: auto;
}
#llllll::after {
  pointer-events: auto;
}


/*VPS */
    #lllllll {
       background-image: url('./logo/vps.jpeg'); /* yaha apna image path dalo */
  background-size: cover;     /* pura box cover kare */
  background-position: center;/* center se fit ho */
  background-repeat: no-repeat;
    }



#lllllll::after {
  content: "";
  position: absolute;
  inset: 0; /* full cover */
  cursor: pointer;
}

/* Pure div clickable banane ke liye */
#lllllll {
  pointer-events: auto;
}
#lllllll::after {
  pointer-events: auto;
}




/* FAQ */


.faq-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  font-family: "Segoe UI", sans-serif;
  color: white;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  color: white;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.faq-question .icon {
  transition: transform 0.3s ease;
  font-weight: bold;
  font-size: 1.2rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0;
}

.faq-answer p {
  margin: 10px 0;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* enough for content */
  padding: 10px 0;
}

.faq-item.active .faq-question .icon {
  transform: rotate(180deg);
  content: "–";
}



.our {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}





/* Body Card-1 */
    .section {
      display: grid;
      grid-template-columns: 250px 1fr; /* left - right */
      gap: 40px;
      padding: 60px 40px;
      align-items: start;
    }

    /* Left Side Titles */
    .left-side {
      text-align: left;
    }

    .left-side .title {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .left-side .title span {
      color: #ff6600;
      display: inline-block;
      margin-bottom: 10px;
    }

    .left-side h2 {
      font-size: 24px;
    }

    /* Right Side Content */
    .concept-boxes {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .concept-box {
      border: 2px solid #f39c12;
      border-radius: 12px;
      padding: 20px;
      background: rgba(255, 255, 255, 0.02);
      transition: 0.3s ease-in-out;
    }

    .concept-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
    }

    .concept-box h3 {
      color: #00c3ff;
      font-size: 22px;
      margin-bottom: 10px;
    }

    .concept-box p {
      font-size: 15px;
      line-height: 1.6;
    }

    /* Logos */
    .logo-grid {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      align-items: center;
    }

    .logo-grid img {
      background: #fff;
      border: 2px solid #f39c12;
      border-radius: 10px;
      height: 70px;
      width: auto;
      box-shadow: 0 0 10px rgba(255,255,255,0.1);
      transition: 0.3s;
    }

    .logo-grid img:hover {
      transform: scale(1.1);
      box-shadow: 0 0 15px rgba(0, 195, 255, 0.5);
    }

    .logo-grid img{
      width: 200px;
      height: 100px;
    }

    /* ✅ Responsive (Mobile Version) */
    @media(max-width: 768px) {
      .section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 20px;
      }

      .left-side {
        text-align: center;
      }

      .concept-boxes {
        margin-top: 20px;
      }

      .logo-grid {
        justify-content: center;
        margin-top: 20px;
      }
    }




    /* Row 4 */

     .guidance-section {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 40px;
      align-items: start;
      text-align: center;
      padding: 60px 40px;
    }

    /* Center Title */
    .guidance-title {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .guidance-title span {
      color: #ff6600;
      font-size: 26px;
      margin-bottom: 10px;
    }

    .guidance-title h2 {
      font-size: 28px;
      font-weight: 700;
      line-height: 1.3;
    }

    /* Info Box */
    .info-box {
      border: 2px solid #f39c12;
      border-radius: 12px;
      padding: 20px;
      background: rgba(255, 255, 255, 0.02);
      text-align: left;
      transition: 0.3s ease-in-out;
    }

    .info-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
    }

    .info-box h3 {
      color: #00c3ff;
      font-size: 20px;
      margin-bottom: 10px;
    }

    .info-box p {
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 15px;
    }

    .highlight-line {
      width: 100%;
      height: 2px;
      background: #f39c12;
      margin-bottom: 15px;
    }

    /* Buttons */
    .button-group {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .button-group a {
      text-decoration: none;
      background: #00c3ff;
      color: #000;
      padding: 8px 18px;
      border-radius: 6px;
      font-weight: 500;
      transition: 0.3s;
    }

    .button-group a:hover {
      background: #0099cc;
      color: #fff;
    }

    /* Responsive */
    @media(max-width: 900px) {
      .guidance-section {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
      }

      .info-box {
        text-align: center;
      }

      .button-group {
        justify-content: center;
      }
    }






    












/* -----------------------------------Footer-------------------------------------------------------------- */

.footer {
    padding: 40px 0;
    background-color: #0d1117;
    color: white;
}

.footer ul {
    padding: 0;
    list-style: none;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer li {
    display: inline-block; 
    padding: 0 10px;
}

.footer ul a {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
}

.footer ul a:hover {
    opacity: 1;
}

.footer .social {
    text-align: center;
    padding-bottom: 25px;
}

.footer .social > a {
    font-size: 24px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #ccc;
    margin: 0 8px;
    color: inherit;
    opacity: 0.75;
}

.footer .social > a:hover {
    opacity: 0.9;
}

.footer .copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 0;
}
.footer .footer-break{
  height:1px;
  border-width:0;
  color:gray;
  background-color:white
    }




.stroke {
  -webkit-text-stroke: -3px rgb(251, 221, 50); 
  color:rgb(122, 160, 204); 
} 







/* Eapage */


    .product-section {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 150px;
      padding: 50px 20px;
      border-top: 2px dashed #33b5e5;
      border-bottom: 2px dashed #33b5e5;
      flex-wrap: wrap;
    }

    /* Left Side: Image Box */
    .product-left {
      text-align: center;
    }

    .product-left img {
      width: 370px;
      height: 400px;
      border-radius: 8px;
      box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
      border: 2px solid #444;
    }

    .btn {
      display: inline-block;
      background: linear-gradient(90deg, #007bff, #00d9ff);
      color: white;
      border: none;
      padding: 12px 30px;
      font-size: 16px;
      margin-top: 15px;
      border-radius: 6px;
      cursor: pointer;
      transition: 0.3s;
    }

    .btn:hover {
      transform: scale(1.05);
      box-shadow: 0 0 15px #00d9ff;
    }

    /* Middle: Chart Image or Box */
    .product-chart {
      text-align: center;
      background: #111;
      padding: 10px;
      border-radius: 10px;
      border: 1px solid #444;
      box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    }

    .product-chart img {
      width: 280px;
      border-radius: 5px;
    }

    /* Right Side: Info Box */
    .product-info {
      max-width: 350px;
      background: linear-gradient(145deg, #111, #1a1a2e);
      padding: 25px;
      border-radius: 10px;
      border: 2px solid #ffb400;
      box-shadow: 0 0 15px rgba(255, 180, 0, 0.3);
    }

    .product-info h2 {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .product-info p {
      margin: 6px 0;
      font-size: 16px;
      line-height: 1.5;
    }

    .product-info span {
      color: #00d9ff;
    }

    .disclaimer {
      font-size: 14px;
      margin-top: 10px;
      color: #ccc;
      font-style: italic;
      border-top: 1px solid #ffb400;
      padding-top: 8px;
    }

    .btn-group {
      margin-top: 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }

    .btn-blue {
      background: #007bff;
    }

    .btn-blue:hover {
      box-shadow: 0 0 15px #007bff;
    }

    .btn-yellow {
      background: #ffb400;
      color: #000;
      font-weight: 600;
    }

    .btn-yellow:hover {
      box-shadow: 0 0 15px #ffb400;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .product-section {
        flex-direction: column;
        text-align: center;
      }
      .product-info {
        max-width: 90%;
      }
    }



    

    /* Title  */

      .steps-section {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 100px;
      flex-wrap: wrap;
      padding: 60px 20px;
      background-image: url('./logo/img01.jpeg'); /* 👈 apni image ka path yahan do */
  background-size: cover; /* Image ko puri div me fit karta hai */
  background-position: center; /* Image center me dikhayega */
  background-repeat: no-repeat; /* Image repeat nahi hogi */
       /* background-image: url('./logo/img05.jpeg'); */
    }

    .steps-title {
      width: 100%;
      text-align: center;
      font-size: 32px;
      font-weight: 700;
      letter-spacing: 2px;
      margin-bottom: 40px;
    }

    /* Left Box (Steps) */
    .steps-box {
      background: rgba(255, 255, 255, 0.02);
      border: 2px solid #ffb400;
      border-radius: 10px;
      padding: 30px 40px;
      width: 420px;
      box-shadow: 0 0 15px rgba(255, 180, 0, 0.2);
      transition: all 0.3s ease;
    }

    .steps-box:hover {
      box-shadow: 0 0 25px rgba(255, 180, 0, 0.5);
    }

    .steps-box ol {
      margin: 0;
      padding-left: 20px;
    }

    .steps-box li {
      margin: 15px 0;
      font-size: 18px;
      line-height: 1.6;
    }

    .steps-box li span {
      color: #ffb400;
      font-weight: 600;
    }

    .steps-box::after {
      content: "";
      display: block;
      width: 100px;
      height: 3px;
      background: #ffb400;
      margin-top: 20px;
      border-radius: 2px;
    }

    /* Right Box (Video) */
    .video-box {
      border: 2px solid #ffb400;
      border-radius: 10px;
      overflow: hidden;
      width: 560px;
      height: 315px;
      box-shadow: 0 0 20px rgba(255, 180, 0, 0.3);
      transition: all 0.3s ease;
    }

    .video-box:hover {
      box-shadow: 0 0 30px rgba(255, 180, 0, 0.6);
    }

    iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .steps-section {
        flex-direction: column;
        align-items: center;
      }
      .video-box, .steps-box {
        width: 90%;
      }
      .steps-title {
        font-size: 26px;
      }
    }









    /* VPS */

        header {
      background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
      color: white;
      padding: 60px 20px;
      text-align: center;
    }
    header h1 {
      font-size: 2.5em;
      margin-bottom: 10px;
    }
    header p {
      font-size: 1.2em;
      margin-bottom: 20px;
    }
    .cta-button {
      background-color: #00c896;
      color: white;
      padding: 12px 24px;
      border: none;
      border-radius: 6px;
      font-size: 1em;
      cursor: pointer;
    }
    .plans {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      padding: 40px 20px;
    }
    .plan-card {
      background-color: white;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      padding: 20px;
    }
    .plan-card h3 {
      margin-top: 0;
      color: #00c896;
    }
    .plan-card ul {
      list-style: none;
      padding: 0;
    }
    .plan-card ul li {
      margin: 8px 0;
    }
    .benefits {
      background-color: #fff;
      padding: 40px 20px;
      text-align: center;
    }
    .benefits h2 {
      margin-bottom: 20px;
    }
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
    }
    .benefit-item {
      background-color: #e6f9f5;
      padding: 20px;
      border-radius: 8px;
    }
    footer {
      background-color: #203a43;
      color: white;
      text-align: center;
      padding: 20px;
    }


      .benefit-item:hover {
      box-shadow: 0 0 20px #00bfff;
      transform: scale(1.08);
    }



      .cta-button {
      margin-top: 20px;
      padding: 12px 28px;
      background-color: #00bfff;
      color: #fff;
      border: none;
      border-radius: 10px;
      font-size: 1em;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .cta-button:hover {
      background-color: #009acd;
      transform: scale(1.05);
      box-shadow: 0 0 15px #00bfff;
    }

    .plans {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      padding: 50px 20px;
    }

    .plan-card {
      background: #1b1f2f;
      border-radius: 15px;
      padding: 25px;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
      transition: all 0.4s ease;
      transform: scale(1);
    }

    .plan-card:hover {
      box-shadow: 0 0 25px #00bfff;
      transform: scale(1.07);
    }

    .plan-card h3 {
      color: #00bfff;
      margin-bottom: 15px;
    }

    .plan-card ul {
      list-style: none;
      padding: 0;
      color: #b0c4de;
      font-size: 0.95em;
    }

    .plan-card li {
      padding: 8px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .benefits {
      padding: 50px 20px;
      background: #14172a;
      border-top: 2px solid #00bfff;
    }

    .benefits h2 {
      color: #00bfff;
      margin-bottom: 25px;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
    }

    .benefit-item {
      background: #1b1f2f;
      padding: 15px;
      border-radius: 12px;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
      transition: all 0.4s ease;
    }

    .benefit-item:hover {
      box-shadow: 0 0 20px #00bfff;
      transform: scale(1.08);
    }

/* .sss{
    background-image: url(/index.html);
} */


    /* Strategy */
