html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Container Class */
.container {
  width: 1320px;
  max-width: 100%;
  padding: 50px 40px;
  margin: 0 auto;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f8f8f8;
  text-align: center;
  margin: 0;
  padding: 0;
}

.fhd-flex {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
}

.fhd-column-flex {
  flex: 1;
}


/* Gradient Background */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* Base Styling */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* 🔹 Top Bar */
.top-bar {
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 40px;
  height: 60px;
}

.logo {
  height: 45px;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart {
  text-decoration: none;
  color: gray;
  font-weight: 500;
}

/* 🔸 Currency Dropdown */
.currency-dropdown {
  position: relative;
  cursor: pointer;
}

.currency-toggle {
  color: gray;
  font-weight: 500;
}

.currency-menu {
  position: absolute;
  top: 30px;
  right: 0;
  background: white;
  border-radius: 6px;
  display: none;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  min-width: 100px;
  z-index: 20;
}

.currency-menu li {
  padding: 8px 16px;
}

.currency-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.currency-menu a:hover {
  color: #e85532;
}

/* Active Dropdown */
.currency-dropdown.active .currency-menu {
  display: flex;
}

/* 🔹 Bottom Navigation Bar */
.navbar-main {
  background: linear-gradient(to right, #2e37b8, #704b8e, #e85532);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  height: 70px;
}

/* Navigation Links */
.nav-links ul {
  list-style: none;
  display: flex;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffd700;
}

/* Dropdown Menu (for nav) */
.navbar .nav-links .dropdown-menu{
  position: absolute;
  top: 40px;
  left: 0;
  background: #07004d;
  border-radius: 6px;
  display: none;
  flex-direction: column;
  padding: 10px 0;
  min-width: 184px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

/* When Dropdown is Active */
.dropdown.active .dropdown-menu {
  display: flex;
}

.dropdown-menu li {
  padding: 10px;
}

.dropdown-menu a {
  color: white;
  font-weight: 500;
}

.dropdown-menu a:hover {
  color: #ffd700;
}

/* Right Side Button */
.account-btn {
  color: white;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid white;
  padding: 8px 18px;
  border-radius: 6px;
  transition: 0.3s;
}

.account-btn:hover {
  background-color: white;
  color: #07004d;
}




/* Slider Background */
.slider {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  animation: sliderBackground 15s infinite linear;
}

/* Overlay Text */
.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 800px;
}

.overlay h1 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
}

.overlay p {
  font-size: 16px;
  margin-bottom: 30px;
  color: white;
}

/* Icons */
.icons {
  margin-bottom: 30px;
}

.icons span svg {
  width: 40px;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  fill: white;
}


/* Button */
.primary_btn {
  display: inline-block;
  padding: 15px 50px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  color: white;
  border-radius: 30px;
  background: linear-gradient(to right, #4a7ff2, #f25a4a);
  transition: 0.3s;
}

.primary_btn:hover {
  opacity: 0.85;
}

/* Background Slider Animation */
@keyframes sliderBackground {
  0% {
    background-image: url('assets/slider.bg1.png');
  }

  33% {
    background-image: url('assets/slider.bg2.png');
  }

  66% {
    background-image: url('assets/slider.bg3.png');
  }

  100% {
    background-image: url('assets/slider.bg4.png');
  }
}

/* Stats Section */
.stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 124px;
  background: linear-gradient(to right, #3b3ee1, #93388d, #e84d2e);
  color: white;
  text-align: center;
}

.stat-item h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
}

/* Tabs Section */
.title {
  font-size: 28px;
  color: #1d4ed8;
}

.tab {
  background: #e5e7eb;
  border: none;
  padding: 10px 20px;
  margin: 0 5px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
}

.tab.active {
  background: #ef4444;
  color: #fff;
}

.plans-container {
  display: flex;
  justify-content: center;
}

.plans {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* .fhd-card h5 {
    text-align: left;
    font-size: small;
} */

.fhd-card h6 {
  text-align: left;
  font-size: small;
  color: white;
}

.fhd-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.2s;
}

.fhd-card:hover {
  transform: translateY(-5px);
}

.highlight {
  background: linear-gradient(to bottom, #4f46e5, #ef4444);
  color: #fff;
}

.fhd-card h3 {
  margin: 10px 0;
  font-size: 20px;
}

.price {
  font-size: 24px;
  font-weight: bold;
  color: #1d4ed8;
}

.highlight .price {
  color: #fff;
}

.btn {
  background: #2b55cc;
  font-weight: bold;
  transition: 0.3s;
  color: #fff;
  border: none;
  padding: 12px 20px;
  margin: 15px 0;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  background: #1e3d99;
}

ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

ul li {
  margin: 12px 0;
}

/* Free Trial on Page */
.trial-detail {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.2s;
  border-radius: 12px;
}

.trial-detail:hover {
  transform: translateY(-5px);
}

.trial-tag h4 {
  background: #2b55cc;
  color: white;
  font-weight: 500;
  max-width: 80px;
  text-align: center;
  border-radius: 30px;
  font-size: 15px;
  padding: 5px;
  margin-bottom: 20px;
}

/* Free Trial Page */
.trial-colum {
  padding: 0px 40px;
  width: 1320px;
  margin: 0 auto;
}

/* .trial-tag {
    text-align: left;
} */

.trial-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

/* Pricing Section Background */
.pricing {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 50px 20px;
  background: linear-gradient(to right, #3b6edc, #6a4c89, #c04b48, #e84d2e);
  font-family: Arial, Helvetica, sans-serif;
}

/* Tag Styling */
.tag {
  display: inline-block;
  background: #f7a600;
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 10px;
}

/* Heading */
.fhd-card h3 {
  font-size: 18px;
  margin: 10px 0;
  color: #111;
}


/* Image with Text */
.fhd-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Left Image */
.fhd-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 6px;
}

/* Right Content */
.fhd-content {
  flex: 1;
}

.fhd-content h2 {
  font-size: 32px;
  font-weight: bold;
  color: #2b55cc;
  /* Blue heading */
  margin-bottom: 20px;
  position: relative;
}

.fhd-content h2::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 0;
  width: 20%;
  height: 3px;
  background: #e54b2e;
  /* Orange underline */
}

.fhd-content p {
  font-size: 16px;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Button */
/* .btn {
  display: inline-block;
  padding: 12px 30px;
  background: #2b55cc; /* Blue button */
color: #fff;
font-size: 18px;
font-weight: bold;
border-radius: 50px;
text-decoration: none;
transition: 0.3s;
}

*/
/* .btn:hover {
  background: #1e3d99; /* Darker blue on hover */
}

*/

/* Features Section */
section.features-section {
  background: linear-gradient(to right, #3b3ee1, #93388d, #e84d2e);
}

.features {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  gap: 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.feature-card {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
  color: #2b55cc;
  /* Blue headings */
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.feature-card p {
  color: #000;
  font-size: 15px;
  line-height: 1.6;
}

/* Footer Section */
.footer {
  background: linear-gradient(to right, #3b6edc, #6a4c89, #c04b48, #e84d2e);
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  text-align: center;
  padding: 20px 40px;
  position: relative;
}

/* Scroll To Top Button */
.scroll-top {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #2b55cc;
  /* Blue button */
  color: white;
  font-size: 18px;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
}

.scroll-top:hover {
  background: #1e3d99;
  /* Darker blue hover */
}



/* Responsive Design */
@media (max-width: 992px) {
  .features {
    flex-wrap: wrap;
  }

  .feature-card {
    flex: 1 1 45%;
  }
}

@media (max-width: 600px) {
  .feature-card {
    flex: 1 1 100%;
  }
}