* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

a {
  text-decoration: none;
  color: hwb(0 0% 100%);
  font-size: 20px;
  font-weight: 600;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Top Contact Bar */
.top-bar {
  background: hsl(0, 0%, 0%);
  font-size: 14px;
}

.top-bar .contact-info a {
  margin-right: 15px;
  color: #fffcfc;
  font-size: 112%;
}

.top-bar .social-icons a {
  margin-left: 10px;
  color: #fffefe;
}

/* Navbar */
.navbar {
  background: #ffffff;
  border-bottom: 1px solid #010000;
  position: relative;
}

/* Hamburger */
#nav-toggle {
  display: none;
}

.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-icon span {
  height: 3px;
  width: 25px;
  background: #ffffff;
  display: block;
}

/* Nav */
.nav_flex{
  width: 100%;
  display:flex;
  align-items: center;
  justify-content: space-between;
}
.nav ul {
  list-style: none;
}

.nav li {
 display: inline-block;
 margin-left: 10px;
}

.nav li a {
  padding: 10px;
  display: block;
}

.dropdown{
  position: relative;
}

.dropdown_menu{
  position: absolute;
  display: none;
  width: 180px;
  height: auto;
  padding: 15px;
  border-radius: 10px;
  top: 100%;
  left: 0%;
  z-index: 999;
  background-color: #fff;

}
.dropdown:hover .dropdown_menu{
  display: inline-block;
}

/* Toggle bar */
.menu-icon {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 1001;
}

.menu-icon span {
  height: 3px;
  width: 25px;
  background: black;
  display: block;
}

#nav-toggle {
  display: none;
}

.nav ul.menu {
  display: flex;
  flex-direction: row;
}

















/* Banner Section */
/* === Banner section === */

.banner_section {
  position: relative;
  width: 100%;
  height: 536px;
  overflow: hidden;
  margin-bottom: 0;
  padding-bottom: 0;
}


.banner_video {
  width: 100%;
  height: 50vh;
  /* vh = 50% of viewport height */
  object-fit: cover;
  z-index: 0;
}


.banner_section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.banner_content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  color: white;
  padding: 60px;
  max-width: 800px;
  background: transparent;
}

.banner_content h1 {
  margin-bottom: 16px;
  line-height: 1.3;
  font-size: 35px;
  margin-top: 19px;
}


.banner_content p {
  margin-bottom: 10px;
  /* space below paragraph */
  line-height: 2;
}

.banner_content h3 {
  margin-top: 24px;
  line-height: 1.6;
  font-size: 18px;
  text-align: left;
}

/* Animations */
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Classes to trigger animation */
.slide-in-left {
  opacity: 0;
  animation: slideInLeft 1s ease-out forwards;
}

.slide-in-right {
  opacity: 0;
  animation: slideInRight 1s ease-out forwards;
}

.slide-up {
  opacity: 0;
  animation: slideUp 1s ease-out forwards;
}

/* Delays */
.delay-1 {
  animation-delay: 0.5s;
}

.delay-2 {
  animation-delay: 1s;
}

.delay-3 {
  animation-delay: 1.5s;
}

/* === Buttons === */
.btn_grp {
  margin-top: 20px;
}

.readmore_btn,
.contact_btn {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  margin-right: 15px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.readmore_btn {
  background-color: rgb(59 153 48);
  color: #ffffff;
}

.contact_btn {
  background-color: rgb(59 153 48);
  color: #ffffff;
}

.readmore_btn:hover,
.contact_btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background-color: #4bd63c;

}

@keyframes popUpBottom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.pop-up-bottom {
  opacity: 0;
  animation: popUpBottom 1s ease-out forwards;
}

.btn_grp_bottom {
  position: absolute;
  bottom: 26%;
  left: 60px;
  z-index: 2;
}

/* About Section */
.about_section {
  padding: 6px 6px;
  background-color: #f9f9f9;
  margin-top: 0;
  padding-top: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Layout Row */
.about_row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
}

/* Left Content */
.about_content {
  flex: 1 1 500px;
}

.section_label {
  font-size: 16px;
  color: rgb(59 153 48);
  ;
  font-weight: 600;
  margin-bottom: 10px;
}

.about_content h1 {
  font-size: 32px;
  margin-bottom: 30px;
}

.about_content h1 span {
  color: rgb(59 153 48);
  ;
}

/* About Features */
.about_us {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.abt_flex_box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.icoIbox {
  font-size: 24px;
  color: rgb(59 153 48);
  ;
  min-width: 40px;
}

.flex_cnt h5 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
}

.flex_cnt h6 {
  font-size: 15px;
  color: #555555;
  font-weight: 400;
}

/* Right Image */
.about_image {
  flex: 1 1 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about_image img {
  width: 94%;
  max-width: 100%;
  height: 93%;
  object-fit: cover;
  border-radius: 23px;
}

.container {
  max-width: 60%;
  margin: 0 auto;
  padding: 25px 20px;

}

.container_products {
  max-width: 57%;
  margin: 0 auto;
  padding: 25px 20px;
}







/* 
   COLLECTION SECTION
*/

.collection_section {
  width: 100%;
  padding: 50px 0;
}

.collection_head {
  text-align: center;
  margin-bottom: 40px;
  font-size: 10px;

}

.collection_head p {
  font-size: 14px;
  color: rgb(59 153 48);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
  padding-bottom: 10px;
}

.collection_head h1 {
  font-size: 42px;
  color: #000;
  font-weight: 800;
  margin: 0;
}

.collection_head h1 span {
  color: rgb(59 153 48);
}

.collection_margin_top {
  display: flex;
  flex-direction: column;
  gap: 21px;
  padding-bottom: 16px;
}

/* Product Card Styles */
.product_card {
  width: 93%;
  display: flex;
  align-items: center;
  gap: 29px;
  background-color: #e6fbe5;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.product_card:hover {
  transform: translateY(-5px);
}

/* Image Box */
.product_img {
  width: 36%;
  height: 298px;
  border-radius: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product_img img {
  width: 80%;
  height: auto;
  object-fit: contain;
}

/* Text Box */
.product_details {
  width: 50%;
}

.product_details h4 {
  font-size: 20px;
  color: #000;
  font-weight: 700;
  margin-bottom: 10px;
}

.product_details p {
  font-size: 15px;
  color: #666664;
  margin-bottom: 35px;
  line-height: 1.9;
}

.product_details a {
  color: rgb(59 153 48);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.product_details a i {
  padding-left: 5px;
  font-size: 14px;
}


/* contact us */

.contactus_section {
  width: 100%;
  min-height: 100vh;
  background-color: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.contactus_section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  width: 100%;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
}

/* CONTACT HEADING SECTION */
.contact_head {
  text-align: center;
  margin-bottom: 30px;
}

.contact_head small {
  font-size: 14px;
  color: rgb(59 153 48);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 5px;
}

.contact_head h1 {
  font-size: 36px;
  font-weight: 800;
  color: #000;
  margin-bottom: 10px;
}

.contact_head span {
  color: #4ed552;
}

.contact_head p {
  font-size: 15px;
  color: #4f4f4f;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* CONTACT INFO */
.add_flex {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.add_flex span i {
  color: rgb(59 153 48);
  margin-right: 8px;
  font-size: 16px;
}

.add_flex p {
  margin: 0;
  color: #2a2a2a;
  font-size: 15px;
  font-weight: 500;
}

/* CONTACT FORM SECTION */
.contact_form {
  width: 100%;
  max-width: 700px;
  margin-top: 40px;
}

.contact_form h4 {
  font-size: 22px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 25px;
  color: #222;
}

.name_flex {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.first_name,
.last_name {
  width: 48%;
}

.first_name input,
.last_name input,
.in_grp textarea,
.in_grp input {
  width: 100%;
  height: 40px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  resize: none;
}

.in_grp textarea {
  height: 80px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 600;
  color: #444444;
}

.mt_margin {
  margin-top: 15px;
}

.form_btn {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.form_btn button {
  background-color: rgb(59 153 48);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.form_btn button:hover {
  background-color: #4bd63c;
}

.form_btn button i {
  margin-right: 6px;
}



/* footer */
.footer_section {
  width: 100%;
  background-color: hsl(0, 0%, 0%);
  ;
  padding: 60px 20px 30px;
  color: #ffffff;
  position: relative;
}

.footer_section::after {
  content: "";
  background-image: url(../images/world.png);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  z-index: 0;
}

.footer_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.footer_col {
  flex: 1 1 220px;
  min-width: 220px;
  line-height: 1.8;
}

.logo {
  color: #0f0c17;
  font-weight: 800;
  font-family: 'Orbitron', sans-serif;
  font-size: 142%;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer_heading {
  font-size: 16px;
  font-weight: 600;
  color: #f3f3f3;
  margin-bottom: 10px;
}

.footer_col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer_col ul li {
  margin-bottom: 8px;
}

.footer_col ul li a {
  color: #d1d1d1;
  font-size: 15px;
  text-decoration: none;
}

.footer_col ul li a:hover {
  color: #fff;
}

.opening_time {
  display: flex;
  align-items: flex-start;
  margin-top: 15px;
}

.opening_time span {
  background-color: rgb(59 153 48);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.opening_time span i {
  color: #fff;
  font-size: 18px;
}

.time_ftr {
  margin-left: 15px;
}

.time_ftr h5 {
  margin: 0;
  color: #ccc;
  font-size: 14px;
  font-weight: 600;
}

.time_ftr p {
  margin: 5px 0 0;
  font-size: 15px;
  font-weight: 500;
}

.footer_col p i {
  margin-right: 8px;
  color: #ece883;
}

.social_ftr {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

.social_ftr a {
  width: 35px;
  height: 35px;
  background-color: rgb(59 153 48);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.copyRight {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #d4d4d4;
  position: relative;
  z-index: 1;
  border-top: 1px dashed #8a8a8a;
  padding-top: 15px;
}

.copyRight a {
  color: rgb(59 153 48);
  font-weight: 600;
  text-decoration: none;
}


/* Plans */

/* Plans Section Wrapper */


h3.bronze {
  color: #cd7f32;
  /* Bronze color */
}

h3.silver {
  color: #c0c0c0;
  /* Silver color */
}

.plans_wrapper {
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
  background-color: #f7fff7;
}

.plan_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.plan_card {
  width: 100%;
  max-width: 100%;
  padding: 30px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.plan_card:hover {
  transform: translateY(-5px);
}

.price {
  font-size: 26px;
  color: #007f00;
  font-weight: bold;
}

.platforms {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin: 10px 0;
}

/* Common Features Box */
/* Common feature box animation base */
.features {
  opacity: 0;
  transform: translateY(20px);
  animation: featurePop 0.6s ease forwards;
  animation-delay: 0.4s;
}

/* Animation keyframes */
@keyframes featurePop {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Bronze Features */
.features.bronze {
  background: #fff3e0;
  border: 1px dashed #cd7f32;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(205, 127, 50, 0.2);
}

.features.bronze p {
  color: #a0522d;
  font-weight: 600;
}

.features.bronze i {
  color: #cd7f32;
}

/* Silver Features */
.features.silver {
  background: #f2f2f2;
  border: 1px dashed #c0c0c044;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
}

.features.silver p {
  color: #555;
  font-weight: 600;
}

.features.silver i {
  color: #c0c0c0;
}

/* Gold Features */
.features.gold {
  background: #fff8dc;
  border: 1px dashed #ffd700;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
}

.features.gold p {
  color: #b8860b;
  font-weight: 600;
}

.features.gold i {
  color: #ffd700;
}

/* Base for all plan buttons */
.plan_card button {
  color: #fff;
  border: none;
  padding: 10px 22px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(40px);
  animation: buttonSlideIn 0.6s ease forwards;
  animation-delay: 0.4s;
}

/* Slide-in animation from right */
@keyframes buttonSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Bronze Button */
.bronze-btn {
  background-color: #cd7f32;
  box-shadow: 0 0 8px #cd7f32;
}

.bronze-btn:hover {
  background-color: #b36b2e;
  box-shadow: 0 0 12px #cd7f32, 0 0 20px #cd7f32;
}

/* Silver Button */
.silver-btn {
  background-color: #c0c0c0;
  box-shadow: 0 0 8px #c0c0c0;
  color: #000;
}

.silver-btn:hover {
  background-color: #b0b0b0;
  box-shadow: 0 0 12px #c0c0c0, 0 0 20px #c0c0c0;
}

/* Gold Button */
.gold-btn {
  background-color: #ffd700;
  box-shadow: 0 0 8px #ffd700;
  color: #000;
}

.gold-btn:hover {
  background-color: #e6c200;
  box-shadow: 0 0 12px #ffd700, 0 0 20px #ffd700;
}

/* plan selection */
.plan_section_title {
  width: 100%;
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  padding: 20px;
  margin: 40px 0 30px;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.plan_section_title.bronze {

  color: #cd7f32;
  border: 2px solid #cd7f32;
  box-shadow: 0 0 8px rgba(205, 127, 50, 0.4);
  text-shadow: 0 0 5px #cd7f32;
}

.plan_section_title.silver {
  color: #c0c0c0;
  /* Silver */
  text-shadow: 0 0 5px hsl(200, 21%, 70%), 0 0 10px #a9cef42a, 0 0 15px #318ac2;
  border: rgb(27, 139, 170);
}

.plan_section_title.gold {

  color: hsl(51, 100%, 50%);
  text-shadow: 0 0 5px #fff176, 0 0 10px #ffd700, 0 0 15px #ffeb3b;
  font-weight: bold;
  border: 2px solid #ecc30cee;
}

h3.gold {
  color: hsl(51, 100%, 50%);
  font-weight: bold;
  text-shadow: 0 0 5px #fff176, 0 0 10px #ffd700, 0 0 15px #ffeb3b;
}

h3.bronze {
  color: #cd7f32;
  font-weight: bold;
}

h3.silver {
  color: #c0c0c0;
  font-weight: bold;
}

.plans_container {
  width: 100%;
  margin: 0 auto;
  padding: 30px;
  box-sizing: border-box;
}


/* Bronze Container Styles */
.plans_container.bronze {
  background: linear-gradient(to bottom, #fdf1e0, #fce3c3);
  border: 2px solid #cd7f32;
  box-shadow: 0 0 20px rgba(205, 127, 50, 0.4);
}

.plan_section_title.bronze,
h3.bronze,
.bronze-btn {
  color: #cd7f32;
  text-shadow: 0 0 5px #cd7f32;
}

.bronze-btn {
  background-color: #cd7f32;
  box-shadow: 0 0 8px #cd7f32;
}

.bronze-btn:hover {
  background-color: #b36b2e;
  box-shadow: 0 0 12px #cd7f32, 0 0 20px #cd7f32;
}

/* Silver Container Styles */


.plan_section_title.silver,
h3.silver,
.silver-btn {
  color: #c0c0c0;
  text-shadow: 0 0 5px #c0c0c0;
}

.silver-btn {
  background-color: #c0c0c0;
  box-shadow: 0 0 8px #c0c0c0;
}

.silver-btn:hover {
  background-color: #a9a9a9;
  box-shadow: 0 0 12px #c0c0c0, 0 0 20px #c0c0c0;
}

/* Gold Container Styles */
.plans_container.gold {
  background: linear-gradient(to bottom, #fff9db, #ad9a31);
  border: 2px solid #d4af37;
  box-shadow: 0 0 20px rgba(255, 217, 0, 0.719);
}

.plan_section_title.gold,
h3.gold,
.gold-btn {
  color: #ae9923;
  text-shadow: 0 0 5px #f4e58d, 0 0 10px #f4e58d;
}

.gold-btn {
  background-color: #ffd700;
  box-shadow: 0 0 8px #ffd700;
}

.gold-btn:hover {
  background-color: #e6c200;
  box-shadow: 0 0 12px hsl(51, 76%, 70%), 0 0 20px #f4e58d;
}

/* Shared Plan Styles */


.plan_card {
  text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  width: 100%;
  max-height: 550px;
  max-width: 550px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan_card:hover {
  transform: translateY(-10px);
}

.plan_card .price {
  font-size: 22px;
  font-weight: bold;
  margin: 15px 0;
}

.plan_card .price span {
  font-size: 14px;
  color: #777;
}

.plan_card .platforms {
  font-size: 14px;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.6;
}

.plan_card .features p {
  font-size: 14px;
  margin: 8px 0;
}

.plan_card .features i {
  margin-right: 6px;
}


.video_banner_section {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.video_background {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.5);
}

.video_banner_overlay {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #fff;
  text-align: center;
}

.video_banner_content h1 {
  font-size: 48px;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.breadcrumb_links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 10px;
  color: #fff;
}

.breadcrumb_links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb_links i {
  color: #fff;
}


/* Plan Details Section */
/* General Table Layout */
.table_plan {
  overflow-x: auto;
  margin-top: 30px;
}

.table_plan table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

/* Header */
.table_plan thead th {
  background-color: #050b11;
  color: white;
  font-weight: bold;
  padding: 10px;
  text-align: center;
  border: 1px solid #dee2e6;
}

/* Body */
.table_plan tbody td,
.table_plan tbody th {
  padding: 10px;
  border: 1px solid #dee2e6;
  text-align: center;
  vertical-align: top;
}

/* Row Striping */
.table_plan tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Special Row Backgrounds */
.bg_yellow {
  background-color: #fff3cd;
  color: #856404;
  font-weight: bold;
  text-align: center;
}

.bg_green {
  background-color: #d4edda;
  color: #155724;
  font-weight: bold;
  text-align: center;
}



/* NoirLink Plans */
/* Card Styling (Both Set 1 and Set 2) */
.set1cards,
.set2cards {
  background: #1c1c1e;
  border-radius: 20px;
  padding: 25px 20px;
  width: 29%;
  box-shadow: 0 0 20px rgba(165, 89, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.set1cards:hover,
.set2cards:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(165, 89, 255, 0.25);
}

/* Plan Title */
.set1cards h3,
.set2cards h3 {
  font-size: 22px;
  margin-bottom: 5px;
  color: #ffffff;
}

.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

/* Cards will take 32% on large screens to fit 3 per row with gap */
.set1cards,
.set2cards {
  width: 32%;
}

/* Tagline */
.set1cards p:first-of-type,
.set2cards p:first-of-type {
  font-size: 14px;
  color: #aaaaaa;
  margin-bottom: 15px;
}

/* Price Styling */
.price {
  font-size: 28px;
  color: rgb(59 153 48);
  font-weight: bold;
  margin: 0 0 10px 0;
}

.price h2 span {
  font-size: 18px;
  color: rgb(59 153 48);
}

/* Duration Pricing */
.set1cards span,
.set2cards span {
  font-size: 15px;
  color: #eeeeee;
  font-weight: 500;
}

/* Monthly options */
.set1cards p:not(:first-of-type):not(.price),
.set2cards p:not(:first-of-type):not(.price) {
  color: #cccccc;
  font-size: 14px;
  margin: 6px 0;
}

/* Features Block */
.set1features,
.set2features {
  margin-top: 20px;
  border-top: 1px solid #333333;
  padding-top: 15px;
  border: 3px dotted rgb(59 153 48);
  border-radius: 18px;
}

.set1features h3,
.set2features h3 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 10px;
  text-align: center;
}

.set1features p,
.set2features p {
  color: #dddddd;
  font-size: 14px;
  margin-bottom: 8px;
  text-align: center;
}

.set1features i,
.set2features i {
  color: #a64dff;
  margin-right: 8px;

}

/* Button Styling */
.Set1-btn {
  width: 100%;
  padding: 12px;
  margin-top: 20px;
  background: linear-gradient(90deg, rgb(59 153 48), #0c4d03);
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.Set1-btn:hover {
  background: linear-gradient(90deg, #64df2b, #1ab905);
}

/* Service Section */

/* Customer */
.services-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.services-header h3 {
  font-size: 14px;
  color: rgb(59 153 48);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.services-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 40px;
}

.services-header span {
  color: rgb(59 153 48);
}

.services-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.card-content .tag {
  font-weight: 600;
  font-size: 24px;
  color: #1dc923;
  margin-bottom: 6px;
  text-shadow: #000;
  font-weight: 700;
}

.card-content h3 {
  font-size: 18px;
  text-shadow: #000;
  font-weight: 600;
  line-height: 1.4;
}

/* client names and client cards */
/* client name */
.client-names {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.client-card {
  border-radius: 15px;
  height: 260px;
  width: 220px;
  /* Fixed: Added 'px' unit */
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.client-card img {
  height: auto;
  width: 100%;
  mix-blend-mode: multiply;
}

.client-card p {
  color: #000;
  font-weight: 600;
  font-size: 16px;
  margin-top: 15px;
  text-transform: capitalize;
  line-height: 1.4;
}

/* team-grid */
.team-section {
  padding: 60px 20px;
  background-color: #f9f9fc;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.team-label {
  color: rgb(59 153 48);
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
}

.team-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1f2937;
}

.team-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  justify-items: center;
}

/* Team Member Card */
.team-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 20px;
  max-width: 260px;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.team-card h4 {
  font-size: 18px;
  margin: 0 0 6px;
  color: #111827;
}

.team-card .role {
  font-size: 14px;
  color: rgb(59 153 48);
  font-weight: 500;
}