
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root{
  --yellow-color : #f9b200;
  --light-orange : #ef7b2f;  
  --dark-organge : #eb6000;
  --light-gray   : #ccd9d9;
  --light-white  : #f0f3f1;
  --blue-color   : #257189;
  --light-blue-color : #c6dae08a;
  --red          : #e8421c;
  --light-black  : #2e2e2d;
  --dark-black   : #000000;
  --white-color  : #ffffff;
  --panel-width: 420px;
  --transition: 350ms cubic-bezier(.2,.9,.2,1);

}

body {
   font-family: "Lato", sans-serif;
   overflow-x: hidden;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
}

.bg-blue{
  background-color: #257189;
}

a {
  color: var(--light-black);
  text-decoration: none;
}

ul{
  list-style: none;
  padding-left: 0;
}


.pt-80{
  padding-top: 80px;
} 


.pb-80{
  padding-bottom: 80px;
}

.top-header{
  width: 100%;
  margin-left: auto;
}

.top-header .group-btn{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px;
}

@media(max-width:768px){
  .top-header .group-btn a{
    display: block;
    width: 100%;
  }
}

.top-header .group-btn .btn{
  margin-left: 10px;
}





/* home page */


 .slider {
      position: relative;
      width: 100%;
      overflow: hidden;
    }
    .slides {
      display: flex;
      width: 100%;
      height: 100%;
      touch-action: pan-y;
    }
    .slide {
      flex: 0 0 100%;
      width: 100%;
      height: 100%;
      /* display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
      background-size: cover;
      background-position: center; */
    }

    .slide img{
      width: 100%;
    }

    /* Text */
    .slide-title {
      font-size: clamp(2rem, 5vw, 3.5rem);
      margin-bottom: 0.5em;
      opacity: 0;
      transform: translateY(50px);
    }
    .slide-subtitle {
      font-size: clamp(1rem, 3vw, 1.5rem);
      margin-bottom: 1em;
      opacity: 0;
      transform: translateY(50px);
    }
    .slide-button {
      padding: 12px 24px;
      background: #fff;
      color: #000;
      border-radius: 5px;
      font-weight: bold;
      text-decoration: none;
      opacity: 0;
      transform: translateY(50px);
    }

    /* Dots */
    .nav {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 10;
    }
    .nav button {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      border: none;
      background: rgba(255,255,255,0.5);
      cursor: pointer;
    }
    .nav button.active {
      background: #fff;
    }

    /* Arrows */
    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.3);
      border: none;
      cursor: pointer;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      font-weight: bold;
      color: #fff;
      border-radius: 50%;
      transition: background 0.3s;
    }
    .arrow:hover {
      background: rgba(255,255,255,0.6);
    }
    .arrow.prev { left: 20px; }
    .arrow.next { right: 20px; }



    /* home about */

    .aboutminimax{
      background-color: var(--light-white);
    }

     .aboutminimax h2,
     .industry-we-serve h2,
     .logo-slider h2,
     .testimonial-slider h2,
     .popular-category h2{
      background-color: var(--blue-color);
      display: inline-block;
      padding: 10px 15px;
      border-radius: 50px;
      font-size: 15px;
      color: var(--light-white);
     }

     .readbutton{
      display: inline-block;
      background-color: var(--blue-color);
      color: var(--light-white);
      padding: 10px 30px;
      transform: skew(-10deg);
      box-shadow: 0 .5rem .3rem rgba(0, 0, 0, 0.15);
      border: 2px solid var(--white-color);
      transition: box-shadow .3s ease;
      border-radius: 5px;
     }

      .readbutton i{
        transition: transform .3s ease;
      }

     .readbutton:hover i{
      transform: translateX(3px);
     }

    .readbutton:hover{
      box-shadow: inset .5rem .3rem rgba(0, 0, 0, 0.15);
    }

    .icon-container{
      background-color: var(--white-color);
      padding: 10px 30px;
      text-align: center;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
      border-radius: 5px;
      transition: transform .3s ease;
      position: relative;
      overflow: hidden;
    }

     .icon-container .icon {
      padding-top: 10px;
      font-size: 30px;
      padding-bottom: 20px;
      color: var(--blue-color);
     }

      .icon-container h5{
        font-weight: bold;
        color: var(--blue-color);
        font-size: 25px;
      }

      .icon-container p{
        font-weight: 300;
        color: var(--blue-color);
      }

       .icon-container:hover{
        transform: scaleY(10px);
       }

       .icon-container::before{
        position: absolute;
        content: '';
        width: 80px;
        height: 80px;
        background-color: var(--light-white);
        opacity: .3;
        top: -10px;
        right: -10px;
        border-radius: 70%;
       }


       /* product section home page */
       .popular-category{
        background-color: #f6f6f6;
       }

       .category-wrapper{
        overflow: hidden;
       }
      
      .category-slide{
        border: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
        border-radius: 5px;
       }

       .category-slide p{
        padding: 10px;
        background-color: var(--blue-color);
        color: var(--light-white);
        margin-bottom: 0;
       }


    .category-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }


       /* industry we serve */

       .industry-we-serve{
        background-color: #c6dae08a;
       }

        .industry-we-serve .card{
           box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
        }

         .industry-we-serve .card .card-body i{
           color: var(--blue-color);
           font-size: 20px;
         }

       .industry-we-serve .image-details{
        position: relative;
       }

       .industry-we-serve .image-details i{
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        width: 50px;
        height: 50px;
        background-color: var(--light-white);
        top: 10px;
        right: 10px;
        border-radius: 50%;
        color: var(--blue-color);
        font-size: 20px;
       }

       .industry-we-serve .image-details span{
        position: absolute;
        bottom: 20px;
        left: 20px;
        color: var(--white-color);
        font-weight: 600;
        background-color: var(--blue-color);
        padding: 5px 10px;
        border-radius: 5px;
        transform: skew(-10deg);
       }

     


       /* logo carousel */
       
    .logo-slider{
      background-color: var(--light-white);
    }
    .logo-row {
      overflow: hidden;
      padding: 20px 0;
    }
    .logo-track {
      display: flex;
      gap: 40px; /* smaller gap looks nice with square logos */
      white-space: nowrap;
      will-change: transform;
    }
    .logo-track img {
      width: 150px;   /* square size */
      height: 150px;  /* square size */
      object-fit: contain;
      background: var(--light-white);
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
      border-radius: 5px;
      flex-shrink: 0;
      transition: filter 0.3s ease, transform 0.3s ease;
    }
    .logo-track img:hover {
      transform: scale(1.1);
    }

  
    

    /* client testimonial */

    .testimonial-slider{
      background-color: #c6dae08a;
    }
     .testimonial {
      width: 100%;
      padding: 60px 0;
      overflow: hidden; /* ✅ hides overflow */
    }

    .testimonial-slider .testimonial-slide {
      background: var(--white-color);
      border-radius: 5px;
      padding: 30px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
        transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
      filter: blur(3px);   /* ✅ blur inactive slides */
    }

     /* ✅ Active slide scaling */
    .testimonial-slider .swiper-slide-active {
      transform: scale(1.1);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      z-index: 10;
      filter: blur(0);     /* ✅ remove blur for active */
    }

   .testimonial-slider .testimonial-img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin: 0 auto 15px;
      object-fit: cover;
       filter: blur(3px);   /* ✅ blur inactive */
    }

      /* ✅ Active image clear */
    .testimonial-slide-active .testimonial-img {
      filter: blur(0);
    }
    
    .testimonial-text {
      font-size: 16px;
      margin-bottom: 15px;
      color: #444;
      line-height: 1.5;
    }

    .testimonial-name {
      font-weight: bold;
      font-size: 18px;
      color: #222;
    }

    /* Navigation buttons */
    .swiper-button-next,
    .swiper-button-prev {
      color: #222;
      transition: color 0.3s;
    }
    .swiper-button-next:hover,
    .swiper-button-prev:hover {
      color: #007bff;
    }

    .swiper-pagination {
      margin-top: 20px;
    }



    /* video gallery css */

    
    .embed__conttainer {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.embed__container {
    position: relative;
    padding-bottom: 56%;
    width: 100%;
    text-align: left;
    background-color: #000000;
}

.embed__container iframe {
    width: 100%;
    position: absolute;
    height: 100%;
    overflow: hidden;
}

#player {
    width: 100%;
}

.owl-nav>div {
    margin-top: -20px;
    position: absolute;
    top: 45%;
    color: #d8d8d8;
    padding: 0px;
    width: 46px;
    display: initial;
    height: 46px;
    border-radius: 50px;
    background: #060606a8;
}

.owl-nav>div:hover {
    color: #ffffff;
    background: #000000;
}

.owl-nav>div.disabled {
    color: #ffffff00;
    background: #63636300;
}

.owl-nav>div.disabled {
    color: #ffffff00;
    background: #63636300;
}

.owl-nav i {
    font-size: 20px;
    margin: 13px 18px;
}

.owl-nav .owl-prev {
    left: -23px;
}

.owl-nav .owl-prev i:hover {
    transition: all 0.3s ease-in-out;
}

.owl-nav .owl-next i:hover {
    transition: all 0.3s ease-in-out;
}

.owl-nav .owl-next {
    right: -23px;
}


.owl-carousel .owl-item .video-thumb.active:before {
    opacity: 1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    mix-blend-mode: screen;
    left: 0;
    top: 0;
    background: rgba(247, 148, 30, 0.75);
    z-index: 1;
    transition: all 250ms ease-out;
}

.owl-carousel .owl-item .video-thumb:not(.active):hover:before {
    opacity: 1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    mix-blend-mode: screen;
    left: 0;
    top: 0;
    background: rgba(247, 148, 30, 0.30);
    z-index: 1;
    transition: all 1s ease-out;
}

.video-thumb:not(.active):hover:before {
    background: rgba(247, 148, 30, 0.30);
}

.video-thumb:after {
    content: "\f144";
    font-family: "Font Awesome 5 Free";
    top: 50%;
    left: 50%;
    margin: -0.458em 0 0 -0.500em;
    color: rgba(255, 255, 255, 0);
    font-size: 2em;
    line-height: 1;
    position: absolute;
    font-weight: 900;
    transition: all 250ms ease-out;
}

.video-thumb.active:after {
    color: rgba(255, 255, 255, 1);
}

.owl-carousel .owl-item img {
    position: relative;
}

#player .ytp-expand-pause-overlay .ytp-pause-overlay {
    display: none !important;
}

#playerWrap {
    display: inline-block;
    position: relative;
}

#playerWrap.shown::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    cursor: pointer;
    background-color: black;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 64px 64px;
    background-image: url(data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjgiIGhlaWdodD0iMTI4IiB2aWV3Qm94PSIwIDAgNTEwIDUxMCI+PHBhdGggZD0iTTI1NSAxMDJWMEwxMjcuNSAxMjcuNSAyNTUgMjU1VjE1M2M4NC4xNSAwIDE1MyA2OC44NSAxNTMgMTUzcy02OC44NSAxNTMtMTUzIDE1My0xNTMtNjguODUtMTUzLTE1M0g1MWMwIDExMi4yIDkxLjggMjA0IDIwNCAyMDRzMjA0LTkxLjggMjA0LTIwNC05MS44LTIwNC0yMDQtMjA0eiIgZmlsbD0iI0ZGRiIvPjwvc3ZnPg==);
}

.loading__text__player {
    left: 50%;
    top: 50%
}



/* blog page  */

  .blog-section{
    background-color: var(--light-blue-color);
  }

 .blog-post img {
      max-height: 350px;
      object-fit: cover;
    }
    .sticky-sidebar {
      position: sticky;
      top: 90px;
    }

    .sticky-sidebar h5{
      padding-bottom: 10px;
      border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
      color: var(--light-orange);
    }

    .sticky-sidebar li{
       padding-left: 10px;
       transition: all .3s ease;
      
    }

    .sticky-sidebar li a{
      display: block;
      color: var(--light-black);
    }

     .sticky-sidebar li:hover a{
      color: var(--blue-color);
     }


    .sticky-sidebar li i{
      font-size: 15px;
      margin-right: 5px;
      color: var(--light-black);
      transition: all .5s ease;
    }

    .sticky-sidebar li:hover i{
      color: var(--blue-color);
    }
    

    .sticky-sidebar li:not(:last-child){
      padding-top: 10px;
       padding-bottom: 10px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .sticky-sidebar li a{
      text-decoration: none;
    }
    
    .hero-detail h1 {
      font-size: 2.8rem;
      font-weight: bold;
    }
    .article-content p {
      line-height: 1.8;
      margin-bottom: 1.2rem;
    }


    .product-card img
     {  
      padding: 0 20px;
      width: 100%;
      height: 100%;
      margin: auto;
      border:1px solid  rgba(0,0,0,0.1);
     }

     .product-card .card-body{
      text-align: center;
      padding-top: 20px;
      bottom: 0;
     }

    .card-title{
      color: var(--light-orange);
    }

    .card-body p{
      padding-bottom: 10px;
    }
    .author-box {
      background: #f8f9fa;
      padding: 20px;
      border-left: 4px solid #0d6efd;
      border-radius: 6px;
    }
    .comment-box {
      border-bottom: 1px solid #ddd;
      padding-bottom: 15px;
      margin-bottom: 15px;
    }



    /* flipbook css */

     .accordion-button {
      background: #444;
      color: #fff;
    }
    .accordion-button:not(.collapsed) {
      background: #555;
      color: #fff;
    }
    .pdf-list button {
      width: 100%;
      margin-bottom: 8px;
      border: none;
      padding: 10px;
      text-align: left;
      border-radius: 5px;
      background: #333;
      color: #fff;
      cursor: pointer;
      transition: background 0.3s;
      font-size: 15px;
      font-weight: 400;
    }
    .pdf-list button:hover {
      background: #666;
    }
    /* 🔥 Highlight active PDF */
    .pdf-list button.active-book {
      background: var(--blue-color);
      color: #fff;
      font-weight: bold;
    }
    #flipbookContainer {
      width: 100%;
      height: 100vh;
      border-radius: 8px;
      background-color: #fff!important;
    }


    /* branch locator  */


     #map-sidebar {
      width: 320px;
  
      border-right: 1px solid #ddd;
      overflow-y: auto;
      padding: 10px;
    }
    #map {
      flex: 1;
    }
    .search-wrapper {
      position: relative;
      margin-bottom: 10px;
    }
    .search-wrapper input {
      width: 100%;
      padding: 8px 35px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }
    .search-wrapper .search-icon {
      position: absolute;
      left: 10px;
      top: 50%;
      transform: translateY(-50%);
      color: #888;
    }
    #cityFilter, #nearestBtn {
      width: 100%;
      padding: 8px;
      margin-bottom: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }
    #nearestBtn {
      background: #007bff;
      color: #fff;
      cursor: pointer;
      border: none;
    }
    #nearestBtn:hover {
      background: #0056b3;
    }
    .store {
      border: 1px solid #ddd;
      border-radius: 5px;
      margin-bottom: 8px;
      background: #fff;
      overflow: hidden;
    }
    .store-header {
      padding: 12px;
      cursor: pointer;
      font-weight: bold;
      background: #eee;
    }
    .store-header:hover {
      background: #ddd;
    }
    .store-details {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      padding: 0 12px;
    }
    .store.active .store-details {
      max-height: 250px;
      padding: 10px 12px;
    }
    .store-details p {
      margin: 5px 0;
      font-size: 14px;
    }
    .no-result {
      text-align: center;
      padding: 15px;
      color: #888;
    }
    @media (max-width: 768px) {
      body {
        flex-direction: column;
      }
      #map-sidebar {
        width: 100%;
        height: 45%;
        border-bottom: 1px solid #ddd;
      }
      #map {
        height: 55%;
      }
    }




     /* Floating pulse button */
    .enquiry-toggle {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 1200;
      border-radius: 50%;
      width: 65px;
      height: 65px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      border: none;
      color: #fff;
      background: #0d6efd;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(0,0,0,0.25);
      animation: pulse 1.8s infinite;
    }
    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(13,110,253,0.6); }
      70% { box-shadow: 0 0 0 20px rgba(13,110,253,0); }
      100% { box-shadow: 0 0 0 0 rgba(13,110,253,0); }
    }

    /* Backdrop */
    .enquiry-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.45);
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--transition);
      z-index: 1100;
    }
    .enquiry-backdrop.active { opacity: 1; pointer-events: auto; }

    /* Slide-out panel */
    .enquiry-panel {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: var(--panel-width);
      max-width: 100%;
      background: #fff;
      box-shadow: -2px 0 15px rgba(0,0,0,0.2);
      transform: translateX(100%);
      transition: transform var(--transition);
      z-index: 1205;
      display: flex;
      flex-direction: column;
    }
    .enquiry-panel.active { transform: translateX(0); }

    /* Success message */
    .success {
      display: none;
      margin-top: 10px;
    }
    .success.show { display: block; }
    

/* footer */

.deneb_footer .widget_wrapper {
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 50px;
    background-color: var(--light-white);
}
@media (max-width: 767px) {
    .deneb_footer .widget_wrapper .widget {
        margin-bottom: 40px;
    }
}

.deneb_footer .widget_wrapper .widget .widget_title{
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.deneb_footer .widget_wrapper .widget .widget_title h5 {
    font-weight: bold;
}
.deneb_footer .widget_wrapper .widget .widget_title h5:after {
    content: "";
    display: block;
    max-width: 38px;
    height: 2px;
    margin-top: 5px;
}
.deneb_footer .widget_wrapper .widegt_about p {
    margin-bottom: 20px;
}

.deneb_footer .widget_wrapper .widegt_about .social ul{
  padding-left: 0;
}
.deneb_footer .widget_wrapper .widegt_about .social li {
    display: inline-block;
    margin-right: 10px;
}
.deneb_footer .widget_wrapper .widegt_about .social li a {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--light-black);
    font-size: 14px;
    -webkit-transition: all all 0.5s ease-out 0s;
    -moz-transition: all all 0.5s ease-out 0s;
    -ms-transition: all all 0.5s ease-out 0s;
    -o-transition: all all 0.5s ease-out 0s;
    transition: all all 0.5s ease-out 0s;
}
.deneb_footer .widget_wrapper .widegt_about .social li a:hover,
.deneb_footer .widget_wrapper .widegt_about .social li a:focus {
    background-image: -moz-linear-gradient(0deg, #ffbd27 0%, #feb000 100%);
    background-image: -webkit-linear-gradient(0deg, #ffbd27 0%, #feb000 100%);
    background-image: -ms-linear-gradient(0deg, #ffbd27 0%, #feb000 100%);
    color: #fff;
    box-shadow: 2.5px 4.33px 15px 0px rgba(254, 176, 0, 0.4);
}

.deneb_footer .widget_wrapper .widget_link ul {
  padding-left: 0;
}
.deneb_footer .widget_wrapper .widget_link ul li {
    list-style: none;
    padding-left: 0;
    margin-bottom: 5px;
}
.deneb_footer .widget_wrapper .widget_link ul li a {
    text-transform: capitalize;
    color: var(--light-black);
}
.deneb_footer .widget_wrapper .widget_link ul li a:hover,
.deneb_footer .widget_wrapper .widget_link ul li a:focus {
    color: var(--dark-black);
}
.deneb_footer .widget_wrapper .widget_contact .contact_info .single_info {
    max-width: 250px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.deneb_footer .widget_wrapper .widget_contact .contact_info .single_info .icon {
    font-size: 12px;
    color: #feb000;
    margin-right: 10px;
}
.deneb_footer .widget_wrapper .widget_contact .contact_info .single_info .info p a {
    color: var(--light-black);
}
.deneb_footer .widget_wrapper .widget_contact .contact_info .single_info .info p span {
    display: block;
}

.deneb_footer .copyright_area {
    background: #edecf0;
    padding-top: 20px;
}

.deneb_footer .copyright_area .copyright_text p {
    color: #011a3e;
}
.deneb_footer .copyright_area .copyright_text p span {
    color: #feb000;
}
.deneb_cta .cta_wrapper {
    padding: 45px 50px 42px;
    max-width: 970px;
    border-radius: 15px;
    margin: auto;
    margin-bottom: -135px;
    position: relative;
    background-image: -moz-linear-gradient(0deg, #ffbd27 0%, #feb000 100%);
    background-image: -webkit-linear-gradient(0deg, #ffbd27 0%, #feb000 100%);
    background-image: -ms-linear-gradient(0deg, #ffbd27 0%, #feb000 100%);
    box-shadow: 2.5px 4.33px 15px 0px rgba(254, 176, 0, 0.4);
    z-index: 1;
}
.deneb_cta .cta_wrapper:after {
    content: "";
    background-position: bottom;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.deneb_cta .cta_wrapper .cta_content h3 {
    color: #fff;
    font-weight: bold;
}
@media (max-width: 767px) {
    .deneb_cta .cta_wrapper .cta_content h3 {
        font-size: 24px;
    }
}
.deneb_cta .cta_wrapper .cta_content h3:after {
    content: "";
    display: block;
    max-width: 110px;
    height: 2px;
    margin-top: 13px;
    margin-bottom: 24px;
}
.deneb_cta .cta_wrapper .cta_content p {
    color: #fff;
}
.deneb_cta .cta_wrapper .button_box {
    float: right;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .deneb_cta .cta_wrapper .button_box {
        float: none;
        text-align: left;
        margin-top: 30px;
    }
}
@media (max-width: 767px) {
    .deneb_cta .cta_wrapper .button_box {
        float: none;
        text-align: center;
        margin-top: 30px;
    }
}
.deneb_cta .cta_wrapper .button_box .deneb_btn {
    background: var(--white-color);
    color: #011a3e;
}
.deneb_cta .cta_wrapper .button_box .deneb_btn:hover,
.deneb_cta .cta_wrapper .button_box .deneb_btn:focus {
    box-shadow: 2.5px 4.33px 15px 0px rgba(0, 0, 0, 0.15);
}


  .thankyou-wrapper {
    background-color: var(--light-blue-color);
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .thankyou-card {
      max-width: 500px;
      width: 90%;
      margin: 0 auto;
      text-align: center;
      padding: 2rem;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      background: #fff;
    }
    .thankyou-icon {
      font-size: 40px;
      color: #28a745;
    }

    .breadcrumb-item.active {
    font-weight: 600;
}


/* back to top */
  .back-to-top {
    --size: 60px;
    --bg: rgba(0,0,0,0.6);
    --fg: #fff;
    --accent: #1d9bf0;
    position: fixed;
    left: 20px;
    bottom: 24px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background: var(--bg);
    color: var(--fg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.28);
    cursor: pointer;
    transform: translateY(16px) scale(.95);
    opacity: 0;
    pointer-events: none;
    border: none;
    transition: opacity .25s ease, transform .25s ease;
    z-index: 1200;

  }

  .back-to-top.visible {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  /* SVG progress circle */
  .back-to-top svg.progress-ring {
    position: absolute;
    width: var(--size);
    height: var(--size);
    top: 0;
    left: 0;
  }

  #progressCircle {
    transition: stroke-dashoffset 0.2s linear;
  }

  /* Centered text + arrow */
  .content-layer {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    inset: 0;
    font-size: 14px;
    font-weight: bold;
    color: var(--fg);
    transition: opacity 0.25s ease;
  }

  .arrow-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
  }

  /* Hover/focus crossfade */
  .back-to-top:hover .percent-text,
  .back-to-top:focus .percent-text {
    opacity: 0;
  }
  .back-to-top:hover .arrow-icon,
  .back-to-top:focus .arrow-icon {
    opacity: 1;
  }

  /* Start arrow hidden */
  .arrow-icon {
    opacity: 0;
  }

  .back-to-top:hover {
    background: rgba(0,0,0,0.75);
    color: var(--accent);
  }