
    /* Navbar Styling */
    .navbar {
      background-color: #fff;
      padding: 10px 60px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    .navbar-brand {
      font-family: "Georgia", serif;
      font-style: italic;
      font-size: 28px;
      font-weight: 500;
      color: #000;
    }

    .navbar-brand span {
      color: #ff5f8f; /* pink flower color */
      font-size: 20px;
    }

    .navbar-nav .nav-link {
      font-size: 15px;
      font-weight: 500;
      color: #000 !important;
      margin: 0 10px;
      text-transform: uppercase;
    }

    .navbar-nav .nav-link.active {
      color: #ff5f8f !important;
    }

    .icon-group img {
      width: 22px;
      margin-left: 18px;
      cursor: pointer;
      transition: 0.3s;
    }

    .icon-group img:hover {
      transform: scale(1.1);
    }

    .price {
      color: #ff5f8f;
      font-weight: 500;
      margin-left: 5px;
    }
    .navbar-nav .nav-link:hover{
        color: #ff80a8;
    }

    /*background iamge*/
    .carousel-item {
      height: 80vh;
      background-size: cover;
      background-position: center;
     
    }


    .hero-content {
      position: relative;
      top: 50%;
      left: 10%;
      transform: translateY(-50%);
      color: #000;
      max-width: 500px;
    }

    .hero-content h5 {
      font-size: 14px;
      letter-spacing: 1.5px;
      color: #555;
    }

    .hero-content h1 {
      font-family: 'Georgia', serif;
      font-size: 48px;
      font-weight: 600;
      color: #222;
      margin: 20px 0;
    }

    .btn-shop {
      background-color: #ff5f8f;
      color: #fff;
      border: none;
      border-radius: 25px;
      padding: 10px 30px;
      font-weight: 600;
      letter-spacing: 1px;
      transition: 0.3s;
    }

    .btn-shop:hover {
      background-color: #ff80a8;
    }

    /*Next section*/
    .feature-section {
      padding: 50px 0;
    }

    .feature-item {
      text-align: center;
    }

    .feature-item i {
      font-size: 40px;
      color: #ff5f8f;
      margin-bottom: 15px;
    }

    .feature-item h5 {
      font-weight: 600;
      margin-bottom: 10px;
    }

    .feature-item p {
      color: #555;
      font-size: 15px;
    }

    /* Category cards */

    .category-card {
      border: none;
      overflow: hidden;
      transition: 0.3s ease-in-out;
    }

    

    .category-card img {
      width: 100%;
      height: 400px;
      object-fit: cover;
    }

    .category-info {
      background-color: #fff;
      text-align: center;
      margin-bottom: 30px;
      margin: -60px 30px 30px 30px;
      position: relative;
      z-index: 2;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .category-info h5 {
      font-family: 'Georgia', serif;
      font-size: 22px;
      margin-bottom: 5px;
    }

    .category-info p {
      color: #777;
      margin: 0;
      font-size: 14px;
    }
    /* About */
    .about-title {
      font-size: 2.2rem;
      font-weight: 600;
    }
    .about-text {
      color: #666;
    }

  /* Flower Video Section */
    .flower-image {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
    }
    .flower-image img {
      width: 100%;
      border-radius: 10px;
    }
    .play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: #fff;
      width: 70px;
      height: 70px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 3px 15px rgba(0,0,0,0.2);
    }
    .play-btn::after {
      content: '';
      border-left: 15px solid #e25b8d;
      border-top: 8px solid transparent;
      border-bottom: 8px solid transparent;
    }    

    /*out Flower Section*/
    .section-title {
      text-align: center;
      margin-bottom: 2rem;
    }
    .section-title p {
      color: #e83e8c;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 0.9rem;
      font-weight: bold;
      margin-bottom: 0.25rem;
    }
    .section-title h2 {
      font-size: 2.2rem;
      font-weight: 500;
    }
    .filter-btns {
      text-align: center;
      margin-bottom: 2rem;
    }
    .filter-btns .btn {
      border: none;
      background: none;
      font-size: 0.9rem;
      margin: 0 0.5rem;
      color: #000;
    }
    .filter-btns .btn.active {
      border: 1px solid #e83e8c;
      color: #e83e8c;
      border-radius: 20px;
      padding: 0.25rem 1rem;
    }
    .product-card {
      text-align: center;
      position: relative;
      margin-bottom: 2rem;
      
    }
    .product-card img {
      width: 100%;
      border-radius: 4px;
    }
    .badge-label {
      position: absolute;
      top: 10px;
      left: 10px;
      background-color: #000;
      color: #fff;
      font-size: 0.7rem;
      padding: 2px 8px;
      border-radius: 3px;
      text-transform: uppercase;
    }
    .product-title {
      margin-top: 1rem;
      font-size: 1rem;
      font-weight: 500;
    }
    .product-price {
      font-weight: bold;
      font-size: 0.9rem;
    }
    .view-all {
      text-align: center;
      font-size: 0.9rem;
      font-weight: 500;
      text-transform: uppercase;
      margin-top: 1rem;
      letter-spacing: 1px;
    }
    .view-all a {
      text-decoration: none;
      border-bottom: 1px solid #000;
      color: #000;
    }

    @media (min-width: 992px) {
    .col-lg-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
     }
    }


    /*custom flower section*/
.hero {
  background: url("Images/call-bg.jpg") center/cover no-repeat;
  height: 400px;          /* keep your height */
  display: flex;
  align-items: center;
  overflow: hidden;      /* ✅ removes scrollbar */
  color: white;
}


    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero h6 {
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 600;
      font-size: 0.9rem;
      margin-top: 1000px;
    }

    .hero h1 {
      font-family: 'Pacifico', cursive;
      font-size: 2.5rem;
      font-weight: 400;
      line-height: 1.4;
      margin-bottom: 1.5rem;
    }

    .btn-pink {
      background-color: #e83e8c;
      color: white;
      border-radius: 30px;
      padding: 0.5rem 1.5rem;
    }

    .btn-pink:hover {
      background-color: #d63384;
    }

    .btn-white {
      background-color: white;
      color: #e83e8c;
      border-radius: 30px;
      padding: 0.5rem 1.5rem;
    }

    .btn-white:hover {
      background-color: #f8f9fa;
    }

    /*Card Section*/
    .category-tag {
      position: absolute;
      top: 10px;
      left: 10px;
      background-color: black;
      color: white;
      font-size: 0.75rem;
      font-weight: bold;
      padding: 3px 8px;
      text-transform: uppercase;
    }
    .card-img-top-container {
      position: relative;
    }
    .section-title {
      font-size: 2.5rem;
      font-weight: 600;
    }
    .section-subtitle {
      color: #e91e63;
      font-weight: bold;
      letter-spacing: 1px;
    }
    .btn-outline-pink {
      border: 2px solid #e91e63;
      color: #e91e63;
      font-weight: 600;
      border-radius: 50px;
    }
    .btn-outline-pink:hover {
      background-color: #e91e63;
      color: white;
    }
/*last back ground section*/
    .testimonial-section {
      background-color: #f9f7fb;
      padding-top: 40px;
      height: 400px;
      text-align: center;
      overflow: hidden;
    }

    .testimonial-section .quote-icon {
      font-size: 40px;
      color: #f25789;
      margin-bottom: 20px;
    }

    .testimonial-text {
      font-style: italic;
      font-size: 1.1rem;
      color: #444;
      max-width: 900px;
     text-align: center;
      margin: 0 auto; 
      text-align: center;
      line-height: 1.8;
    }

    .testimonial-author {
      font-weight: 600;
      margin-bottom: 5px;
    }

    .testimonial-role {
      font-size: 0.85rem;
      text-transform: uppercase;
      color: #888;
      letter-spacing: 1px;
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 40px;
      height: 40px;
      top: 50%;
      transform: translateY(-50%);
      background-color: white;
      border-radius: 50%;
      color: #000;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

   

    /* Optional: Flower decorations */
    .flower-left {
      position: absolute;
      top: 0;
      left: 0;
      max-width: 150px;
    }

    /* Image Grid Below */
    .image-grid img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    /*Footer Section*/
    .footer-top {
      padding: 40px 0 20px;
      border-bottom: 1px solid #ddd;
      background-color: #fff;
    }

    .footer-top .logo {
      font-size: 28px;
      font-weight: bold;
      font-style: italic;
    }

    .footer-top .logo .flower {
      color: #e91e63;
      margin-left: 5px;
    }

    .footer-top p {
      margin: 0;
      font-size: 15px;
      color: #444;
    }

    .footer-top .social-icons a {
      color: #000;
      font-size: 18px;
      margin-left: 15px;
      transition: color 0.2s;
    }

    .footer-top .social-icons a:hover {
      color: #e91e63;
    }

    .footer {
      background-color: #f9f9f9;
      padding: 60px 0 30px;
    }

    .footer h5 {
      margin-bottom: 20px;
      font-weight: 600;
    }

    .footer a {
      color: #000;
      text-decoration: none;
      display: block;
      margin-bottom: 10px;
    }

    .footer a:hover {
      text-decoration: underline;
    }

    .footer input[type="email"] {
      border: none;
      border-bottom: 1px solid #000;
      border-radius: 0;
      padding: 5px;
      width: 100%;
      background: transparent;
    }

    .footer .subscribe-btn {
      background: none;
      border: none;
      color: #000;
      font-weight: bold;
      padding-left: 10px;
    }

    .footer-bottom {
      border-top: 1px solid #ddd;
      padding-top: 20px;
      margin-top: 40px;
      font-size: 14px;
      color: #555;
    }
    html, body {
    overflow-x: hidden;  
    width: 100%;
    }

    .row {
      margin-left: 0;
      margin-right: 0;
    }

    .container, .container-fluid, section, div {
      max-width: 100%;
      overflow-x: hidden;
    }

    img, video {
    max-width: 100%;
    height: auto;
    display: block;
    }
 