:root {
    --bg: #07070d;
    --bg2: #101020;
    --primary: #8A2BE2;
    --secondary: #FF2D95;
    --accent: #00E5FF;
    --text: #ffffff;
    --muted: #b9b9c9;
    --card: #121222;
    --border: rgba(255, 255, 255, .08);
    --grad: linear-gradient(90deg, var(--primary), var(--secondary));
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5
}



header {
    position: sticky;
    top: 0;
    background: rgba(7, 7, 13, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 999999;
}

 nav img{
    width: 180px;
  }

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 18px 0 */
}

.logo {
    font-weight: 800;
    letter-spacing: 2px
}

.logo span {
    color: var(--secondary)
}

.menu a {
    color: #fff;
    text-decoration: none;
    margin: 0 12px
}



.btn {
    background: var(--grad);
    padding: 14px 26px;
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    display: inline-block
}

/* ========================= */
/* FULL SCREEN IMAGE */
.hero {
  background: url('../img/banner/banner.webp') no-repeat center center;
  background-size: cover; /* ensures image covers the whole section */
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid #252222;
  background-color: #05050a;
}

/* DARK LEFT OVERLAY (REAL LOOK) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #05050ae3 42%, #05050ad1 48% 45%, rgb(5 5 10 / 10%) 68%, #00000000 50%);
}

/* CONTENT */
.hero-container {
  width: 90%;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* CONTENT FONT */
.hero-content {
  max-width: 100%;
}

/* HEADING */
.hero-content h1 {
  font-size: 55px;
  line-height: 1.05;
  font-weight: 900;
}

.hero-content span {
  background: linear-gradient(90deg, #ff00cc, #7b2cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.hero-content p {
  color: #aaa;
  margin: 20px 0;
  font-size: 15px;
}

/* STATS INLINE */
.stats {
  display: flex;
  gap: 30px;
  margin: 25px 0;
}

.stat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
}

/* ICON CIRCLE (NEON BORDER) */
.circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #ff00cc;
}

.circle i {
  color: #ff00cc;
  font-size: 25px;
}

/* BUTTONS */
.buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 13px;
  text-decoration: none;
}

.primary {
  background: linear-gradient(90deg, #ff00cc, #7b2cff);
  color: #fff;
}

.outline {
  border: 1px solid #555;
  color: #fff;
}

/* ========================= */
/* RESPONSIVE - TABLET */
/* ========================= */
@media (max-width: 992px) {
  .hero {
    background-position: center center;
    background-size: cover;
    padding: 60px 0;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .stats {
    gap: 20px;
    flex-wrap: wrap;
  }
}

/* ========================= */
/* RESPONSIVE - MOBILE */
/* ========================= */
/* ========================= */
/* MOBILE RESPONSIVE */
@media (max-width: 600px) {
  .hero {
    background-image: url('../img/banner/banner.webp');  /* Make sure image is loaded for mobile */
    background-size: cover;    /* Ensure image covers entire screen */
    background-position: center center; /* Center the background image */
    text-align: center;
    padding: 70px 0;
  }


  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .stats {
    justify-content: left;
  }

  .stat {
    justify-content: center;
  }

  .buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 10px
  }

  nav img{
    width: 180px;
  }
}
/* ========================= */
/* EXTRA MOBILE */
@media (max-width: 480px) {

  
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 13px;
  }

  .btn {
    width: 100%;
  }
}
/* ===================about================== */
        .about-section {
  padding: 80px 20px;
  background: #0b0b17;
  color: #fff;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

/* Image */
.about-img img {
  width: 100%;
  border-radius: 12px;
}

/* Content */
.about-content h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.subtitle {
  color: #a855f7;
  margin-bottom: 15px;
  font-weight: 500;
}

.about-content p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Features */
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}

.feature {
  background: #111;
  padding: 10px;
  border-radius: 6px;
  font-size: 14px;
}

/* Button */
.about-btn {
  display: inline-block;
  padding: 12px 20px;
  background: linear-gradient(45deg, #a855f7, #7c3aed);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
  letter-spacing:2px;
}

.about-btn:hover {
  opacity: 0.8;
}

section {
    padding: 70px 0
}

.title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 35px
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.card {
    background: var(--card);
    padding: 30px;
    border-radius: 22px;
    border: 1px solid var(--border)
}

.price {
    font-size: 44px;
    font-weight: 800;
    color: var(--secondary)
}

ul {
    padding-left: 18px
}

.services {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px
}

@media (max-width: 992px) {
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}
}

/* 🔥 mobile (1 in row) */
@media (max-width: 576px) {
.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}
}

.service {
    background: var(--card);
    padding: 20px 10px;
    border-radius: 18px;
    justify-items: center;
}

.services .service .circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f71da4;
}

.services .service .circle i {
  color: #d91bff;
  font-size: 14px;
}

.services .service h4{
    margin: 5px 0px;
}

.services .service p{
    margin: 5px 0px;
        text-align: center;
}

#contact .container{
    max-width: 500px;
    margin: auto;
}

.d-flex{
    display: flex;
    gap: 10px;
}


form {
    background:#c3c3c3;
    padding: 30px;
    border-radius: 15px;
    height: fit-content;
}

.width{
  width: 100%;
}

input,
select,
textarea {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    background: #0d0d18;
    border: 1px solid #2d2d44;
    color: white;
    border-radius: 12px
}


@media (max-width: 992px) {
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
}

/* 🔥 mobile (1 in row) */
@media (max-width: 576px) {
  .media-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
}
}

/*====================price cord==================*/
.pricing {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.card {
    width: 320px;
    padding: 30px 25px;
    border-radius: 15px;
    background: #111126;
    /* position: relative; */
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(255, 0, 150, 0.3);
}

/* Highlight Card */
.card.popular {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff2d95, #ff6a00);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.title {
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.price {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
}

.price span {
    font-size: 12px;
    opacity: 0.6;
}

ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    text-align: left;
}

ul li {
    margin: 10px 0;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff2d95;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    border: 1px solid #6a00ff;
    color: #fff;
}

.btn:hover {
    background: linear-gradient(45deg, #6a00ff, #ff2d95);
    border: none;
}

/* Popular Button */
.popular .btn {
    background: linear-gradient(45deg, #ff2d95, #ff6a00);
    border: none;
}

/* Mobile */
@media(max-width:768px){
    .pricing {
        flex-direction: column;
        align-items: center;
    }
}


/*=====================play list========================*/
/* SECTION */
.media-section {
    padding: 60px 20px;
}

/* GRID */
.media-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
}

/* BOX */
.media-box {
    position: relative;
    height: 220px;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.4s;
}

.media-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 45px rgb(132 28 222);
}

/* IMAGE */
.media-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */
.media-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); */
}

/* TEXT */
.media-title {
    position: absolute;
    bottom: 15px;
    left: 20px;
    color: #fff;
    font-size: 16px;
    z-index: 2;
}

.media-title h3,span{
    margin: 0px;
}

.media-title span{
    margin: 0px;
    color:#949494;
    font-size: 15px;
}

/* PLAY BUTTON */
.media-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 3px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.media-play::before {
    content: '';
    border-left: 16px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 4px;
}

/* POPUP */
.media-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.media-popup.active {
    display: flex;
}

.media-popup iframe {
    width: 80%;
    height: 450px;
    border-radius: 12px;
}

/* CLOSE */
.media-close {
    position: absolute;
    top: 100px;
    right: 35px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

/* MOBILE */
@media(max-width:768px){
    .media-popup iframe {
        width: 95%;
        height: 220px;
    }

    .media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
}

/* 🔥 tablet (2 in row) */
@media (max-width: 992px) {
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
}

/* 🔥 mobile (1 in row) */
@media (max-width: 576px) {
  .media-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
}
}

/*========================counter section==========================*/
 .section{
      padding: 70px 100px;
    }
    
    .circle1{
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1.5px solid #ff00cc;
    }

     .circle1 i{
        color:#ff00cc;
        font-size:30px
     }

    .counter_icon{
        /* display: flex; */
        align-items: center;
        /* margin: 0px 59px; */
        gap: 20px;
    }

    .counter-section {
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding: 13px 0px;
    /* background:  #6a00ff; */
    border-bottom: 1px solid #cecece2e;
    border-top: 1px solid #cecece2e;
}

.counter-box {
  flex: 1;
      display: flex;
    align-items: center;
    gap: 10px;
    margin:0px 70px;
}



.counter {
  font-size: 40px;
  font-weight: bold;
  color: #d400ff;
}

.counter::after {
  content: "+";
}

p {
  margin:0px;
  font-size: 14px;
  color: #aaa;
}

/* 🔥 tablet (2 in row) */
@media (max-width: 992px) {
  .counter-box {
    width: 48%;
  }
}

/* 🔥 mobile (1 in row) */
@media (max-width: 576px) {
  .counter-box {
    width: 100%;
  }

  .section {
    padding: 40px 15px;
  }
}

/* ==================FAQ section================ */

 .faq-section {
  padding: 60px 20px;
  background: #0f0f1a;
  color: #fff;
}

.container {
  margin: auto;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

.faq-item {
  border-bottom: 1px solid #333;
}

.list li{
    margin: 5px 0;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.list{
        list-style: none;
    padding: 0;
    margin: 10px 30px;
    text-align: left;
}

.faq-question {
  width: 100%;
  padding: 15px;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question span {
  font-size: 20px;
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
}

.faq-answer p {
padding: 0 15px 5px;
  color: #bbb;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/*======================== review==========================*/

    .testimonials {
    padding: 60px 20px;
    }

    .wrap {
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    }

    .t-card {
    background: radial-gradient(circle at top, #111336, #06071a);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 15px;
    color: #fff;
    position: relative;
    }

    .t-card:hover {
    border-color: #7c4dff;
    box-shadow: 0 0 25px rgba(124,77,255,0.2);
    }

    .avatar {
     width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #7c4dff;
    }

    .stars {
    color: #ff2e63;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    }

    .t-card p {
    font-size: 13.5px;
    color: #cfd2ff;
    line-height: 1.6;
    min-height: 80px;
    }

    .t-card h4 {
    margin: 10px 0 2px;
    font-size: 14px;
    }

    .t-card span {
    font-size: 12px;
    color: #8a8db3;
    }

    .quote {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    color: #7c4dff;
    opacity: 0.4;
    }

    /* Responsive */
    @media (max-width: 1100px) {
    .wrap {
        grid-template-columns: repeat(3, 1fr);
    }
    }
    @media (max-width: 768px) {
    .wrap {
        grid-template-columns: repeat(2, 1fr);
    }
    }
    @media (max-width: 480px) {
    .wrap {
        grid-template-columns: 1fr;
    }
    }

    .footer {
  background: #050510;
  color: #ccc;
  padding: 20px 20px 20px;
  font-family: sans-serif;
border-top: 1px solid #1e1e1e;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-col h3 {
  color: #fff;
  margin-bottom: 15px;
}

.logo {
      color: #fff;
    width: 200px;
}

.logo span {
  color: #a855f7;
}

.footer-col .details {
  font-size: 16px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #aaa;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #a855f7;
}

/* Social */
.social-icons {
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
  margin-right: 8px;
  width: 30px;
  height: 30px;
  background: #111;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #a855f7;
}

/* Newsletter */
.newsletter {
  display: flex;
  margin-top: 10px;
}

.newsletter input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  background: #111;
  color: #fff;
}

.newsletter button {
  padding: 10px 15px;
  border: none;
  background: linear-gradient(45deg, #a855f7, #7c3aed);
  color: #fff;
  cursor: pointer;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 30px;
  padding-top: 15px;
  display: flex;
  justify-content:center;
  flex-wrap: wrap;
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer-bottom {
    padding-bottom: 40px; 
  }
}

.footer-bottom a {
  color: #aaa;
  margin-left: 10px;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #a855f7;
}


/* contact */

section {
  padding: 60px 20px;
  background: #0f0f1a;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* title */
.title {
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

/* layout */
.formwrap {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #151528;
  padding: 30px;
  border-radius: 12px;
}

/* image */
.formwrap img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

/* form */
.contact {
  width: 100%;
}

/* row */
.d-flex {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

/* half width */
.width {
  width: 100%;
}

/* inputs */
input,
select,
textarea {
    width: 100%;
    padding: 15px;
    border: none;
    outline: none;
    border-radius: 6px;
    background: #e6e6e6;
    color: #000000;
    font-size: 15px;
}



/* error */
.error {
  font-size: 12px;
  color: red;
}

/* 🔥 tablet */
@media (max-width: 992px) {
  .formwrap {
    flex-direction: column;
    text-align: center;
  }

  .formwrap img {
    max-width: 100%;
  }

  .d-flex {
    flex-direction: column;
  }
}

/* 🔥 mobile */
@media (max-width: 576px) {
  section {
    padding: 40px 15px;
  }

  .formwrap {
    padding: 20px;
  }

  .title {
    font-size: 22px;
  }

  input,
  select,
  textarea {
    font-size: 14px;
  }
}

/* ============================================= */
 /* Default: hide everywhere */
.cta-wrapper {
  display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;   /* bottom pe chipka rahe */
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  }

  .quote-btn {
    background: #f80f93;
    color: #000;
    padding: 14px 20px;
    font-weight: 600;
    text-decoration: none;
    flex: 1;
    text-align: center;
  }

  .call-btn {
    background: #7d19f2;
    color: #fff;
    padding: 14px 20px;
    font-weight: 500;
    text-decoration: none;
    flex: 1;
    text-align: center;
  }

  .or-circle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    font-weight: 600;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
  }
}

@media (max-width:320px) {
.call-btn {
    background: #7d19f2;
    color: #fff;
    padding: 14px 20px;
    font-weight: 500;
    text-decoration: none;
    flex: 1;
    text-align: center;
  }
}