* {
  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;
}

/* 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;
}

.card h5 {
    text-align: left;
    font-size: small;
}

.card h6 {
    text-align: left;
    font-size: small;
    color: white;
}

.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;
}

.card:hover {
  transform: translateY(-5px);
}

.highlight {
  background: linear-gradient(to bottom, #4f46e5, #ef4444);
  color: #fff;
}

.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;
}

/* 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 */
}

/* 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;
}

/* 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%;
  }
}
