 .main-banner {
      position: relative;
      width: 100%;
      height: 450px;
      background-size: cover;
      background-position: center;
    }

    .main-banner::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1;
    }

    .banner-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: #fff;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
      animation: fadeInUpCenter 1s ease-in-out;
    }
    .banner-title {
      font-weight: 800;
      font-size: 3rem;
    }

    .banner-subtitle {
      font-size: 1.25rem;
    }
    .accordion-button:hover {
      background-color: #f35525;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .accordion-button[aria-expanded="true"] {
      background-color: rgb(243, 85, 37);
      color: #fff;
    }

    .offer-box {
      background-color: #fff7e6;
      border-left: 6px solid #f35525;
      padding: 20px 30px;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      font-size: 22px;
      font-weight: 600;
      color: #333;
      font-family: 'Segoe UI', sans-serif;
      text-align: center;
      transition: all 0.3s ease;
      /* smooth effect */
    }

    .offer-box:hover {
      animation: bounceIn 1s ease;
    }

    @keyframes bounceIn {
      0% {
        opacity: 0.8;
        transform: scale(0.9) translateY(-20px);
      }

      60% {
        opacity: 1;
        transform: scale(1.05) translateY(10px);
      }

      80% {
        transform: scale(0.97) translateY(-5px);
      }

      100% {
        transform: scale(1) translateY(0);
      }
    }

    .nikita-fixed-bottom-section {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 9999;
      background-color: #f35525;
      padding: 12px 24px;
      border-radius: 30px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .nikita-fixed-bottom-section a {
      color: #fff;
      text-decoration: none;
      font-weight: bold;
      font-size: 16px;
    }
	.featured .section-heading {
		margin-left: 10px;
		margin-right: 10px;
		margin-bottom: 60px;
	}
	.featured .left-image {
		position: relative;
	}
	.featured .left-image img {
		padding-left: 55px;
	}
	.featured .left-image a {
		display: inline-block;
		width: 110px;
		height: 110px;
		line-height: 110px;
		background-color: #f35525;
		border-radius: 50%;
		text-align: center;
		position: absolute;
		left: 0;
		bottom: -55px;
	}
	.video {
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center center;
		padding: 60px 0;
    margin-top: 50px;
		position: relative;
	}
	.section-heading h2 {
		font-size: 40px;
		font-weight: 700;
		text-transform: capitalize;
		margin-top: 20px;
		line-height: 56px;
	}
	.section-heading {
		margin-bottom: 70px;
	}
	.video .section-heading h2 {
		color: #fff;
	}
    @keyframes fadeInUpCenter {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    
    

    @media (max-width: 768px) {
      .main-banner {
        height: 300px;
      }

      .banner-title {
        font-size: 2rem;
      }

      .banner-subtitle {
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .main-banner {
        height: 250px;
      }

      .banner-title {
        font-size: 1.5rem;
      }

      .banner-subtitle {
        font-size: 0.9rem;
      }
    }

    .banner-title {
  font-weight: 800;
  font-size: clamp(1.5rem, 5vw, 3rem); /* min 1.5rem, preferred 5% of viewport width, max 3rem */
  color: #f35525;
  text-decoration: underline;
}

.banner-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem); /* min 1rem, preferred 3vw, max 1.5rem */
  color: white;
  margin-top: 10px;
}
