.navbar-nav .nav-link {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
  margin: 5px;
  width: 100%;
}
@media (max-width: 1024px) {
  .navbar-nav .nav-link {
    font-size: 12px;
    margin: 0px;
  }
  .btn-orange {
    padding: 4px 10px;
    font-size: 12px;
  }
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #f58220;
}

.btn-orange {
  background-color: #f58220;
  color: white;
  border-radius: 50px;
  padding: 6px 20px;
  font-weight: 500;
}

.btn-orange:hover {
  background-color: #d96d15;
  color: white;
}

.navbar-brand img {
  height: 50px;
}

:root {
  --hero-height: 78vh;
  --caption-max: 780px;
  --overlay-dark: 0.45;
  /* --radius-xl: 1.25rem; */
  --glow: 0 15px 45px rgba(0, 0, 0, 0.35);
  --anim-speed: 5s;
}

/* body {
            background: #0e0f13;
            color: #f8f9fa;
        } */

.hero-wrap {
  max-width: 1580px;
  margin-inline: auto;
  /* padding: 1.25rem; */
  border-radius: none;
}

.carousel {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--glow);
}

.carousel-item {
  position: relative;
  height: var(--hero-height);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: stretch;
  isolation: isolate;
  border-radius: none;
}

.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.66) 10%,
    rgba(0, 0, 0, var(--overlay-dark)) 55%,
    rgba(0, 0, 0, 0.15) 90%
  );
  z-index: 1;
}

.carousel-item::after {
  content: "";
  position: absolute;
  inset: -10% -20%;
  background: radial-gradient(
      60vmax 60vmax at 10% 20%,
      rgba(255, 255, 255, 0.08),
      transparent 60%
    ),
    radial-gradient(
      40vmax 40vmax at 90% 10%,
      rgba(255, 255, 255, 0.06),
      transparent 55%
    );
  z-index: 2;
  mix-blend-mode: screen;
  transform: translateZ(0);
  animation: floaty 18s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes floaty {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(-2%, 1.5%, 0) scale(1.03);
  }
}

.parallax {
  position: absolute;
  inset: 0;
  background: inherit;
  background-attachment: fixed;
  filter: saturate(1.05);
}

.carousel-caption {
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 3rem clamp(1rem, 4vw, 3rem);
  max-width: var(--caption-max);
}

.carousel-caption .badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.headline {
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.2px;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
}

.lead-text {
  color: #e9ecef;
  opacity: 0.95;
  text-shadow: 0 6px 25px rgba(0, 0, 0, 0.45);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn-glass:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.22);
}

.slide-progress {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  z-index: 4;
  background: rgba(255, 255, 255, 0.15);
}

.slide-progress > span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #fff, #ddd);
}

.carousel-item.active .slide-progress > span {
  animation: fill var(--anim-speed) linear forwards;
}

@keyframes fill {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 12%;
  opacity: 0.85;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-indicators [data-bs-target] {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  margin: 0 6px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background-color: rgba(255, 255, 255, 0.25);
}

.carousel-indicators .active {
  background-color: #fff;
}

@media (max-width: 768px) {
  :root {
    --hero-height: 64vh;
  }

  .headline {
    font-size: clamp(1.35rem, 5.6vw, 2.2rem) !important;
  }

  .lead-text {
    font-size: 0.95rem;
  }

  .carousel-caption {
    top: 0%;
  }
}

.btn-glass {
  background-color: #d96d15;
  border: none;
}

@media (max-width: 768px) {
  .btn-glass {
    font-size: 10px;
  }

  .btn-light {
    font-size: 10px;
  }
}

.one {
  top: 20%;
}

@media (max-width: 768px) {
  .one {
    top: 0%;
  }
}

.feature-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.2s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* .right-side {
      position: relative;
      background: url('./images/animation.mp4') center/cover no-repeat;
      min-height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    } */
.clock-overlay {
  background: #fff;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 2.5rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  position: relative;
}

@media (max-width: 768px) {
  .right-side {
    min-height: 300px;
  }
}

.right-side {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Prevents scrollbars from video overflow */
}

.right-side {
  position: relative;
  /* for overlay positioning */
  overflow: hidden;
  /* hide extra video edges */
  height: 530px;
  /* or whatever height you want */
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* maintain aspect ratio */
  z-index: 0;
}

.clock-overlay {
  position: relative;
  z-index: 1;
  color: #1b1919;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.clock-overlay {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 2.5rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.tab-buttons .btn {
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tab-buttons .btn.active {
  background: orange;
  color: white;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
  transform: scale(1.05);
}

.tab-buttons .btn:not(.active):hover {
  background: lightgreen;
  color: white;
}

.search-box {
  background: linear-gradient(90deg, orange, lightgreen);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  width: 600px;
  margin: auto;
}

.search-box {
  background: linear-gradient(90deg, orange, lightgreen);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  width: 100%;
  /* full width by default */
  max-width: 760px;
  /* limits maximum width */
  margin: auto;
  box-sizing: border-box;
}

/* Optional: adjust padding and gap on smaller screens */
@media (max-width: 768px) {
  .search-box {
    padding: 15px;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .search-box {
    flex-direction: column;
    /* stack items vertically */
    align-items: stretch;
    padding: 10px;
    gap: 6px;
  }
}

.search-box select,
.search-box input {
  flex: 1;
  min-width: 200px;
  border-radius: 6px;
  border: none;
  padding: 10px;
}

.search-box button {
  background: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  color: orange;
  transition: all 0.3s ease;
}

.search-box button:hover {
  background: lightgreen;
  color: white;
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  background: white;
  border-radius: 8px;
  padding: 8px;
  top: auto;
  bottom: -50px;
}

.slider-container {
  position: relative;
  max-width: 1250px;
  margin: auto;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.card {
  flex: 0 0 calc(20% - 20px);
  /* 5 per row on desktop */
  margin: 10px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card i {
  font-size: 40px;
  color: orange;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #555;
}

@media (max-width: 992px) {
  .card {
    flex: 0 0 calc(33.333% - 20px);
  }
}

/* 3 per row */
@media (max-width: 576px) {
  .card {
    flex: 0 0 calc(100% - 20px);
  }
}

/* 1 per row */

.silder-sec {
  background-color: hwb(120 84% 8%);
  padding: 40px;
}

.slick-next,
.slick-prev {
  z-index: 5;
}

.slick-next {
  right: -22px;
}

.slick-prev {
  left: -25px;
}

.slick-next:before,
.slick-prev:before {
  color: #000;
  font-size: 26px;
  font-family: inherit;
}

.pricing {
  margin-top: 30px;
}

.section-title h2,
h3 {
  text-align: center;
}

.section-title {
  margin-bottom: 20px;
}

.section-title h2 {
  color: orange;
}

.faq-section {
  background: #f9f9fb;
  padding: 60px 20px;
}

.faq-title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
  color: hwb(37 13% 6%);
}

.accordion-button {
  font-weight: 500;
  background-color: #fff;
  color: black;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: hwb(48 23% 7%);
  color: #fff;
}

.accordion-body {
  background: #fff;
  color: #555;
}

#footer {
  font-size: 15px;
}

#footer .footer-links a {
  color: black;
  margin-left: 15px;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  text-decoration: none;
}

#footer .footer-links a:hover {
  color: #ffcc00;
  border-bottom: 2px solid #ffcc00;
}

.contact {
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
  padding: 60px 0;
}

.section-title h2 {
  font-weight: 700;
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 30px;
  position: relative;
}

.contact-about h3 {
  color: #ff9800;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-about p {
  font-size: 15px;
  color: #555;
}

.social-links a {
  font-size: 20px;
  margin-right: 10px;
  color: #555;
  transition: 0.3s;
}

.social-links a:hover {
  color: #ff9800;
}

.info-item {
  background: white;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
  font-size: 12px;
  font-weight: 500;
}

.info-item:hover {
  transform: translateY(-3px);
}

.info-item i {
  font-size: 22px;
  color: #ff9800;
}

.php-email-form .form-control {
  border-radius: 8px;
  box-shadow: none;
  border: 1px solid #ddd;
  padding: 10px 15px;
}

.php-email-form button {
  background: #ff9800;
  color: white;
  padding: 10px 25px;
  border-radius: 8px;
  border: none;
  transition: 0.3s;
}

.php-email-form button:hover {
  background: #e68900;
}

.error {
  color: red;
  font-size: 13px;
  margin-top: 5px;
}

.dis-sec {
  max-width: 1000px;
}

.phone-img {
  max-width: 100%;
  height: 600px;
  display: block;
  margin: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 5rem;
}

.middle-img {
  height: 600px;
  /* Fixed height for the middle image */
  margin-top: -2px;
  /* Moves it slightly upward */
}

.phone-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.qr-card {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: box-shadow 0.3s ease;
}

.qr-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.qr-card img.qr {
  width: 100px;
  height: 100px;
  border-radius: 10px;
}

.qr-text {
  font-size: 14px;
}

.qr-text strong {
  font-weight: 600;
}

.dis {
  padding-top: 1rem;
  margin: auto;
  text-align: center;
}

.blog-section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-weight: 700;
  color: #ff6600;
  /* Netway-style highlight color */
  margin-bottom: 10px;
}

.section-title p {
  color: #555;
}

.blog-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 20px;
}

.blog-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.blog-card-text {
  font-size: 0.95rem;
  color: #666;
}

.read-more {
  display: inline-block;
  margin-top: 12px;
  color: #ff6600;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #009900;
}

.testimonial-card {
  transition: transform 0.3s, box-shadow 0.3s;
  background: #ffffff;
  border-radius: 12px;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.rounded-circle {
  height: 100px;
}

/* Floating button */
.talk-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1100;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  background: linear-gradient(135deg, #ff7a00, #ffb444);
  color: #fff;
  font-size: 1.25rem;
  border: none;
}

/* hover/tap feedback */
.talk-btn:active {
  transform: scale(0.96);
}

.talk-btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 160, 60, 0.18);
}

/* subtle pulse for attention */
.talk-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  left: 0;
  top: 0;
  animation: pulse 2.2s infinite;
  pointer-events: none;
  opacity: 0.6;
  mix-blend-mode: screen;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0)
  );
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }

  70% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* small label above button (optional) */
.talk-label {
  position: fixed;
  right: 100px;
  bottom: 34px;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 6px 10px;
  border-radius: 18px;
  font-size: 0.85rem;
  display: none;
  /* show on larger screens if you want */
}

/* chat modal adjustments to appear as a small chat box */
.chat-modal .modal-dialog {
  position: fixed;
  right: 20px;
  bottom: 90px;
  /* above the button */
  margin: 0;
  max-width: 360px;
}

.chat-modal .modal-content {
  border-radius: 12px;
  overflow: hidden;
}

.chat-header {
  background: linear-gradient(90deg, #ff7a00, #ffb444);
  color: #fff;
}

.hero-section {
  background: linear-gradient(to right, hsl(31, 97%, 48%), hwb(95 61% 8%));
  color: white;
}

@media (max-width: 640px) {
  .hero-section h1 {
    font-size: 1.5rem;
  }

  .content-section img {
    width: 100%;

    height: auto;
  }
}

.policy-card {
  border: 1px solid #eef0f4;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  border-radius: 1rem;
}

.section-title {
  scroll-margin-top: 6rem;
}

.toc a {
  text-decoration: none;
}

.toc a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.services .icon-box::before {
  content: "";
  position: absolute;
  background: #e1f0fa;
  right: -60px;
  top: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  transition: all 0.3s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: #f2821a;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.services .icon {
  margin: 0 auto 20px auto;
  padding-top: 10px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: #f2821a;
  transition: all 0.3s ease-in-out;
}

.services .icon i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box:hover .title a,
.services .icon-box:hover .description,
.services .icon-box:hover p {
  color: #fff !important;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #f2821a;
}
.more-services {
  padding-top: 20px;
}

.more-services .card {
  border: 0;
  padding: 160px 20px 20px 20px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.more-services .card-body {
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 5px;
}

.more-services .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.more-services .card-title a {
  color: #222222;
}

.more-services .card-text {
  color: #5e5e5e;
}

.more-services .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.4s;
}

.more-services .read-more a:hover {
  text-decoration: underline;
}

.more-services .card:hover .card-body {
  background: #f2821a;
}

.more-services .card:hover .read-more a,
.more-services .card:hover .card-title,
.more-services .card:hover .card-title a,
.more-services .card:hover .card-text {
  color: #fff;
}
.video-content {
  display: flex;
}
.video-content ul {
  width: 60%;
}

.video-wrapper {
  background-size: cover;
  background-position: 50% 50%;
  margin: auto;
  width: 40%;
  height: 100%;
  object-fit: cover;
  display: flex;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .video-content ul,
  .video-wrapper {
    width: 100%;
  }
  .video-content {
    display: block;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 0px auto;
  list-style: none;
  text-align: center;
}
.portfolio #portfolio-flters ul {
  margin-bottom: 0 !important;
  border: none;
  justify-content: center;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 12px 15px 15px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #222222;
  margin-bottom: -1px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}
#nav-tabContent {
  /*border: 1px solid #FFAC1C !important;*/
  background: #fff !important;
  padding-top: 27px !important;
}
#nav-tabContent li {
  list-style: none;
  margin-bottom: 5px;
}
#nav-tabContent ul {
  padding-left: 0px;
  margin-top: 20px;
}
#nav-tabContent h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}
#nav-tabContent p span {
  font-size: 18px;
}
.portfolio #portfolio-flters li.active,
.portfolio #portfolio-flters li.active:hover {
  color: WHITE;
  border-color: #f2821a;
  border-bottom: none;
  border-radius: 5px 5px 5px 5px;
  background-color: #f2821a;
}
.portfolio #portfolio-flters li:hover {
  border: 1px solid transparent;
  color: #f2821a;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(34, 34, 34, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(34, 34, 34, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #f2821a;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #f2821a;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: #f2821a;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

:root {
  --accent: #ff7a2d;
  --badge: hsl(29, 98%, 52%);
  --card-radius: 18px;
}

.pricing-card {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 18px;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pc-top {
  text-align: center;
  margin-bottom: 12px;
}

.speed-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  background: var(--badge);
  color: #fff;
  margin-bottom: 6px;
}

.main-price {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.prices-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed #ddd;
  cursor: pointer;
  position: relative;
}

.collapse-details {
  font-size: 15px;
  color: white;
  padding: 6px;
  background: hsl(29, 98%, 52%);
  border-radius: 8px;
  margin-top: 4px;
  display: none;
  /* default hidden */
}

/* hover par details show */
.prices-list li:hover + .collapse-details {
  display: block;
}

.ott-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin: 10px 0;
}

.ott-logo {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.buy-btn,
.view-btn {
  width: 100%;
  margin-top: 8px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px;
  font-weight: 600;
}

.view-btn {
  background: #6c757d;
  margin-top: 4px;
  text-decoration: none;
  color: #fff;
  text-align: center;
  display: inline-block;
  transition: background 0.3s ease;

  background: hsl(29, 98%, 52%);
}
.plan {
  background-color: lightgoldenrodyellow;
}
.logo-icon {
  width: 40px;
  height: 40px;
  margin: 10px;
}
.modal-content {
  border-radius: 15px;
  overflow: hidden;
}
.modal-left {
  background: linear-gradient(135deg, #ff6600, #ff8533); /* Orange gradient */
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}
.modal-left h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}
.modal-left p {
  font-size: 18px;
  margin: 0;
}
.modal-right {
  background: #fff;
  padding: 30px;
}
.btn-orange {
  background: #ff6600;
  color: #fff;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  border: none;
}
.btn-orange:hover {
  background: #e65500;
  color: #fff;
}
.form-control,
.form-select {
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
}
.stat-box {
  text-align: center;
  margin-bottom: 20px;
}
/* Counter */
.stat-number {
  font-size: 3.4rem;
  font-weight: 800;
  color: #000;
}
.stat-text {
  font-size: 1.8rem;
  font-weight: 500;
  color: #555;
}
