:root {
  --primary: #1a2e6c;
  --secondary: #2a4cb6;
  --accent: #f8c51c;
  --dark: #0e1a40;
  --light: #f8f9fa;
  --gray: #6c757d;
  --success: #28a745;
  --danger: #dc3545;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #f8fafc;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

img {
  max-width: 100%;
  height: auto;
}

/* Add minimal CSS for smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Header Styles */
header {
  background: linear-gradient(100deg, var(--dark) 00%, var(--primary) 0%);
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1d3583;
  padding: 10px;
  padding-left: 30px;
  border-radius: 20px 0 20px 0;
  box-shadow: 0 1px 2px #f8c51c;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px;
  box-shadow: 0 2px 6px #0f0f0f;
}

.logo h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: 1px;
  color: #f8c51c;
  text-shadow: 1px 2px 2px #192b66;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 8px 12px;
  border-radius: 15px;
  transition: var(--transition);
  position: relative;
}

nav a:hover {
  background: #eddac185;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  touch-action: manipulation;
}

/* Dropdown container */
nav ul li.dropdown {
  position: relative;
}

nav ul li .dropdown-menu {
  display: none;
  position: absolute;
  top: 120%;
  left: 10;
  background: var(--dark);
  list-style: none;
  padding: 10px 0;
  margin: 10;
  min-width: 120px;
  box-shadow: 0 1px 3px #f8c51c;
  border-radius: 15px;
  z-index: 1000;
}

/* Dropdown menu links */
nav ul li .dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #f8c51c;
  font-size: 0.95rem;
  white-space: nowrap;
}

nav ul li .dropdown-menu li a:hover {
  background: #828383;
  transform: scale(1);
}

/* Show dropdown on hover */
nav ul li.dropdown:hover .dropdown-menu {
  display: block;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(10, 20, 50, 0.85), rgba(10, 20, 50, 0.5)),
    url("images/back.jpg") no-repeat center center/cover;
  color: white;
  padding: 120px 0 100px;
  text-align: center;
  border-radius: 0 0 70px 0;
}

.hero h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(248, 197, 28, 0.3);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(248, 197, 28, 0.4);
  background: #ffd43b;
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  box-shadow: none;
  margin-left: 15px;
}

.btn-secondary:hover {
  background: rgba(248, 197, 28, 0.1);
}

/* Products Section */
.section-title {
  text-align: center;
  margin: 0 0 40px;
  margin-top: 10px;
}

#products {
  scroll-margin-top: 100px;
}

#features {
  scroll-margin-top: 100px;
}

.products {
  margin-top: 0;
  padding-top: 30px;
}

.section-title h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 20px;
  margin-top: 10px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: #e15014;
  border-radius: 2px;
}

.section-title p {
  font-size: 1.7rem;
  color: var(--gray);
  max-width: 700px;
  margin: 25px auto 0;
  text-shadow: 2px 2px 4px #eddac1;
}

.tabs {
  display: flex;
  justify-content: center;
  margin: 40px 0;
  flex-wrap: wrap;
  gap: 10px;
}

.tabss {
  display: flex;
  justify-content: space-evenly;
  margin: 20px 0;
  flex-wrap: wrap;
  gap: 15px;
}

.tab-btn {
  background: white;
  border: none;
  padding: 20px 45px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 3px 12px #192b66;
  margin: 0 5px;
  border-radius: 10px 0 30px 0;
}

.tab-btn.active,
.tab-btn:hover {
  background: #1d3583;
  color: white;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

.categoryy {
  text-align: center;
  margin: 70px 0 0;
  color: var(--gray);
  font-size: 2.2rem;
  text-shadow: 1px 1px 2px #ffd43b;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 100px;
  margin: 70px 0;
}

/*products*/
.flip-box {
  background-color: transparent;
  width: 372px;
  height: 600px;
  border: 1px solid #f1f1f1;
  perspective: 1000px;
  border-radius: 3rem;
}

.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 1s;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 2rem;
  box-shadow: 4px 4px 10px 7px #182b66;
}

.flip-box-front {
  background-color: #d3d3d3;
  color: black;
}

.flip-box-back {
  background-color: #f0f4f8;
  color: white;
  transform: rotateY(180deg);
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f8c51c;
  color: #182b66;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 10px #192b66;
}
.Classicbadge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: hsl(167, 91%, 70%);
  color: #161616;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 10px #e15014;
}

.product-title {
  font-family: "Helvetica", sans-serif;
  color: #182b66;
  margin-top: 17px;
}
.product-titlee {
  font-family: "Helvetica", sans-serif;
  color: #182b66;
  margin-top: 17px;
  text-shadow: 0.5px 0.5px 0.5px #d3d3d3;
  font-weight: 400;
}
.pic {
  border-radius: 0 0 2rem 2rem;
  padding: 20px 0 0 0;
}

.product-meta {
  display: flex;
  justify-content: space-around;
  font-size: 1.2rem;
  color: #e15014;
}

.product-metaa {
  display: flex;
  justify-content: space-around;
  font-size: 1.2rem;
  color: #18181b;
  text-shadow: 1px 2px 2px #f7f3f3;
}

.product-price {
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--primary);
  margin: 15px 0;
}

.product-features {
  background-color: #e15014;
}

.product-title-indicator {
  font-family: "Helvetica", sans-serif;
  color: SteelBlue;
  margin-top: 17px;
  text-shadow: 1px 2px 2px #e6e3e2;
}

.title-with-icon {
  display: flex;
  margin: 10px;
  padding: 9px;
  background-color: #f0f4f8;
  border-radius: 12px;
  box-shadow: 0 2px 10px #192b66;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.check-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #43c0a5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.check-circle::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 14px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  top: 5px;
  left: 10px;
}

.check-circle-indicator {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f8c51c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.check-circle-indicator::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 14px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  top: 5px;
  left: 10px;
}

.title-with-icon h2 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #192b66;
  line-height: 2;
  text-transform: capitalize;
}

.title-with-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 10px #e15014;
}

.title-with-icon:hover .check-circle {
  transform: scale(1.25);
}

.title-with-icon:hover h2 {
  color: #43c0a5;
}

.price-container {
  background: #f3f4f6;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  padding: 15px;
  margin: 40px 80px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 200px;
  height: 160px;
  width: 70%;
  transition: all 0.3s ease;
}

.price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.price-label {
  font-size: 16px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  padding-top: 0;
}

.price-amount {
  font-size: 65px;
  font-weight: 700;
  color: #43c0a5;
  line-height: 1;
  position: relative;
  text-shadow: 1px 2px 2px #e15014;
}

.price-amount::before {
  content: "$";
  font-size: 36px;
  position: absolute;
  top: 10px;
  left: -25px;
  color: #9ca3af;
}

/* Hover effect */
.price-container:hover {
  transform: translateY(-5px);
  transform: scale(1.1);
  box-shadow: 4px 4px 15px #f8c51c;
}

/*product-buttons*/
.product-actions {
  display: flex;
  position: relative;
  gap: 25px;
  justify-content: space-around;
  align-items: center;
  background-color: transparent;
  margin-top: 45px;
  margin-inline: 10px;
  width: 350px;
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
  flex: 1;
  text-align: center;
  border: 2px solid var(--primary);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(26, 46, 108, 0.15);
}

/* Features Section */
.features {
  background: #e7e9e9;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 0 70px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px #192b66;
  text-align: center;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(26, 46, 108, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: #f8c51c;
  text-shadow: 1px 2px 2px #192b66;
  box-shadow: 0 1px 2px #161616;
}

.feature-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.feature-icon img {
  width: 40px;
  height: 40px;
}

/*icons of footer*/
.footer-links img {
  width: 16px;
  height: 16px;
}

.contact-info li img {
  width: 23px;
  height: 23px;
  align-items: center;
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 70px 0 30px;
  border-radius: 70px 0 0 0;
}

.product-footer {
  border-radius: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}
.footer-column .amtfooter {
  font-family: "Montserrat", sans-serif;
  font-size: 1.7rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  color: #f8c51c;
  text-shadow: 1px 2px 2px #090a0c;
}
.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent);
}

.aboutt {
  color: #b0b8d0;
  text-decoration: none;
}



.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #b0b8d0;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-links a i {
  font-size: 0.8rem;
  color: var(--accent);
}

.contact-info {
  list-style: none;
}

.contact-info li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  align-items: flex-start;
  color: #b0b8d0;
}

.contact-info i {
  color: var(--accent);
  font-size: 1.2rem;
  margin-top: 4px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
  text-decoration: none;
}

.social-links a img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  display: block;
}


.social-links a i {
  font-size: 20px;
}
.social-links a:hover {
  transform: translateY(-5px);
}

.social-links a:nth-child(1) i { color: #1877F2; } /* Facebook */
.social-links a:nth-child(2) i { color: #000000; } /* X/Twitter */
.social-links a:nth-child(3) i { color: #E1306C; } /* Instagram */
.social-links a:nth-child(4) i { color: #0A66C2; } /* LinkedIn */
.social-links a:nth-child(5) i { color: #000000; } /* TikTok */
.social-links a:nth-child(6) i { color: #FF0000; } /* YouTube */


.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #b0b8d0;
  font-size: 0.9rem;
}

/*contact-button*/
.contact-button {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #192b66;
  color: #ffffff;
  text-decoration: none;
  border-radius: 9px;
  font-weight: arial;
  transition: background-color 0.3s ease;
  box-shadow: 1px 2px 1px 1px #f8c51c;
  font-family: inherit;
}

.contact-button:hover {
  background-color: #0077cc;
  transform: scale(1.01);
}

/*sticky footer legal*/
.sticky-footer {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #b0b8d0;
  font-size: 0.9rem;
}
.sticky-footer a {
  color: #aaa;
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.3s;
}
.sticky-footer a:hover {
  color: #fff;
}
.sticky-footer .risk-warning {
  font-size: 12px;
  color: #999;
  margin-top: 5px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hidden {
  display: none;
}

/* FAQ Hero Section */
.faq-hero {
  background: linear-gradient(rgba(26, 42, 108, 0.8), rgba(43, 88, 118, 0.8)),
    url("faq.png");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 80px 0;
  margin-bottom: 50px;
  border-radius: 0 0 50px 0;
}

.faq-hero h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  margin-bottom: 20px;
}

.faq-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* legalhero Section */
.legalhero {
  height: 40vh;
  background: linear-gradient(rgba(47, 54, 80, 0.8), rgba(0, 80, 150, 0.6)),
    url("legal.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  border-radius: 0 0 50px 0;
}

.legalhero-legalcontent h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.legalhero-legalcontent p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Main legalcontainer */
.legalcontainer {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  gap: 2rem;
}

/* legalsidebar */
.legalsidebar {
  width: 250px;
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  height: fit-content;
  position: sticky;
  top: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

.legalsidebar h3 {
  margin-bottom: 1.5rem;
  color: #2c3e50;
  font-size: 1.2rem;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.5rem;
}

.legalnav-button {
  display: block;
  width: 100%;
  padding: 0.8rem 1rem;
  margin-bottom: 0.5rem;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  text-decoration: none;
  color: #495057;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: left;
}

.legalnav-button:hover {
  background: #3498db;
  color: white;
  border-color: #2980b9;
  transform: translateY(-2px);
}

.legalnav-button.active {
  background: #2c3e50;
  color: white;
  border-color: #2c3e50;
}

/* legalcontent Area */
.legalcontent {
  flex: 1;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

.legalsection {
  display: none;
  animation: fadeIn 0.5s ease-in;
}

.legalsection.active {
  display: block;
}

.legalsection h2 {
  color: #2c3e50;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid #3498db;
  padding-bottom: 0.5rem;
}

.legalsection h3 {
  color: #34495e;
  font-size: 1.4rem;
  margin: 2rem 0 1rem 0;
  border-left: 4px solid #3498db;
  padding-left: 1rem;
}

.legalsection p {
  margin-bottom: 1.2rem;
  text-align: justify;
  color: #555;
}

.legalsection ul {
  margin: 1rem 0 1.5rem 2rem;
}

.legalsection li {
  margin-bottom: 0.5rem;
  color: #555;
}

.legalhighlight {
  background: #fff3cd;
  padding: 1rem;
  border-left: 4px solid #ffc107;
  margin: 1.5rem 0;
  border-radius: 4px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FAQ Section */
.faq-section {
  padding: 50px 0;
}

.faqsection-title {
  text-align: center;
  margin-bottom: 50px;
}

.faqsection-title h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  color: #1a2a6c;
  margin-bottom: 15px;
}

.faqsection-title p {
  color: #666;
  font-size: 18px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 1px 5px #192b66;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  background: #f8f9fa;
  transition: background 0.3s;
}
.faq-note {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  background: #b3b5b8;
}

.faq-question:hover {
  background: #b3b5b8;
}

.faq-question i {
  transition: transform 0.3s;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer span {
  color: #e15014;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Contact CTA */
.contact-cta {
  background: linear-gradient(135deg, #1a2a6c, #2b5876);
  color: white;
  text-align: center;
  padding: 60px 0;
  margin: 50px 0;
  border-radius: 10px;
}

.contact-cta h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  margin-bottom: 20px;
}

.contact-cta p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 18px;
}

.faqbtn {
  display: inline-block;
  background: #43c0a5;
  color: white;
  padding: 12px 30px;
  border-radius: 30px 0 20px 0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 5px #070707;
}

.faqbtn:hover {
  background: #3abab1;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px #f8c51c;
}

/*elite-Sv1*/
/* Hero Section */
.prohero {
  background: #1a2e6c;
  color: white;
  padding: 40px 0;
  border-radius: 0 0 40px 0;
}

.prohero .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 0 20px;
}

.procontainer {
  width: 100%;
  text-align: left;
  order: 1;
}

.imageContainer {
  min-width: 50%;
  width: 100%;
  max-height: 90vh;
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: auto;
}

.imageContainer.has-image {
  background-size: contain;
  height: auto;
}

.imageContainer img {
  box-shadow: 1px 2px 1px #f8c51c;
  border-radius: 20px 0 20px 0;
}

.prohero h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 20px;
  opacity: 0.9;
  line-height: 1.4;
}

.category-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 1px 2px 1px #f8c51c;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* for Safari */
}

.price-display {
  font-size: 2rem;
  font-weight: bold;
  margin: 15px 0;
  text-shadow: 2px 2px 4px rgba(10, 10, 10, 0.89);
  color: #43c0a5;
}

.probuy-now-btn {
  display: inline-block;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(53, 83, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.probuy-now-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.6);
}

/* Main Content */
.main-content {
  background: white;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.content-section {
  padding: 40px 0;
}

/* Image Gallery */
.gallery-section {
  background: #f8fafc;
}

.prosection-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 70px;
  color: #1a2e6c;
  font-weight: 600;
  padding: 0 20px;
}

.gallery-container {
  position: relative;
  width: 100%;
  max-width: 95vw;
  max-height: 95vh;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 1px 5px #09122f;
  background: #f8fafc;
}

.gallery-slides {
  display: flex;
  transition: transform 0.6s ease;
  width: 100%;
  height: 100%;
}

.gallery-slide {
  min-width: 100%;
  width: 100%;
  max-height: 90vh;
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: auto;
}

.gallery-slide.has-image {
  background-size: contain;
  height: auto;
}

.gallery-slide.no-image {
  height: 500px;
  background-size: cover;
}

.slide-content {
  text-align: center;
  color: #010516;
  padding: 40px;
  max-width: 100%;
}

.preslide-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: #dd602b;
  font-weight: 600;
  text-shadow: 1px 1px 2px #051952;
}

.preslide-desc {
  font-size: 1.1rem;
  text-align: left;
  margin: 0 auto 20px;
  color: #c2bfbe;
  font-weight: 300;
  line-height: 1.2;
  max-width: 1000px;
  padding-bottom: 30px;
  list-style: none;
  padding-left: 0;
}

.preslide-desc li {
  margin: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.preslide-desc-two {
  font-size: 1.1rem;
  text-align: left;
  margin: 0 auto 20px;
  color: #c2bfbe;
  font-weight: 300;
  line-height: 1.8;
  max-width: 1000px;
  padding-bottom: 30px;
  list-style: none;
  padding-left: 0;
}

.preslide-desc-two li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.trust-icon-two {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: #10b981;
  margin-right: 15px;
  line-height: 1.8;
}

.gallery-nav {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 90%;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(70, 33, 8, 0.5);
  cursor: pointer;
  transition: all 0.5s;
}

.gallery-dot.active {
  background: #e15014;
  transform: scale(1.3);
}

.gallery-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #e15014;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  color: #09122f;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 4px 2px #09122f;
  z-index: 10;
}

.gallery-arrows:hover {
  background: #f8c51c;
  transform: translateY(-50%) scale(1.1);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.slide1 {
  background: linear-gradient(135deg, #667eea 0%, #09122f 100%);
}

/* Show desktop by default */
.gallery-desktop {
  display: block;
}
.gallery-mobile {
  display: none;
}

@media (max-width: 700px) {
  .gallery-desktop {
    display: none !important;
  }
  .gallery-mobile {
    display: block !important;
  }
}

/* Video Section */
.video-section {
  background: white;
}

.video-container {
  max-width: 95vw;
  margin: 0 auto;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.video-placeholder {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  background: #000;
  overflow: hidden;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 107, 53, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.play-button::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 15px solid white;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}

.play-button:hover {
  box-shadow: 0 4px 12px #fca403;
}

#videoPlayer {
  width: 100%;
  height: auto;
  display: block;
}

/* proFeatures Section */
.profeatures-section {
  background: #f8fafc;
}

.profeatures-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.profeature-card {
  background: white;
  padding: 25px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 1px 1px 2px 2px #1d3583;
  transition: transform 0.3s;
}

.profeature-card:hover {
  transform: translateY(-5px);
}

.profeature-icon {
  margin-bottom: 15px;
  font-size: 3rem;
  color: #2563eb;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 20px;
  color: white;
  position: relative;
}

.profeature-icon svg {
  width: 40px;
  height: 40px;
}

.profeature-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #1e293b;
  font-weight: 600;
}

.profeature-desc {
  color: #64748b;
  line-height: 1.5;
  font-size: 0.95rem;
}

.probuy-now-btntwo {
  display: inline-block;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  padding: 20px 40px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(53, 83, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.probuy-now-btntwo:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.pprice {
  margin-left: 15px;
  font-size: 1.5rem;
  text-shadow: 4px 4px 10px rgba(10, 10, 10, 0.4);
}

/* Responsive adjustments */
@media (min-width: 480px) {
  .prohero h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .prosection-title {
    font-size: 2rem;
  }

  .gallery-arrows {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .profeatures-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .prohero {
    padding: 60px 0;
  }

  .prohero .inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .procontainer {
    text-align: left;
    order: 1;
    flex: 1;
  }

  .imageContainer {
    order: 2;
    flex: 1;
    justify-content: flex-end;
  }

  .prohero h1 {
    font-size: 2.5rem;
  }

  .prosection-title {
    font-size: 2.2rem;
  }

  .gallery-container {
    max-width: 90%;
  }

  .slide-content {
    padding: 30px;
  }

  .slide-title {
    font-size: 1.5rem;
  }

  .slide-desc {
    font-size: 1.1rem;
  }

  .profeatures-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .profeature-card {
    padding: 30px;
  }

  .trust-items {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .prohero h1 {
    font-size: 3rem;
  }

  .prosection-title {
    font-size: 2.5rem;
  }

  .gallery-container {
    max-width: 95vw;
  }

  .gallery-arrows {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }

  .prev {
    left: 20px;
  }

  .next {
    right: 20px;
  }

  .profeature-icon svg {
    width: 50px;
    height: 50px;
  }

  .profeature-title {
    font-size: 1.4rem;
  }
}

@media (min-width: 1200px) {
  .prohero .inner {
    padding: 0;
  }

  .prohero h1 {
    font-size: 3.5rem;
  }

  .content-section {
    padding: 80px 0;
  }
}

@media screen and (min-width: 250px) and (max-width: 374px) {
  .price-container {
    display: none;
  }
  .flip-box {
    background-color: transparent;
    width: 98%;
    max-height: 460px;
    border: 1px solid #f1f1f1;
    border-radius: 3rem;
    align-items: center;
  }
  .product-actions {
    display: flex;
    position: relative;
    gap: 10px;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    margin-top: 90px;
    margin-inline: 1px;
    max-width: 95%;
  }
  .btn-small {
    padding: 10px 10px;
    font-size: 0.8rem;
    flex: 1;
    text-align: center;
    border: 2px solid var(--primary);
  }

  .flip-box-front,
  .flip-box-back {
    box-shadow: 1px 1px 5px 2px #182b66;
  }
}

@media screen and (min-width: 375px) and (max-width: 699px) {
  .product-actions {
    display: flex;
    position: relative;
    gap: 20px;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    margin-top: 50px;
    width: 340px;
    margin-inline-start: 0;
  }
  .btn-small {
    font-size: 0.8rem;
    max-width: 140px;
    flex: 1;
    text-align: center;
    border: 2px solid var(--primary);
  }
}

@media screen and (min-width: 700px) and (max-width: 770px) {
  .product-actions {
    display: flex;
    position: relative;
    gap: 15px;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    margin-top: 45px;
    width: 330px;
    margin-inline-start: 0;
  }
  .btn-small {
    font-size: 0.8rem;
    max-width: 140px;
    flex: 1;
    text-align: center;
    border: 2px solid var(--primary);
  }
  .btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
  }
}

@media screen and (min-width: 250px) and (max-width: 389px) {
  .flip-box {
    background-color: transparent;
    width: 98%;
    height: 554px;
    border: 1px solid #f1f1f1;
    border-radius: 3rem;
    align-items: center;
  }
  .price-container {
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 15px;
    margin: 0 80px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 200px;
    height: 160px;
    width: 70%;
    transition: all 0.3s ease;
  }
  .price-container:hover {
    transform: translateY(-3px);
    box-shadow: 4px 4px 15px #f8c51c;
  }
  .product-titlee {
    font-family: "Helvetica", sans-serif;
    color: #182b66;
    margin-top: 17px;
    text-shadow: 0.5px 0.5px 0.5px #d3d3d3;
    font-weight: 300;
    margin-right: 70px;
  }
  .product-title {
    font-family: "Helvetica", sans-serif;
    color: #182b66;
    margin-top: 17px;
    text-shadow: 0.5px 0.5px 0.5px #d3d3d3;
    font-weight: 300;
    margin-right: 70px;
  }
  footer {
    border-radius: 70px 0 0 0;
  }
}

@media screen and (min-width: 541px) and (max-width: 768px) {
  .flip-box {
    background-color: transparent;
    width: 98%;
    height: 520px;
    border: 1px solid #f1f1f1;
    border-radius: 3rem;
    align-items: center;
    gap: 20px;
  }
  .price-container {
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 17px;
    margin: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 220px;
    height: auto;
    width: 70%;
    transition: all 0.3s ease;
  }
  .price-container:hover {
    transform: translateY(-3px);
    box-shadow: 4px 4px 15px #f8c51c;
  }

  .product-titlee {
    font-family: "Helvetica", sans-serif;
    color: #182b66;
    margin-top: 17px;
    text-shadow: 0.5px 0.5px 0.5px #d3d3d3;
    font-weight: 300;
    margin-right: 50px;
  }
  .price-amount {
    font-size: 45px;
    font-weight: 700;
    color: #43c0a5;
    line-height: 0.5;
    position: relative;
    text-shadow: 1px 2px 2px #e15014;
  }

  .price-amount::before {
    content: "$";
    font-size: 36px;
    position: absolute;
    top: 2px;
    left: -25px;
    color: #9ca3af;
  }
}
/* Responsive */
@media screen and (min-width: 1100px) and (max-width: 4000px) {
  .gallery-container {
    max-width: 98vw;
  }
  .play-button {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
  }
}

@media (max-width: 1200px) {
  .gallery-container {
    max-width: 98vw;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .price-display {
    font-size: 2rem;
  }

  .nav-links {
    display: none;
  }

  .trust-items {
    flex-direction: column;
    gap: 20px;
  }

  .gallery-slide {
    min-height: 300px;
    max-height: 60vh;
  }

  .gallery-slide.no-image {
    height: 350px;
  }

  .slide-content {
    padding: 20px;
  }

  .slide-title {
    font-size: 1.8rem;
  }

  .slide-desc {
    font-size: 1rem;
  }

  .gallery-arrows {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .prev {
    left: 15px;
  }

  .next {
    right: 15px;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero h2 {
    font-size: 3rem;
  }

  nav ul {
    gap: 15px;
  }

  .product-detail-container {
    grid-template-columns: 1fr;
  }

  .video-container iframe {
    height: 300px;
  }
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark);
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    transform: translateY(-150%);
    transition: var(--transition);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }

  nav ul.active {
    transform: translateY(0);
  }

  nav ul li {
    width: 100%;
    text-align: center;
  }

  nav a {
    display: block;
    padding: 15px;
  }

  .hero {
    padding: 100px 0 80px;
  }

  .hero h2 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .section-title h2 {
    font-size: 2.3rem;
  }

  .payment-options {
    flex-wrap: wrap;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 576px) {
  .btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }

  .btn-secondary {
    margin-left: 0;
  }

  .hero h2 {
    font-size: 2.2rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .product-gallery-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .legalhero-legalcontent h1 {
    font-size: 2.5rem;
  }

  .legalhero-legalcontent p {
    font-size: 1.1rem;
  }

  .legalcontainer {
    flex-direction: column;
    padding: 1rem;
  }

  .legalsidebar {
    width: 100%;
    position: static;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #1a2a6c;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  nav ul.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .faq-hero h2 {
    font-size: 32px;
  }

  .faqsection-title h2 {
    font-size: 28px;
  }
}

/*resposive for elite-sv1*/
@media (max-width: 1024px) {
  .prohero .inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .imageContainer {
    justify-content: center;
  }

  .prohero h1 {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .price-display {
    font-size: 2.5rem;
  }

  .original-price {
    font-size: 1.3rem;
  }

  .slide-title {
    font-size: 2rem;
  }

  .slide-desc {
    font-size: 1.1rem;
  }

  .slide-content {
    padding: 30px;
  }

  .gallery-arrows {
    width: 40px;
    height: 35px;
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .procontainer {
    text-align: left;
    order: 1;
    flex: 1;
  }
  .prohero {
    padding: 60px 0 80px;
  }

  .prohero h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .category-badge {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  .probuy-now-btn {
    font-size: 0.75rem;
    padding: 8px 16px;
  }

  .gallery-dot {
    width: 12px;
    height: 12px;
  }

  .slide-title {
    font-size: 1.8rem;
  }

  .slide-desc {
    font-size: 1rem;
  }

  .video-container {
    max-height: 60vh;
  }

  .play-button {
    width: 60px;
    height: 60px;
  }

  .play-button::after {
    border-left: 16px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }
}

@media (max-width: 480px) {
  .prohero h1 {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .price-display {
    font-size: 2rem;
  }

  .original-price {
    font-size: 1rem;
  }

  .probuy-now-btn {
    font-size: 0.65rem;
    padding: 6px 12px;
  }

  .gallery-dot {
    width: 10px;
    height: 10px;
  }

  .slide-title {
    font-size: 1.5rem;
  }

  .slide-desc {
    font-size: 0.9rem;
  }

  .slide-content {
    padding: 20px;
  }

  .video-container {
    max-height: 50vh;
  }

  .play-button {
    width: 50px;
    height: 50px;
  }

  .play-button::after {
    border-left: 14px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }
}

@media (max-width: 420px) {
  .prohero {
    padding: 40px 0 60px;
  }

  .prohero .inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 0 15px;
  }

  .imageContainer {
    justify-content: center;
  }

  .imageContainer img {
    width: 100%;
    height: auto;
    border-radius: none;
  }

  .gallery-slides {
    display: flex;
    transition: transform 0.6s ease;
    width: 100%;
  }

  .gallery-slide {
    min-width: 100%;
    width: 100%;
    max-height: 90vh;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: auto;
  }
  .prosection-title {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 10px;
    color: #1a2e6c;
    font-weight: 500;
    padding: 0 20px;
  }

  .prohero h1 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .category-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
    margin-bottom: 30px;
  }

  .price-display {
    font-size: 1.8rem;
    margin: 15px 0;
  }

  .original-price {
    font-size: 1rem;
    margin-right: 10px;
  }

  .probuy-now-btn {
    font-size: 0.7rem;
    padding: 8px 14px;
  }

  .urgency-text {
    font-size: 0.8rem;
  }

  .slide-title {
    font-size: 1.4rem;
  }

  .slide-desc {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  .gallery-dot {
    width: 10px;
    height: 10px;
  }

  .video-container {
    max-height: 50vh;
  }

  .play-button {
    width: 50px;
    height: 50px;
  }

  .play-button::after {
    border-left: 14px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .logo img {
    height: 40px;
    box-shadow: 0 2px 6px #0f0f0f;
  }

  .logo h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: #f8c51c;
    text-shadow: 1px 2px 2px #192b66;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-summary {
    position: static;
    order: -1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .payment-methods {
    grid-template-columns: 1fr 1fr;
  }

  .checkout-title {
    font-size: 2rem;
  }

  .purchase-btn {
    padding: 18px 30px;
    font-size: 1.1rem;
  }
}

/* Trust Signals */
.trust-section {
  background: white;
  text-align: center;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.trust-icon {
  font-size: 2rem;
  color: #10b981;
}

.trust-text {
  font-weight: 600;
  color: #1e293b;
}

/* CTA Section */
.procta-section {
  background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
  color: white;
  text-align: center;
  border-radius: 70px 0 0 0;
}

.procta-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.procta-desc {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.ctacontainer {
  flex: 1;
  text-align: center;
}

.probuy-now-btntwo {
  display: inline-block;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  padding: 20px 40px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(53, 83, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.probuy-now-btntwo:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.pprice {
  margin-left: 15px;
  font-size: 1.5rem;
  text-shadow: 4px 4px 10px rgba(10, 10, 10, 0.4);
}

/*contact-us.html*/
form {
  max-width: 800px;
  margin: auto;
  margin-bottom: 150px;
  margin-top: 80px;
  padding: 1rem;
  background: #f8ebdc;
  border-radius: 30px 20px 20px 0;
  box-shadow: 2px 2px 5px 2px #192b66;
}

.form-group {
  margin-bottom: 1rem;
  color: #192b66;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

input,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: none;
}

.contact-us-button {
  background-color: #192b66;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

.contact-us-button:hover {
  background-color: #0077cc;
}

.backg {
  background-color: #eff3f3;
}
.contact-hero {
  padding: 30px 0 5px;
  text-align: center;
}

.contactcontainer h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  margin-bottom: 10px;
  color: rgb(105, 195, 247);
  text-shadow: 1px 1px 1px #58595c;
}

.contactcontainer p {
  font-size: 1.75rem;
  max-width: 500px;
  margin: 0 auto;
  color: rgb(105, 195, 247);
  text-shadow: 1px 1px 1px #c7c2c2;
}

/* File Upload Styles */
.file-upload-area {
  border: 2px dashed #e1e8ed;
  border-radius: 6px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  background: #f8f9fa;
}

.file-upload-area:hover {
  border-color: #667eea;
  background: #f0f4ff;
}

.file-upload-area.drag-over {
  border-color: #667eea;
  background: #e8edff;
}

.file-upload-label {
  cursor: pointer;
  color: #667eea;
  font-weight: 500;
}

.file-upload-hint {
  font-size: 12px;
  color: #667eea;
  margin-top: 8px;
}

#fileInput {
  display: none;
}

.file-list {
  margin-top: 15px;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 6px;
  margin-bottom: 8px;
}

.file-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.file-icon {
  width: 32px;
  height: 32px;
  background: #667eea;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

.file-details {
  flex: 1;
  min-width: 0;
}

.file-name {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-size {
  font-size: 12px;
  color: #666;
}

.remove-file {
  background: #ff4444;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  transition: background 0.3s;
  flex-shrink: 0;
}

.remove-file:hover {
  background: #cc0000;
}

.error-message {
  color: #ff4444;
  font-size: 12px;
  margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  form {
    margin: 40px 20px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 60px 20px;
    border-radius: 0 0 50px 0;
  }

  .contactcontainer h2 {
    font-size: 30px;
  }

  .contactcontainer p {
    font-size: 16px;
  }

  form {
    padding: 20px;
    border-radius: 20px 0 0 0;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 50px 15px;
    border-radius: 0 0 30px 0;
  }

  .contactcontainer h2 {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .contactcontainer p {
    font-size: 15px;
  }

  form {
    margin: 30px 15px;
    padding: 15px;
    border-radius: 15px 0 0 0;
  }

  input,
  textarea {
    padding: 10px;
    font-size: 14px;
  }

  .contact-us-button {
    padding: 10px 20px;
    font-size: 15px;
    width: 100%;
  }
}

@media (max-width: 320px) {
  .contact-hero {
    padding: 40px 10px;
    border-radius: 0 0 20px 0;
  }

  .contactcontainer h2 {
    font-size: 22px;
  }

  .contactcontainer p {
    font-size: 14px;
  }

  form {
    margin: 20px 10px;
    padding: 12px;
  }
}

/*features secton for custom indicators*/
.featuress-section {
  padding: 80px 20px;
  min-height: 100vh;
}

.containerr {
  max-width: 1200px;
  margin: 0 auto;
}

.sectionn-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary);
  font-weight: 500;
  text-shadow: 1px 2px 2px #e0d255;
}

.sectionn-subtitle {
  text-align: center;
  font-size: 1.4rem;
  color: #1e293b;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.featuress-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.featuree-card {
  background: whitesmoke;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 1px 1px 1px 2px SteelBlue;
  border-radius: 40px 0 0 0;
}

.featuree-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.featuree-card:hover::before {
  transform: scaleX(1);
}

.featuree-card:hover {
  transform: translateY(-10px);
}

.featuree-icon {
  width: 80px;
  height: 80px;
  background: SteelBlue;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: #f8c51c;
  text-shadow: 1px 2px 2px #192b66;
  box-shadow: 1px 3px 3px #161616;
}

.featuree-card:hover .feature-icon {
  transform: rotateY(180deg) scale(1.1);
}

.featuree-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: SteelBlue;
}

.featuree-desc {
  color: #747171;
  font-size: 1rem;
  line-height: 1.6;
}

.highlightt {
  color: #f8c51c;
  font-weight: 600;
}

@media (max-width: 768px) {
  .featuress-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sectionn-title {
    font-size: 2.2rem;
  }

  .featuree-card {
    padding: 30px 20px;
  }
}

/* ══════════════════════════════════════
   GUMROAD COMING SOON PAGE
══════════════════════════════════════ */

.coming-soon-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    min-height: calc(100vh - 200px);
}

.coming-soon-wrapper::before,
.coming-soon-wrapper::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}
.coming-soon-wrapper::before {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #1d4ed840 0%, transparent 70%);
    top: -120px; left: -160px;
}
.coming-soon-wrapper::after {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #06b6d425 0%, transparent 70%);
    bottom: -100px; right: -100px;
}

.notice-card {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #0d1526ee, #0a1020ee);
    border: 1px solid #1e3a5f;
    border-radius: 20px;
    max-width: 640px;
    width: 100%;
    padding: 56px 48px 52px;
    text-align: center;
    box-shadow: 0 0 60px #1d4ed820, 0 24px 80px #00000060;
    animation: cardIn .7s cubic-bezier(.22,1,.36,1) both;
}

@keyframes cardIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.icon-stack {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.platform-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.platform-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.icon-gumroad {
    background: #ff90e820;
    border: 1px solid #ff90e840;
    color: #ff90e8;
    position: relative;
}
.icon-gumroad::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 4px,
        #ff90e808 4px,
        #ff90e808 8px
    );
}

.platform-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #94a3b8;
}

.coming-soon-tag {
    display: inline-block;
    background: linear-gradient(90deg, #ff90e820, #ff90e810);
    border: 1px solid #ff90e840;
    color: #ff90e8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.notice-headline {
    font-size: clamp(1.5rem, 4vw, 2.1rem);
    font-weight: 700;
    line-height: 1.25;
    color: #f1f5f9;
    margin-bottom: 16px;
}

.notice-headline span {
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.notice-body {
    font-size: 1rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 36px;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.btn-payhip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    font-size: .95rem;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 0 24px #3b82f680;
}
.btn-payhip:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 36px #3b82f680;
}

.btn-products {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #e2e8f0;
    font-size: .95rem;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid #1e3a5f;
    transition: border-color .2s, background .2s;
}
.btn-products:hover {
    border-color: #3b82f6;
    background: #1d4ed810;
}

.card-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #1e3a5f, transparent);
    margin: 36px 0 28px;
}

.notify-text {
    font-size: .85rem;
    color: #94a3b8;
}
.notify-text a {
    color: #3b82f6;
    text-decoration: none;
}
.notify-text a:hover { text-decoration: underline; }

@media (max-width: 600px) {
    .notice-card { padding: 40px 28px 36px; }
}
