:root {
  --color-primary: #16a085;
  --color-secondary: #0e7c66;
  --color-primary-light: #e6f6f2; /* Light background tint */
  --color-accent: #9c27b0;
  --color-positive: #21ba45;
  --color-negative: #c10015;
  --color-info: #31ccec;
  --color-warning: #f2c037;
  --color-dark: #1d1d1d;
  --color-dark-page: #121212;
}

:root {
  /* Brand Colors */
  --color-primary: #16a085; /* FinGreen main teal */
  --color-primary-dark: #0e7c66; /* Darker teal for hover */

  /* Accent */
  --color-accent: #2ecc71; /* Fresh green highlight */

  /* Text Colors */
  --color-text-primary: #1f2933; /* Main text */
  --color-text-secondary: #6b7280; /* Muted text */

  /* Backgrounds */
  --color-bg-main: #ffffff;
  --color-bg-section: #f9fafb;

  /* Borders & Lines */
  --color-border: #e5e7eb;

  /* Status Colors */
  --color-success: #16a085;
  --color-warning: #f59e0b;
  --color-danger: #dc2626;
}

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

body {
  font-family: "Arial", sans-serif;
}

/* Top Bar */
.top-bar {
  background: linear-gradient(
    135deg,
    var(--color-text-primary) 0%,
    var(--color-text-primary) 100%
  );
  color: white;
  padding: 10px 0;
  font-size: 14px;
}

.top-bar a {
  color: white;
  text-decoration: none;
  margin-right: 20px;
}

.top-bar a:hover {
  opacity: 0.8;
}

.social-icons a {
  color: white;
  margin-left: 5px;
  font-size: 16px;
  transition: transform 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
}

/* Main Navbar */
.main-navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.navbar-brand {
  font-size: 32px;
  font-weight: bold;
  color: var(--color-primary) !important;
}

.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  padding: 8px 18px !important;
  transition: color 0.3s;
  font-size: 15px;
}

.navbar-nav .nav-link:hover {
  color: var(--color-secondary);
}

.navbar-nav .nav-link.active {
  color: var(--color-secondary);
}

.navbar-toggler {
  border-color: var(--color-primary);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 169, 157, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
    padding: 15px 0;
  }

  .navbar-nav .nav-link {
    padding: 10px !important;
  }

  .top-bar .container {
    text-align: center;
  }

  .contact-info,
  .social-icons {
    justify-content: center !important;
    margin-bottom: 10px;
  }
}

/* Hero Slider Styles */
.hero-slider {
  position: relative;
}

.hero-slider .carousel-item {
  height: auto;
  position: relative;
}

.hero-slider .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(0, 0, 0, 0.4); */
  z-index: 1;
}

.hero-slider .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 90%;
  max-width: 900px;
}

.hero-title {
  font-size: 5rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 1px;
}

.hero-btn {
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  padding: 15px 45px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.hero-btn:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  color: #000;
}

/* Custom Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.carousel-control-prev {
  left: 40px;
}

.carousel-control-next {
  right: 40px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.carousel-indicators {
  bottom: 40px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 8px;
  background: rgba(255, 255, 255, 0.6);
}

.carousel-indicators button.active {
  background: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

.multipage-table-section {
  padding: 80px 0;
}
.multipage-table-section .section-title-area {
  margin-bottom: 50px;
}
.multipage-table-section .section-title-area .section-title {
  font-size: 45px;
  font-weight: bold;
  color: var(--color-primary);
}
.multipage-table-section .custom-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.about-section {
  padding: 70px 0;

  background-color: var(--color-bg-section);
}

.about-section .about-details p {
  font-size: 45px;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 20px;
  text-align: justify;
}
.about-section .about-details li {
  padding: 10px 0;
}

.about-section .about-img {
  border-radius: 20px;
  overflow: hidden;
}

.step-by-step-section {
  padding: 70px 0;
  background-color: rgb(255 255 255 / 100);
}

.step-by-step-section .section-title-area {
  margin-bottom: 25px;
}
.step-by-step-section .section-title-area .section-subtitle {
  font-size: 45px;
  font-weight: bold;
  color: rgb(0 153 117 / 1);
  background-color: rgb(255 73 124 / 0);
  padding: 5px 20px;
  border-radius: 15px;
  margin-bottom: 15px;
}
.step-by-step-section .stepdiv {
  width: 100%;
  display: inline-block;
}

.step-by-step-section .stepdiv {
  padding: 10px;
  text-align: center;
}
.step-by-step-section .stepdiv .step-count {
  width: 60px;
  height: 60px;
  color: rgb(255 255 255 / 100);
  font-size: 30px;
  font-weight: 600;
  padding: 6px;
  margin-bottom: 30px;
  background-color: var(--color-text-primary);
  border-radius: 50%;
  display: inline-block;
}
.step-by-step-section .stepdiv h4 {
  color: rgb(0 153 117 / 1);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
}

.step-by-step-section .stepdiv p {
  color: rgb(127 127 127 / 100);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
}

.vision-section6 {
  padding: 50px 0;
  background-color: var(--color-primary-light);
}
.vision-section6 .section-title-area {
  margin-bottom: 25px;
}
.vision-section6 .section-title-area .section-subtitle {
  font-size: 45px;
  font-weight: bold;
  color: rgb(0 153 117 / 1);
  background-color: rgb(255 73 124 / 0);
  padding: 5px 20px;
  border-radius: 15px;
  margin-bottom: 15px;
}
.vision-section6 .visiondiv1 {
  margin: 15px 0;
  border: 0px solid rgb(255 255 255 / 100);

  background-color: rgb(255 255 255 / 100);
  box-shadow: 5px 5px 15px rgb(0 0 0 / 0.08);

  border-radius: 15px;
  text-align: center;
}
.vision-section6 .visiondiv_imgs img {
  max-width: 100%;
  margin-bottom: 0;
}
.vision-section6 .visiondiv_imgs .visiondiv_sub {
  padding: 20px 25px;
}

.vision-section6 .visiondiv1 p {
  color: rgb(0 0 0 / 100);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
}
.boxes3-section {
  padding: 50px 0;
  background-color: [object Object];
}

.boxes3-section .section-title-area {
  margin-bottom: 25px;
}

.boxes3-section .section-title-area .section-subtitle {
  display: inline-block;
  font-size: 45;
  font-weight: 500;
  color: [object Object];
  background-color: [object Object];
  padding: 5px 20px;

  border-radius: 15px;
  margin-bottom: 15px;
}

.boxes3-section .section-title-area .section-title {
  font-size: 44px;
  font-weight: 600;
  color: [object Object];
}

.boxes3-section .cus-boxes {
  background-color: [object Object];
  border-radius: 4px;
  padding: 40px 15px;

  margin: 10px 0;
  border: 1px solid rgb(238 238 238 / 100);
}

.boxes3-section .flaticon {
  max-width: 100%;
}

.boxes3-section .subtitle {
  color: [object Object];
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  margin: 10px 0px 0px;
}

.boxes3-section .short-description {
  color: [object Object];
  font-size: 20px;
  padding: 10px 0px 0px 0px;
}

.service-detail-section {
  padding: 60px 0;
  background-color: rgb(255 255 255 / 100);
}

.detail-sidebar {
  display: inline-block;
  width: 100%;
}

.detail-sidebar .other-link li a {
  background-color: rgb(244 244 245 / 100);
  color: rgb(31 39 50 / 100);
  padding: 15px 20px;

  font-size: 16px;
  font-weight: normal;
  border: 1px solid rgb(215 226 230 / 100);

  display: block;
  position: relative;
  -moz-transition: all 300ms ease-out 0s;
  -webkit-transition: all 300ms ease-out 0s;
  -ms-transition: all 300ms ease-out 0s;
  -o-transition: all 300ms ease-out 0s;
  transition: all 300ms ease-out 0s;
}

.detail-sidebar .other-link li .fa {
  margin-right: 10px;
}

.detail-sidebar .other-link li a:hover,
.detail-sidebar .other-link li.active a {
  color: rgb(255 73 124 / 100);
  border-left: 5px solid rgb(255 73 124 / 100);
}

.detail-sidebar .widget-form {
  display: inline-block;
  width: 100%;
  padding: 25px 35px;

  background-color: rgb(31 39 50 / 100);
}

.detail-sidebar .widget-form .form-control {
  padding: 13px;
}

.detail-sidebar .widget-form .btn-submit {
  background-color: rgb(255 73 124 / 100);
  border: 2px solid rgb(255 73 124 / 100);

  color: rgb(255 255 255 / 100);
  font-size: 16px;
  font-weight: 600;
  padding: 8px 25px;

  width: 100%;
}

.boxes2-section .more-btn {
  color: [object Object];
  font-size: 16px;
  font-weight: normal;
  border-radius: 15px;
  padding: 5px 20px;

  background-color: [object Object];
}

.boxes2-section .more-btn:hover {
  background-color: [object Object];
  color: [object Object];
}

.pagination-positions {
  justify-content: center;
}

.pagination .page-link {
  color: rgb(255 73 124 / 100);
}

.pagination .page-item.active .page-link {
  background-color: rgb(255 73 124 / 100);
  border-color: rgb(255 73 124 / 100);
}

.service-page-head {
  padding: 100px 0;
  clip-path: polygon(0 0, 100% 0%, 100% 80%, 50% 100%, 0 80%);

  background-color: rgb(0 0 0 / 100);
}

.service-page-head .page-title {
  color: rgb(255 255 255 / 100);
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 20px;
}

.service-page-head .breadcrumb .breadcrumb-item a {
  font-size: 15px;
  font-weight: 600;
  color: rgb(255 73 124 / 100);
}

.service-page-head .breadcrumb .breadcrumb-item.active {
  font-size: 15px;
  font-weight: 600;
  color: rgb(255 255 255 / 100);
}

.boxes3-section .more-btn {
  font-size: undefinedpx;
  font-weight: undefined;
  border-radius: undefinedpx;
  padding: undefinedpx undefinedpx;
}

.vision-section6 .section-title-area {
  margin-bottom: 25px;
}

.vision-section6 .section-title-area .section-subtitle {
  font-size: 45px;
  font-weight: bold;
  color: rgb(0 153 117 / 1);
  background-color: rgb(255 73 124 / 0);
  padding: 5px 20px;

  border-radius: 15px;
  margin-bottom: 15px;
}

.vision-section6 .section-title-area .section-title {
  font-size: 44px;
  font-weight: 600;
  color: rgb(0 0 0 / 100);
}

.vision-section6 .visiondiv1 {
  margin: 15px 0;
  border: 0px solid rgb(255 255 255 / 100);

  background-color: rgb(255 255 255 / 100);
  box-shadow: 5px 5px 15px rgb(0 0 0 / 0.08);

  border-radius: 15px;
  text-align: center;
}

.vision-section6 .visiondiv1:hover {
  box-shadow: 0px 10px 20px 0px rgb(19 19 19 / 0.102);
}

.vision-section6 .visiondiv_imgs {
  padding: 0;
  overflow: hidden;
}

.vision-section6 .visiondiv_imgs img {
  max-width: 100%;
  margin-bottom: 0;
}

.vision-section6 .visiondiv_imgs .visiondiv_sub {
  padding: 20px 25px;
}

.vision-section6 .visiondiv1 p {
  color: rgb(0 0 0 / 100);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
}

.vision-section6 .visiondiv_sub .btn {
  color: rgb(255 73 124 / 100);
  font-weight: 400;
  font-size: 16px;
}

.vision-section6 .more-btn {
  color: rgb(255 255 255 / 100);
  font-size: 16px;
  font-weight: normal;
  border-radius: 15px;
  padding: 5px 20px;

  background-color: rgb(255 73 124 / 100);
}

.vision-section6 .more-btn:hover {
  background-color: rgb(255 73 124 / 100);
  color: rgb(255 255 255 / 100);
}

.vision-section6 .row {
  justify-content: center;
}

.about2-section {
  padding: 70px 0;
  background-color: rgb(255 255 255 / 100);
}

.about2-section .section-title-area {
  margin-bottom: 25px;
}

.about2-section .section-title-area .section-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: rgb(255 73 124 / 100);
  background-color: rgb(255 73 124 / 0.2);
  padding: 5px 20px;
  p1: 5px;
  p2: 20px;
  border-radius: 15px;
  margin-bottom: 15px;
}

.about2-section .section-title-area .section-title {
  font-size: 44px;
  font-weight: 600;
  color: rgb(0 0 0 / 100);
}

.about2-section .about-img {
  margin: 0px auto;
  display: block;
}

.about2-section .about-details {
  padding: 20px;
}

.about2-section .about-details h5 {
  font-size: 45px;
  font-weight: 500;
  color: rgb(0 153 117 / 1);
  line-height: 1.4;
  margin-bottom: 20px;
  text-align: justify;
}

.about2-section .about-details p {
  font-size: 17px;
  font-weight: 500;
  color: rgb(0 0 0 / 100);
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}

.about2-section .about-details ul {
  margin-bottom: 30px;
}

.about2-section .about-details ul li {
  font-size: 16px;
  font-weight: 500;
  color: rgb(0 0 0 / 100);
  margin: 14px 0;
}

.about2-section .about-details ul li:before {
  color: rgb(255 73 124 / 100);
  margin-right: 10px;
}

.about2-section .about-details ul li:first-child {
  margin-top: 0px;
}

.about2-section .about-details .btn-section {
  justify-content: start;
}

.about2-section .about-details .btn {
  background-color: rgb(255 73 124 / 100);
  border: 2px solid rgb(255 73 124 / 100);
  color: rgb(255 255 255 / 100);
  padding: 8px 25px;
}

.about2-section .about-box {
  gap: 20px;
}

.about2-section .about-box img {
  max-width: 40px;
}

.about2-section .about-box h4 {
  color: rgb(0 153 117 / 1);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 5px;
}

.about2-section .about-box p {
  color: rgb(0 0 0 / 100);
  font-weight: 400;
  font-size: 16px;
  line-height: 10px;
}

.about2-section .about-details h6 {
  font-size: undefinedpx;
  font-weight: undefined;
  line-height: undefined;
  margin-bottom: undefinedpx;
  text-align: undefined;
}

.about2-section .about-img {
  border-radius: 25px;
}

.about2-section .about-details ul li:before {
  display: none;
}

.about2-section .about-details {
  text-align: justify;
  line-height: 25px;
}
.about2-section .about-details ul li {
  font-size: 16px;
  font-weight: 500;
  color: rgb(0 0 0 / 100);
  margin: 14px 0;
}
.about2-section .about-details ul li {
  position: relative;
}
.about2-section .about-box {
  width: 100%;
  display: flex;
  align-items: start;
  gap: 20px;
}
.about2-section .about-box img {
  max-width: 40px;
}
.about2-section .about-box h4 {
  color: rgb(0 153 117 / 1);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 5px;
}
.about2-section .about-box p {
  color: rgb(0 0 0 / 100);
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: justify;
  line-height: 10px;
}

.boxes3-section {
  padding: 50px 0;
  background-color: [object Object];
}

.boxes3-section .section-title-area {
  margin-bottom: 25px;
}

.boxes3-section .section-title-area .section-subtitle {
  display: inline-block;
  font-size: 45;
  font-weight: 500;
  color: [object Object];
  background-color: [object Object];
  padding: 5px 20px;
  border-radius: 15px;
  margin-bottom: 15px;
}

.boxes3-section .section-title-area .section-title {
  font-size: 44px;
  font-weight: 600;
  color: [object Object];
}

.boxes3-section .cus-boxes {
  background-color: [object Object];
  border-radius: 4px;
  padding: 40px 15px;
  margin: 10px 0;
  border: 1px solid rgb(238 238 238 / 100);
}

.boxes3-section .flaticon {
  max-width: 100%;
}

.boxes3-section .subtitle {
  color: [object Object];
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  margin: 10px 0px 0px;
}

.boxes3-section .short-description {
  color: [object Object];
  font-size: 20px;
  padding: 10px 0px 0px 0px;
}

.service-detail-section {
  padding: 60px 0;
  background-color: rgb(255 255 255 / 100);
}

.detail-sidebar {
  display: inline-block;
  width: 100%;
}

.detail-sidebar .other-link li a {
  background-color: rgb(244 244 245 / 100);
  color: rgb(31 39 50 / 100);
  padding: 15px 20px;
  font-size: 16px;
  font-weight: normal;
  border: 1px solid rgb(215 226 230 / 100);
  display: block;
  position: relative;
  -moz-transition: all 300ms ease-out 0s;
  -webkit-transition: all 300ms ease-out 0s;
  -ms-transition: all 300ms ease-out 0s;
  -o-transition: all 300ms ease-out 0s;
  transition: all 300ms ease-out 0s;
}

.detail-sidebar .other-link li .fa {
  margin-right: 10px;
}

.detail-sidebar .other-link li a:hover,
.detail-sidebar .other-link li.active a {
  color: rgb(255 73 124 / 100);
  border-left: 5px solid rgb(255 73 124 / 100);
}

.detail-sidebar .widget-form {
  display: inline-block;
  width: 100%;
  padding: 25px 35px;
  background-color: rgb(31 39 50 / 100);
}

.detail-sidebar .widget-form .form-control {
  padding: 13px;
}

.detail-sidebar .widget-form .btn-submit {
  background-color: rgb(255 73 124 / 100);
  border: 2px solid rgb(255 73 124 / 100);
  color: rgb(255 255 255 / 100);
  font-size: 16px;
  font-weight: 600;
  padding: 8px 25px;
  width: 100%;
}

.boxes2-section .more-btn {
  color: [object Object];
  font-size: 16px;
  font-weight: normal;
  border-radius: 15px;
  padding: 5px 20px;
}

.pagination-positions {
  justify-content: center;
}

.pagination .page-link {
  color: rgb(255 73 124 / 100);
}

.pagination .page-item.active .page-link {
  background-color: rgb(255 73 124 / 100);
  border-color: rgb(255 73 124 / 100);
}

.service-page-head {
  padding: 100px 0;
  clip-path: polygon(0 0, 100% 0%, 100% 80%, 50% 100%, 0 80%);

  background-color: rgb(0 0 0 / 100);
}

.service-page-head .page-title {
  color: rgb(255 255 255 / 100);
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 20px;
}

.service-page-head .breadcrumb .breadcrumb-item a {
  font-size: 15px;
  font-weight: 600;
  color: rgb(255 73 124 / 100);
}

.service-page-head .breadcrumb .breadcrumb-item.active {
  font-size: 15px;
  font-weight: 600;
  color: rgb(255 255 255 / 100);
}

.vision-section6 .section-title-area {
  margin-bottom: 25px;
}

.vision-section6 .section-title-area .section-title {
  font-size: 44px;
  font-weight: 600;
  color: rgb(0 0 0 / 100);
}

.vision-section6 .visiondiv1 {
  margin: 15px 0;
  border: 0px solid rgb(255 255 255 / 100);
  background-color: rgb(255 255 255 / 100);
  box-shadow: 5px 5px 15px rgb(0 0 0 / 0.08);
  border-radius: 15px;
  text-align: center;
}

.vision-section6 .visiondiv1:hover {
  box-shadow: 0px 10px 20px 0px rgb(19 19 19 / 0.102);
}

.vision-section6 .visiondiv_imgs {
  padding: 0;
  overflow: hidden;
}

.vision-section6 .visiondiv_imgs img {
  max-width: 100%;
  margin-bottom: 0;
}

.vision-section6 .visiondiv_imgs .visiondiv_sub {
  padding: 20px 25px;
}

.vision-section6 .visiondiv1 h4 {
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 15px;
  text-align: undefined;
}

.vision-section6 .visiondiv1 p {
  color: rgb(0 0 0 / 100);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
}

.vision-section6 .visiondiv_sub .btn {
  color: rgb(255 73 124 / 100);
  font-weight: 400;
  font-size: 16px;
}

.vision-section6 .more-btn {
  color: rgb(255 255 255 / 100);
  font-size: 16px;
  font-weight: normal;
  border-radius: 15px;
  padding: 5px 20px;
  background-color: rgb(255 73 124 / 100);
}

.vision-section6 .more-btn:hover {
  background-color: rgb(255 73 124 / 100);
  color: rgb(255 255 255 / 100);
}

.vision-section6 .container .row {
  justify-content: center;
}
.packages-section {
  padding: 50px 0;
  background-color: rgb(255 255 255 / 100);
}

.packages-section .section-title-area {
  margin-bottom: 25px;
}

.packages-section .section-title-area .section-subtitle {
  font-size: 45px;
  font-weight: 500;
  color: var(--color-primary);
  background-color: rgb(255 73 124 / 0);
  padding: 5px 20px;
  border-radius: 15px;
  margin-bottom: 15px;
}

.packages-section .section-title-area .section-title {
  font-size: 44px;
  font-weight: 600;
  color: rgb(0 0 0 / 100);
}

.planswitch {
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.planswitch .switch-text {
  color: rgb(0 0 0 / 100);
  font-size: 16px;
  font-weight: 600;
}

.switch .slider {
  border-radius: 34px;
  background-color: rgb(204 204 204 / 100);
}

.switch .slider:before {
  bottom: 4px;
  border-radius: 50%;
  background-color: rgb(255 255 255 / 100);
}

.switch input:checked + .slider {
  background-color: var(--color-primary);
}

.packagelist-1 .package {
  border: 1px solid rgb(238 238 238 / 100);
  border-radius: 5px;
}

.packages-section .packagelist-1 .package .title {
  color: rgb(255 255 255 / 100);
  padding: 30px 10px 20px;
  text-align: center;
  text-transform: uppercase;
  background-color: rgb(255 73 124 / 100);
}

.packagelist-1 .package .title:before {
  background-color: rgb(238 238 238 / 100);
}

.packagelist-1 .package .title h3 {
  font-weight: 700;
  font-size: 20px;
}

.packagelist-1 .package .title p {
  font-weight: 400;
}

.packagelist-1 .package .cost {
  background-color: rgb(238 238 238 / 100);
  width: 100%;
  text-align: center;
  padding: 15px 10px 25px;
  font-size: 18px;
  font-weight: 700;
}

.packagelist-1 .package .cost:before {
  background-color: rgb(255 255 255 / 100);
}

.packagelist-1 .package .cost .price {
  font-size: 35px;
}

.packagelist-1 .package .desq {
  background-color: rgb(255 255 255 / 100);
  padding: 10px 10px 20px;
}

.packagelist-1 .package .desq li {
  font-size: 14px;
  font-weight: 400;
  margin: 15px 0;
  padding: 0 5px 0 20px;
}

.packagelist-1 .package .desq li:before {
  color: rgb(255 73 124 / 100);
}

.packages-section .packagelist-1 .package .selectbtn {
  background-color: rgb(255 73 124 / 100);
  padding: 10px 10px 15px;
  font-size: 16px;
  color: rgb(255 255 255 / 100);
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}

.packagelist-1 .package .selectbtn:before {
  background-color: rgb(255 73 124 / 100);
}

.packagelist-2 .package {
  border: 1px solid rgb(238 238 238 / 100);
  border-radius: 5px;
}

.packages-section .packagelist-2 .package .title {
  padding: 15px;
  color: rgb(255 255 255 / 100);
  font-size: 20px;
  font-weight: 500;
  background-color: var(--color-primary);
  text-align: center;
  text-transform: uppercase;
}

.packagelist-2 .package .cost {
  padding: 20px 10px;
  text-align: center;
  background-color: rgb(255 255 255 / 1);
}

.packagelist-2 .package .cost span {
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: var(--color-primary);
  box-shadow: 0 2px 2px 1px rgb(3 154 129 / 0.2);
}

.packagelist-2 .package .subtitle {
  padding: 15px 10px;
  color: var(--color-primary);
  background-color: rgb(255 255 255 / 1);
  text-align: center;
  font-weight: 400;
  font-size: 14px;
}

.packagelist-2 .package .desq {
  background-color: rgb(255 255 255 / 100);
  padding: 13px;
}

.packagelist-2 .package .desq li {
  margin: 5px 0;
  padding-left: 22px;
  font-size: 12px;
  color: rgb(102 102 102 / 100);
}

.packagelist-2 .package .desq li:before {
  color: rgb(255 192 203 / 100);
}

.packages-section .packagelist-2 .package .selectbtn {
  text-align: center;
  padding: 10px;
  display: inline-block;
  width: 100%;
  background-color: var(--color-primary);
}

.packagelist-2 .package .selectbtn a {
  border: 2px solid rgb(255 255 255 / 100);
  padding: 8px 25px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgb(255 255 255 / 100);
  border-radius: 3px;
}

.packagelist-2 .package .selectbtn a:hover {
  background-color: rgb(255 255 255 / 100);
  color: rgb(102 102 102 / 100);
}

.packages-section .more-btn {
  color: rgb(255 255 255 / 100);
  font-size: 16px;
  font-weight: normal;
  border-radius: 15px;
  padding: 5px 20px;
  background-color: var(--color-primary);
}

.packages-section .more-btn:hover {
  background-color: var(--color-primary);
  color: rgb(255 255 255 / 100);
}

.pagination-positions {
  justify-content: center;
}

.pagination .page-link {
  color: rgb(255 255 255 / 1);
}

.pagination .page-item.active .page-link {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.packagelist-2 .package .subtitle {
  text-transform: uppercase;
}

.partner-section {
  padding: 50px 0;
  background-color: rgb(255 255 255 / 100);
}
.partner-section .section-title-area {
  margin-bottom: 25px;
}
.partner-section .section-title-area .section-subtitle {
  font-size: 45px;
  font-weight: bold;
  color: var(--color-primary);
  background-color: rgb(255 73 124 / 0);
  padding: 5px 20px;
  border-radius: 15px;
  margin-bottom: 15px;
}
.partner-section .partner-list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.partner-section .imgdiv {
  padding: 30px 15px;

  border-right: 0px solid;
  text-align: center;
  display: block;
  width: 25%;
  overflow: hidden;
}

/* Blog Section */
.blog-section {
  padding: 80px 0;
  background: var(--color-bg-main);
}

.blog-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-section .section-header h2 {
  font-size: 42px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.blog-section .section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
  border-radius: 2px;
}

.blog-section .section-header p {
  color: #666;
  font-size: 16px;
  margin-top: 20px;
}

/* Search Bar */
.blog-section .search-wrapper {
  max-width: 600px;
  margin: 0 auto 50px;
}

.blog-section .search-box {
  position: relative;
}

.blog-section .search-box input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 15px;
  transition: all 0.3s;
}

.blog-section .search-box input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.1);
}

.blog-section .search-box button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-primary);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.3s;
}

.blog-section .search-box button:hover {
  background: var(--color-primary-dark);
  transform: translateY(-50%) scale(1.05);
}

/* Blog Cards */
.blog-section .blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-section .blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-section .blog-card-image {
  position: relative;
  height: 220px;
  /* background: #f0f0f0; */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.blog-section .blog-card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}

.blog-section .blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-section .blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--color-primary);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 10;
}

.blog-section .blog-card-body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-section .blog-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-section .blog-title i {
  color: var(--color-primary);
  margin-right: 8px;
  font-size: 16px;
}

.blog-section .blog-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.blog-section .author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
}

.blog-section .author-info {
  flex: 1;
}

.blog-section .author-name {
  font-weight: 600;
  color: #333;
  font-size: 14px;
  margin-bottom: 3px;
}

.blog-section .post-date {
  color: #999;
  font-size: 13px;
}

.blog-section .post-date i {
  margin-right: 5px;
  color: var(--color-primary);
}

/* Load More Button */
.blog-section .load-more-wrapper {
  text-align: center;
  margin-top: 50px;
}

.blog-section .btn-load-more {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 12px 40px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}

.blog-section .btn-load-more:hover {
  background: var(--color-primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(45, 212, 191, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .blog-section .section-header h2 {
    font-size: 32px;
  }

  .blog-section .blog-card-image {
    height: 180px;
  }

  .blog-section .blog-section {
    padding: 50px 0;
  }
}

/********** Testimonials Start **********/

.testimonial-section {
  padding: 100px 0;
  background-color: #f9f9f9;
}

.testimonial-section .section-title-area {
  margin-bottom: 50px;
}

.testimonial-section .section-title-area .section-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  padding: 5px 20px;
  border-radius: 15px;
  margin-bottom: 15px;
}

.testimonial-section .section-title-area .section-title {
  font-size: 44px;
  font-weight: 600;
  color: #000000;
}

.testimonial-slider .slick-arrow:before {
  color: var(--color-primary);
}

.testimonial-slider .testimonial-content {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  margin: 15px;
  padding: 80px 50px 40px 50px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-slider .testimonial-content:before {
  font-family: "FontAwesome";
  color: var(--color-primary);
  font-size: 40px;
  opacity: 0.6;
  top: 10px;
}

.testimonial-slider .testimonial-content .avatar-img {
  width: 110px;
  height: 110px;
  border-radius: 100%;
  border: 5px solid var(--color-primary);
}

.testimonial-slider .testimonial-content .comments {
  color: #818899;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 20px 0;
}

.testimonial-slider .testimonial-content .client-name {
  color: #1f2732;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.testimonial-slider .testimonial-content .client-position {
  color: #818899;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 12px;
}

.testimonial-slider .testimonial-content .star-rating {
  text-align: center;
}

.testimonial-slider .testimonial-content .star-rating i {
  color: var(--color-warning);
  font-size: 20px;
}

/********** FAQ's Start **********/
.faqs-section {
  padding: 100px 0;
  background-color: var(--color-primary-light);
}

.faqs-section .section-title-area {
  margin-bottom: 50px;
}

.faqs-section .section-title-area .section-subtitle {
  font-size: 45px;
  font-weight: 600;
  color: var(--color-primary);
  padding: 5px 20px;
  border-radius: 15px;
  margin-bottom: 15px;
}

.faqs-section .section-title-area .section-title {
  font-size: 44px;
  font-weight: 600;
  color: #000000;
}

.faq-wrapper {
  background-color: #ffffff;
  padding: 0 35px;
  border-top: 3px solid var(--color-primary);
  box-shadow:
    0px 30px 70px 0px rgba(11, 6, 70, 0.08),
    inset 0px 3px 0px 0px rgba(47, 128, 237, 0.004);
  border-radius: 20px;
}

.faq-wrapper .accordion-item {
  padding-top: 20px;
  padding-bottom: 20px;
  border: none;
  border-bottom: 1px solid var(--color-primary);
}

.faq-wrapper .accordion-item:last-child {
  border: none;
}

.faq-wrapper .accordion-button {
  outline: none;
  box-shadow: none;
  font-weight: 500;
}

.faq-wrapper .accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: var(--color-primary);
}

.faq-wrapper .accordion-body {
  line-height: 1.4;
}

/**********Image Banner Call Action Start **********/

.call-action-section {
  padding: 80px 0;
  background-color: var(--color-text-primary);
}

.call-action-section.bg-image-1 {
  background-image: url(../images/bg-1.jpg);
}

.call-action-section.bg-image-1::before {
  background-color: rgba(0, 0, 0, 0.8);
}

.call-action-section .btn-pink {
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  color: #ffffff;
  padding: 8px 25px;
}

/********** Footer other Start **********/

.custom-footer .foot-other-info {
  padding: 50px 0;
  background-color: rgb(230 230 230 / 1);
}

.custom-footer .foot-about {
  margin-bottom: 20px;
}

.custom-footer .foot-about .flogo {
  display: inline-block;
  margin-bottom: 10px;
}

.custom-footer .foot-about p {
  font-size: 16px;
  color: rgb(115 115 115 / 1);
  line-height: 1.6;
}

.custom-footer .foot-menu {
  margin-left: 10px;
  margin-bottom: 20px;
}

.custom-footer .foot-title {
  color: rgb(0 0 0 / 1);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}

.custom-footer .foot-menulist li {
  margin: 5px 0;
  width: 100%;
  display: inline-block;
}
.custom-footer .foot-menulist {
  margin: 0;
  padding: 0;
}

.custom-footer .foot-menulist li a {
  color: rgb(115 115 115 / 1);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
}

.custom-footer .foot-menulist li a:hover {
  opacity: 0.6;
}

.custom-footer .foot-social-2 {
  display: flex;
  width: 100%;
}

.custom-footer .foot-social-2 a {
  margin: 2px 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-primary);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: var(--color-primary);
  line-height: 0px;
}

.custom-footer .foot-contacts {
  width: 100%;
  display: inline-block;
  margin-bottom: 20px;
  margin: 0;
  padding: 0;
}

.custom-footer .foot-contacts li {
  width: 100%;
  display: inline-block;
  position: relative;
  margin: 5px 0;
  padding-left: 30px;
}

.custom-footer .foot-contacts li .fa {
  color: rgb(115 115 115 / 1);
  position: absolute;
  left: 0;
  top: 0;
}

.custom-footer .foot-contacts li a {
  color: rgb(115 115 115 / 1);
  display: inline-block;
  text-decoration: none;
}

.custom-footer .foot-contacts li a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 991px) {
  .custom-footer .foot-menu {
    margin-left: 0;
  }
}

.custom-footer .foot-copright {
  background-color: var(--color-primary);
  padding: 15px 0;
}

.custom-footer .foot-copright p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.custom-footer .foot-copright a {
  text-decoration: underline;
  color: #ffffff;
}
.whatsapp-link {
  position: fixed;
  right: 20px;
  bottom: 70px;
  cursor: pointer;
  display: inline-block;
}

/***************** Project Page Start *****************/
.downloadbox-section {
  padding: 50px 0;
  background-color: #f9f9f9;
}

.downloadbox-section .section-title-area {
  margin-bottom: 50px;
}

.downloadbox-section .section-title-area .section-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  padding: 5px 20px;
  border-radius: 15px;
  display: inline-block;
  margin-bottom: 15px;
}

.downloadbox-section .section-title-area .section-title {
  font-size: 44px;
  font-weight: 600;
  color: #000000;
}

.downloadbox .section-note {
  font-size: 18px;
  font-weight: 500;
  color: #999;
}

.downloadbox {
  background-color: #ffffff;
  padding: 40px 40px;
  border-radius: 15px;
  border: 1px solid #f9f9f9;
  border-top: 3px solid var(--color-primary);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.09);
}

.downloadbox .form-control {
  width: 100%;
  margin-bottom: 10px;
  background-color: #eee;
  border: 2px solid #eee;
  border-radius: 0;
  font-size: 16px;
  appearance: auto;
  outline: none;
}

.downloadbox .btn {
  color: #ffffff;
  background-color: var(--color-primary);
}

@media screen and (max-width: 991px) {
  .downloadbox-section .section-title-area .section-title {
    font-size: 38px;
  }
}

@media screen and (max-width: 767px) {
  .downloadbox-section .section-title-area .section-title {
    font-size: 30px;
  }
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background: whitesmoke;
}

.pricing-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-section .section-header h2 {
  font-size: 48px;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

/* Pricing Cards */
.pricing-section .pricing-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

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

.pricing-section .pricing-card.featured {
  border: 3px solid var(--color-primary);
}

.pricing-section .pricing-card.featured::before {
  content: "POPULAR";
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  padding: 5px 40px;
  font-size: 12px;
  font-weight: 700;
  transform: rotate(45deg);
  box-shadow: 0 3px 10px rgba(251, 191, 36, 0.4);
  z-index: 10;
}

.pricing-section .plan-header {
  background: linear-gradient(135deg, var(--color-primary));
  color: white;
  padding: 20px;
  text-align: center;
}

.pricing-section .plan-name {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-section .plan-price-wrapper {
  padding: 20px 25px;
  text-align: center;
  background: #f8f9fa;
}

.pricing-section .price-circle {
  width: 100px;
  height: 100px;
  border: 4px solid var(--color-text-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: white;
  transition: all 0.3s;
}

.pricing-section .pricing-card:hover .price-circle {
  transform: scale(1.05);
}

.pricing-section .price {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-primary);
}

.pricing-section .plan-duration {
  color: var(--color-text-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 15px;
  letter-spacing: 1px;
}

.pricing-section .plan-features {
  padding: 20px 25px;
  flex-grow: 1;
}

.pricing-section .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: #555;
  font-size: 15px;
}

.pricing-section .feature-item i {
  color: var(--color-primary);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.pricing-section .plan-footer {
  padding: 0 25px 20px 25px;
  text-align: center;
}

.pricing-section .btn-subscribe {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 12px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

.pricing-section .btn-subscribe:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

.pricing-section .pricing-card.featured .btn-subscribe {
  background: var(--color-primary);
  color: white;
}

.pricing-section .pricing-card.featured .btn-subscribe:hover {
  background: var(--color-primary);
}

/* Responsive */
@media (max-width: 991px) {
  .pricing-section .pricing-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .pricing-section .section-header h2 {
    font-size: 36px;
  }

  .pricing-section .pricing-section {
    padding: 60px 0;
  }

  .pricing-section .price-circle {
    width: 120px;
    height: 120px;
  }

  .pricing-section .price {
    font-size: 24px;
  }
}

/* Page Header */
.page-header {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(
      to right,
      rgba(209, 242, 235, 0.733),
      rgba(209, 242, 235, 0.562)
    ),
    url("https://images.unsplash.com/photo-1591696205602-2f950c417cb9?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  z-index: 0;
}

/* Header Content */
.header-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.page-title {
  font-size: 56px;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease-out;
}

.breadcrumb-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.breadcrumb-item {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.breadcrumb-item:hover {
  color: #0d9488;
}

.breadcrumb-separator {
  color: var(--color-primary);
  font-weight: bold;
}

.breadcrumb-current {
  color: #333;
  font-weight: 500;
}

/* Decorative Elements */
.header-decoration {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.2), transparent);
  z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .page-header {
    padding: 80px 0 60px;
  }

  .page-title {
    font-size: 40px;
  }

  .breadcrumb-wrapper {
    font-size: 14px;
    flex-wrap: wrap;
  }

  .candlestick-bg {
    display: none;
  }
}

@media (max-width: 576px) {
  .page-title {
    font-size: 32px;
  }

  .breadcrumb-current {
    text-align: center;
    width: 100%;
    margin-top: 5px;
  }
}

.about-vision {
  background-color: white;
}
.service-vition-bg {
  background-color: white;
}
/*------- Contact Us Start -------*/
.contact-section-1 {
  background-color: #f9f9f9;
  padding: 100px 0;
}

.contact-section-1 .section-title-area {
  margin-bottom: 50px;
}

.contact-section-1 .section-title-area .section-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-block;
  background-color: rgba(255, 73, 124, 0.2);
  padding: 5px 20px;
  border-radius: 15px;
  margin-bottom: 15px;
}

.contact-section-1 .section-title-area .section-title {
  font-size: 44px;
  font-weight: 600;
  color: #000000;
}

.contact-form-div-1 {
  padding: 30px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.contact-form-div-1 .form-control {
  background-color: #f7f7f7;
  border: 1px solid #d4d4d4;
  border-radius: 4px;
  font-size: 14px;
  min-height: 50px;
  height: auto;
  box-shadow: none;
}

.contact-form-div-1 .btn.btn-submit {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  padding: 10px;
  width: 100%;
}

.inquiry-box-1 {
  width: 100%;
  gap: 20px;
  display: flex;
  align-items: start;
  background-color: #ffffff;
  padding: 20px 20px;
  border-radius: 15px;
  border: 1px solid #f9f9f9;
}

.inquiry-box-1 img {
  max-width: 60px;
}

.inquiry-box-1 h4 {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 5px;
}

.inquiry-box-1 p {
  color: #000000;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
}

@media screen and (max-width: 991px) {
  .contact-section-1 .section-title-area .section-title {
    font-size: 38px;
  }
}

@media screen and (max-width: 767px) {
  .contact-section-1 .section-title-area .section-title {
    font-size: 30px;
  }
}

.contact-full-section {
  background-color: #203635;
  background-image: url(images/product-1.jpg);
  background-position: center left;
  background-repeat: no-repeat;
}

.contact-form-full-div {
  padding: 60px 50px;
  background-color: #203635;
}

.contact-form-full-div .section-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  background-color: var(--color-primary);
  padding: 5px 20px;
  border-radius: 15px;
  margin-bottom: 15px;
}

.contact-form-full-div .section-title {
  font-size: 44px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 25px;
}

.contact-form-full-div .form-control {
  background-color: #f7f7f7;
  border: 1px solid #d4d4d4;
  border-radius: 4px;
  font-size: 14px;
  min-height: 50px;
  height: auto;
  box-shadow: none;
}

.contact-form-full-div .btn.btn-submit {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  padding: 10px 20px;
}
.contact-section-1 .inquiry-box-1 {
  background-color: rgb(255 255 255 / 100);
  padding: 40px 40px;
  margin: 10px 0;
  border-radius: 15px;
  border: 1px solid rgb(255 255 255 / 100);
  border-top: 3px solid rgb(3 154 129 / 1);
  box-shadow: 5px 5px 15px rgb(0 0 0 / 0.094);
  text-align: left;
}
@media screen and (max-width: 1199px) {
  .contact-full-section {
    padding: 40px 0;
    background-image: none;
  }

  .contact-form-full-div {
    padding: 40px 10px 10px 10px;
  }
}

@media screen and (max-width: 991px) {
  .contact-form-full-div .section-title {
    font-size: 38px;
  }

  .contact-form-full-div {
    padding: 80px 50px;
  }
}

@media screen and (max-width: 767px) {
  .contact-form-full-div .section-title {
    font-size: 30px;
  }
}

/* Blog Section */
.blog-section {
  padding: 80px 0;
  background: white;
}

/* Blog Grid */
.blog-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Blog Card */
.blog-section .blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-section .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Featured Card - Takes up 2 rows */
.blog-section .blog-card.featured {
  grid-row: span 2;
}

.blog-section .blog-image {
  position: relative;
  overflow: hidden;
  background: #f0f0f0;
}

.blog-section .blog-card.featured .blog-image {
  height: 400px;
}

.blog-section .blog-card:not(.featured) .blog-image {
  height: 250px;
}

.blog-section .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-section .blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-section .blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.blog-section .blog-card:hover .blog-overlay {
  opacity: 1;
}

/* Blog Content */
.blog-section .blog-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-section .blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.blog-section .blog-author {
  color: #666;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-section .meta-divider {
  width: 2px;
  height: 12px;
  background: var(--color-primary);
}

.blog-section .blog-category {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-section .blog-title {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-section .blog-card.featured .blog-title {
  font-size: 26px;
  -webkit-line-clamp: 3;
}

.blog-section .blog-card:hover .blog-title {
  color: var(--color-primary);
}

.blog-section .blog-excerpt {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-section .blog-card.featured .blog-excerpt {
  -webkit-line-clamp: 4;
}

.blog-section .btn-read-more {
  background: var(--color-primary);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  align-self: flex-start;
}

.blog-section .btn-read-more:hover {
  background: #0d9488;
  transform: translateX(5px);
  color: white;
}

.blog-section .btn-read-more i {
  transition: transform 0.3s;
}

.blog-section .btn-read-more:hover i {
  transform: translateX(3px);
}

/* Large Featured Card Specific */
.blog-section .blog-card.large-featured {
  grid-column: span 1;
  grid-row: span 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .blog-section .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .blog-section .blog-card.featured {
    grid-row: span 1;
  }
}

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

  .blog-section .blog-card.featured {
    grid-row: span 1;
  }

  .blog-section .blog-card.featured .blog-image,
  .blog-section .blog-card:not(.featured) .blog-image {
    height: 220px;
  }

  .blog-section .blog-section {
    padding: 50px 0;
  }

  .blog-section .blog-title {
    font-size: 20px;
  }

  .blog-section .blog-card.featured .blog-title {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .blog-section .blog-content {
    padding: 20px;
  }

  .blog-section .blog-excerpt {
    font-size: 14px;
  }
}

/* Page Header */
.page-header-blog {
  background: linear-gradient(135deg, #d1f2eb 0%, #c8ede5 100%);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.page-header-blog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(45, 212, 191, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.breadcrumb-nav {
  background: transparent;
  padding: 0;
  margin-bottom: 30px;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  color: var(--color-primary);
  font-size: 14px;
}

.breadcrumb-item.active {
  color: #555;
}

.breadcrumb-item a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-item a:hover {
  color: #0d9488;
}

/* Blog Header Info */
.blog-header-info {
  position: relative;
  z-index: 10;
}

.blog-category-badge {
  background: var(--color-primary);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.blog-detail-title {
  font-size: 42px;
  font-weight: bold;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.3;
}

.blog-meta-info {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
  font-size: 15px;
}

.meta-item i {
  color: var(--color-primary);
  font-size: 16px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), #0d9488);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 16px;
}

.author-details .author-name {
  font-weight: 600;
  color: #333;
}

.author-details .author-title {
  font-size: 13px;
  color: #999;
}

/* Featured Image */
.featured-image {
  margin: 40px 0 60px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Blog Content */
.blog-content-wrapper {
  background: white;
  padding: 60px 0;
}

.blog-content {
  max-width: 820px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

.blog-content h2 {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin: 40px 0 20px;
  position: relative;
  padding-bottom: 15px;
}

.blog-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-primary)
  );
  border-radius: 2px;
}

.blog-content h3 {
  font-size: 26px;
  font-weight: 600;
  color: #333;
  margin: 30px 0 15px;
}

.blog-content p {
  margin-bottom: 20px;
}

.blog-content ul,
.blog-content ol {
  margin: 20px 0 20px 30px;
}

.blog-content li {
  margin-bottom: 12px;
  line-height: 1.8;
}

.blog-content blockquote {
  background: #f8f9fa;
  border-left: 5px solid var(--color-primary);
  padding: 25px 30px;
  margin: 30px 0;
  font-style: italic;
  font-size: 18px;
  color: #555;
}

.blog-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
}

.highlight-box {
  background: linear-gradient(135deg, #d1f2eb 0%, #e0f7f4 100%);
  padding: 30px;
  border-radius: 12px;
  margin: 30px 0;
  border-left: 4px solid var(--color-primary);
}

.highlight-box h4 {
  color: var(--color-primary);
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Tags */
.blog-tags {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid #e0e0e0;
}

.tags-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  display: block;
}

.tag-item {
  display: inline-block;
  background: #f0f0f0;
  color: #555;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  margin: 5px;
  transition: all 0.3s;
  text-decoration: none;
}

.tag-item:hover {
  background: var(--color-primary);
  color: white;
}

/* Share Section */
.share-section {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  margin-top: 40px;
  text-align: center;
}

.share-title {
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  font-size: 18px;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.share-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: all 0.3s;
  text-decoration: none;
}

.share-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook {
  background: #3b5998;
}

.share-btn.twitter {
  background: #1da1f2;
}

.share-btn.linkedin {
  background: #0077b5;
}

.share-btn.whatsapp {
  background: #25d366;
}

.share-btn.email {
  background: #666;
}

/* Related Posts */
.related-posts {
  background: white;
  padding: 80px 0;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-primary)
  );
  border-radius: 2px;
}

.related-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  height: 100%;
}

.related-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.related-image {
  height: 200px;
  overflow: hidden;
}

.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.related-card:hover .related-image img {
  transform: scale(1.1);
}

.related-content {
  padding: 25px;
}

.related-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.related-card:hover .related-title {
  color: var(--color-primary);
}

.related-excerpt {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.related-date {
  color: #999;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-detail-title {
    font-size: 32px;
  }

  .blog-content {
    font-size: 16px;
  }

  .blog-content h2 {
    font-size: 26px;
  }

  .blog-content h3 {
    font-size: 22px;
  }

  .blog-meta-info {
    gap: 15px;
  }

  .page-header-blog {
    padding: 60px 0 30px;
  }

  .blog-content-wrapper {
    padding: 40px 0;
  }
}
.scroll-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 42px;
  height: 42px;
  background: var(--color-text-secondary);
  color: #ffffff;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.hero-content {
  z-index: 10;
  position: relative;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
  animation: fadeInLeft 0.8s ease-out;
}

.hero-content h1 .highlight {
  color: var(--color-primary);
}

.hero-subtitle {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  font-size: 18px;
  color: #555;
  animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.lock-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  animation: fadeInLeft 0.8s ease-out 0.4s both;
}

.btn-primary-custom {
  background: var(--color-primary);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary-custom:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

.btn-secondary-custom {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-secondary-custom:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 36px;
  }
}

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

  .hero-section {
    padding: 60px 0;
  }
}
.containerdd {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone {
  width: 200px;
  height: 400px;
  background: #f8f8f8;
  border-radius: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  border: 12px solid #e0e0e0;
  animation: phoneFade 6.5s ease-in-out infinite;
}

.phone::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 30px;
  background: #f8f8f8;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

.status-bar {
  position: absolute;
  top: 8px;
  left: 20px;
  right: 20px;
  height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #333;
  z-index: 11;
}

.time {
  font-weight: 500;
}

.icons {
  display: flex;
  gap: 4px;
  font-size: 10px;
}

.screen {
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 40px 20px;
}

.profit-content {
  text-align: center;
  z-index: 2;
}

.profit-title {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.profit-percentage {
  font-size: 30px;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 5px;
  animation: fadeInScale 0.8s ease-out 0.5s backwards;
}

.profit-duration {
  font-size: 16px;
  color: #666;
  font-weight: 400;
}

.chart-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 250px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 15px 15px;
}

.area-chart {
  width: 100%;
  height: 100%;
  position: relative;
}

.area-chart svg {
  width: 100%;
  height: 100%;
}

.chart-area {
  animation: chartLoop 6.5s ease-in-out infinite;
  transform-origin: bottom;
}

.candlestick-container {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 20px;
  align-items: flex-end;
  height: 200px;
}

.candlestick {
  opacity: 0;
  animation:
    slideInCandle 0.5s ease-out forwards,
    fadeOutCandle 0.5s ease-in 5s forwards,
    candleLoop 6.5s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.candlestick:nth-child(1) {
  animation-delay: 0s, 5s, 0s;
}

.candlestick:nth-child(2) {
  animation-delay: 0.15s, 5.1s, 0s;
}

.candlestick:nth-child(3) {
  animation-delay: 0.3s, 5.2s, 0s;
}

.candlestick:nth-child(4) {
  animation-delay: 0.45s, 5.3s, 0s;
}

.candlestick:nth-child(5) {
  animation-delay: 0.6s, 5.4s, 0s;
}

.candlestick:nth-child(6) {
  animation-delay: 0.75s, 5.5s, 0s;
}

.wick-top {
  width: 2px;
  background: inherit;
  margin-bottom: -1px;
}

.candle-body {
  width: 28px;
  border-radius: 2px;
  position: relative;
}

.wick-bottom {
  width: 2px;
  background: inherit;
  margin-top: -1px;
}

.bullish {
  color: #10b981;
}

.bearish {
  color: #ef4444;
}

.bullish .candle-body {
  background: #10b981;
}

.bearish .candle-body {
  background: #ef4444;
}

.bullish .wick-top,
.bullish .wick-bottom {
  background: #10b981;
}

.bearish .wick-top,
.bearish .wick-bottom {
  background: #ef4444;
}

.info-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  min-width: 260px;
}

.card1 {
  top: 200px;
  left: 280px;
  animation: cardLoop1 6.5s ease-in-out infinite;
}

.card2 {
  top: 320px;
  left: 280px;
  animation: cardLoop2 6.5s ease-in-out infinite;
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}

.card-subtitle {
  font-size: 13px;
  color: #666;
  margin-bottom: 2px;
}

.card-info {
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.card-link {
  font-size: 11px;
  color: #10b981;
  font-weight: 500;
}

.card-date {
  font-size: 11px;
  color: #999;
}

@keyframes phoneFade {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  40% {
    opacity: 1;
    transform: scale(1);
  }

  77% {
    opacity: 1;
    transform: scale(1);
  }

  85% {
    opacity: 0;
    transform: scale(0.95);
  }

  100% {
    opacity: 0;
    transform: scale(0.95);
  }
}

@keyframes candleLoop {
  0%,
  100% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }

  15%,
  77% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  85% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
}

@keyframes profitLoop {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.8);
  }

  12%,
  77% {
    opacity: 1;
    transform: scale(1);
  }

  85% {
    opacity: 0;
    transform: scale(0.8);
  }
}

@keyframes chartLoop {
  0%,
  100% {
    opacity: 0;
    transform: scaleY(0);
  }

  23% {
    opacity: 1;
    transform: scaleY(1);
  }

  77% {
    opacity: 1;
    transform: scaleY(1);
  }

  85% {
    opacity: 0;
    transform: scaleY(0);
  }
}

@keyframes cardLoop1 {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-30px);
  }

  49% {
    opacity: 0;
    transform: translateX(-30px);
  }

  55% {
    opacity: 1;
    transform: translateX(0);
  }

  77% {
    opacity: 1;
    transform: translateX(0);
  }

  85% {
    opacity: 0;
    transform: translateX(-100px);
  }
}

@keyframes cardLoop2 {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-30px);
  }

  55% {
    opacity: 0;
    transform: translateX(-30px);
  }

  60% {
    opacity: 1;
    transform: translateX(0);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  75% {
    opacity: 0;
    transform: translateX(-100px);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes drawChart {
  from {
    opacity: 0;
    transform: scaleY(0);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes slideInCandle {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeOutCandle {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
}

@keyframes fadeOutScale {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(0.8);
  }
}

@keyframes fadeOutChart {
  from {
    opacity: 1;
    transform: scaleY(1);
  }

  to {
    opacity: 0;
    transform: scaleY(0);
  }
}

@keyframes fadeOutCard {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(-30px);
  }
}

@keyframes slideInCard {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slick-prev {
  left: -25px;
}
.slick-next {
  right: -25px;
}

@media (max-width: 768px) {
  .slick-prev {
    left: 25px;
    z-index: 10;
  }
  .slick-next {
    right: 25px;
  }
}
