  body {
    padding-top: 80px;
    font-family: 'Times New Roman', Times, serif;
  }

  .shadow-sm {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08) !important;
  }


  /*hero*/
  #hero {
    position: relative;
    height: 700px;
    /* Increased from 550px */
    overflow: hidden;
  }

  #hero .btn-light {
    background-color: #f39c12 !important;
    border-color: #f39c12 !important;
    color: white !important;
  }

  #hero .btn-light:hover,
  #hero .btn-light:focus {
    background-color: #e08e0b !important;
    border-color: #e08e0b !important;
    color: white !important;
  }

  .bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%;
    min-width: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
  }

  .hero-content {
    z-index: 1;
  }



 /* ✅ Stepper Styles */
.checkout-steps-modern .stepper {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  list-style: none;
}

.checkout-steps-modern .stepper li {
  text-align: center;
  position: relative;
  flex: 1;
  font-size: 12px;
  color: #888;
  cursor: pointer;
}

.checkout-steps-modern .stepper li span {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: #ccc;
  color: white;
  border-radius: 50%;
  margin-bottom: 5px;
  font-weight: bold;
}

.checkout-steps-modern .stepper li.active span {
  background-color: #28a745;
}

.checkout-steps-modern .stepper li::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  width: 100%;
  height: 4px;
  background-color: #ccc;
  z-index: -1;
}

.checkout-steps-modern .stepper li:last-child::after {
  display: none;
}

.checkout-steps-modern .stepper li.active::after {
  background-color: #28a745;
}


  /*portfolio*/
  .py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .bg-light {
    background-color: #f8f9fa;
  }

  .container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
  }

  .section-title {
    font-size: 2rem;
    font-weight: bold;
  }

  .mb-4 {
    margin-bottom: 1.5rem;
  }

  .mb-5 {
    margin-bottom: 3rem;
  }

  .swiper {
    padding-bottom: 40px;
    position: relative;
  }

  .swiper-button-next,
  .swiper-button-prev {
    color: #f39c12;
    background-color: rgba(255, 255, 255, 0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    z-index: 10;
    top: 40%;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
  }

  .portfolio-card {

    justify-content: center;
    transition: transform 0.3s ease;
  }

  .portfolio-card img {
    width: 60%;
    /* Reduce width to 80% of container */
    height: 500px;
    /* Increase fixed height */
    object-fit: cover;
    /* Maintain aspect ratio, fill cropped area */
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .portfolio-card img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }

  .portfolio-card {
    display: flex;
    justify-content: center;
    /* horizontal centering */
    align-items: center;
    /* vertical centering */
  }

  @media (max-width: 1200px) {
    .portfolio-card img {
      width: 90%;
      height: 250px;
    }
  }

  @media (max-width: 992px) {
    .portfolio-card img {
      width: 100%;
      height: auto;
    }
  }

  @media (min-width: 992px) {

    .swiper-button-next,
    .swiper-button-prev {
      display: none !important;
    }
  }

  /*about*/
  /* Common animation setup */
  .animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
  }

  .animate.active {
    opacity: 1;
    transform: translateY(0);
  }

  /* Zoom-in from left */
  .zoom-in-from-left.active {
    animation: zoomInLeft 1s forwards;
  }

  @keyframes zoomInLeft {
    0% {
      opacity: 0;
      transform: scale(0.9) translateX(-50px);
    }

    100% {
      opacity: 1;
      transform: scale(1) translateX(0);
    }
  }

  /* Slide in from right */
  .slide-in-from-right.active {
    animation: slideInRight 1s forwards;
  }

  @keyframes slideInRight {
    0% {
      opacity: 0;
      transform: translateX(50px);
    }

    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Optional zoom-in for button */
  .zoom-in.active {
    animation: zoomIn 1s forwards;
  }

  @keyframes zoomIn {
    0% {
      opacity: 0;
      transform: scale(0.8);
    }

    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  .zoom-image img:hover {
    transform: scale(1.05);
    transition: transform 0.5s ease;
  }

  .zoom-image {
    opacity: 0;
    transform: scale(0.8);
    transition: transform 1.2s ease, opacity 1.2s ease;
  }

  .zoom-image.active {
    opacity: 1;
    transform: scale(1);
  }

  /*pricing*/
  .pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
  }

  .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: #f39c12;
  }

  .pricing-card .icon {
    width: 60px;
    height: 60px;
    background-color: #fff8e1;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
  }

  .pricing-card.featured {
    border: 2px solid #f39c12;
    background: linear-gradient(135deg, #fff8e1, #fff);
  }

  /*service*/
  /* Service Image Styling */
  .service-img {
    height: 240px;
    /* increased from 180px */
    width: 220px;
    /* increased from 180px */
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }


  .service-card:hover .service-img {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(243, 156, 18, 0.5);
    /* yellow glow */
  }

  /* Card Styling */
  .service-card {
    border-radius: 20px;
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  }

  /* Typography */
  .card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
  }

  .card-text {
    font-size: 1rem;
    color: #6c757d;
  }

  .btn-view {
    color: #fff !important;
    background-color: #f39c12 !important;
    border-color: #f39c12 !important;
  }

  .btn-view:hover,
  .btn-view:focus,
  .btn-view:active,
  .btn-view:visited {
    background-color: #d7860f !important;
    /* slightly darker */
    border-color: #d7860f !important;
    color: #fff !important;
  }

  /*contact form*/
  #contact {
    background-image: url('image/form bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
  }

  #contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: -1;
  }

  @media (max-width: 767.98px) {
    #contact .p-5 {
      padding: 2rem !important;
    }
  }

  /* Footer */
  footer {
    width: 100%;
    background-color: #333;
  }

  footer .container {
    max-width: 1140px;
    /* optional—Bootstrap default */
  }

  footer p {
    margin: 0;
  }

  footer a {
    color: #f39c12;
    text-decoration: none;
  }

  footer a:hover {
    color: #e67e22;
  }

  footer .row {
    display: flex;
    flex-wrap: wrap;
  }

  footer .mb-3 {
    flex: 1 1 auto;
  }

  @media (max-width: 576px) {
    footer .text-md-end {
      text-align: left !important;
    }
  }

  .footer-main {
    display: flex;
    flex-wrap: wrap;
    background: #333;
    color: #fff;
    padding: 20px;
  }

  .footer-col {
    flex: 1 1 200px;
    margin: 10px;
  }

  @media (max-width: 600px) {
    .footer-col {
      flex: 1 1 100%;
      text-align: center;
    }
  }