.culture
{
    background-color: #f7f7f6;
    padding-bottom: 60px;
    margin-top: 50px;
}
.clutureContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    
}

.text-container {
    width: 50%;
    text-align: left;
}

.image-container {
    width: 50%;
}


.ourphilosophycontainer1 .slick-track{display: flex !important;
    align-items: center;
    width:100%;height:100%;
   padding-top:20px;
   padding-bottom: 20px;
    
    }
  
  
   
  
    .ourphilosophycontainer1
    {
      width:100%;
      margin:0px auto;
    }
    
  .opbox1
  {
    /* margin:20px; */
    margin-right:20px;
  }
  
  .ourphilosophycontainer1 .slick-list {
    margin-right:-20px;
  }


@media (max-width: 768px) {
    .clutureContainer
    {
        flex-direction: column-reverse;
    }

    .clutureContainer h2
    {
        text-align: center;
    }


    .text-container {
        width: 100%;
        text-align: left;
    }
    
    .image-container {
        width: 100%;
    }
    
}

/* .container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    margin: 50px 0;
}

.text-container {
    width: 45%;
    text-align: left;
}

.image-container {
    width: 45%;
}

.image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.mobile-section {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.mobile-section .image-container {
    width: 100%;
    margin-bottom: 20px;
}

.mobile-section .text-container {
    width: 90%;
}

@media (max-width: 768px) {
    .culture-header{
        padding-bottom: 0px;
    }
    .desktop-section {
        display: none;
    }

    .mobile-section {
        display: flex;
        margin-top: 30px;
    }
    .mhide{
        display: none;
    }
}
*/

.opbox1 {
    position: relative;
    display: inline-block;
    overflow: hidden;
  }
  
  .opbox1 img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
  }
  
  .tagfullinfo {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7); 
    color: #fff;
    padding: 15px 0;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(100%); 
    pointer-events: none;
  }
  
  .opbox1:hover .tagfullinfo {
    opacity: 1;
    transform: translateY(0); 
    pointer-events: auto;
  }
  
  .opbox1:hover img {
    transform: scale(1.05); 
  }
  
  .tagfullinfo p {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
  }

.ourphilosophycontainer1{
    margin-top: 20px;
}

/* Form css */
.hiring-section{
    padding: 60px 0px 60px 0px;
    
}
.hiring-section h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.hiring-section p {
    font-size: 1rem;
    margin-bottom: 30px;
}

form {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
}

.form-row {
    margin-left: 200px;
    display: flex;
    gap: 30px;

    width: 100%;
    margin-bottom: 15px;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="file"], select {
    width: 28%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    width: 28%;
    padding: 10px;
    font-size: 1rem;
    background-color: #aa863f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #333;
}
@media (max-width: 768px) {
    .hiring-section {
        margin: 20px 0;
    }

    .containers {
        padding: 10px;
    }

    form {
        display: block;
        width: 100%;
    }

    .tagfullinfo {
        opacity: 1;          
        transform: translateY(0); 
        pointer-events: auto;  
      }
      
      .opbox1 img {
        transform: none;       
      }
    

    .form-row {
        margin-left: 0px;
        width: 100%;
        margin-bottom: 15px;
        gap: 15px;
    }

    /* form input {
        width: 100%;
        padding: 12px;
        margin-bottom: 15px;
        box-sizing: border-box;
    } */

    form input[type="text"], form input[type="email"], form input[type="tel"], form input[type="file"], form select {
        width: 100%;
        padding: 10px;
        font-size: 1rem;
        border: 1px solid #3f3f3f;
        border-radius: 0px;
    }

    form button {
        width: 100%;
        padding: 15px;
        background-color: black;
        color: white;
        border: none;
        cursor: pointer;
        text-align: center;
    }

    h1 {
        text-align: center;
        margin-bottom: 20px;
    }

    p {
        /* text-align: center; */
        margin-bottom: 20px;
    }

    /* Centering input fields */
    #hiringForm {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #hiringForm input,
    #hiringForm button {
        width: 90%; 
    }
} 