/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: white;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
    width: 100%;
    height: 13%;
  }
  
  .header .logo {
    line-height: 1;
  }
  
  .header .logo img {
    max-height: 200px;
    margin-right: 8px;
  }
  
  .header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
  }
  
  .scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  }

  
  
  /* Global Header on Scroll
  ------------------------------*/
  .scrolled .header {
    --background-color: white;
  }

  /*--------------------------------------------------------------
# hero-section
--------------------------------------------------------------*/

        .hero-section {
            margin-top: 80px;
    position: relative;
    text-align: center;
    padding: 30px;
}

.hero-image {
    width: 300px; /* Adjust the width as needed */
    height: 300px; /* Adjust the height as needed */
    object-fit: cover; /* Ensures the image covers the circular area */
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    border-radius: 50%; /* Makes the image circular */
}

#dynamic-text {
    display: inline-block;
    animation: fadeText 7s infinite;
}

@keyframes fadeText {
    0%, 20% { opacity: 1; }
    60%, 100% { opacity: 0; }
}


        .hero-section h1 {
            color: #fded00;
            /* Google Blue */
            line-height: 1.2;
        }

        .hero-section p {
            font-size: 20px;
            color: #5f6368;
        }

        .search-bar input {
            border-radius: 25px;
            padding: 12px;
            border: 1px solid #ddd;
        }

        .search-bar button {
            border-radius: 25px;
            padding: 12px 20px;
            background-color: #1a73e8;
            color: white;
        }

        .decorative-image {
            position: absolute;
            top: 20%;
            right: 5%;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
        }

        .hero-txt{
            color:black !important;
        }
.spotlight-section {
    background-color: #f8f9fa;
    padding: 50px 0;
}

.card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1.1rem;
    gap: 0.5rem;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.card-body {
    padding: 15px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    height: 25%; /* Ensure the card body takes full height */
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.card-text {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, height 0.3s ease;
    color: #333;
    padding-top: 10px;
}

/* Initially hide the paragraph
.spotlight_card .card-body .card-text {
    opacity: 0;
    height: 0; Make the text collapse initially
    padding-top: 0;
    transition: opacity 0.3s ease, height 0.3s ease, padding-top 0.3s ease;
}

Reveal the paragraph on hover
.spotlight_card:hover .card-body .card-text {
    opacity: 1;
    height: auto; Allow the text to expand naturally
    padding-top: 10px;
} */


        .team-section,
        .team-section {
    padding: 3rem 0;
}

.team-card {
    overflow: hidden;
    border-radius: 8px;
}

.team-image {
    width: 100%;
    height: 100%;
    max-height: 400px; /* Adjust the maximum height */
    object-fit: cover; /* Ensures the image covers the area without distortion */
    border-radius: 8px;
}

.team-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.team-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.team-list {
    font-size: 1rem;
}

.team-list a {
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
    display: block;
}

.team-list a:hover {
    color: #fded00;
}

.para {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

        .location-jobs {
            font-size: 0.9rem;
            color: #333;
        }

        .location-card img,
        .team-card img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .life-at-oznova-section {
            padding: 2rem 0;
            text-align: center;
        }
        
        .life-at-oznova-card {
            border: none;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            margin: 0 0.5rem; /* Adds horizontal gap between cards */
        }
        
        .life-at-oznova-card img {
            width: 100%;
            height: 250px; /* Set a fixed height to ensure all images are the same size */
            object-fit: cover; /* Ensures the image covers the area without stretching */
        }
        
        .card-content {
            position: absolute;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            color: #fff;
            width: 100%; /* Ensures the card content aligns with the image width */
            padding: 1rem;
        }
        
        .card-content h5 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #fff;
        }
        
        .card-content a {
            color: #fff;
            font-size: 0.9rem;
            text-decoration: none;
        }
       .life_at{
        display: flex;
       }
        
        .row_1.g-4 {
            gap: 1rem; /* Adds gap between rows for vertical spacing */
        }
        
        .row_1 > div:nth-child(2) {
            margin-top: 2rem; /* Adjust the value as needed */
        }
     /* Mobile responsiveness */
@media (max-width: 768px) {
    .life_at {
        display: block; /* Stack the cards vertically on small screens */
    }

    .life-at-oznova-card {
        width: 100%; /* Make each card take up full width */
        margin: 1rem 0; /* Add vertical margin for spacing between stacked cards */
    }

    .card-content {
        padding: 0.5rem; /* Reduce padding on smaller screens */
    }

    .card-content h5 {
        font-size: 1rem; /* Adjust font size for better readability on mobile */
    }

    .card-content a {
        font-size: 0.8rem; /* Adjust font size for links */
    }

    .career_card {
      top: 245px !important;
      left: 50%;
      transform: translate(-50%, 20px);
      padding: 15px !important;
  }

  .overlay-text{
    margin-top: -103px;
    margin-left: -26px;

  }
}
        
        
        
        .oznova-drives-section {
    padding: 3rem 0;
    background-color: #f9f9f9;
    text-align: center;
}

.oznova-drives-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 1rem 0;
}

.oznova-drives-section .oznova-subtitle {
    color: #555;
    margin-bottom: 2rem;
}

.quote-icon {
    font-size: 6rem;
    color: #fded00;
    margin-top: -76px;
}
.potential{
    margin-top: -46px !important;
}

.oznova-category-title {
    color: #fded00;
    font-weight: 600;
    font-size: 1rem;
}

.oznova-card {
    border: none;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    height: 200px; /* Fixed height */
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem; /* Space between elements */
    justify-content: flex-start; /* Align content to the top */
}

.oznova-card-title {
    font-weight: 700;
}

.oznova-card-text {
    color: #d4d2d2;
    font-size: 0.9rem;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}
.oznova-card {
    border: none;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    height: 200px; /* Fixed height */
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem; /* Space between elements */
    justify-content: flex-start; /* Align content to the top */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
}

.oznova-card:hover {
    background-color: #fdec00d7; /* Change to your desired hover background color */
    color: #fff; /* Change text color on hover */
}

.oznova-card:hover .oznova-category-title,
.oznova-card:hover .oznova-card-title,
.oznova-card:hover .oznova-card-text {
    color: #fff; /* Change text color for each element on hover */
}


.para{
    color: #000;
}

.oznova-card-text{
    color: #000;
}




/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
footer {
    background-color: #333;
    padding: 20px;
    color: #fff;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-column {
    flex: 1;
    padding: 10px;
  }
  
  .logo-column img {
    max-width: 150px;
  }
  
  .about-column,
  .address-column {
    max-width: 300px;
  }
  
  h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
  }
  
  p {
    line-height: 1.5;
  }
  
  .footer-about {
    padding-top: 10px;
  }
  
  .footer-address {
    padding-top: 50px;
  }
  
  .footer-contact {
    padding-top: 50px;
  }

  /*--------------------------------------------------------------
whatsapp

----------------------------------------------------------------*/
.whatsapp-btn {
    position: static;
    /* Fixed position */
    bottom: 50px;
    /* Distance from the bottom */
    /* right: 20px; Distance from the right */
    background-color: #25D366;
    /* WhatsApp green */
    color: white;
    border: none;
    /* Remove default border */
    border-radius: 50%;
    /* Circle button */
    width: 50px;
    /* Fixed width for consistent shape */
    height: 50px;
    /* Fixed height for consistent shape */
    padding: 0;
    /* No padding to maintain round shape */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    /* Shadow for depth */
    font-size: 24px;
    /* Icon size */
    text-align: center;
    z-index: 1000;
    /* Ensure it's on top */
    cursor: pointer;
    /* Change cursor on hover */
    display: flex;
    /* Center icon vertically */
    align-items: center;
    /* Center icon vertically */
    justify-content: center;
    /* Center icon horizontally */
    margin-left: 40px;
  }
  
  .whatsapp-btn:hover {
    background-color: #128C7E;
    /* Darker green on hover */
  }

   /*--------------------------------------------------------------
  # Career Section
  --------------------------------------------------------------*/
  .hiring-section {
    position: relative;
    width: 100%;
    /* Allow full width */
    max-width: 100%;
    /* Ensure no max-width restriction */
    animation: fadeIn 1.5s ease-in-out;
  }
  
  .background-image {
    background-image: url('assets/img/career/career_section.jpg');
    background-size: cover;
    background-position: center;
    width: 100vw;
    /* Full screen width */
    height: 400px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
  }
  
  /* Add the black opacity overlay */
  .background-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Black color with 50% opacity */
  
  }
  
  
  .overlay-text {
    position: absolute;
    top: 30%;
    left: 35%;
    transform: translate(-50%, -50%);
    color: white !important;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    opacity: 0;
    animation: fadeInText 2s forwards;
  }
  
  .career_card {
    position: absolute;
    top: 299px;
    left: 50%;
    transform: translate(-50%, 20px);
    background-color: white;
    width: 80%;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 10px 20px rgba(0, 0, 0, 0.2);
    /* Shadow on all sides + bottom */
    text-align: center;
    text-align: center;
    opacity: 0;
    animation: slideUp 1s 1s forwards;
    border: 1px solid black;
  }
  
  .positions-list {
    text-align: left;
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    opacity: 0;
    /* Keeps the element invisible initially */
    transform: translateY(20px);
    /* Initial position is below */
    animation: fadeInList 1.5s 2s forwards;
  }
  
  .column {
    font-size: 1.5rem;
    color: #333;
    line-height: 1.6;
    cursor: pointer;
  }
  
  .column p {
    font-size: 1.4rem;
    margin: 10px 0;
    position: relative;
  }
  
  li {
    font-size: 15px;
  }
  
  .column li {
    transition: color 0.3s, transform 0.3s;
    font-size: 1.4rem;
    /* Adjust the font size for the text */
  }
  
  .column li:hover {
    color: #4e86ff;
    text-decoration: underline;
    font-size: 1.4rem;
    /* Adjust the font size for the text */
  }
  
  
  
  .job-description {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    width: 400px;
    height: 200px;
    padding: 10px;
    background-color: #f8f8f8;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    color: #333;
    z-index: 10;
    max-height: 180px;
    /* Adjust as needed */
    overflow-y: auto;
    /* Add vertical scrollbar when content overflows */
  }
  
  
  .cta-button {
    background-color: #00000085;
    color: rgb(255 255 255);
    border: 2px solid #0000005e;
    /* padding: 12px 24px; */
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    width: 60%;
    align-self: center;
  }
  
  .cta-button:hover {
    background-color: #dfd003;
    transform: scale(1.05);
  }
  
  /* Keyframes for animations */
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
  }
  
  @keyframes fadeInText {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
  
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideUp {
    from {
      transform: translate(-50%, 20px);
      /* Start position with an offset */
      opacity: 0;
      /* Initially invisible */
    }
  
    to {
      transform: translate(-50%, 14%);
      /* Final position centered */
      opacity: 1;
      /* Fully visible */
    }
  }
  
  
  @keyframes fadeInList {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
  
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  h1:hover {
    color: #fded00;
    /* Change text color on hover */
    cursor: pointer;
    /* Optional: Show pointer cursor on hover */
    transition: color 0.3s ease;
    /* Smooth transition for the color change */
  }
  
  h1 {
    color: #000;
  }
  
  .overlay-text h1 {
    color: #ffffff;
    font-weight: 700;
  }
  
  .overlay-text h1:hover {
    color: #fded00;
    /* Change text color on hover */
    cursor: pointer;
    /* Optional: Show pointer cursor on hover */
    transition: color 0.3s ease;
    /* Smooth transition for the color change */
  }
  
  /* Popup Modal */
  .popup-modal {
    display: none;
    position: absolute;
    top: 55%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1000px;
    background-color: rgb(0 0 0 / 1%);
    /* padding: 20px; */
    border-radius: 10px;
    z-index: 100;
  }
  
  .modal-content {
    background-color: #000000e3;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 1000px;
    width: 90%;
    max-height: 450px;
    overflow-y: auto;
    position: relative;
  }
  
  
  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
    background-color: transparent;
    border: none;
  }
  
  .close-btn:hover {
    color: red;
  }
  
  .popup-description {
    color: #ffffff !important;
  
  }
  
  .popup-title {
    color: #ffffff !important;
  
  }
  
  .popup-description h3,
  .popup-description h4,
  .popup-description p {
    color: #ffffff;
  
  
  
  
  }
  
  .popup-description li {
    color: #ffffff !important;
    font-size: 14px;
  }
  

  .section-title1 h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 20px;
    margin: 0;
    background: #fded00;
    color: rgb(20, 20, 20);
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
    font-family: var(--default-font);
}