 /* Column layout for each industry */
 .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
    margin-bottom: 20px; /* Adding margin bottom */
  }
  body::-webkit-scrollbar {
    width: 12px; /* Adjust width */
  }
  
  body::-webkit-scrollbar-track {
    background: #f0f0f0;  /* Color of the track */
  }
  
  body::-webkit-scrollbar-thumb {
    background-color: #999;  /* Color of the thumb */
    border-radius: 6px;      /* Round the corners */
  }
  
  body::-webkit-scrollbar-thumb:hover {
    background-color: #777;  /* Slightly darker on hover */
  }
  /* Styling for each industry box */
  .industry-box {
    perspective: 1000px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adding box shadow */
    border: 1px solid #E58F3C; 

}
  
  /* Styling for the main container of each industry box */
  .maincontainer {
    width: 100%;
    height: 300px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s;
   
  }
  
  /* Hover effect for flipping the industry box */
  .industry-box:hover .maincontainer {
    transform: rotateY(180deg);
  }
  
  /* Styling for the front and back of each industry box */
  .front,
  .back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
  }
  
  .front {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
  }
  
  /* Styling for the back of the industry box */
  .back {
    transform: rotateY(180deg);
    padding: 20px;
    box-sizing: border-box;
  }
  
  /* Styling for the image inside each industry box */
  .image img {
    max-width: 100%;
    height: 200px;
  }
  
  /* Styling for the heading inside each industry box */
  h2 {
    text-align: center;
    font-size: 24px;
    margin-top: 20px;
  }
  
  /* Styling for the paragraph inside each industry box */
  p {
    text-align: justify;
    font-size: 16px;
  }
  .industry-box h2 {
    color: #E58F3C; /* Dark gray color */
  }

  /* Responsive styles */

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}
.hero {
 
    

    background-position: bottom;
    background-size: cover;
}
.hero nav {
    color:white;
    background-color: black;
    width: 100%;
    padding:0 10%;
    display: flex;
    justify-content: space-between;
    position: relative;
    min-height:5vh;
    transition: all .6s ease;
}
.hero nav .logo img{
    object-fit: contain;
    width: 50px;
    height: 100%;
    border-radius: 5rem;
    padding-top: 10px;
}
.hero nav ul {
    list-style-type: none;
}
.hero nav ul li{
    display: inline-block;
    margin-right: 10px;
    height: 100%;
}
.hero nav ul li a {
    padding:15px;
    display: inline-block;
    height: 100%;
    text-decoration: none;
    color:white;
}
.hero nav ul li a:hover {
    background-color: grey;
}
ul li a.active,
ul li a:hover {
    background-color: grey; /* Change to desired background color */
}
.hero nav ul i.fa-user:first-of-type{
    font-size: 130%;
    margin-left:10px;
    padding:10px;
    border-radius: 50%;
    color: black;
    background-color: white;
    text-align: center;
    transition: all .3s ease;
}
.hero nav ul i.fa-user:first-of-type:hover {
    background-color: grey;
    color:white;
}
.hero nav .sub-menu-wrap{
    position: absolute;
    top:115%;
    right: 10%;
    min-width: 250px;
    background-color: #e6e6e6;
    color:#525252;
    font-weight: 300;
    z-index: 3;
    max-height:0;
    overflow: hidden;
    transition: opacity .1s ease,max-height .3s ease-in;
    opacity:0;
}
.hero nav .sub-menu-wrap:before{
    content:'';
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: inherit;
    top:-5px;
    transform: rotate(45deg);
    right:15px;
    z-index: 5;
}
.hero nav .sub-menu-wrap img{
    object-fit: cover;
    width:80px;
    height: 80px;
    border-radius: 50%;
}

.hero nav .sub-menu {
    padding:15px;
}
.hero nav .sub-menu-wrap hr{
    border:0;
    margin:20px;
    background:#a1a1a1;
    padding:1px;
}
.hero nav .sub-menu-wrap.show {
    max-height: 800px;
    opacity:1;
}
.hero nav ul.show {
    max-height:800px;
    padding:15px 0;
    opacity:1;
}
.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    margin: 10px 0;
}
.menu-link {
    display: flex;
    align-items: center;
    flex-direction: column;
    align-items: center;
}
.menu-link a i{
    margin:0 5px;
    background-color:#a1a1a1;
    color:white;
    border-radius: 50%;
    text-align: center;
    padding:10px;
}
.menu-link a{
    padding:5px 10px;
    width: 100%;
    display: flex;
    gap:5px;
    align-items: center; 
    text-decoration: none;
    color:grey;
    border-radius: 25px;       
}
.menu-link a:hover {
    background-color:black;
}
.menu-link span {
    float: right;
}
.menu-link h4 {
    width: 100%;
}
.hambargar {
    display: none;
}

@media only screen and (max-width : 700px){
    .hambargar {
        display: block;
        margin-top: 10px;
    }
    .hambargar .line {
        width: 30px;
        height:3px;
        background-color: white;
        margin: 6px 0;
        transition: all .4s ease .1s;
    }
   
    .hambargar.active .line:nth-of-type(1){
        transform: rotate(45deg) translateY(12px);
    }
    .hambargar.active .line:nth-of-type(2){
        width: 0;
        transition: all .1s ease;
    }
    .hambargar.active .line:nth-of-type(3){
        transform: rotate(-45deg) translateY(-12px);
    }

    .hero nav {
        display: flex;
        flex-direction: column;
    }
    .hero nav ul{
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: black;
        position: relative;
        max-height:0;
        overflow: hidden;
        display: flex;
        transition: all .4s ease;
        opacity:0;
        z-index: 2;
    }
    .hero nav ul li {
        margin:3px 0;
        text-align: center;
        width: 110px;
    }
    .hero nav ul li a{
        border-radius: 20px;
        width: 100%;
    }
    .hero nav ul i.fa-user:first-of-type{
        margin-left:0;    
    }
    .hh {
        display: flex;
        justify-content: space-between;
    }
    .sub-menu-wrap {
        left: 50%;
        transform: translateX(-50%)
    }
    
    
    
}


/* Header */
.header {
   position: relative;
    height: 70vh;
    padding: 200px 0; 
    background-image: url(../img/header.jpeg);
    background-size: cover;
}

.techysandycom {
    font-family: 'Poppins', sans-serif; /* Use the desired font family */
    font-size: 36px; /* Adjust font size as needed */
    font-weight: bold; /* Set font weight to bold */
    animation: slide-up 1.5s forwards; /* Apply animation */
    opacity: 0; /* Initially hide the text */
}

.text-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes slide-up {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0%);
        opacity: 1;
    }
}


.container2 {
    padding-top: 50px;
    display: flex;
    align-items: center; /* Vertically center the content */
}

.image-container {
    flex: 1; /* Take up half of the container width */
    position: relative;
    display: inline-block;
    
}

.image-container img{
    width: 100%;
    height: 400px;
    border-radius: 1rem;
    background-size: cover;
}

.text-container {
    flex: 1; /* Take up half of the container width */
    padding: 0 20px; /* Add some padding */
}
.tscom {
    font-weight: bolder;
    color: #E58F3C;
}

.text-overlay {
    position: absolute;
    bottom: 10px; /* Adjust top position as needed */
    left: 10px; /* Adjust left position as needed */
    color: white; /* Text color */
    font-size: 20px; /* Font size */
    font-weight: bold; /* Font weight */
    background-color:#e58e3c8e;/* Background color with transparency */
    padding: 30px; /* Padding around text */
    border-radius: 1rem;
    display: flex;
    justify-items: center;
}

.expyr {
    flex: 1;
    font-size: 50px;
}
/* Existing styles... */

/* New styles for responsiveness on small devices */
@media only screen and (max-width: 700px) {
    /* Adjustments for container2 */
    .container2 {
        padding-top: 20px;
    }
    .text-container {
        padding: 0 10px;
        text-align: center;
    }
    .text-container h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .text-container p {
        font-size: 16px;
    }
    .image-container {
        margin-bottom: 20px;
    }
    .image-container img {
        width: 100%;
        height: auto;
    }
    .text-overlay {
        font-size: 14px;
        padding: 15px;
    }
    .expyr {
        font-size: 24px;
    }
    /* New adjustments for image and text arrangement */
    .container2 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .image-container {
        order: 1; /* Image will appear first in the flexbox order */
    }
    .text-container {
        order: 2; /* Text will appear second in the flexbox order */
    }
}
/* Existing styles... */

/* New styles for responsiveness on small devices */
@media only screen and (max-width: 700px) {
    /* Existing styles... */

    /* New adjustments for industries */
    .container h1.tscom {
        font-size: 28px;
        text-align: center;
        margin-bottom: 20px;
    }
    .container p {
        font-size: 16px;
        text-align: center;
    }
    .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

.social-icons {
    background-color: #444;
    text-align: center;
   
}

.social-icons a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 20px;
}

.social-icons a:hover {
    color: #ddd;
}


.ind_li,{
    list-style-type: none; /* Remove default bullets */
    position: relative; /* Set position for pseudo-element */
    padding-left: 20px; /* Create space for custom bullet */
    color: #333; /* Default text color */
  }

  .ind_li::before {
    content: "\2022"; /* Bullet character (•) */
    position: absolute; /* Position the bullet */
    left: 0; /* Align bullet to the left */
    color: #ff6347; /* Custom bullet color */
  }
  ul {
    padding-left: 0; /* Remove default padding */
  }


  /*Service*/

  .service-box {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: background-color 0.3s;
  }

  .service-box:hover {
    background-color: #e99c9c;
  }

  .service-icon {
    font-size: 40px;
    margin-bottom: 10px;
  }

  @media (max-width: 576px) {
    .service-box {
      margin-bottom: 20px;
    }
  }



  /*footer*/
  .footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    text-align: center;
  }

  .footer-logo {
    max-height: 50px; /* Adjust the height as needed */
    margin-bottom: 10px;
    border-radius: 5rem;
  }

  .footer-icon {
    font-size: 24px;
    margin: 0 10px;
    color: #333;
  }


  /*Carrier */
  #applicationForm {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 80%; /* Limit the width of the form for responsiveness */
    width: 70%; /* Set a fixed width for larger screens */
    overflow-y: auto; /* Enable vertical scrolling */
    max-height: 80vh; /* Limit the maximum height of the form to 80% of the viewport height */
  }

  @media (max-width: 768px) {
    /* Adjust the width for smaller screens */
    #applicationForm {
      width: 90%;
    }
  }
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }


  /*Case Studtied css*/

  .timeline {
    position: relative;
    width: 100%;
    
    background: #f0f0f0;
    overflow: hidden;
  }

  .timeline:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 20px; /* Adjust width for the pipe */
    background: linear-gradient(to bottom, #007bff, #00ffcc);
   
    animation: flow 2s infinite alternate;
}

@keyframes flow {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 0% 100%;
    }
}


  .timeline li {
    position: relative;
    margin-bottom: 50px;
    overflow: hidden;
  }

  .timeline li .timeline-badge {
    position: relative;
    z-index: 2;
    
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-left: calc(50% - 25px); /* Center the badge */
  }

  .timeline li .timeline-panel {
    background-color: #f4f4f4;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    margin-left: 60px; /* Adjusted width */
  }

  .timeline li .timeline-badge i {
    font-size: 24px;
  }

  /* Additional styles for loading animation */
  .loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .loading i {
    font-size: 50px;
    color: #007bff;
    animation: spin 1s infinite linear;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .tscom_animation {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    background-clip: text;
    -webkit-background-clip: text;
    white-space: nowrap;
    overflow: hidden;
    border-right: 4px solid transparent;
}




  @media screen and (max-width: 600px) {
    .tscom_animation {
      font-size: 20px; /* Adjust size for small devices */
    }
  }

  .tscom_jour {
    background-color: #e58e3c8e;
    border-radius: 10px;
    padding: 10px;
  }

  .fas, .fa, .fab {
    color: #E58F3C!important;
  
  }


  p strong {
    color: #E58F3C!important;
  }

  hr {
    color: #E58F3C!important;
  }


  .fab:hover {
    color: #fff!important;
    
  }

  .techysandyP {
    color: white; /* Initial text color */
    text-decoration: none!important; /* No underline */
    font-size: medium;
  }

  /* Style for the link when hovered */
  .techysandyP:hover {
    text-decoration: none; /* No underline on hover */
    color: white; /* Maintain text color */
  }