    /* 1st sec */
    .scrolling-text {
        white-space: nowrap;
        overflow: hidden;
        box-sizing: border-box;
    }

    .scrolling-text span {
        display: inline-block;
        padding-left: 100%;
        animation: scroll-left 25s linear infinite;
    }

    @keyframes scroll-left {
        0% { transform: translateX(0); }
        100% { transform: translateX(-100%); }
    }

    .social-icons a {
        color: #ffffff;
        font-size: 1.2rem;
        margin-left: 15px;
        transition: color 0.3s;
    }

    .social-icons a:hover {
        color: #007bff;
    }


    .frst-section{
        background: #ff9d0b !important;
        color: #ffffff;
    }
    /* 1st sec ends */



    
    /* navbar */
/* .bg-orange {
    background-color: orange;
    border-bottom-left-radius: 34px
}

.navbar-nav .nav-link {
    font-weight: bold;
}

.navbar-nav .nav-link:hover {
    color: #ccc;  
}

.btn-light {
    background-color: white;
    color: orange;
    border: none;
    padding: 8px 20px;
    font-size: 14px;
}

.btn-light:hover {
    background-color: #ffdd5e; 
}

.login-signup a {
    font-size: 14px;
    text-decoration: none;
    margin: 0 10px;
}

.login-signup a:hover {
    color: #ffdd5e; 
}
.img-lo{
    max-width: 80%;
    height: auto;
}

@media (max-width: 767px) {
    .navbar-nav {
        text-align: center;
        margin-top: 10px;
    }
    .buttons {
        text-align: center;
        margin-top: 10px;
    }
    .login-signup {
        text-align: center;
        margin-top: 10px;
    }
} */


.header-sec{
  background: white;
}
.bg-orange {
  background-color: orange;
  border-bottom-left-radius: 34px;
  padding: 17px 26px;
 
}

.img-lo {
  max-width: 155px;
  height: auto;
}
.navbar-nav{
    font-family: "RocknRoll One", Sans-serif;
    font-size: 12px;
    font-weight: 600;
}

.navbar-nav .nav-link {
  font-weight: bold;

  position: relative;
  color: white;
  padding: 8px 0;
  transition: color 0.3s ease;
  display: inline-block;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  /* width: 0; */
  height: 2px; /* line thickness */
  background-color: white;
  transition: width 0.3s ease;
  border-left: 0em;
  border-right: 0em;
}
.navbar-nav .nav-link:hover::after {
  width: 100%;  /* expand to full width on hover */
}


.navbar-nav .nav-link:hover {
  color: #ccc;
}

.btn-light {
  background-color: white;
  color: #000000;
  border: none;
  padding: 8px 20px;
  font-size: 14px;
}

.btn-light:hover {
  background-color: #ffdd5e;
}

.login-signup a {
  font-size: 14px;
  text-decoration: none;
  margin: 0 10px;
}

.login-signup a:hover {
  color: #ffdd5e;
}

@media (max-width: 767px) {

  .navbar-nav, .d-flex.flex-wrap, .list-inline {
    text-align: center;
    justify-content: center;
    margin-top: 10px;
  }
}
    /* navbar ends */



    /* 3rd section */
     .highlighted-heading {
        font-size: 2rem;
        font-weight: 600;
        font-family: math;
      }

    

      .highlighted-heading .highlight {
        position: relative;
        color: #ff9d0b;
        background: #e8f6f3;
        border-radius: 10px;

        opacity: 0;
        transform: scale(0.8);
        animation: ZoomIn 2s ease infinite forwards;

      }
     
      @keyframes ZoomIn {
        0% {
          opacity: 0;
          transform: scale(0.8);
        }
        20% {
          opacity: 1;
          transform: scale(1);
        }
        80% {
          opacity: 1;
          transform: scale(1);
        }
        100% {
          opacity: 0;
          transform: scale(0.8);
        }
      }
    

     
    body.loaded .highlighted-heading .highlight::after {
      width: 100%;
  }
      
     
      .third-section{
        padding-top: 2rem !important;
        /* padding-bottom: 3rem !important; */
        padding-bottom: 0rem !important;
      }
      .post-btn{
        border-radius: 2px;
        background-color: #ff9d0b !important;
        color:white;
        border-radius: 20px;
        border-color: white;
      }
      .tasker-btn{
        border-radius: 2px;
        background-color: #000000 !important;
        color:white;
        border-radius: 20px;
        border:none;
        
      }
      .tasker-btn:hover {
        background-color: inherit;  /* Keeps the original background color */
        color:white;
      }

    /* 3rd section ends */

    /* 4th section */
    .sec4-con {
        background: #FFC30054;
        border-radius: 50px;
        margin: 2rem 0;
        padding: 2rem 1rem;
      }
      
      .image-stack {
        position: relative;
        display: inline-block;
      }
      
      .base-img,
      .top-img {
        width: 100%;
        max-width: 220px;
        height: auto;
        border-radius: 30px;
        
      }
      
      /* Slight overlap and down-shift */
      .top-img {
        position: absolute;
        top: 40px;
        right: -100px;
        z-index: 2;
        border-color: #af1212;
        border-style: inset;

        opacity: 0;
        transform: translateY(100px);  /* Start 50px lower */
        animation: slideUp 1s ease forwards;
        height: 322px;
      }

      @keyframes slideUp {
        to {
            opacity: 1;
            transform: translateY(0);  /* Go back to natural position */
        }
    }

    
      .base-img{
        position: relative;
        right: 105px;

        opacity: 0;
        transform: translateY(-100px); /* Start 50px higher */
        animation: slideDown 1s ease forwards;
      }

      @keyframes slideDown {
          to {
              opacity: 1;
              transform: translateY(0);
          }
      } 

      /* Text styling */
      .content-container {
        padding: 1rem;
        text-align: left;
      }
      
      .headline {
        font-size: 2rem;
        font-weight: 600;
        color: #333;
        position: relative;
      }
      
      .headline-text {
        color: #333;
      }
      
      .headline-dynamic {
        color: #ff9d0b;
        font-weight: bold;
      }
      
      .headline svg {
        width: 100%;
        height: auto;
        position: absolute;
        bottom: -2px;
        left: 0;
        transform: translateY(5px);
      }
      
      /* Responsive tweaks */
      @media (max-width: 1114px) {
        .base-img,
        .top-img {
          max-width: 216px;  /* Adjust the size to fit better on dual-screen or smaller tablets */
        }
      
        .top-img {
          top: 20px;  /* Less overlap */
          right: -90px; /* Align better for bigger resolutions like the Surface Duo */
          height: 322px;
        }
      
        .base-img {
            left: -107px;
            position: relative;  /* Fine-tune positioning */
        }
      }
      
      /* For devices between 991px - 767px */
      @media (max-width: 991px) {
        .base-img {
          position: relative;
          left: -80px;
        }
      
        .base-img,
        .top-img {
          max-width: 177px;  /* Adjusted size for medium screens */
        }
      
        .top-img {
          top: 30px;
          right: -81px;  /* Fine-tuning for tablets or medium-sized devices */
          height: 260px;
        }
      }
      
      @media (max-width: 767px) {
        .image-stack {
          margin-bottom: 2rem;
        }

        .base-img{
            position: relative;
            left: -68px;
        }
      
        .base-img,
        .top-img {
          max-width: 160px;
        }
      
        .top-img {
          top: 25px;
          right: -80px;
          height: 233px;
        }
      
        .headline {
          font-size: 1.5rem;
          text-align: center;
        }
      
        .content-container {
          text-align: center;
        }
      
        .headline svg {
          transform: translateY(2px);
        }

      
      }

      /* @media (max-width: 360px) {
        .base-img,
        .top-img {
          max-width: 70px;
        }
      
        .base-img {
          left: -23px;
        }
      
        .top-img {
          top: 20px;
          right: -39px;
        }
      
        .headline {
          font-size: 1.25rem;
        }
      }

      @media (max-width: 375px) {
        .base-img,
        .top-img {
          max-width: 120px;
        }
      
        .base-img {
          left: -50px;
        }
      
        .top-img {
          top: 20px;
          right: -60px;
        }
      
        .headline {
          font-size: 1.2rem;
        }
      } */

        /* Watches */
        @media (max-width: 200px) {
            .base-img,
            .top-img {
            max-width: 50px;
            }

            .base-img {
                left: -23px;
            }
            
            .top-img {
                top: 11px;
                right: -25px;
            }

            .headline {
            font-size: 1rem;
            }
            .img-sec{
                margin-bottom: -0.5rem !important;
            }
        }
        /* Smart phones */
        @media (min-width: 201px) and (max-width: 360px) {
            .base-img,
            .top-img {
            max-width: 110px;
            }

            .base-img {
                left: -50px;
            }
            
            .top-img {
                top: 20px;
                right: -50px;
                height: 170px;
            }

            .headline {
            font-size: 1.25rem;
            }
            
        }
      
      @media (min-width: 361px) and (max-width: 375px) {
        .base-img,
        .top-img {
          max-width: 120px;
        }
      
        .base-img {
          left: -50px;
        }
      
        .top-img {
          top: 20px;
          right: -60px;
          height: 180px;
        }
      
        .headline {
          font-size: 1.2rem;
        }
      }
      
      
      
      /* 5th sec */
      .carousel-wrapper {
        overflow: hidden;
        position: relative;
        width: 100%;
      }
      
      .carousel-track {
        display: flex;
        width: max-content;
        animation: scroll-left-carousel 40s linear infinite;

      }
      
      @keyframes scroll-left-carousel {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-50%);
        }
      }
      
      .popular-section {
        background-color: #f8f9fa; /* Optional: adds a light background */
      }
      
      .category-carousel {
        margin-top: 2rem;
        margin-left: 10rem;
        margin-right: 10rem;
      }
      
      /* .card {
        min-width: 300px;
        max-width: 300px;
        margin: 0 10px;
        background-color: #f8f9fa;
        padding: 1rem;
        text-align: center;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      } */

      .home-card {
        min-width: 300px;
        max-width: 300px;
        margin: 0 10px;
        background-color: #f8f9fa;
        padding: 1rem;
        text-align: center;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        min-height: 232px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }

      
      .prof-img {
        width: 40px;
        height: 40px;
        object-fit: cover;
      }
      
      @media (max-width: 576px) {
        .prof-img {
          width: 30px;
          height: 30px;
        }
      }

      .pop-button{
        background: #000000;
        color: white;
        border-color: white;
        border-radius: 0;
        padding: 20px;
        min-width: 150px;
        text-align: center;
        white-space: nowrap;
      }
      .pop-button:hover{
        background: #ff9d0b;
        color: white;
        border-color: white;
        border-radius: 0;
      
      }


      @media (max-width: 767px) {
        /* 5th sec */
        .category-carousel {
         
          margin-left: 0rem;
          margin-right: 0rem;
        }
        /* 5th sec ends */
      }


      .notify-btn {
        background-color: orange;
        color: white;
        padding: 0.75rem 1.5rem;
        border: none;
        border-radius: 30px;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1.1rem;
        text-decoration: none;
      }
  
      .notify-btn:hover {
        background-color: darkorange;
        color: white;
      }
  
      .btn-container {
        min-height: 20vh;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
      }
      /* 5th sec ends */

      /* 6th section */

      .category-image {
        border-radius: 8px;
        overflow: hidden;
      }
      
      .category-image img {
        transition: transform 0.4s ease;
      }
      
      .category-image:hover img {
        transform: scale(1.05);
      }
      .first-column{
        padding: 0px;
      }

      .left-overlay {
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
      }
      
      .button-text {
        font-size: 1.2rem;
        font-weight: 600;
      }
      .viewcatbtn{
        background: orange;
        border-color: white;
      }
      .viewcatbtn:hover{
        background: rgb(31, 29, 24);
        border-color: white;
      }
      
      /* 6th sec ends */

      /* 7th sec */

      /* .feature-image-wrapper {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 6; 
      }
      
      .feature-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
      }
      
      .feature-image-wrapper:hover img {
        transform: scale(1.05);
      }
      
      .text-content {
        top: 50%;
        left: 5%;
        transform: translateY(-50%);
        position: absolute;
      }
    
      @media (max-width: 992px) {
        .feature-image-wrapper {
          aspect-ratio: 16 / 8;
        }
      }
      
      @media (max-width: 768px) {
        .feature-image-wrapper {
          aspect-ratio: 16 / 10;
        }
        .text-content h2 {
          font-size: 1.3rem;
          line-height: 1.4;
        }
      }
      
      @media (max-width: 576px) {
        .feature-image-wrapper {
          aspect-ratio: auto;
        }
        .feature-image-wrapper img {
          object-fit: contain;
          height: auto;
        }
        .text-content {
          position: absolute;
          top: 20px;
          left: 20px;
          transform: none;
        }
        .text-content h2 {
          font-size: 1.1rem;
        }
        .text-content .btn {
          font-size: 0.9rem;
          padding: 0.4rem 0.8rem;
        }
      }
       */
      
       .feature-image-wrapper {
        position: relative;
        width: 100%;
        height: 450px; /* Default height for large screens */
      }
      
      .feature-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
      }
      
      .feature-image-wrapper:hover img {
        transform: scale(1.05);
      }
      
      .text-content {
        top: 50%;
        left: 5%;
        transform: translateY(-50%);
        position: absolute;
      }
      
      /* Tablet screens: 577px to 992px */
      @media (max-width: 992px) {
        .feature-image-wrapper {
          height: 350px;
        }
      
        .text-content h2 {
          font-size: 1.5rem;
          line-height: 1.4;
        }
      }
      
      /* Mobile screens: 576px and below */
      @media (max-width: 576px) {
        .feature-image-wrapper {
          height: auto;
        }
      
        .feature-image-wrapper img {
          object-fit: contain;
          height: auto;
        }
      
        .text-content {
          position: absolute;
          top: 20px;
          left: 20px;
          transform: none;
        }
      
        .text-content h2 {
          font-size: 1.1rem;
        }
      
        .text-content .btn {
          font-size: 0.9rem;
          padding: 0.4rem 0.8rem;
        }
      }
      /*  7th sec ends */

      /* 8th sec */
      .footer a:hover {
        text-decoration: underline;
      }
      
      .footer img {
        transition: transform 0.3s ease;
      }
      .footer img:hover {
        transform: scale(1.05);
      }
      .bottom-logo{
        width: 140px;
        /*max-width: 180px;*/
        max-width: 100%;
        height: 60px;
    
      }

      .footer-style{
        background: #ff9d0b !important;
      }
      .footer-arw{
        margin-left:0rem !important;
        margin-right:0.5rem !important
      }

      .footer-links h5 {
        position: relative;
        display: inline-block;
        margin-bottom: 1.5rem;
      }
      

      .footer-links h5::after {
        content: "";
        position: absolute;
        bottom: -8px; /* space below the text */
        left: 0;
        width: 50px; /* tab width */
        height: 4px;  /* tab thickness */
        background-color: orange; /* or your brand color */
        border-radius: 2px;
      }
      /* 8th sec ends */

      /* navbarcat hover */
      @media (min-width: 992px) {
        .navbar-nav .dropdown:hover .dropdown-menu {
          display: block;
          margin-top: 0;
        }
      }

      .dropdown-menu {
        transition: all 0.2s ease-in-out;
      }
      /* ends */


      /* navbar prof */
      .profile-dropdown {
        position: relative;
        display: inline-block;
      }

      .profile-dropdown-content {
        display: none;
        position: absolute;
        background-color: #ffffff;
        min-width: 100px;
        box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
        z-index: 1;
        margin-left: -22px;
      }

      .profile-dropdown-content a {
        color: #000;
        padding: 8px 12px;
        text-decoration: none;
        display: block;
      }

      .profile-dropdown:hover .profile-dropdown-content {
        display: block;
      }
      /* navbar prof ends */


      /* nav bell */
      .navb-bell{
        border: none;
      }
      
      @media (max-width: 768px) {
      .drpdwn-tgl{
        justify-items: center;
      }
      .drpdwn-tgl-ul{
        width:75%;
        justify-items: center;
      }
    }

      
      


    