

/* ----------layout css start----- */
.settings-panel {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  z-index: 999;
}

.setting-button {
  background-color: var(--bg-color);
  color: var(--dark-color);
  border: none;
  padding: 10px 12px;
  cursor: pointer;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;

  /* optional ring */
  outline: 2px solid var(--dark-color);
  outline-offset: -4px;
}

.spinning-icon {
  animation: spin 8s linear infinite;
  font-size: 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.settings-content {
  background-color: var(--bg-white);
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1); 
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  width: 0;
  overflow: hidden;
  transition: width 0.5s ease, opacity 0.5s ease; 
}

/* Show content on hover */
.setting-button:hover + .settings-content,
.settings-content:hover {
  width: 160px;
  padding: 15px;
}

.settings-content h6 {
  margin-top: 10px;
  font-weight: 600;
  color: var(--text-heading-color);
}

.form-switch {
  margin-bottom: 10px;
  color: var(--active-color);
}


.form-check-input:checked {
    background-color: var(--active-color);
    border-color: var(--active-color);
}



.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease;
    z-index: 9999;
    background-color: rgba(var(--dark-color), 0.6); /* cursor dot */
}

/* Outer border ring */
.custom-cursor::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 2px solid var(--dark-color);
}

/* Glowing pulse ring */
.custom-cursor::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--dark-color);
    opacity: 0.3;
    animation: pulse 1.2s ease-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

#scroll_top_wrapper {
  position: fixed;
  bottom: 20px;
  right: 18px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: transparent;
  display: none;
  z-index: 999;
}

#scroll_top {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background-color: white;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 3px;
  left: 3px;
  z-index: 2;
  font-size: 22px;
}

#scroll_top i {
  color: var(--yellow-color);
  line-height: 40px;
}
html {
  scroll-behavior: smooth !important;
}


/* ----------layout css end----- */

/* ----------header css start----- */

    .header-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .v-center {
        align-items: center;
    }

    ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    a {
        text-decoration: none;
    }

    /* header */
    .header {
        display: block;
        width: 100%;
        position: relative;
        background-color: var(--light-color);
        /* box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3); */
    }
 .header .menu>ul>li>a::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 1px;
        left: 0;
        bottom: 5px;
        background-color: var(--dark-color);
        transform: scale(0, 1);
        transition: transform 0.6s ease;
    }

    .header .menu>ul>li>a:hover::before {
        transform: scale(1, 1);
    }
    .header .menu>ul>li .sub-menu>ul>li>a::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 1px;
        left: 0;
        bottom: 3px;
        background-color: var(--dark-color);
        transform: scale(0, 1);
        transition: transform 0.6s ease;
    }
    .header .menu>ul>li .sub-menu>ul>li>a:hover::before {
        transform: scale(1, 1);
    }
    .header .item-right{
      display: flex;
      justify-content: end;
      align-items: center;
    }
    .header .item-right a {
        text-decoration: none;
        font-size: 16px;
        color: var(--text-color);
        display: inline-block;
        margin-left: 10px;
        transition: color 0.3s ease;
        text-transform:capitalize;
    }

    .header .menu>ul>li {
        display: inline-block;
        /* line-height: 60px; */
        margin-left: 28px;
    }
    .header .menu>ul>li>a {
        font-size: 16px;
        font-weight: 400;
        color: var(--text-color);
        position: relative;
        padding: 25px 0px;
        margin: 0 16px;
        text-transform: capitalize;
        transition: color 0.3s ease;
    }
    .header .menu>ul>li>a.active{
       color: var(--active-header-mode); 
    }
     .header .menu>ul>li>a.active::before {
        transform: scale(1, 1);
    }
 
    .header .menu>ul>li .sub-menu {
        position: absolute;
        z-index: 500;
        box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
        padding: 20px 30px;
        transition: all 0.5s ease;
        margin-top: 25px;
        opacity: 0;
        border-top: 2px solid var(--active-color);
        visibility: hidden;
    }

    @media (min-width: 992px) {
        .header .menu>ul>li.menu-item-has-children:hover .sub-menu {
            margin-top: 0;
            visibility: visible;
            opacity: 1;
        }        
    }

    .header .menu>ul>li .sub-menu>ul>li {
        line-height: 1;
    }

    .header .menu>ul>li .sub-menu>ul>li>a.active{
        color: var(--active-header-mode); 
    }
    .header .menu>ul>li .sub-menu>ul>li>a {
        display: block;
        padding: 10px 0;
        font-size: 15px;
        color: var(--text-color);
        transition: color 0.3s ease;
        text-decoration: none;
        text-transform: capitalize;
        position: relative;
    }

    .header .menu>ul>li .single-column-menu {
        min-width: 280px;
        max-width: 350px;
        background-color: var(--light-color);
    }

    .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li {
        line-height: 1;
        display: block;
    }


    .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
        padding: 10px 0;
        display: inline-block;
        font-size: 15px;
        color: var(--text-color);
        transition: color 0.3s ease;
        text-transform:capitalize;
    }

    .header .menu>ul>li .sub-menu.mega-menu {
        left: 50%;
        transform: translateX(-50%);
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4 {
        max-width: 1100px;
        width: 100%;
        /* display: flex;
        flex-wrap: wrap; */
        top: 62px;
        padding: 10px;  
        background-color: var(--light-color);
        z-index: 500;  
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
        flex: 0 0 15%;
        padding: 0 15px;
    }

     .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item .title a{
        font-size: 16px;
        color: var(--active-color);
        font-weight: 400;
        text-transform:capitalize;
     }
     .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item .title a h4{
        font-size: 16px;
        color: var(--active-color);
        font-weight: 400;
        padding: 10px 0;
        text-transform:capitalize;
     }

     .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a.active{
        color: var(--active-color); 
    }
    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title a{
        text-align: center;
         text-transform:capitalize;
    }

    .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
        max-width: 100%;
        width: 100%;
        vertical-align: middle;
        /* margin-top: 10px; */
        /* height: 300px; */
        object-fit: cover;
        border: 1px solid rgb(226, 219, 219);
    }

    .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a:hover,
    .header .menu>ul>li .sub-menu>ul>li>a:hover,
    .header .item-right a:hover,
    .header .menu>ul>li:hover>a {
        color: var(--active-color);
    }

 

    .mobile-menu-head,
    .mobile-menu-trigger {
        display: none;
    }

    /*responsive*/
    @media (max-width: 991px) {
        .get-quote, .grid-info-btn{
          display: none;
        }

        .header .item-left,
        .header .item-right {
            flex: 0 0 auto;
        }

        .v-center {
            justify-content: space-between;
        }

        .header .mobile-menu-trigger {
            display: flex;
            height: 30px;
            width: 30px;
            /* margin-left: 15px; */
            cursor: pointer;
            align-items: center;
            justify-content: center;
        }

        .header .mobile-menu-trigger span {
            display: block;
            height: 2px;
            background-color: var(--text-color);
            width: 24px;
            position: relative;
        }

        .header .mobile-menu-trigger span:before,
        .header .mobile-menu-trigger span:after {
            content: "";
            position: absolute;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--text-color);
        }

        .header .mobile-menu-trigger span:before {
            top: -6px;
        }

        .header .mobile-menu-trigger span:after {
            top: 6px;
        }

          .header .menu {
            position: fixed;
            width: 320px;
            background-color: #ffffff;
            left: 0;
            top: 0;
            height: 100%;
            overflow: hidden;
            transform: translate(-100%);
            transition: all 0.5s ease;
            z-index: 1099;
        }

        .header .menu .mobile-menu-head {
            display: flex;
            height: 50px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 501;
            position: sticky;
            background-color: #ffffff;
            top: 0;
        }
  
    }

    @media screen and (max-width: 600px) {
        .column {
            width: 100%;
            height: auto;
            /* border-right: 1px solid gray; */
        }       
       
    }
    ul li {
        list-style: none;
    }

    a {
        text-decoration: none;
    }
.bar_container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;   
    justify-content: flex-end;  
    width: 40px;
    cursor: pointer;
}

.bar1, .bar2, .bar3 {
    height: 3px;
    background-color: var(--dark-color);
    border-radius: 50px;
}

.bar1 {
    width: 20px;
}

.bar2 {
  width: 25px;
  margin: 6px 0;
}

.bar3 {
  width: 15px;
}


   .grid-info-btn {
    background-color: var(--dark-color);
    color: var(--light-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: none;
    margin-left: 10px;

    /* Add Flexbox to center the SVG */
    display: flex;
    align-items: center;
    justify-content: center;

    /* Optional smooth transition */
    transition: background-color 0.3s, color 0.3s;
}

 .get-quote {
    padding: 8px;
    border-radius: 50px;
    background-color: var(--yellow-color);
    height: 48px;
    line-height: 30px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding-left: 28px;
    transition: 0.6s all;
}
.get-quote:hover{
  background-color: var(--active-color);
  color: var(--bg-white);
}

.get-quote span {
    background-color: var(--bg-white);
    color: var(--text-heading-color);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease; 
    transform: rotate(-45deg);
    transform-origin: center;
}
.get-quote:hover span {
    transform: rotate(0deg);
}

.header-top a{
  color:var(--text-white);
  padding: 6px;
  font-size: 16px;
}
@media (max-width: 768px) {
    .header-top a{
  padding: 4px;
  font-size: 13px;
}
}

.mobile-menu-btn-close {
  transition: transform 0.8s ease;
  background-color: var(--yellow-color);
  color: var(--text-heading-color);
  border-radius: 50%;
  padding: 4px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offcanvas-header{
    display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-btn-close:hover {
  transform: rotate(360deg); /* 360 degree rotation */
}
.offcanvas.offcanvas-start{
    background-color: var(--active-color);
}
ul.mobile-menu li{
    border-bottom: 1px solid rgba(128, 128, 128, 0.438);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
ul.mobile-menu li a{
    padding: 14px 0;
    display: inline-block;
    color: var(--text-white);
    width: 100%;
}
ul.mobile-menu li a:hover{
     color: var(--yellow-color);  
}
ul.mobile-menu li a.active{
  color: var(--yellow-color);  
}
.mobile-submenu{
  transition: transform 0.8s ease;
  background-color: var(--yellow-color);
  color: var(--text-heading-color);
  border-radius: 50%;
  padding: 4px;
  width: 27px;
  height: 27px;
  line-height: 27px;
  text-align: center;
  border: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.submenu{
    display: none;
    margin-left: 20px;
}

.submenu ul li a{
    padding: 5px 0;
    display: inline-block;
    color: var(--text-white);
    width: 100%;
}

.offcanvas.offcanvas-end{
background-color: var(--active-color);
}
.header-cotact-details p{
    font-size: 15px;
    color: var(--text-white);
}
.header-cotact-details h5{
    font-size: 16px;
    color: var(--text-white);
    font-weight: 400;
}
.header-cotact-details .icon{
    font-size: 30px;
    font-weight: 400;
    color: var(--yellow-color);    
}
.social-btn{
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background-color: var(--bg-light-color);
    border-radius: 50%;
    border: none;
    color:var(--text-heading-color);
    margin-top: 10px;
}
.social-btn:hover{
    background-color: var(--yellow-color);

}


ul.subcategory li{
    position: relative;
}
ul.subcategory li a {
    color: var(--active-header-mode);
    display: block;
    padding: 4px 0px !important;
    font-size: 13px;
}

  ul.subcategory li a::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 1px;
        left: 0;
        bottom: 3px;
        background-color: var(--dark-color);
        transform: scale(0, 1);
        transition: transform 0.6s ease;
    }
    ul.subcategory li a:hover::before {
        transform: scale(1, 1);
    }

    .all-services{
        display: none;
    }
    .all-services ul li {
        border-bottom: 1px solid rgba(128, 128, 128, 0.438);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0;
        margin-left: 20px;
        color: var(--text-white);
        cursor: context-menu;
    }

    /* Scrollbar Styles for WebKit */
    .scroll-container::-webkit-scrollbar {
        /* width: 12px; */
        padding: 0;
    }

    .scroll-container::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 6px;

    }

    .scroll-container::-webkit-scrollbar-thumb {
        background-color: #888;
        border-radius: 6px;
        border: 3px solid #f1f1f1;
        padding: 0;
    }

    .scroll-container::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    /* Firefox */
    .scroll-container {
        scrollbar-width: thin;
        scrollbar-color: #888 #f1f1f1;
    }

    .scroll-container {
        height: 300px;
        overflow-y: scroll;
    }
    .scroll-container button.nav-link {
        padding: 10px 10px;
        border-radius: 5px;
        margin-bottom: 5px;
        display: block;
        color: var(--text-color);
        transition: background-color 0.3s, color 0.3s;
    }
    .scroll-container .nav-link:hover {
        background-color: var(--active-header-mode);
        color: var(--text-white);
    }
    .scroll-container .nav-link.active {
        background-color: var(--active-header-mode);
        color: var(--text-white);
    }
/* ----------header css end----- */

/* ----------index css start----- */
 .slider {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slide.active {
            opacity: 1;
            z-index: 1;
        }

        .slide-content {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background: linear-gradient(to right, rgba(81, 136, 108, 0.7), rgba(0, 0, 0, 0));
            /* semi-transparent black background */
            color: white;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding-left: 3%;
        }

        .inner-content {
            max-width: 960px;
        }

        .inner-content h2 {
            font-size: 86px;
            line-height: 100px;
            margin-bottom: 22px;
        }
        
        .inner-content a{
            color: white;;
        }

        .nav-buttons {
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 1;
        }

        .nav-buttons button {
            background-color: rgba(214, 219, 218, 0.5);
            border: none;
            color: white;
            font-size: 20px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
        }

        .nav-buttons button:hover {
            background-color: var(--active-color);
        }

        .slide-main-heading {
            color: var(--text-white);
            font-size: 16px;
            margin-bottom: 35px;
        }

        .slide-main-heading span {
            padding: 6px 27px;
            border: 1px solid #8d8d84;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            background-color: rgba(82, 146, 122, 0.3);
        }

        .slide-main-heading .dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background-color: var(--text-white);
            /* same as text color */
            border-radius: 50%;
            content: "";
        }

        .slide-cotact-btn {
            background-color: var(--dark-color);
            color: var(--light-color);
            border-radius: 50%;
            width: 48px;
            height: 48px;
            border: none;
            margin-left: 10px;

            /* Add Flexbox to center the SVG */
            display: flex;
            align-items: center;
            justify-content: center;

            /* Optional smooth transition */
            transition: background-color 0.3s, color 0.3s;
        }

      
        
        @media (max-width: 768px) {
            .slide-content {
                bottom: 0;
                left: 0;
                font-size: 14px;
                padding: 10px;
            }

             .inner-content h2 {
            font-size: 46px;
            line-height: 46px;
            margin-bottom: 28px;
        }
            .nav-buttons {
                right: 10px;
                gap: 10px;
            }

            .nav-buttons button {
                font-size: 16px;
                padding: 8px 12px;
            }
        }

.main-heading {
  color: var(--text-color);
  margin-bottom: 35px;
}

.main-heading span {
  padding: 6px 27px;
  font-size: 16px;
  border: 1px solid #e6e7e1;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px; /* gap between dot and text */
}

.main-heading .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--text-color); /* same as text color */
  border-radius: 50%;
  content: "";
}
.sub-heading{
  color:var(--mode-heading-color);
  font-size: 46px;  
  margin-bottom: 22px;
  font-weight: 600;
}
@media (max-width: 768px) {
   .sub-heading{
  font-size: 30px;  
} 
}

.contents{
  color:var(--text-color);
  margin-bottom: 22px;
}
 .experience{
    display: flex;
    align-items: center;
    padding: 30px;
    background-color: var(--active-color);
    color: var(--text-white);
    border-radius: 20px;
    animation: floatUpDown 5s ease-in-out infinite;
 }
   @keyframes floatUpDown {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(18px);
    }
  }
 .experience h3{
    font-size: 38px;
    font-weight: 500;
 }
 @media (max-width: 768px) {
            .experience h3{
            font-size: 28px;
        }
        .experience{
             padding: 15px;  
        }
    }
 .about-image-top img{
    /* height: 350px; */
    width: 100%;
    border-radius: 90px 90px 0 0;
    -o-object-fit: cover;
    object-fit: cover;
 }
 .about-image-bottom img{
    width: 100%;
    border-radius: 0 0 90px 90px;
    -o-object-fit: cover;
    object-fit: cover;
 }
 .about-image-right img{
    width: 100%;
    border-radius: 90px 90px 0 0;
    -o-object-fit: cover;
    object-fit: cover;
 }
 .about-sub-heading h5{
    font-size: 22px;
    line-height: 32px;
    padding: 0;
    margin: 0;
    color: var(--mode-heading-color);
    font-weight: 600;
 }
 @media (max-width: 768px) {
            .about-sub-heading h5{
            font-size: 17px;
        }
    }
.services-section {
    position: relative;
    z-index: 1;
    background-color: var(--bg-light-color); /* fallback color */
    padding: 80px 0; /* Ensure content is visible */
    overflow: hidden;
}

.bg-image-servces {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: -1;
}

.my-card{
    background-color: var(--bg-card-color);
    border-radius: 20px;
     border-top: 1px solid gainsboro;
    border-left: 1px solid gainsboro;
    border-right: 1px solid gainsboro;
    border-bottom: 5px solid gainsboro; /* Thick bottom border */
}
.my-card img{
    border-radius: 20px 20px 0 0;
}
.my-card .card-icon img{
    border-radius: 5px;
    width:60px;
    background-color: gainsboro;
    padding: 10px;
}
.my-card .card-number{
    font-size: 40px;
    font-weight: 500;
    color: gainsboro;
}
.my-card:hover  .card-icon img{
    background-color: var(--yellow-color);
}
 .read-more {
    padding: 8px;
    height: 48px;
    line-height: 30px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.6s all;
    background-color: var(--bg-card-color);
    color: var(--mode-heading-color); /* 👈 यह जोड़ें */
}

.read-more span {
    background-color: transparent;
    color: var(--mode-heading-color);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease; 
    transform: rotate(-45deg);
    transform-origin: center;
}
.read-more:hover span {
    transform: rotate(0deg);
}

.tab-buttons {
      margin-bottom: 20px;
      justify-content: space-between;
    }

    .tab-btn {
        width: 100%;
      padding: 12px 24px;
      border-radius: 30px;
      border-top: 1px solid gainsboro;
      border-left: 2px solid gainsboro;
      border-right: 2px solid gainsboro;
      border-bottom: 5px solid gainsboro; /* Thick bottom border */
      background-color: #fff;
      font-weight: 600;
      font-size: 16px;
      color: var(--text-heading-color);
      cursor: pointer;
      transition: 0.3s ease;
    }

     @media (max-width: 768px) {
              .tab-btn {
            font-size: 13px;
            font-weight: 400;
        }
    }
    .tab-btn.active {
      background-color: var(--yellow-color);
      border-color: rgb(190, 190, 59);
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .tab-pane {
      display: none;
      animation: fadeIn 0.5s ease-in-out;
    }

    .tab-pane.active {
      display: block;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .tab-content-image img{
        border-radius: 20px;
    }
    .checkmark {
    width: 30px;
    height: 30px;
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid var(--dark-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    flex-shrink: 0; /* ✅ Prevent shrinking */
    }

    
.case-studies-section {
    position: relative;
    z-index: 1;
    background-color: var(--bg-light-color); /* fallback color */
    padding: 80px 0; /* Ensure content is visible */
    overflow: hidden;
}
        .swiper-container {
            width: 100%;
            height: 100%;
        }

        .swiper-slide {          
            font-size: 18px;           
            display: -webkit-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
            border-radius: 20px;
            border:1px solid #afafaeff;
            position: relative;
        }
        .swiper-slide a img{
            border-radius: 20px;
        }
        .swiper-slide a {
            color: #252425;
            text-decoration: none;
        }

        @media (max-width: 768px) {
            .swiper-slide .swiper-content {
                font-size: 12px;
            }
        }
       .swiper-slide .swiper-content {
            position: absolute;
            left: 0;
            bottom: 0; 
             z-index: 999;
            opacity: 0;
            visibility: hidden; 
            transition: opacity 0.8s ease, visibility 0.8s ease;
            width: 100%; 
            padding: 15px;        
        }
       .swiper-slide .swiper-content .swiper-content-inner{
         background-color: var(--yellow-color);          
            padding: 15px;
            border-radius: 20px;
            text-align: left;
            color: var(--text-heading-color);
            font-size: 15px;
       }

        .swiper-slide:hover .swiper-content {
            opacity: 1;
            visibility: visible;
        }

        .swiper-custom-cursor {
            position: fixed;
            pointer-events: none;
            z-index: 2;
            font-size: 14px;
            background: #000;
            color: #fff;
            padding: 2px 6px;
            border-radius: 4px;
            display: none;
            transition: top 0.05s, left 0.05s;
        }

        .swiper-button-prevs, .swiper-button-nexts{
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: var(--bg-white);
            color: var(--text-heading-color);
            line-height: 45px;
            text-align: center;
        }
        .swiper-button-prevs:hover, .swiper-button-nexts:hover{
            background-color: var(--active-color);
            color: var(--text-white);
        }
         .swiper-read-more {
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: 0.6s all;
            background-color: transparent;
            color: var(--text-heading-color); /* 👈 यह जोड़ें */
        }

        .swiper-read-more span {
            background-color: transparent;
            color: var(--text-heading-color);
            border-radius: 50%;
            width: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.4s ease; 
            transform: rotate(-45deg);
            transform-origin: center;
        }
        .swiper-read-more:hover span {
            transform: rotate(0deg);
        }

 .member-card {
    position: relative;
    overflow: hidden; /* ✅ Prevent content from going outside */
    border-radius: 20px;
}
.member-card img{
    width: 100%;
}
.client-image{
    width:80px;
    height:80px;
    border-radius:50%;
}
.client-name{
     color:var(--mode-heading-color);
  font-size: 30px;  
  margin-bottom: 8px;
  font-weight: 400;
}
.client-role{
    color: var(--text-color);
}
.client-role a{
    color: var(--text-color);
}
.member-card .member-card-details {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--light-color);
    z-index: 1;
    margin: 0; /* ✅ Remove margin to prevent pushing out */
    padding: 20px;
    border-radius: 0 0 20px 20px;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
    text-align: left;
    color: var(--mode-heading-color);
    border-top: 1px solid gainsboro;
    border-left: 1px solid gainsboro;
    border-right: 1px solid gainsboro;
    border-bottom: 5px solid gainsboro;
    opacity: 0;
    font-size: 15px;
    visibility: hidden;
    transform: translateY(100%);
}
.feature-card{
    border-top: 1px solid gainsboro;
    border-left: 1px solid gainsboro;
    border-right: 1px solid gainsboro;
    border-bottom: 5px solid gainsboro;
    border-radius: 20px;
    padding: 10px;
}

/* Show on hover */
.member-card:hover .member-card-details {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.member-card .member-card-details .share-btn{
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background-color: var(--bg-light-color);
    border-radius: 50%;
    border: none;
    color:var(--mode-heading-color);
}
.member-card .member-card-details:hover .share-btn{
    background-color: var(--active-color);
    color: var(--text-white);
}
.member-card .member-card-details .share-wrapper{
    position: relative;
      display: inline-block;
}
.member-card .member-card-details .share-wrapper .share-btn-option{
    position: absolute;
    left: 0;
    bottom: 60px;
    opacity: 0;
     transition: opacity 0.9s ease;
}

.member-card .member-card-details .share-wrapper:hover  .share-btn-option{
    opacity: 1;
}
.member-card .member-card-details .share-btns{
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background-color: var(--bg-light-color);
    border-radius: 50%;
    border: none;
    color:var(--text-heading-color);
    margin-top: 10px;
}
.member-card .member-card-details .share-wrapper .share-btns:hover{
    background-color: var(--yellow-color);
}


 .brands {
        width: 100%;
      padding: 12px 24px;
      border-radius: 30px;
      border-top: 1px solid gainsboro;
      border-left: 2px solid gainsboro;
      border-right: 2px solid gainsboro;
      border-bottom: 5px solid gainsboro; /* Thick bottom border */
      background-color: #fff;
      font-weight: 600;
      color: var(--text-heading-color);
      cursor: pointer;
      transition: 0.3s ease;
    }
    .brands img{
        width: 100%;
    }

    .custom-border{
        border-radius: 20px;
        border: 1px solid gainsboro;
    }
/* ----------index css end----- */

/* ----------about css start----- */
.breadcrumb-area {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 0; /* adjust height */
    position: relative;
    text-align: center;
    color: #fff;
}

.breadcrumb-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2); /* overlay effect */
    z-index: 0;
}

.breadcrumb-area-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.breadcrumb-area-content h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
}

.breadcrumb-area-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    font-size: 16px;
    color: #fff;
}

.breadcrumb-area-content ul li {
    display: flex;
    align-items: center;
    color: var(--yellow-color);
}

.breadcrumb-area-content ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-area-content ul li a:hover {
    text-decoration: underline;
}
.about-image1{
    position: relative;
}
.about-image1 img{
    width: 90%;
    height: auto;
    border-radius: 20px;
}
.about-image2{
    position: absolute;
    top: 50%;
    transform: translateY(-50%); right:0;
}
.about-image2 img{
    border-radius: 20px;
    border: 2px solid var(--text-white);
}
/* ----------about css end----- */

/* ----------contact css start----- */
.mail-details{
    color:  var(--text-color);
    padding:6px 0;
    font-size: 15px;
    display: block;
}
.contact-detals{
    padding: 30px;
    background-color: var(--bg-light-color);
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
     border-top: 1px solid gainsboro;
    border-left: 1px solid gainsboro;
    border-right: 1px solid gainsboro;
    border-bottom: 5px solid gainsboro; /* Thick bottom border */
}
.contact-detals .icon{
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    background-color: var(--bg-card-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 50%;
    font-size: 40px;
}
.contact-form{
    padding: 30px;
    border-radius: 20px;
    background-color: var(--bg-light-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
     border-top: 1px solid gainsboro;
    border-left: 1px solid gainsboro;
    border-right: 1px solid gainsboro;
    border-bottom: 5px solid gainsboro;
}
.contact-form form textarea{
       padding: 10px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--dark-color);
    margin-bottom: 20px;
}
.contact-form form input{
    padding: 10px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--dark-color);
    margin-bottom: 20px;
}
.contact-form form input:focus{
    outline: none !important;
}
.is-invalid {
    border: 1px solid red !important;
}
.contact-form form textarea:focus{
    outline: none !important;
}
.contact-map{
    border-radius: 20px;
    padding: 30px;
    background-color: var(--bg-light-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
     border-top: 1px solid gainsboro;
    border-left: 1px solid gainsboro;
    border-right: 1px solid gainsboro;
    border-bottom: 5px solid gainsboro;
}
.contact-map iframe{
   border-radius: 20px; 
}
/* ----------contact css end----- */

/* ----------blogs css start----- */
.blog-card{
    background-color: var(--bg-card-color);
    border-radius: 20px;
     border-top: 1px solid gainsboro;
    border-left: 1px solid gainsboro;
    border-right: 1px solid gainsboro;
    border-bottom: 5px solid gainsboro; /* Thick bottom border */
}
.blog-card .thumbnail{
    position: relative;
}
.blog-card .thumbnail .blog-date{
    position: absolute;
    right: 20px;
    bottom: 20px;
    background-color: var(--active-color);
    color: var(--text-white);
    border-radius: 8px;
    padding: 8px;
    text-align: center;
}
.blog-card .thumbnail img{
    border-radius: 20px 20px 0 0;
}
.blog-card .comement-wrapper {
  padding: 8px 20px;
  background-color: var(--bg-light-color);
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  font-size: 14px;
  /* margin: 0 auto; */
  width: fit-content; /* ✅ सिर्फ content के अनुसार width */
}

/* ----------blogs css end----- */
/* ----------blogs details css start----- */
.post-comment{
      background-color: var(--bg-light-color);
    border-radius: 20px;
     border-top: 1px solid gainsboro;
    border-left: 1px solid gainsboro;
    border-right: 1px solid gainsboro;
    border-bottom: 5px solid gainsboro; 
}
.post-comment{
    padding: 30px;
    border-radius: 20px;
    background-color: var(--bg-light-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
     border-top: 1px solid gainsboro;
    border-left: 1px solid gainsboro;
    border-right: 1px solid gainsboro;
    border-bottom: 5px solid gainsboro;
}
.post-comment form textarea{
       padding: 10px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--dark-color);
    margin-bottom: 20px;
}
.post-comment form input{
    padding: 10px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--dark-color);
    margin-bottom: 20px;
}
.post-comment form input:focus{
    outline: none !important;
}
.post-comment form textarea:focus{
    outline: none !important;
}
/* ----------blogs details css end----- */

/* ----------services-details css start----- */
.services-details-icon img{
    border-radius: 5px;
    width:60px;
    background-color: gainsboro;
    padding: 10px;
}
.services-details-number{
    font-size: 40px;
    font-weight: 500;
    color: gainsboro;
}

.services-details-card{
      padding: 30px;
    border-radius: 20px;
    background-color: var(--bg-light-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
     border-top: 1px solid gainsboro;
    border-left: 1px solid gainsboro;
    border-right: 1px solid gainsboro;
    border-bottom: 5px solid gainsboro;
}

/* ----------services-details css end----- */




    /* ---------Sevices-heading- css start------------ */
        .nav-tabs {
            border: none;
            white-space: nowrap;
            flex-wrap: nowrap;
        }

        .nav-tabs .nav-link {
            color: #333;
            border: none;
            font-weight: 500;
            padding: 10px 20px;
            border-radius: 20px;
            margin-right: 10px;
            white-space: nowrap;
        }

        .nav-tabs .nav-link.active {
            background-color: var(--active-header-mode);
            color: #fff !important;
        }

        .section {
            padding-top: 50px;
            scroll-margin-top: 120px; 
            scroll-margin-bottom: 120px; 
        }

        .section h2 {
            font-weight: 700;
            font-size: 24px;
            margin-bottom: 20px;
        }

        .sticky-contact {
            position: sticky;
            top: 180px;          
        }

        .btn-orange {
            background-color: var(--active-header-mode);
            color: var(--light-color);
            font-weight: 600;
        }

        .btn-orange:hover {
            background-color: var(--bg-active);
        }

        @media (max-width: 991px) {
            .sticky-contact {
                position: static;
                margin-top: 30px;
            }
        }

        html {
            scroll-behavior: smooth;
        }

        .scroll-arrow {
            background: none;
            border: none;
            font-size: 1.5rem;
            padding: 0 10px;
            cursor: pointer;
            color: #333;
        }

        .scroll-arrow:focus {
            outline: none;
        }

    
        .services-heading-main {
            color: var(--active-header-mode);
            margin-top: 45px;
        }

        .services-sub-heading-main {
            color: var(--mode-heading-color);
        }

        .service-paragraph-container {
            width: 90%;
            margin: auto;
        }

        .checkmark-clr {
            color: var(--active-header-mode);
        }

        .accordion-button:not(.collapsed) {
            color: var(--active-header-mode);
            background-color: var(--bg-light-color);
            box-shadow: inset 0 calc(-1 * var(--active-header-mode); ) 0 var(--mode-heading-color);
        }

        .accordion-button:focus {
            z-index: 3;
            outline: 0;
            box-shadow: var(--active-header-mode);
        }

        .about-imgs {
            position: relative;
            overflow: hidden;
        }

        .about-imgs::after {
            position: absolute;
            content: "";
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-size: contain;
        }
        /* ---------Sevices-heading- css end------------ */
    
/* ----------footer css start----- */

.main-footer  .bg-design {
    opacity: 0.02;
    background-repeat: no-repeat;
    background-size: cover;
}

.copyright-content .footer-widget-menu ul {
    display: flex
;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-widget-menu ul {
    padding: 0;
    margin: 0;
}

.jc-end {
    justify-content: end;
}

.main-footer  .footer-content.subscribe form input {
    background: transparent;
    color: white;
    border: 1px solid rgba(128, 128, 128, 0.329);
    border-radius: 50px;
    width: 100%;
    padding: 20px;
}
.main-footer  .footer-content.subscribe form input:focus{
    outline: none;
}
.main-footer  .footer-content.subscribe form input:hover{
    border: 1px solid var(--active-color);
}


.main-footer  .footer-content.subscribe form {
    position: relative;
}
/* .footer-content .logo img {
    max-width: 155px;
} */

.main-footer {
    background: var(--text-heading-color);
}

.footer-content.icons ul {    
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 0px;
}

.footer-content .logo img {
    max-width: 155px;
}

.bg-design {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: -1;}


.footer-content.icons ul li {
    list-style: none;
}

.footer-widget-menu ul li {
    padding: 0;
    list-style: none;
    margin-bottom: 10px;
   
}

.footer-widget-menu ul li a {
   color: var(--text-white);
   
}

.footer-widget-menu ul li a:hover{
    color:var(--yellow-color);
    
 }

.contact-item-info{
     color: var(--text-white);
}

.contact-item-info a{
     color: var(--text-white);
}

.contact-item-info a:hover{
    color:var(--yellow-color);
}

.footer-content{
     color: var(--text-white);

}

.copyright-content p {
    color: var(--text-white);
    margin: 0;
}

.copyright-content p a {
    text-decoration: underline;
    color: var(--text-white);
}
.footer-content.icons ul li a i {
    
    color: var(--text-white);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #313131;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.main-footer .footer-content.subscribe form button {
    padding: 0;
    background: var(--yellow-color);
    color: var(--text-heading-color);
    position: absolute;
    right: 10px;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
}


.footer-content.contact .contact-item-info h6 {
    max-width: 240px;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: var(--text-white);
}

.main-footer .footer-content.subscribe form button:hover{
    border: 1px solid var(--active-color);
    background: var(--bg-color);
    color: var(--text-white);
    
}


.footer-content.icons ul li a i:hover{
    color:var(--text-heading-color);
    background:var(--yellow-color);
}

.footer-content h5{
    color: white;
    font-size: 22px;
}

.copyright-content {
    padding-top: 35px;
    margin-top: 40px;
    border-top: 1px solid rgba(128, 128, 128, 0.329);
}

.copyright-content a:hover{
    color: var(--yellow-color)
}

/* ----------footer css end----- */
