 @import url('../fonts/stylesheet.css');
 :root {
	 --neon-green: #FD9500;
	   --primary-green: #FD9500;
            --dark-bg: #0a1e1e;
            --light-bg: #f8f9fa;
}
 * {
	 margin: 0;
	 padding: 0;
	 box-sizing: border-box;
	 font-size: 1;
}
 body {
	 color: #ffffff;
	 overflow-x: hidden;
	   font-family: "Poppins", sans-serif;
	 font-style: normal;
	 position: relative;
}

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

 .fw-200 {
	 font-weight: 200;
}
 .fw-300 {
	 font-weight: 300;
}
 .fw-200 {
	 font-weight: 200;
}
 .fw-600 {
	 font-weight: 500;
}
 .fw-700 {
	 font-weight: 700;
}
 .fw-800 {
	 font-weight: 800;
}
 .fw-900 {
	 font-weight: 900;
}
 .bg-1{
	background-color:var(--neon-green) !important;
}
 .my-100{
	margin-top: 80px;
	 margin-bottom: 80px;
}

        
        /* Navbar */
        .navbar {
            transition: color 0.3s;
            padding: 1rem 0;
           transition: all 0.3s;
        }

		.navbar.active {
	background: linear-gradient(135deg, #030301 0%, #030301 100%);
	padding: 0.3rem 0;
	transition: all 0.3s;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

        
        .navbar-brand {
            color: var(--primary-green) !important;
            font-weight: bold;
            font-size: 1.5rem;
        }
        
        .nav-link {
            color: #fff !important;
            margin: 0 1rem;
            transition: color 0.3s;
            position: relative;
            transition: all 0.3s;
        }
        
        .nav-link:hover {
            color:  #fff !important;
            transition: all 0.3s;
        }
        
        .nav-link.active {
            color:  #fff !important;
        }
        
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 79%;
            height: 4px;transition: all 0.3s;
            background:  #fff !important;
            border-radius: 0px;
        }

          .nav-link::after {
            content: '';
            position: absolute;
             bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 0%;
            height: 4px;transition: all 0.3s;
            background:  #fff !important;
            border-radius: 0px;
        }
        
               .nav-link:hover::after {
         width: 79%;
        }

        
        .btn-buy-now {
            background: var(--primary-green);
            color: #000;
            font-weight: 500;
            padding: 0.5rem 2rem;
            border-radius: 25px;
            border: none;
            transition: all 0.3s;
        }
        
				.btn-buy-now:hover {
					/* box-shadow: 0 5px 15px rgba(164, 255, 0, 0.4); */
					background: #fff;
					color: #000;
				}
        
        /* Hero Section */
        .hero-section {
            background: url(../images/banner.jpg) no-repeat center/ cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(164, 255, 0, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 4s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }
        
        .hero-content h1 {
            color: #fff;
            font-size: 72px;
            font-weight: 500;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease;
        }
        
        .hero-content p {
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 2rem;
            animation: fadeInUp 1.2s ease;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .google-play-btn {
            background: #000;
            color: #fff;
            padding: 0.8rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }
        
        .google-play-btn:hover {
            background: #333;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .hero-image {
            position: relative;
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        .hero-image img {
            max-width: 100%;
            filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
        }
        
        /* Features Section */
        .features-section {
            padding: 100px 0;
            background: #fff;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 42px;
            font-weight: 500;
            margin-bottom: 1rem;
            color: #0E1116;
        }
        
        .section-title p {
            color: #021915;
            font-size: 18px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 23px;
            border-radius: 8px;
            transition: all 0.3s;
            margin-bottom: 1.5rem;
            background: #F6F8FB;
        }
        
        .feature-item:hover {
            background: #E6EEFB;
            transform: translateX(10px);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .feature-content h4 {
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: #0E1116;
            font-size: 18px;
        }
        
        .feature-content p {
            color: #0E1116;
            margin: 0;
            font-size: 16px;
        }
        
        .feature-illustration {
            position: relative;
            animation: float 3s ease-in-out infinite;
        }
        
        /* Pricing Section */
        .pricing-section {
            padding: 80px 100px;
            background: #F6F8FB;
            border-radius: 24px;
        }
        
        .pricing-card {
            background: #fff;
            border-radius: 16px;
            padding: 3rem 22px;
            box-shadow: 0 5px 20px rgba(0,0,0,0);
            transition: all 0.3s;
            height: 100%;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        
        .pricing-card.featured {
            background: linear-gradient(180deg,rgba(255, 150, 0, 0.21) 0%, rgba(253, 149, 0, 0.02) 100%);
            transform: scale(1.06);
            border: 3px solid #FF9600;
        }
        
        .pricing-card h3 {
            font-size: 1.8rem;
            font-weight: 500;
            margin-bottom: 1rem;
            color: #0E1116;
        }
        
            .price {
            font-size: 30px;
            font-weight: 500;
            margin-bottom: 0.8rem;
            color: #FD9500;
            }
            .price span{
                color: #000;
            }
        
        .price-period {
            color: #666;
            margin-bottom: 2rem;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
        }
        
        .feature-list li {
            padding: 0.44rem 0;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #0E1116;
            font-size: 16px;
        }
        
        .featured .feature-list li i {
            color: #000;
           
        }
            .feature-list li i {
            color: var(--primary-green);
            font-size: 23px;
        }
        .btn-pricing {
            width: 100%;
            padding: 1rem;
            border-radius: 42px;
            border: none;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-get-started {
            background: #F7F7F8;
            border: 0px solid var(--primary-green);
            color: #000;
        }
        
        .btn-get-started:hover {
            background: var(--primary-green);
			  color: #000;
        }
        button:focus:not(:focus-visible) {
	outline: 0;
	box-shadow: 0 0 0;
}
        .btn-upgrade {
            background: #FD9500;
            color: #090909;
        }
        
        .btn-upgrade:hover {
            background: #333;
        }
        
        /* FAQ Section */
     .faq-section {
	padding: 80px 100px;
	background: rgba(255,150,0, 0.1);
	border-radius: 24px;
	margin: 88px 0px;
}
        
        .accordion-item {
            border: none;
            margin-bottom: 1rem;
            border-radius: 10px;
            overflow: hidden; background: #F7F7F8;
        }
        
        .accordion-button {
            background: #fff;
            font-weight: 500;
            padding: 1.5rem;
            font-size: 24px;
        }
        
        .accordion-button:not(.collapsed) {
            background: #fff;
            color: #000;
            box-shadow: inset 0 calc(0 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        /* Contact Section */
        .contact-section {
          	padding: 80px 100px;
	  border-radius: 24px;
	         margin: 88px 0px;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: #fff;
        }
        
        .contact-info {
            margin-bottom: 3rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 2rem;
        }
        

        
        .form-control, .form-select {
            padding: 1rem;
            border-radius: 10px;
            border: 1px solid #444;
            background: #2d2d2d;
            color: #fff;
            margin-bottom: 1rem;
        }
        
       .contact-form .form-group {
    position: relative;
    margin-bottom: 25px;
}
.contact-form .form-control {
    background: transparent;
    border: none;
    border-bottom: 2px solid #5b675f;
    border-radius: 0;
    padding: 12px 0 5px 0;
    color: #fff;
    font-size: 17px;
}
.contact-form .form-control:focus {
    border-bottom: 2px solid #fd9500;
    box-shadow: none;
}
.contact-form label {
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 17px;
    color: #a8b2ad;
    transition: 0.2s;
    pointer-events: none;
}
.contact-form .form-control:focus + label,
.contact-form .form-control:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 13px;
    color: #fd9500;
}
.btn-submit {
    background: #fd9500;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 25px;
    border: none;
}
.btn-submit:hover {
	background: #fff;
	color: #000;
}
.resize{resize: none;}
        
     /* Testimonial Section */
 .testimonial-section {
	 padding: 5rem 2rem;
}
 .testimonial-card {
	 background: #A1EA43 url(../images/testimonialbg.jpg) no-repeat center center/cover;
	 border-radius: 24px;
	 padding: 3rem;
	 margin: 0 auto;
	 position: relative;
	 color: #000;
}
 .testimonial-header {
	 margin-bottom: 2rem;
}
 .testimonial-content {
	 display: flex;
	 justify-content: space-between;
	 align-items: center;
	 gap: 3rem;
}
 .author-image {
	 width: 70px;
	 height: 70px;
	 border-radius: 50%;
	 object-fit: cover;
}
 .author-info h4 {
	 font-size: 1.2rem;
	 font-weight: bold;
	 margin-bottom: 0.3rem;
}
 .author-info p {
	 font-size: 1rem;
	 opacity: 0.8;
}
 .testimonial-text {
	 flex: 1;
	 font-size: 1rem;
	 line-height: 1.6;
}
        
        /* Footer */
        .footer {
            background: #F2F2F2;
            color: #212121;
            padding: 60px 0 4px;
        }
        
.footer h5 {
	/* color: var(--primary-green); */
	margin-bottom: 1.5rem;
	font-weight: 500;
}

.color898989{color: #898989;}
       .navbar-toggler {

	color: #fff;
	background-color: #464d3e;

} 



        .footer a {
            color: #212121;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
            font-size: 18px; position: relative;
        }
        
        .footer a:hover, .footer a.active {
            color: var(--primary-green);
        }



        .footer-social {
	 display: flex;
	 gap: 1rem;
	 margin-top: 2rem;
}
 .footer-social a {
	 width: 40px;
	 height: 40px;
	 border-radius: 50%;
	 background-color: #fff;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 color: #000;
	 text-decoration: none;
	 transition: all 0.3s ease;
}
 .footer-social a:hover {
	 background-color: var(--neon-green);
}
 .footer-bottom {
	 border-top: 1px solid #D8D9D9;
	 padding-top: 2rem;
	 display: flex;
	 justify-content: space-between;
	 align-items: center;
}
        .copyright {
            border-top: 1px solid #D8D9D9;
            padding-top: 1rem;
            margin-top: 3rem;
            text-align: center;
            color: #000000;
        }
        
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-section {
                min-height: auto;
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
        }
/**cookies banner **/
 .cookies-statement {
	text-align: left;
	 padding: 12px 50px;
	 position: fixed;
	 bottom: 0;
	 background: #0d0d0d;
	 z-index: 9999;
	 box-shadow: 0 5px 13px #0d0d0d;
	 width: 100%;
}
 .cookies-statement .cookies-btn ul li {
	display: inline-block;
	padding: 0 5px;
}
 .Cookiesclose .icon {
	width: 25px;
	 height: 25px;
	 position: absolute;
	 right: 10px;
	 top: 10px;
	 background: #BA9C5C;
	 padding: 5px;
	 border-radius: 50%;
	 cursor: pointer;
	 fill: #062360;
}
 .Cookiesclose .icon {
	cursor: pointer;
	 fill: #fff;
}
 .cookies-statement .cookies-btn ul li a {
	 width: 135px;
	 padding: 13px 30px;
	 font-size: 14px;
	 line-height: 1;
}
 .cookies-statement .cookies-btn ul li a:hover {
	 background: var(--neon-green);
}
 .cookies-statement h3{
	font-size:26px;
	 line-height: 30px;
}
 .Cookies a:hover{
	color:#fff;
}
 .Cookies p {
	margin-bottom: 0px;
	 line-height: 22px;
	 font-size: 16px;
}
/*cookies statement*/
 .cookies_container {
	 width: 100%;
	 padding: 30px 50px;
	 position: fixed;
	 bottom: 0;
	 left: 0;
	 background: #fff;
	 z-index: 9999;
	 box-shadow: 0 0 26px #ba9c5c;
}
 .cookies_container h2 {
	 font-size: 26px;
	 line-height: 26px;
	 font-weight: bold;
}
 .cookies_container p {
	 font-size: 16px;
	 line-height: 22px;
}

.accordion-body {
	font-size: 18px;
	color: #000;
}
.testimonial-header h2 {
	font-size: 42px;
}
.fs-18{font-size: 18px;}
.fs-24{font-size: 20px;}
.privacy a{color: #000; text-decoration: none; font-weight: 600;}
.privacy a:hover{color: var(--primary-green); }

.headerbg {
	background: linear-gradient(135deg, #030301 0%, #030301 100%);

}
.Oops{font-size: 44px; font-weight: 600;}
 @media (max-width: 767px) {
.ipad-w{width: 100%;}
    .navbar-nav.ms-auto.align-items-center {
	background: #030400;
	padding: 22px;
}

	 .nav-tabs {
		 gap: 14px;
		 flex-wrap: nowrap;
	}
	 .nav-tabs .nav-link {
		 font-size: 15px;
		 white-space: nowrap;
	}
	 .cookies-statement {
		 padding: 12px 16px;
	}
	 .cookies-btn.text-center {
		 margin-top: 8px;
	}
	 .cookies-statement .cookies-btn ul li a {
		 width: 115px;
		 padding: 9px 23px;
	}

	.pricing-section, .faq-section, .contact-section {
	padding: 50px 20px;
}

.feature-illustration img{width: 100%;}
.accordion-button {
	padding: 1rem;
	font-size: 18px;
}

.testimonial-card {
	padding: 1rem;
}
.faq-section {
	margin: 63px 0px;
}
.hero-content {
	padding-top: 55px;
}
.accordion-body {
	font-size: 16px;
}
.testimonial-header h2 {
	font-size: 29px;
}
.fs-24 {
	font-size: 17px;
}
.fs-18 {
	font-size: 16px;
}
.testimonial-section{ padding-top: 0px;}

.contact-icon {
	width: 36px;
}

.contact-icon img{
	width: 100%;
}
}
