/* Custom styles for contact enquiry section */
 @media (max-width: 768px) {
        .career-hero {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0 1rem;
        }
      
        .career-hero-left,
        .career-hero-right {
            flex: none;
            width: 100%;
            margin: 0 !important;

        }

        .career-hero-left img {
            width: 100%;
            height: auto;
            padding-top:15%;
            border-radius: 0.5rem;
        }

       .career-hero-title{
        margin-left:10%;
        margin-top:10%;
       }
       .career-hero-description{
        margin-left:10%;
       }
        /* Added to remove side spacing and show full container and image */
        .career-hero,
        .career-hero .container,
        .career-hero-left,
        .career-hero-right {
            width: 100% !important;
            max-width: 100% !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
     
    }  
.enquiry-section {
  padding: 60px 0;
}

.enquiry-section .card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 40px 30px;
  text-align: center;
  font-size: 1.1rem;
  color: #333;
  transition: box-shadow 0.3s ease;
}

.enquiry-section .card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.enquiry-section .card p {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #a67c52;
  font-size: 0.9rem;
}

.enquiry-section .card i {
  font-size: 3rem;
  color: #a67c52;
  margin-bottom: 15px;
  display: block;
}

.enquiry-section .card strong {
  display: block;
  font-size: 1.3rem;
  color: #222;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .enquiry-section .card {
    padding: 30px 20px;
    font-size: 1rem;
  }
  .enquiry-section .card i {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
}


/* Override to make Contact Us button fully visible in footer */
.product-footer .btn-outline-light {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Fix navbar dropdown menu visibility and positioning on mobile */
@media (max-width: 991.98px) {
  .navbar-nav .dropdown-menu {
    position: absolute !important;
    background: white !important;
    opacity: 1 !important;
    visibility: visible !important;
    /* Removed display:block to allow toggle */
    /* display: block !important; */
    z-index: 1050 !important;
  }
  #mainNavbar {
    background-color: white !important;
  }
}
    .dreams-aspirations-section.position-relative {
        position: relative;
    }
    .dreams-aspirations-section .watermark {
        position: absolute;
        top: 50%;
        right: 8%;
        font-size: 8rem;
        font-weight: 900;
        color: rgba(0, 0, 0, 0.07);
        transform: translateY(-50%);
        user-select: none;
        pointer-events: none;
        white-space: nowrap;
        z-index: 0;
    }

    /* Ensure content is above watermark */
    .dreams-content {
        position: relative;
        z-index: 1;
    }

    /* Social media icons container at bottom */
    .social-media-bottom {
        text-align: center;
        background-color: black;
        padding: 12px 0;
    }

    .social-media-bottom .label {
        font-weight: 700;
        color: #fff;
        margin-right: 12px;
    }

    .social-media-bottom .social-icons {
        display: inline-flex;
        gap: 12px;
    }

    .social-media-bottom .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: #f7c600;
        border-radius: 6px;
        color: #111;
        font-size: 18px;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

    .social-media-bottom .social-icons a:hover {
        background: #e0b500;
    }

    .career-hero-left {
        background:url('attached_assets/ipec-new.jpeg');
        background-repeat: no-repeat;
        background-size:cover;
        height: 100%;
    }
      .career-hero {
        display: flex;
        height: 100vh;
        width: 100%;
        font-family: 'Inter', sans-serif;
    }

    .career-hero-left {
        flex: 1;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    .career-hero-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .career-hero-right {
        flex: 1;
        background-color: #121212;
        color: white;
        padding: 5rem 4rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .career-hero-title {
        font-size: 3.5rem;
        font-weight: 900;
        line-height: 1.1;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }

    .career-hero-underline {
        width: 80px;
        height: 4px;
        background-color: #ff6600;
        margin-bottom: 2rem;
        border-radius: 2px;
    }

    .career-hero-description {
        font-size: 1.125rem;
        line-height: 1.6;
        max-width: 480px;
        margin-bottom: 3rem;
        color: #ccc;
    }

    .career-hero-actions {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }

    .play-button {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        border: 3px solid white;
        background-color: black;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .play-button:hover {
        background-color: #333;
    }

    .learn-more-button {
        background-color: #ff6600;
        color: black;
        border: none;
        padding: 1rem 2rem;
        font-weight: 700;
        font-size: 1.125rem;
        border-radius: 8px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .learn-more-button:hover {
        background-color: #d4af00;
    }

    @media (max-width: 900px) {
        .career-hero {
            flex-direction: column;
            height: auto;
        }

        .career-hero-left,
        .career-hero-right {
            flex: none;
            width: 100%;
            height: 50vh;
        }

        .career-hero-right {
            padding: 3rem 2rem;
        }

        .career-hero-title {
            font-size: 2.5rem;
        }

        .career-hero-description {
            max-width: 100%;
        }
    }

