



.spinner {
   position: relative;
   width: 150px; /* Adjust spinner size */
   height: 150px; /* Adjust spinner size */
   display: flex;
   justify-content: center;
   align-items: center;
}

.segment {
   position: absolute;
   width: 5px; /* Adjusted segment width */
   height: 15px; /* Adjusted segment height */
   background-color: #ffffff;
   border-radius: 2px;
   opacity: 0.1;
   animation: spin 1.2s linear infinite;
}

/* Updated for 31 segments */
.segment:nth-child(1)  { transform: rotate(0deg) translate(0, -50px);  animation-delay: 0s; }
.segment:nth-child(2)  { transform: rotate(11.6deg) translate(0, -50px);  animation-delay: 0.04s; }
.segment:nth-child(3)  { transform: rotate(23.2deg) translate(0, -50px);  animation-delay: 0.08s; }
.segment:nth-child(4)  { transform: rotate(34.8deg) translate(0, -50px);  animation-delay: 0.12s; }
.segment:nth-child(5)  { transform: rotate(46.4deg) translate(0, -50px);  animation-delay: 0.16s; }
.segment:nth-child(6)  { transform: rotate(58deg) translate(0, -50px);  animation-delay: 0.20s; }
.segment:nth-child(7)  { transform: rotate(69.6deg) translate(0, -50px);  animation-delay: 0.24s; }
.segment:nth-child(8)  { transform: rotate(81.2deg) translate(0, -50px);  animation-delay: 0.28s; }
.segment:nth-child(9)  { transform: rotate(92.8deg) translate(0, -50px);  animation-delay: 0.32s; }
.segment:nth-child(10) { transform: rotate(104.4deg) translate(0, -50px); animation-delay: 0.36s; }
.segment:nth-child(11) { transform: rotate(116deg) translate(0, -50px); animation-delay: 0.40s; }
.segment:nth-child(12) { transform: rotate(127.6deg) translate(0, -50px); animation-delay: 0.44s; }
.segment:nth-child(13) { transform: rotate(139.2deg) translate(0, -50px); animation-delay: 0.48s; }
.segment:nth-child(14) { transform: rotate(150.8deg) translate(0, -50px); animation-delay: 0.52s; }
.segment:nth-child(15) { transform: rotate(162.4deg) translate(0, -50px); animation-delay: 0.56s; }
.segment:nth-child(16) { transform: rotate(174deg) translate(0, -50px); animation-delay: 0.60s; }
.segment:nth-child(17) { transform: rotate(185.6deg) translate(0, -50px); animation-delay: 0.64s; }
.segment:nth-child(18) { transform: rotate(197.2deg) translate(0, -50px); animation-delay: 0.68s; }
.segment:nth-child(19) { transform: rotate(208.8deg) translate(0, -50px); animation-delay: 0.72s; }
.segment:nth-child(20) { transform: rotate(220.4deg) translate(0, -50px); animation-delay: 0.76s; }
.segment:nth-child(21) { transform: rotate(232deg) translate(0, -50px); animation-delay: 0.80s; }
.segment:nth-child(22) { transform: rotate(243.6deg) translate(0, -50px); animation-delay: 0.84s; }
.segment:nth-child(23) { transform: rotate(255.2deg) translate(0, -50px); animation-delay: 0.88s; }
.segment:nth-child(24) { transform: rotate(266.8deg) translate(0, -50px); animation-delay: 0.92s; }
.segment:nth-child(25) { transform: rotate(278.4deg) translate(0, -50px); animation-delay: 0.96s; }
.segment:nth-child(26) { transform: rotate(290deg) translate(0, -50px); animation-delay: 1.00s; }
.segment:nth-child(27) { transform: rotate(301.6deg) translate(0, -50px); animation-delay: 1.04s; }
.segment:nth-child(28) { transform: rotate(313.2deg) translate(0, -50px); animation-delay: 1.08s; }
.segment:nth-child(29) { transform: rotate(324.8deg) translate(0, -50px); animation-delay: 1.12s; }
.segment:nth-child(30) { transform: rotate(336.4deg) translate(0, -50px); animation-delay: 1.16s; }
.segment:nth-child(31) { transform: rotate(348deg) translate(0, -50px); animation-delay: 1.20s; }

/* Spinner animation */
@keyframes spin {
   0% {
      opacity: 1;
   }
   100% {
      opacity: 0.1;
   }
}

.logo {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 50px; /* Logo size */
   height: auto;
}

.loader-text {
   margin-top: 15px;
   font-size: 16px;
   color: #fff;
}

 /* Sticky Icon Bar Container on the Left */
 .icon-bar {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}

/* Icon Style */
.icon-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #333;
    color: white;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Hover Effect */
.icon-bar a:hover {
    background-color: #f39c12;
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* Icon Font Size */
.icon-bar i {
    font-size: 24px;
}

/* Tooltip */
.icon-bar a:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 60px;
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 14px;
    opacity: 0.9;
}


  /* Popup background */
  .popup-background {
   display: none;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.4);
   justify-content: center;
   align-items: center;
   z-index:2000;
 }

 /* Popup form container */
 .popup-container {
   background-color: black;
   padding: 30px;
   width: 50%;
  
   border-radius: 10px;
   position: relative;
   box-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
 }

 /* Close button styling */
 .close-btn {
   position: absolute;
   top: 15px;
   right: 15px;
   background-color: #ffffff;
   color: black;
   border: none;
   cursor: pointer;
   border-radius: 50%;
   width: 25px;
   height: 25px;
   text-align: center;
   line-height: 22px;
 }


 @media(max-width:767px){
    .popup-container {
  
   padding: 20px;
   width: 100%;
  
 
 }
 }

 .sticky-icons {
   position: fixed;
   right: 15px;
   top: 53%;
   transform: translateY(-50%);
   display: flex;
   flex-direction: column;
   gap: 20px;
   z-index:1000;
   }
   
   .sticky-icons a {
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom:5px;
   
   }


   .tp-project-2-thumb img {
    
      transition: transform 1s ease-in-out, opacity 1s ease-in-out;
      
      transform: scale(0.95); /* Image slightly smaller initially */
  }
  
  .tp-project-2-thumb img.active {
      opacity: 1;
      transform: scale(1); /* Image zooms in slightly */
  }

  @media(min-width:1400px)
  {
   .mtop{
      margin-top:-50px;
   }
  }

  @media(max-width:767px){
   .tp-about-2-content span {
    
     font-size: 15px;
     
   }
   
      .tp-service-3-title {
        font-size: 20px;
      }
      .tp-project-2-title-sm {
         
         font-size: 20px;
         
       }

       .tp-service-2-accordion-box .accordion-header .accordion-buttons {
         
         
         font-size: 15px;
         
       }

       .sv-service-title {
         font-size: 23px;
         
         
         
       }




 }
 .bgoverlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
 }

 .blogoverlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
   z-index: 1;
}

@media (min-width: 992px) {
   .sidebar__wrapper {
     position: sticky;
     top: 20px; /* Distance from the top of the screen */
   }
 }

 .error {
   color: red !important;
  
  
}

.custom-ok-button {
  padding: 10px !important; /* Adjust padding to change button size */
 font-size: 18px !important; /* Adjust font size */
 border: 2px solid white !important; /* Add border to the button */
 border-radius: 50px !important;
 font-weight:bold;
 width:60%;
 color:black !important;
 background:white !important;
 box-shadow: 0 0 10px rgba(255, 255, 255, 0.1) !important;
 }



 .swal2-popup.custom-success-popup {
  background-color: black;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
 }

 .success{
  color:green;
  font-size:30px;
  font-weight:bold;
 }

 #countryCode {
   -webkit-appearance: none; /* For Chrome */
   -moz-appearance: none;    /* For Firefox */
   appearance: none;         /* Hide the dropdown arrow */
   border: none;
   background: none;
 
}

.ccode{
   padding: 10px;
   border: 1px solid rgba(245, 247, 245, 0.1);
   height: 50px;
   color:white;
}