  /*-----------------header css start----------------------------*/
   /*===================== Sticky Header =====================*/
    .sticky-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 9999;
      background: #fff !important;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      display: none;
    }

    .sticky-header .inner-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .sticky-header .navigation {
      display: flex;
      gap: 20px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .sticky-header .navigation li a {
      color: #000 !important;
      font-weight: 500;
      padding: 15px 10px;
      text-decoration: none;
      display: block;
    }

    /*===================== Mobile Menu =====================*/
    #mobileMenu {
      position: fixed;
      top: 0;
      left: -280px;
      width: 280px;
      height: 100%;
      background: #fff;
      z-index: 1040;
      transition: 0.3s;
      overflow-y: auto;
    }

    #mobileMenu.active {
      left: 0;
    }

    #menuOverlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1030;
      display: none;
    }

    #menuOverlay.active {
      display: block;
    }

    @media (min-width: 992px) {
      #mobileToggle {
        display: none;
      }
    }

    /* Mobile nested submenu */
    #mobileMenu ul li ul {
      display: none;
    }

    #mobileMenu li.open > ul {
      display: block;
    }

    #mobileMenu li.dropdown > a::after {
      content: "▼";
      float: right;
      transition: transform 0.3s;
    }

    #mobileMenu li.dropdown.open > a::after {
      transform: rotate(-180deg);
    }

    #mobileMenu ul li a {
      display: block;
      padding: 10px 15px;
      color: #333;
      text-decoration: none;
      font-weight: 500;
    }

    #mobileMenu ul li a:hover {
      background: #f0f0f0;
    }
/*===================== end =====================*/
    
/*-----------------header css end----------------------------*/
      
      
      
/*-----------------Index css start----------------------------*/
    /* Tablet & Mobile pe hide */
@media (max-width: 991px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
}

   @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in-up {
      animation: fadeInUp 1s ease forwards;
    }

@media (max-width: 767px) {
  .case-block-one .inner-box {
    height: 180px;
  }
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px !important;
}
.stroke-text {
    color: #3f3f3f; /* Darker gray instead of white */
    font-weight: 600;
    text-shadow: 0 0 2px rgba(0,0,0,0.2); /* Optional soft shadow for better visibility */
}
.case-block-one .inner-box {
   /* Adjust as needed */
    width: 80%;
    background-size: cover;
    background-position: center;
}


  .bg-grey { background-color: #f6f6f6; }

  .hover-shadow:hover { box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15); transform: translateY(-4px); }
  .transition { transition: all 0.3s ease; }



  .logo-img { height: 80px; object-fit: contain; }
/*-----------------Index css end----------------------------*/



/*-----------------about css start----------------------------*/

.sec-title h2 {
  /*font-size: 40px; */
  font-weight: 700; /* keep bold */
  line-height: 1.3;
  color: #222; /* optional: nice dark color */
  margin-bottom: 1rem;
}
  
  /*-----------------About css end----------------------------*/
  
  
  
  
  /*-----------------Footer css start----------------------------*/
 /* === Mobile Support Bar === */
.mobile-support-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: white;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
    border-top: 2px solid #f1f1f1;
    padding: 10px 15px;
}

.mobile-support-wrapper {
    display: flex;
    align-items: center;
  
    gap: 10px;
}

/* Support Button */
.support-button {
    background-color: var(--theme-color1);
    color: #fff;
    padding: 20px 26px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    white-space: nowrap;
    text-align: center;
    flex-grow: 0;
}

/* Support Icons */
.support-icons {
    display: flex;
    gap: 8px;
    margin-left: 15px;
}

.support-icons a {
    font-size: 18px;
    color: #2563eb;
    background: #f5f5f5;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.support-icons a:hover {
    background-color: #2563eb;
    color: #fff;
}

/* === Scroll To Top Button === */
.scroll-to-top {
    position: fixed;
    bottom: 80px;
    right: 15px;
    width: 42px;
    height: 42px;
    background-color: var(--theme-color1);
    color: var(--theme-color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    background-color: #b6ff3d;
}

/* === Support Popup === */
.support-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background: rgba(0,0,0,0.5);
    z-index: 1050;
    justify-content: center;
    align-items: center;
}

.support-popup.active {
    display: flex !important;
}

.support-popup .popup-inner {
    background: #fff;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
    position: relative;
}

.support-popup .popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.support-popup h5 {
    margin-bottom: 15px;
    text-align: center;
}

.support-popup input,
.support-popup textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
    resize: none;
}

.support-popup button {
    width: 100%;
    padding: 10px;
    background: #007bff;
    border: none;
    color: #fff;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
}

.support-popup button:hover {
    background: #0056b3;
}

.popup-success {
    display: none;
    margin-top: 10px;
    color: green;
    text-align: center;
}
@media (max-width: 360px) {
    .support-button {
        font-size: 12px;
        padding: 6px 12px;
    }

    .support-icons a {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}


    /*-----------------Footer css end----------------------------*/

