.navbar {
      background: white;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      font-weight: bold;
      font-size: 1.2rem;
    }

    .navbar-brand img {
      height: 30px;
      margin-right: 8px;
    }

    .nav-link {
      font-weight: 500;
      margin: 0 8px;
      color: black !important;
    }

    .nav-link:hover {
      color: orange !important;
    }

    .btn-join {
      background: linear-gradient(to right, #ffa500, #ff7b00);
      color: white;
      border-radius: 6px;
      padding: 6px 16px;
      font-weight: bold;
      border: none;
      transition: 0.3s ease;
    }

    .btn-join:hover {
      background: linear-gradient(to right, #ff7b00, #ff4c00);
      transform: scale(1.05);
    }

    
    .dropdown-menu {
      background-color: #FF9100;
      border: none;
      border-radius: 6px;
      margin-top: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    .dropdown-item {
      font-weight: 500;
      color: black;
      transition: background 0.2s ease;
    }

    .dropdown-item:hover {
      background-color: rgba(0,0,0,0.1);
    }

    
    @media (min-width: 992px) {
      .nav-item.dropdown:hover .dropdown-menu {
        display: block;
      }
    }

    
    .dropdown-toggle::after {
      display: none !important;
    }

    .hero-section {
      background-color: #fddbb8;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 60px 0;
    }

    .hero-text h6 {
      color: #ff7b00;
      font-weight: bold;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 15px;
    }

    .hero-text h1 {
      font-weight: 700;
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    .hero-text p {
      font-size: 1rem;
      color: #333;
      margin-bottom: 25px;
      max-width: 400px;
    }

    
    .btn-explore {
      position: relative;
      background-color: #ff7b00;
      color: white;
      font-weight: bold;
      padding: 10px 25px;
      border-radius: 6px;
      border: none;
      overflow: hidden;
      z-index: 1;
      transition: color 0.3s ease;
    }

    .btn-explore::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: black;
      z-index: -1;
      transition: left 0.4s ease;
    }

    .btn-explore:hover::before {
      left: 0;
    }

    .btn-explore:hover {
      color: white;
    }

    .hero-img img {
      width: 100%;
    }
    
    .services-section {
      padding: 60px 0;
      background-color: #fff;
      font-family: Arial, sans-serif;
    }

    .services-section h2 {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .service-card {
      border: 1px solid #ddd;
      padding: 30px 20px;
      text-align: left;
      transition: all 0.3s ease-in-out;
      background: white;
    }

    .service-card:hover {
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      transform: translateY(-5px);
    }

    .service-icon {
      width: 50px;
      height: 50px;
      margin-bottom: 15px;
    }

    .service-card h5 {
      font-weight: bold;
      margin-bottom: 10px;
    }

    .service-card p {
      font-size: 0.95rem;
      color: #444;
      margin-bottom: 15px;
    }

    /* Let's Talk link styling */
    .lets-talk {
      font-weight: bold;
      font-size: 0.95rem;
      text-decoration: none;
      color: black;
      display: inline-block;
      position: relative;
      padding-bottom: 3px;
      transition: color 0.3s ease-in-out;
    }

    .lets-talk::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 30%;
      height: 2px;
      background: black;
      transition: all 0.3s ease-in-out;
    }

    .lets-talk:hover {
      color: #FFD700; 
    }

    .lets-talk:hover::after {
      width: 100%;
      background: #FFD700;
    }
    .philosophy-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      font-family: Arial, sans-serif;
    }
    .left-img {
      background-color: #ffe4c4; 
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 30px;
      height: 100%;
    }
    .left-img img {
      max-width: 100%;
      border-radius: 10px;
    }
    .content h2 {
      font-weight: bold;
    }
    .content h3 {
      font-weight: bold;
      margin-top: 30px;
    }
      .pricing-section {
      background-color: #ff8800;
      padding: 60px 20px;
      text-align: center;
      font-family: Arial, sans-serif;
    
    }
    .pricing-section h2 {
      font-weight: bold;
      color: #fff;
    }
    .pricing-section p {
      color: #fff;
      max-width: 600px;
      margin: 10px auto 40px;
    }
    .pricing-card {
      background: #fff;
      padding: 30px 20px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }
   
    .plan-badge {
      display: inline-block;
      padding: 5px 15px;
      border: 1px solid #000;
      border-radius: 20px;
      font-size: 14px;
      margin-bottom: 15px;
    }
    .price {
      font-size: 32px;
      font-weight: bold;
      color: #ff8800;
      margin: 10px 0;
    }
    .features {
      margin: 20px 0;
      color: #555;
      font-size: 15px;
      line-height: 2;
    }
   
    .btn-animated {
      position: relative;
      overflow: hidden;
      background-color: #ff8800;
      color: #fff;
      border: none;
      padding: 12px 25px;
      border-radius: 5px;
      font-weight: bold;
      transition: color 0.3s ease;
    }
    .btn-animated::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: black;
      transition: all 0.4s ease;
      z-index: 0;
    }
    .btn-animated:hover::before {
      left: 0;
    }
    .btn-animated span {
      position: relative;
      z-index: 1;
    }

    .features-section {
      padding: 60px 20px;
      font-family: Arial, sans-serif;
    }
    .features-section h2 {
      font-weight: bold;
      margin-bottom: 30px;
    }
    .accordion-button {
      font-weight: 600;
      background: none !important;
      box-shadow: none !important;
    }
    .accordion-button::after {
      display: none; 
    }
    .accordion-item {
      border: none;
      border-bottom: 1px solid #ddd;
    }
    .accordion-button.collapsed {
      color: #000;
    }
    .accordion-button:not(.collapsed) {
      color: #ff8800;
    }
    .accordion-button::before {
      content: "+";
      font-weight: bold;
      color: #ff8800;
      margin-right: 10px;
    }
    .accordion-button:not(.collapsed)::before {
      content: "-";
      color: #ff8800;
    }
 
    .images-stack {
      position: relative;
    }
    .images-stack img {
      border-radius: 10px;
      width: 100%;
      max-width: 350px;
    }
    .images-stack img:first-child {
      position: relative;
      z-index: 2;
      height: 150%;
    }
       .testimonial-section {
        position: fixed;
        background: url("img/section-bg1.jpg") no-repeat center center/cover;
        min-height: 530px;  
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 50px;
        color: #000;
    }

    .testimonial-box {
      background: #fff;
      padding: 30px;
      max-width: 600px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      margin-left: 609px;
    }
    .testimonial-box h4 {
      font-weight: 600;
    }
    .testimonial-box p {
      color: #555;
    }
    .author {
      margin-top: 15px;
      font-weight: bold;
    }
    .position {
      font-size: 14px;
      color: gray;
    }

    .blog-section {
      padding: 60px 0;
      text-align: center;
    }
    .blog-card {
      border: none;
      text-align: left;
      max-width: 500px;
      margin: auto;
    }
    .blog-card img {
      border-radius: 4px;
      width: 100%;
      height: 300px;
      object-fit: cover;
    }
    .tag {
      position: absolute;
      top: 15px;
      left: 15px;
      background: orange;
      color: #fff;
      font-size: 14px;
      padding: 4px 10px;
      border-radius: 15px;
      font-weight: bold;
    }
    footer {
      background-color: #000;
      padding: 60px 0 20px;
      color: #ccc;
      
    }
    footer h5 {
      font-weight: 600;
      margin-bottom: 20px;
      color: #fff;
    }
    footer a {
      color: #ccc;
      text-decoration: none;
    }
    footer a:hover {
      color: orange;
    }
    .footer-brand {
      font-size: 22px;
      font-weight: 700;
    }
    .footer-brand i {
      color: orange;
      margin-right: 8px;
    }
   .social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #fff;
  transition: all 0.3s ease;  
}

.social-icons a:hover {
  color: orange;
  transform: translateY(-5px); 
}

    .footer-bottom {
      border-top: 1px solid #333;
      margin-top: 40px;
      padding-top: 15px;
      font-size: 14px;
      text-align: center;
    }
    .footer-bottom a {
      color: orange;
      text-decoration: none;
    }
    .scroll-up {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: orange;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 20px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }
   
@media (max-width: 991px) {
  /* Navbar links stack */
  .nav-link {
    margin: 8px 0;
    display: block;
    text-align: center;
  }

  .navbar-brand {
    justify-content: center;
    margin-bottom: 10px;
  }

  /* Hero Section Center Align */
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    max-width: 100%;
    margin: 0 auto 20px;
  }

  .hero-img {
    margin-top: 20px;
  }


  .service-card {
    text-align: center;
    margin-bottom: 20px;
  }


  .philosophy-section {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .left-img {
    margin-bottom: 20px;
  }


  .testimonial-section {
    position: relative;
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }

  .testimonial-box {
    margin: 20px auto 0;
    max-width: 100%;
  }


  .blog-card img {
    height: auto;
  }


  footer {
    text-align: center;
  }

  .social-icons {
    margin-top: 20px;
  }
}


@media (min-width: 1200px) {
  .hero-text h1 {
    font-size: 3rem;
  }
  .price {
    font-size: 36px;
  }
  .testimonial-box {
    margin-left: 650px;
  }
}


@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .btn-explore {
    padding: 8px 18px;
  }
  .price {
    font-size: 28px;
  }
}
