/* ===== Reusable Section Title ===== */
.title-box {
  font-size: 1.5rem;
  color: #2b7ffc;
  margin-bottom: 15px;
  background-color: #dce7ff66;
  width: fit-content;
  padding: 10px 20px;
  border-radius: 5px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  font-weight: 400;
}

/* ===== BASIC RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(90deg, rgba(100, 156, 242, 0.16), rgba(180, 225, 230, 0.16) 100%);
  color: #000000;
  line-height: 1.6;
}

/* ===== NAVBAR STYLES ===== */
header {
  width: 100%;
  background: #f8f9fa;
  padding: 20px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== LOGO ===== */
.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #007bff;
}

/* ===== NAV LINKS ===== */
.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 1rem;
  color: #000000;
  font-style: medium;
}

.nav-links a:hover {
  color: #007bff;
}

/* ===== SEARCH SECTION ===== */
.nav-search {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.search-icon {
  width: 22px;
  height: 22px;
  cursor: pointer;
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 1rem;
  background: white;
}

.search-icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.btn-search {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  border-radius: 1rem;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 30px;
  padding-left: 30px;
  font-size: 1rem;
  font-weight: 600;
}

.btn-search:hover {
  background: #0056b3;
}

/* ===== NAVBAR STYLES ===== */

/* ===== HERO SECTION ===== */
#hero {
  padding: 80px 0;
  background-color: #f5f8fa;
}

.hero-container {
  display: grid;
  grid-template-columns: 55% 22%;
  align-items: center;
  gap: 40px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== LEFT SIDE ===== */
.hero-left {
  flex: 1;
  position: relative;
}
.hero-lefticon {
  position: absolute;
  left: 130px;
  top: 150px;
}
.hero-lefticon img {
  width: 130px;
}

.hero-middleicon {
  position: absolute;
  left: -20px;
  bottom: 70px;
  width: 50px;
  width: 50px;
}
.hero-middleicon img {
  width: 70px;
  width: 70px;
}

.hero-left h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #000000;
  font-style: bold;
}
.heroleft-tittle {
  color: #2b7ffc;
}

.hero-left p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #696565;
}
.btn-hero {
  background: #2b7efc;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 500;
  border-radius: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;

  padding-right: 2rem;
  padding-left: 2rem;
  font-size: 1rem;
  font-weight: 600;
}

/* Badges */
.hero-badges {
  margin-top: 2rem;
  display: flex;
  gap: 24px;
}

.badge {
  text-align: left;
}

.badge h2 {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 5px;
  font-style: bold;
  font-weight: 700;
}

.badge p {
  font-size: 1.5rem;
  color: #696565;
  font-weight: 400;
}

/* ===== RIGHT SIDE HERO ===== */
.hero-right {
  flex: 1;
  position: relative; /* container for absolute elements */
  height: 435px; /* adjust as needed */
}
.hero-thrdicon {
  position: absolute;
  right: -130px;
  top: -75px;
}
.hero-thrdicon img {
  width: 65px;
}
.hero-fourthicon {
  position: absolute;
  right: -310px;
  bottom: -50px;
}
.hero-fourthicon img {
  width: 55px;
}

/* Image1: top-left, normal flow */
.hero-img1 {
  width: 280px;
  height: 250px;
  border-radius: 24px;
  overflow: hidden;
  margin-left: 2rem;
}

.hero-img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image2: absolute positioned top-right */
.hero-img2 {
  position: absolute;
  top: 10px;
  right: -200px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
}

.hero-img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center; /* shows the right side */
}

/* Badge: absolute positioned bottom-left */
.hero-badge-right {
  position: absolute;
  bottom: 45px;
  left: 90px;
  padding-bottom: 5px;
  padding-top: 5px;
  padding-right: 25px;
  padding-left: 25px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.hero-badge-right h2 {
  font-size: 2rem;
  color: #2b7ffc;
  margin-bottom: 5px;
  text-align: center;
  font-weight: 700;
}

.hero-badge-right p {
  font-size: 1.5rem;
  color: #3f3d3d;
  text-align: center;
}

/* Image3: absolute positioned bottom-right, overlapping Image1 */
.hero-img3 {
  position: absolute;
  bottom: 0;
  right: -225px;
  width: 258px;
  height: 270px;
  border-radius: 24px;
  overflow: hidden;
  z-index: 2; /* above Image1 */

  /* show border only on top and left sides */
  border-top: 16px solid #f1f9fb;
  border-left: 16px solid #f1f9fb;

  /* no border on right/bottom */
  border-right: none;
  border-bottom: none;
}

.hero-img3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== HERO SECTION ===== */

/* about is section */

/* ========== ABOUT US SECTION ========== */
/* ========== ABOUT US SECTION ========== */
.about-us-section {
  padding: 80px 0;
  background-color: #ffff;
}

/* Consistent Container Width */
.about-us-container {
  width: 90%;
  max-width: 1200px; /* same as other sections */
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}

/* ===== Left Side: Image ===== */
.about-us-left {
  flex: 1 1 50%;
  max-width: 50%;
}

.about-us-left img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* ===== Right Side: Content ===== */
.about-us-right {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Small Title */
.about-small-title {
  font-size: 1.5rem;
  color: #2b7ffc;
  font-weight: 500;
  background-color: #dce7ff66;
  padding: 10px 20px;
  border-radius: 5px;
  width: fit-content;
}

/* Headline */
.about-headline {
  font-size: 2rem;
  font-weight: 700;
  color: #121212;
  line-height: 1.3;
}

/* Description */
.about-description {
  font-size: 1rem;
  color: #696565;
  line-height: 1.6;
  max-width: 600px;
}

/* ===== Badges ===== */
.about-badges {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 10px;
  text-align: left;
  justify-content: space-between;
}

.badge {
  border-radius: 12px;
  text-align: left;
}

.badge h3 {
  font-size: 1.6rem;
  color: #007bff;
  margin-bottom: 5px;
  font-weight: 700;
}

.badge p {
  font-size: 0.9rem;
  color: #555;
  font-weight: 500;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .about-us-container {
    flex-direction: column;
    text-align: center;
  }

  .about-us-left,
  .about-us-right {
    max-width: 100%;
  }

  .about-badges {
    justify-content: center;
  }
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
  padding: 80px 0;
}

.why-choose-container {
  display: flex;
  align-items: flex-start; /* optional: aligns top edges */
  justify-content: space-between;
  flex-wrap: wrap; /* makes it responsive on small screens */
}

/* Left and Right sides take 50% each */
.why-choose-left,
.why-choose-right {
  flex: 1 1 50%; /* grow:1, shrink:1, basis:50% */
  max-width: 50%; /* ensures max 50% width */
  box-sizing: border-box;
}

/* Left Side */
.why-choose-left {
  flex: 1;
  min-width: 350px;
  padding-top: 20px;
  padding-bottom: 20px;

  text-align: left;
}

.why-choose-left .why-tittle {
  text-align: left;
  font-size: 1.5rem;
  color: #2b7ffc;
  margin-bottom: 6px;
  background-color: #dce7ff66;
  width: fit-content;
  padding: 10px 20px;
  border-radius: 5px;
  display: block;
  font-weight: 400;
}

.why-choose-left .section-description {
  color: #696565;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
.why-choose-left .section-heading {
  color: #121212;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-items: center;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-icon {
  width: 45px;
  height: 45px;
}
/* Feature Icon Wrapper: Rounded Background */
.feature-icon-wrapper {
  width: 60px; /* circle width */
  height: 50px; /* circle height */
  background-color: #2b7ffc; /* light blue circle */
  border-radius: 50%; /* makes it a perfect circle */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon inside wrapper */
.feature-icon-wrapper .feature-icon {
  width: 30px; /* smaller than wrapper */
  height: 30px;
}

.feature-item h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #222;
}

.feature-item p {
  margin: 5px 0 0;
  color: #666;
  font-size: 0.9rem;
}
/* Right Side Grid */
.right-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 columns: left bigger, right smaller */
  grid-auto-rows: auto;
  gap: 20px;
}

/* Top Large Image */
.grid-top img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* Bottom Left Column */
/* ===== Bottom Left Column: Compact ===== */

/* Center the entire bottom-left block */
.grid-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 8px; /* compact spacing */
  align-items: center; /* centers horizontally */
  justify-content: center; /* centers vertically if height is fixed */
  text-align: center; /* centers text inside */
}

/* Client Images Top */
.client-images-top {
  display: flex;
  gap: 0; /* images overlap, no extra gap */
}

.client-images-top img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -10px; /* overlap for compactness */
}

/* Client Feedback Title */
.client-feedback-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1c1c1c;
  margin: 0; /* remove default spacing */
}

/* Rating Row */
.client-rating-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px; /* smaller padding */
  border-radius: 10px;
  gap: 8px;
}

/* Left: Rating Point */
.rating-left .rating-point {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

/* Right: Text + Stars */
.rating-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rating-right .rating-text {
  font-size: 0.85rem;
  color: #555;
  margin: 0;
}

.rating-right .rating-stars {
  color: #ffb400;
  font-size: 1rem;
  line-height: 1;
}

/* Bottom Right Column */
.grid-bottom-right img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .right-grid {
    grid-template-columns: 1fr;
  }

  .grid-bottom-left,
  .grid-bottom-right {
    width: 100%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose-container {
    flex-direction: column;
  }

  .grid-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .right-image img {
    width: 100%;
  }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  padding: 80px 0;
  background: #f8f9fc;
  text-align: left;
}

.section-title {
  font-size: 1.5rem;
  color: #2b7ffc;
  margin-bottom: 15px;
  background-color: #dce7ff66;
  width: fit-content;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px;
  padding-left: 20px;
  border-radius: 5px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  font-weight: 400;
}
.section-subtitle {
  font-size: 2rem;
  color: #121212;
  margin-bottom: 50px;
  font-weight: 600;
  text-align: center;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Card Hover */
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Card Top */
.card-top {
  background: var(--bg-color, #e3f2fd);
  padding: 20px 15px;
  color: #222;
}
/* ===== Inner Card Border (card-Main) ===== */
.card-Main {
  background: #ffff;
  border-radius: 16px; /* nice round corners */
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  margin: 12px; /* slight space inside outer container */
}

/* Hover effect for card border */
.card-Main:hover {
  transform: translateY(-5px);
  border-color: var(--btn-color, #007bff); /* changes to theme color on hover */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.card-top h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 700;
}

.card-top .price {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.card-top .description {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #555;
}

/* Card Bottom */
.card-content {
  padding: 20px 15px 25px;
}

.card-content ul {
  list-style: none;
  margin-bottom: 20px;
  text-align: left;
  color: #444;
}

.card-content ul li {
  margin: 10px 0;
}

.card-content i {
  color: var(--btn-color, #007bff);
  margin-right: 8px;
}

/* Button */
.btn-plan {
  width: 100%;
  background: var(--btn-color, #007bff);
  color: #fff;
  border: none;
  padding: 12px 0;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-plan:hover {
  background: #000;
  transform: scale(1.05);
}

/* ===== VIDEO SECTION ===== */
.video-section {
  padding: 80px 0;
  background: #f9fafc;
  text-align: center;
}

.video-container {
  position: relative;
  width: 90%;
  max-width: 63%;
  margin: 0 auto;
}

/* Thumbnail Image */
.video-thumbnail {
  width: 100%;
  height: 520px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .video-container {
    position: relative;
    width: 90%;
    max-width: 82%;
    margin: 0 auto;
  }
}

/* Play Button Overlay */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #2b7ffc;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

/* Triangle (Polygon) Play Icon */
.play-icon {
  width: 20px;
  height: 20px;
  border-left: 18px solid #ffff; /* color of triangle */
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px; /* visually center the triangle */
  background-color: #2b7ffc;
}

/* Hover Effect */
.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Responsive */
@media (max-width: 576px) {
  .play-button {
    width: 60px;
    height: 60px;
  }

  .play-icon {
    border-left: 14px solid #007bff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }
}

/* ===== FOOTER ===== */
footer {
  padding: 60px 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #2b7ffc;
  font-weight: 700;
  margin-top: -15px;
}

.footer-col h3 {
  font-size: 1rem;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.5;
  color: #696565;
}

.footer-col a {
  display: block;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #696565;
}

.footer-col a:hover {
  color: #007bff;
}

/* Social icons flex */
.footer-socials {
  display: flex;
  gap: 15px;
}

.faegular .faolid {
  padding-left: 12px;
}

.footer-socials img {
  width: 28px;
  height: 28px;
  cursor: pointer;
  transition: transform 0.3s;
}

.footer-socials img:hover {
  transform: scale(1.1);
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* later you can add JS toggle menu */
  }

  .nav-search {
    gap: 6px;
  }

  .btn-search {
    padding: 6px 12px;
  }
}

/* ===== COMPREHENSIVE MOBILE RESPONSIVE STYLES ===== */

/* Tablet (992px and below) */
@media (max-width: 992px) {
  /* Hero Section */
  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    justify-items: center;
    text-align: center;
  }
  .badge {
    text-align: center;
  }
  .btn-hero {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-left h1 {
    font-size: 2.5rem;
  }

  .hero-left p {
    font-size: 1.2rem;
  }

  .hero-lefticon {
    left: 80px;
    top: 120px;
  }

  .hero-lefticon img {
    width: 100px;
  }

  .hero-middleicon {
    left: -10px;
    bottom: 50px;
  }

  .hero-middleicon img {
    width: 50px;
  }

  .hero-right {
    height: auto;
    display: flex;
    justify-content: center;
  }

  .hero-img1 {
    margin-left: 0;
  }

  .hero-img2 {
    right: 0px;
  }

  .hero-img3 {
    right: -120px;
  }

  .hero-thrdicon {
    right: -80px;
    top: -50px;
  }

  .hero-thrdicon img {
    width: 50px;
  }

  .hero-fourthicon {
    right: -150px;
    bottom: -30px;
  }

  .hero-fourthicon img {
    width: 45px;
  }

  .hero-badge-right {
    left: 60px;
    bottom: 30px;
  }

  /* Why Choose Section */
  .why-choose-left,
  .why-choose-right {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .why-choose-left {
    min-width: auto;
  }

  /* Video Section */
  .video-container {
    max-width: 80%;
  }

  .video-thumbnail {
    height: 400px;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  /* Global */
  body {
    font-size: 14px;
  }

  .container {
    width: 95%;
  }

  /* Navbar */
  .logo {
    font-size: 1.5rem;
  }

  .nav-search {
    gap: 10px;
  }

  .btn-search {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  /* Title Box */
  .title-box {
    font-size: 1.2rem;
    padding: 8px 16px;
  }

  /* Hero Section */
  #hero {
    padding: 50px 0;
  }

  .hero-container {
    gap: 20px;
  }

  .hero-left h1 {
    font-size: 2rem;
  }

  .hero-left p {
    font-size: 1rem;
  }

  .btn-hero {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .hero-badges {
    flex-direction: column;
    gap: 15px;
  }

  .badge h2 {
    font-size: 1.5rem;
  }

  .badge p {
    font-size: 1rem;
  }

  /* Hide decorative icons on mobile */
  .hero-lefticon,
  .hero-middleicon,
  .hero-thrdicon,
  .hero-fourthicon {
    display: none;
  }

  .hero-right {
    position: relative;
    height: 350px;
    margin: 0 auto;
  }

  .hero-img1 {
    width: 220px;
    height: 200px;
    margin: 0 auto;
  }

  .hero-img2 {
    width: 100px;
    height: 100px;
    right: -120px;
    top: 30px;
  }

  .hero-img3 {
    width: 180px;
    height: 200px;
    right: -80px;
    bottom: 0;
  }

  .hero-badge-right {
    left: 40px;
    bottom: 20px;
    padding: 5px 15px;
  }

  .hero-badge-right h2 {
    font-size: 1.5rem;
  }

  .hero-badge-right p {
    font-size: 1rem;
  }

  /* About Section */
  .about-us-section {
    padding: 50px 0;
  }

  .about-us-container {
    flex-direction: column;
    gap: 30px;
  }

  .about-us-left,
  .about-us-right {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .about-small-title {
    font-size: 1.2rem;
    padding: 8px 16px;
    text-align: center;
    display: flex; /* make it a flex container */
    justify-content: center; /* center horizontally */
    align-items: center; /* center vertically */
    margin: 0 auto; /* centers the element itself in its parent */
    width: fit-content; /* shrink to content width */
  }

  .about-headline {
    font-size: 1.6rem;
  }

  .about-description {
    font-size: 0.95rem;
  }

  .about-badges {
    justify-content: flex-start;
  }

  .badge h3 {
    font-size: 1.3rem;
  }

  /* Why Choose Section */
  .why-choose-section {
    padding: 50px 0;
  }

  .why-choose-container {
    flex-direction: column;
  }

  .why-choose-left,
  .why-choose-right {
    max-width: 100%;
  }

  .why-choose-left .why-tittle {
    font-size: 1.2rem;
    padding: 8px 16px;
    text-align: center;
  }
  .why-tittle {
    margin: 0 auto; /* centers the block horizontally */
    text-align: center; /* centers the text inside */
    display: block; /* ensures margin auto works */
  }

  .why-choose-left .section-heading {
    font-size: 1.6rem;
    text-align: center;
  }

  .why-choose-left .section-description {
    font-size: 0.95rem;
  }

  .feature-item {
    flex-direction: row;
    text-align: left;
  }

  .feature-icon-wrapper {
    width: 50px;
    height: 45px;
  }

  .feature-item h4 {
    font-size: 1rem;
  }

  .feature-item p {
    font-size: 0.85rem;
  }

  /* Pricing Section */
  .pricing-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.2rem;
    padding: 8px 16px;
  }

  .section-subtitle {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-Main {
    margin: 8px;
  }

  .card-top h3 {
    font-size: 1.2rem;
  }

  .card-top .price {
    font-size: 1.3rem;
  }

  .card-top .description {
    font-size: 0.85rem;
  }

  /* Video Section */
  .video-section {
    padding: 50px 0;
  }

  .video-container {
    max-width: 95%;
  }

  .video-thumbnail {
    height: 300px;
  }

  .play-button {
    width: 70px;
    height: 70px;
  }

  .play-icon {
    border-left: 16px solid #ffff;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
  }

  /* Footer */
  footer {
    padding: 40px 0;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .footer-col h2 {
    font-size: 2rem;
  }

  .footer-col h3 {
    font-size: 0.95rem;
  }

  .footer-col p,
  .footer-col a {
    font-size: 0.9rem;
  }
}

/* Small Mobile (576px and below) */
@media (max-width: 576px) {
  /* Global */
  .container {
    width: 95%;
  }

  /* Navbar */
  header {
    padding: 15px 0;
  }

  .logo {
    font-size: 1.3rem;
  }

  .search-icon {
    width: 18px;
    height: 18px;
  }

  .btn-search {
    padding: 6px 12px;
    font-size: 0.85rem;
    padding-right: 15px;
    padding-left: 15px;
  }

  /* Hero Section */
  #hero {
    padding: 40px 0;
  }

  .hero-left h1 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .hero-left p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .btn-hero {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }

  .hero-badges {
    gap: 12px;
  }

  .badge h2 {
    font-size: 1.3rem;
  }

  .badge p {
    font-size: 0.9rem;
  }

  .hero-right {
    height: 300px;
  }

  .hero-img1 {
    width: 180px;
    height: 160px;
  }

  .hero-img2 {
    width: 80px;
    height: 80px;
    right: -90px;
    top: 40px;
  }

  .hero-img3 {
    width: 140px;
    height: 160px;
    right: -50px;
    border-top: 10px solid #f1f9fb;
    border-left: 10px solid #f1f9fb;
  }

  .hero-badge-right {
    left: 20px;
    bottom: 15px;
    padding: 4px 12px;
  }

  .hero-badge-right h2 {
    font-size: 1.2rem;
  }

  .hero-badge-right p {
    font-size: 0.85rem;
  }

  /* Title Box */
  .title-box {
    font-size: 1rem;
    padding: 6px 14px;
  }

  /* About Section */
  .about-us-section {
    padding: 40px 0;
  }

  .about-small-title {
    font-size: 1rem;
    padding: 6px 14px;
  }

  .about-headline {
    font-size: 1.4rem;
  }

  .about-description {
    font-size: 0.9rem;
  }

  .about-badges {
    flex-direction: column;
    gap: 15px;
  }

  .badge h3 {
    font-size: 1.2rem;
  }

  .badge p {
    font-size: 0.85rem;
  }

  /* Why Choose Section */
  .why-choose-section {
    padding: 40px 0;
  }

  .why-choose-left .why-tittle {
    font-size: 1rem;
    padding: 6px 14px;
  }

  .why-choose-left .section-heading {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .why-choose-left .section-description {
    font-size: 0.9rem;
  }

  .why-features {
    gap: 15px;
  }

  .feature-item {
    gap: 12px;
  }

  .feature-icon-wrapper {
    width: 45px;
    height: 40px;
  }

  .feature-icon-wrapper .feature-icon {
    width: 25px;
    height: 25px;
  }

  .feature-item h4 {
    font-size: 0.95rem;
  }

  .feature-item p {
    font-size: 0.8rem;
  }

  .right-grid {
    gap: 15px;
  }

  .client-images-top img {
    width: 35px;
    height: 35px;
  }

  .client-feedback-title {
    font-size: 0.85rem;
  }

  .rating-point {
    font-size: 1rem !important;
  }

  .rating-text {
    font-size: 0.8rem !important;
  }

  .rating-stars {
    font-size: 0.9rem !important;
  }

  /* Pricing Section */
  .pricing-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1rem;
    padding: 6px 14px;
  }

  .section-subtitle {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }

  .pricing-cards {
    gap: 15px;
  }

  .card-Main {
    margin: 6px;
  }

  .card-top {
    padding: 15px 12px;
  }

  .card-top h3 {
    font-size: 1.1rem;
  }

  .card-top .price {
    font-size: 1.2rem;
  }

  .card-top .description {
    font-size: 0.8rem;
  }

  .card-content {
    padding: 15px 12px 20px;
  }

  .card-content ul li {
    margin: 8px 0;
    font-size: 0.85rem;
  }

  .btn-plan {
    padding: 10px 0;
    font-size: 0.9rem;
  }

  /* Video Section */
  .video-section {
    padding: 40px 0;
  }

  .video-thumbnail {
    height: 220px;
  }

  .play-button {
    width: 55px;
    height: 55px;
  }

  .play-icon {
    border-left: 12px solid #ffff;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
  }

  /* Footer */
  footer {
    padding: 30px 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .footer-col h2 {
    font-size: 1.8rem;
    margin-top: -10px;
  }

  .footer-col h3 {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .footer-col p,
  .footer-col a {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  .footer-socials img {
    width: 24px;
    height: 24px;
  }
  .footer-socials {
    justify-content: center;
    align-items: center;
  }
}

/* Extra Small Mobile (400px and below) */
@media (max-width: 400px) {
  .hero-left h1 {
    font-size: 1.4rem;
  }

  .hero-left p {
    font-size: 0.85rem;
  }

  .btn-hero {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  .hero-right {
    height: 250px;
  }

  .hero-img1 {
    width: 150px;
    height: 140px;
  }

  .hero-img2 {
    width: 70px;
    height: 70px;
    right: -20px;
  }

  .hero-img3 {
    width: 120px;
    height: 140px;
    right: -40px;
  }

  .about-headline {
    font-size: 1.2rem;
  }

  .why-choose-left .section-heading {
    font-size: 1.2rem;
  }

  .section-subtitle {
    font-size: 1.2rem;
  }

  .video-thumbnail {
    height: 180px;
  }

  .play-button {
    width: 50px;
    height: 50px;
  }

  .play-icon {
    border-left: 10px solid #ffff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }
}
@media (min-width: 769px) and (max-width: 1440px) {
  .hero-lefticon {
    position: absolute;
    left: 20px;
    top: 170px;
  }
  .hero-lefticon img {
    width: 80px;
  }
  .hero-container {
    align-items: center;
  }
}
