@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@500;700&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Tajawal", sans-serif;
  font-weight: 700;
}
:root {
  --theme--color: #1b8354;
  --theme--color-sec: #00973a;
  --text-white: #fff;
  --bg-light: #f0f0f0;
      --primary-green: #1B8354;
      --gray-100: #f3f4f6;
      --dark-green: #155d3e;
}

a {
  text-decoration: none !important;
  color: unset;
}
a:hover {
  color: unset;
}
p {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  margin: 0px !important;
}

body {
  overflow-x: hidden !important;
  width: 100%;
}
ul {
  list-style: none !important;
  padding: 0px;
  margin: 0px;
}

.padt-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.pady-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.alignText{
    display:flex;
    justify-content:flex-start;
    align-item:center!important;
    gap:10px;
}

/* =====================
      scrolling bar
   ===================== */

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
  border-radius: 8px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 8px;
  border: 2px solid var(--gray-100);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-green);
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-green) var(--gray-100);
}

.pady-60 {
  padding: 60px 0px;
}
/* =====================
        topnavbar
   ===================== */
header {
  background-color: var(--text-white);
  position: fixed;
  width: 100%;
  padding: 10px 0px;
  box-sizing: border-box;
  z-index: 100;
}
.custBtn {
  transition: 0.2s;
  border-radius: 200px;
  background: #1b8354;
  padding: 10px;
  text-align: center;
  color: var(--text-white);
}
.custBtn:hover {
  color: var(--text-white);
}
.nav_bar .nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}
.nav_bar .nav-link,
.nav_bar .dropdown-item {
  color: var(--theme--color);
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
}
nav .nav-link {
  color: var(--theme--color);
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
  position: relative;
}
nav .nav-link::before {
  content: "";
  position: absolute;
  bottom: -4px; /* adjust space below text */
  left: 0;
  bottom: 20px;
  width: 0;
  height: 2px;
  background-color: var(--theme--color);
  transition: width 0.3s ease;
}
nav .nav-link:hover::before {
  width: 100%;
}
.nav_bar .dropdown-menu {
  background-color: var(--bg-light);
}
.nav_bar .navbar-toggler {
  background-color: var(--theme--color);
  color: var(--text-white);
}
header .dropdown-hover:hover > .dropdown-menu {
  display: block;
}
header .dropdown-item.active,
.dropdown-item:active {
  background-color: unset !important;
}
/* =====================
        main banner
   ===================== */
.main_banner {
  /* height: 540px; */
  width: 100%;
  background-image: url("../images/baner.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: var(--text-white);
  position: relative;
  padding: 15% 5% 5% 5%;
}
.main_container {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}
.main_content {
  width: 55%;
  display: flex;
  /* padding-top: 10%; */
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}
.main_content > h1 {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 10px;
}
.main_content > p {
  font-size: 20px;
  line-height: 30px;
}
.up_downAnimation {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 20px;
  margin: auto;
  left: 50%;
  animation: upDown 1.5s infinite ease-in-out;
}
.up_downAnimation > i {
  font-size: 70px;
  color: var(--text-white);
}
.mini_box {
  width: 100%;
  padding: 6.5px;
  background-color: var(--theme--color-sec);
}
/* =====================
        about banner
   ===================== */
.abou_box {
  padding: 50px 0px;
}
.subTitle {
  text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px;
  color: var(--theme--color);
  font-size: 40px;
  font-weight: bold;
}
.card_main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.about_card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  padding: 30px 25px;
  margin-top: 20px;
  width: 400px;
  box-shadow: 1px 0rem 0.5rem #252525 !important;
  background: linear-gradient(to right, #f0f8f5 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.5s ease;
  cursor: pointer;
  min-height: -webkit-fill-available;
}
.about_card > h3 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}
.about_card p {
  font-size: 18px;
}
.about_card:hover {
  background-position: left bottom;
}
.para {
  font-size: 20px;
  width: 85%;
  line-height: 35px;
  padding: 20px 0px;
}
.bg_light {
  background-color: var(--text-white);
}
.sec_about {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 50px 0px;
}

.alignText > i {
    padding-top:5px!important;
}
/* =====================
        about banner
   ===================== */
.lastBN {
  height: auto;
  width: 100%;
  /* min-height: 540px; */
  background-image: url("../images/secbn.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.last_bn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 0px 5px 0px;
  gap: 10px;
}
.last_bn > h3 {
  font-weight: bold;
  text-shadow: rgba(0, 0, 0, 0.4) 0px 4px 5px;
  font-size: 25px;
  color: var(--text-white);
}
/* =====================
       footer
   ===================== */
.bg_them {
  background-color: var(--text-white);
}
.footer-links a {
  color: #000;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
  font-size: 15px;
}
.footer-links a:hover {
  color: var(--theme--color);
}
.footer-mail {
  color: #000;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}
.footer-mail:hover {
  color: var(--theme--color);
}
.social-icon {
  font-size: 20px;
  color: #000;
  transition: color 0.3s ease, transform 0.2s ease;
}
.social-icon:hover {
  color: var(--theme--color);
  transform: scale(1.2);
}
.bg_them li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 8px;
  transition-duration: 0.5s;
  gap: 5px;
}
.bg_them li:hover {
  transform: translateX(-10px);
}
.bg_them li:hover i {
  color: var(--theme--color);
}
/* =====================
       copy of 
   ===================== */
.pad_y40 {
  padding: 6% 0px;
}
.pad_y20 {
  padding: 3% 0px;
}
.sec_title {
  font-size: 60px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}
.sec_para {
  font-size: 20px;
  text-align: center;
  width: 45%;
  margin: auto;
  line-height: 35px;
}
/* =====================
         form banner
   ===================== */
.form_img {
  height: 100%;
}
.pad_Add {
  padding: 8%;
}
.form_bn {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 20px 0px;
}
.custom-input {
  border: none;
  border-bottom: 1px solid #000;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: right;
}

.custom-input:focus {
  border-bottom-color: var(--theme--color);
  box-shadow: none;
  outline: none;
  background: rgba(13, 110, 253, 0.05);
}

.custom-label {
  font-size: 14px;
  color: #000;
  margin-bottom: 6px;
}

.custom-btn {
  background: var(--theme--color);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.custom-btn:hover {
  background: var(--theme--color-sec);
}
/* =====================
        about banner
   ===================== */
.about_banner {
  background-image: url("../images/about.png");
  padding: 20% 5% 10% 5%;

}
.about_list1 {
  background-image: url("../images/abouttarh.png");
  padding: 20% 5% 10% 5%;
}
.about_list2 {
  background-image: url("../images/about2.png");
  padding: 20% 5% 10% 5%;

}
.about_list3 {
  background-image: url("../images/banner3.png");
  padding: 20% 5% 10% 5%;

}
.about_list4 {
  background-image: url("../images/banner4.png");
  padding: 20% 5% 10% 5%;

}
.about_list5 {
  background-image: url("../images/banner5.png");
  padding: 20% 5% 10% 5%;

}
.subpara {
  font-size: 20px;
  line-height: 35px;
}
/* =====================
       service banner
   ===================== */
.service_bn {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  background-image: url("../images/service.png");
  padding: 20% 5% 10% 5%;
  
}
.flip_box {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.flip_boxback {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
/* =====================
      subscribe banner
   ===================== */

.card_custom {
  border-radius: 16px;
  border: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}
.card_custom h2 {
  color: #1b8354;
  font-size: 20px;
  margin-bottom: 15px;
}
.card_custom h2 i {
  color: #00973a;
  margin-left: 6px;
}
.card_custom .list-group-item {
  border: none;
  background: #f2fdf6;
  margin: 5px 0;
  border-radius: 8px;
  font-size: 15px;
}
.note_box {
  background: #fff3cd;
  border: 1px solid #ffeeba;
  color: #856404;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  margin-top: 15px;
}
.card_custom .steps li {
  position: relative;
  padding-right: 35px;
  counter-increment: step;
}
.card_custom .steps li::before {
  content: counter(step);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: #00973a;
  color: #fff;
  font-weight: bold;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Section Background */
.abut_w .bg_light {
  background: #f9fafb;
  padding: 80px 0;
}

/* Container Box */
.abut_w .abou_box {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Section Title */
/* .abut_w .subTitle {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #222;
  position: relative;
} */

/* .abut_w .subTitle::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #00973a;
  margin: 10px auto 0;
  border-radius: 2px;
} */

/* Cards Wrapper */
.abut_w .card_main {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  justify-content: center;
  align-items: center;
  padding-top: 5%;
}

/* Card Styling */
.abut_w .about_card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 55px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.abut_w .about_card img {
  flex-shrink: 0;
}

.abut_w .about_card h3 {
  font-size: 24px;
  font-weight: bold;
  text-decoration: underline;
  color: #333;
  margin: 0;
}

/* Hover Effect */
.abut_w .about_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg, #1b8354, #00973a);
  color: #fff;
}

.abut_w .about_card:hover h3 {
  color: #fff;
}

.abut_w .about_card:hover img {
  filter: brightness(0) invert(1);
}
.custom_list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.custom_list li {
  background: #f9fafb;
  margin: 10px 0;
  padding: 12px 16px;
  border-radius: 10px;
  position: relative;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Add custom bullet */
.custom_list li::before {
  content: "✔";
  color: #00973a;
  font-weight: bold;
  position: absolute;
  right: -25px; /* Adjust for RTL */
  top: 50%;
  transform: translateY(-50%);
}
.custom_list1 li::before {
  content: "✔";
  left: -25px !important;
}
.com_title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1b8354;
  position: relative;
  padding-bottom: 10px;
}

.com_title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #00973a;
  margin-top: 6px;
  border-radius: 2px;
}

/* =====================
      faq banner
   ===================== */
.faq_box .accordion-button {
  font-size:20px;
  font-weight: 500;
  justify-content:space-between;
  text-align:justify;
}
.faq_box .accordion-button:not(.collapsed) {
  background-color: var(--theme--color);
  color: #fff;
}
.faq_box .accordion-body {
 line-height: 1.8;
    font-size: 16px;
    text-align: justify;
    font-weight: 500;
    padding: 5%;
}
.faq_box .social-icons a {
  font-size: 18px;
  /* color: var(--theme--color); */
  transition: 0.3s;
}
.faq_box .social-icons a:hover {
  color: #000;
}
.faq_box .accordion-button::after {
  background-image: none !important; /* remove default Bootstrap arrow */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f078"; /* fa-chevron-down */
  color: #000;
  transition: transform 0.3s ease;
  position: absolute;
  left: 30px;
}

.dir_box .accordion-button::after{
    right:30px!important;
}

/*html[dir="rtl"] .faq_box .accordion-button::after {*/
/*  right: auto !important;*/
/*  left: 30px !important;*/
/*}*/


/*html[dir="rtl"] .accordion-button:not(.collapsed)::after {*/
/*  right: auto !important;*/
/*  left: 30px !important;*/
/*}*/
/*.faq_box1 .accordion-button::after {*/
/*  right: 30px !important;*/
/*}*/

.accordion-button:not(.collapsed)::after {
  content: "\f077"; /* fa-chevron-up */
  color: #fff;
}
.faq_box .accordion-item {
  border-top: 0px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-left: 0px;
  border-right: 0px;
}
.faq_box .accordion-button:focus {
  border-color: none !important;
  box-shadow: none !important;
}
.custom-card {
  border: none;
  border-radius: 16px;
  background: #fff;
  transition: all 0.4s ease;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.custom-card ul li {
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  /* white-space: nowrap; */
}

.custom-card ul li:hover {
  color: var(--theme--color);
  transform: translateX(5px);
}

.custom-card ul li img {
  transition: transform 0.3s ease;
}

.custom-card ul li:hover img {
  transform: scale(1.2);
}

.user-svg-box img {
  transition: transform 0.5s ease;
}

.custom-card:hover .user-svg-box img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .custom-card {
    flex-direction: column-reverse !important;
    text-align: center;
  }
  .user-svg-box {
    margin-top: 25px;
    margin-left: 0 !important;
  }
}
/* =====================
      login
   ===================== */
.login_box {
  background: linear-gradient(135deg, #1b8354, #00973a);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cairo", sans-serif;
}

.login-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  padding: 40px 30px;
  width: 100%;
  max-width: 400px;
  text-align: right; /* RTL text alignment */
}

.login-card h3 {
  text-align: center;
  margin-bottom: 25px;
  color: #1b8354;
  font-weight: 600;
}

.form-control {
  border: none;
  border-bottom: 2px solid #ddd;
  border-radius: 0;
  box-shadow: none;
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: #1b8354;
}

.btn-login {
  width: 100%;
  background: #1b8354;
  border: none;
  color: #fff;
  font-weight: 500;
  padding: 10px;
  border-radius: 25px;
  transition: 0.3s;
}

.btn-login:hover {
  background: #157a46;
}

.footer-text {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: #777;
}

.footer-text a {
  color: #1b8354;
  text-decoration: none;
}

.footer-text a:hover {
  text-decoration: underline;
}
.pad_top20{
  padding-top: 5%;
}
.accordion-item {
    transition: all 0.3s ease;
  }
  .highlight {
    background-color: #e9f7ef;
    border-radius: 10px;
    transition: background-color 0.4s ease;
  }
  .fadeIn {
    animation: fadeIn 0.4s ease-in-out;
  }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .ser_box{
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid #ddd;
  }
  .form-control:focus {
    box-shadow: unset !important;
  }
  
  footer h4{
    font-size: 20px!important;
}



.imgsize{
height: 40px;
    border-radius: 5px;
    margin-top:5px;
    
}

.imgsizeapple{
    height: 51px;
}
.required {
    color: red;
    margin-right: 4px; /* Adjust spacing in RTL */
}
.tarh-pricing-section {
    position: relative;
    overflow: hidden;
}

.tarh-pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #1b8354, transparent);
}

.section-badge {
    display: inline-block;
    background: rgba(27, 131, 84, 0.1);
    color: #1b8354;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Pricing Cards */
.tarh-pricing-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tarh-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1b8354, #2ecc71);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tarh-pricing-card:hover::before {
    transform: scaleX(1);
}

.tarh-pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(27, 131, 84, 0.15);
    border-color: #1b8354;
}

.featured-plan {
    border: 2px solid #1b8354;
    transform: scale(1.05);
}

.featured-plan:hover {
    transform: scale(1.05) translateY(-12px);
}

/* Popular Ribbon */
.popular-ribbon {
    position: absolute;
    top: 20px;
    right: -40px;
    background: #831b1d;
background: linear-gradient(135deg, rgba(131, 27, 29, 1) 50%, rgba(204, 83, 46, 1) 100%);
    color: white;
    padding: 8px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(27, 131, 84, 0.3);
    z-index: 2;
}

/* Plan Icon */
.plan-icon {
    text-align: center;
    padding: 30px 0 0;
}

.plan-icon i {
    font-size: 3rem;
    background: linear-gradient(135deg, #1b8354, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-plan .plan-icon i {
    background: linear-gradient(135deg, #1b8354, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card Header */
.tarh-pricing-card .card-header {
    background: transparent;
    border: none;
    padding: 20px 30px 10px;
    text-align: center;
}

.plan-title {
    font-size: 1.5rem;
    text-shadow: rgba(0, 0, 0, 0.2) 0px 4px 5px;
  color: var(--theme--color);
  font-weight: bold;
}

.price-wrapper {
    color: #1b8354;
    margin-bottom: 5px;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    vertical-align: top;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin: 0 2px;
}

.period {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.price-subtitle {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Card Body */
.tarh-pricing-card .card-body {
    padding: 20px 30px;
    flex-grow: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #f1f5f9;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    color: #1b8354;
    margin-right: 12px;
    margin-top: 4px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.feature-item span {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Card Footer */
.tarh-pricing-card .card-footer {
    background: transparent;
    border: none;
    padding: 20px 30px 30px;
    text-align: center;
}

.btn-premium {
    background: linear-gradient(135deg, #1b8354, #2ecc71);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(27, 131, 84, 0.3);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(27, 131, 84, 0.4);
    color: white;
}

.btn-outline-primary {
    border: 2px solid #1b8354;
    color: #1b8354;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #1b8354;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 131, 84, 0.2);
}

.plan-note {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 12px;
}

/* Enterprise CTA */
.enterprise-cta {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .featured-plan {
        transform: scale(1);
    }
    
    .featured-plan:hover {
        transform: translateY(-12px);
    }
}

@media (max-width: 768px) {
    .tarh-pricing-card {
        margin-bottom: 2rem;
    }
    
    .price {
        font-size: 2.8rem;
    }
    
    .plan-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .tarh-pricing-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .tarh-pricing-card {
        margin: 0 10px 2rem;
    }
    
    .enterprise-cta .text-md-end {
        text-align: left !important;
        margin-top: 15px;
    }
}

