html {
  scroll-behavior: smooth;
  scroll-padding-top: 16vh; /* Adjust based on your navbar height */
}
.locationmap{
    position: absolute;
    top: 12%;
    right: 2%;
    width: 30vw;
}
.responsive-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Mobile: Left-aligned */
    object-position: left;
  }
  
  /* Desktop: Right-aligned */
  @media (min-width: 768px) {
    .responsive-img {
      object-position: right;
    }
  }
.text-grad{
    background: linear-gradient(90deg, #00A859 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 5vw;
    font-weight: bold;
}
.page2{
    background: url(images/form.png), #000000;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.page2 .text{
    width: 30vw;
    display: flex;
    flex-direction: column;
    gap: 5vw;
}
.page2 .text h1{
    font-size: 3.5vw;
    color: green
} 
.page2 .text h1 b{
    color: white;
}
#contactForm{
    border-top-right-radius: 10%;
}
@media (max-width: 768px){
    .page2{
        flex-direction: column-reverse;
        padding: 5vw;
    }
    .page2 .text{
        width: 90vw;
        margin-bottom: 10vw;
    }
    .page2 .text h1{
        font-size: 10vw;
    }
    .text-grad{
        font-size: 10vw;
    }
    #contactForm{
        border-top-right-radius: 0;
    }
}
.mappage{
    background-color: black;
    position: relative;
    overflow: auto;
}
/* Simple blinking animation */
@keyframes blink {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.2;
    }
  }

  .blinking-point {
    animation: blink 1.5s infinite;
  }
.heading{
    color: white;
    margin: auto;
    width: 70vw;
    padding: 5vw;
    position: sticky;
    top: 0;
    left: 0;
    text-align: center;
    font-size: 3em;
}
.mappage svg{
    margin: auto;
}
.mappage .indicator{
    position: sticky;
    bottom: 5%;
    left: 5%;
}
@media (max-width: 768px){
    .heading{
        width: 100%;
    }
    .mappage .indicator{
        bottom: 0;
    }
}
.tajcards {
    text-align: center;
    background-color: black;
    padding: 40px 20px;
}

.tajcards h1 {
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
}

.cardbox {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: radial-gradient(86.11% 85.92% at 50% 50%, #000000 0%, #00A859 100%);
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.cardimage {
    width: 50%;
    max-width: 350px;
    border-radius: 8px;
}

.ctext {
    width: 50%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 8px;
}

.ctext h2 {
    font-size: 1.5rem;
    margin: 10px 0;
}

.ctext h2::after {
    content: "";
    display: block;
    width: 50px; /* Adjust this value to control the underline length */
    height: 4px; /* Thickness of the underline */
    background-color: #00A859; /* Green color */
    margin-top: 5px; /* Adjust the spacing between text and underline */
}

.ctext span {
    font-size: 1rem;
    line-height: 1.5;
}

.icon {
    width: 2em;
    height: 2em;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .card1 {
        flex-direction: column;
        text-align: center;
    }
    
    .cardimage {
        width: 100%;
        height: 60vw;
        object-fit: cover;
        max-width: 100%;
    }

    .ctext {
        width: 100%;
        padding-top: 10px;
    }
}
/* Card Container */
.card2 {
    position: relative;
    width: 70vw;              /* Desktop width */
    height: 35em;             /* Desktop height */
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin: 50px auto;         /* Center the card horizontally */
    display: flex;
  }
  
  /* Left Section for Profile Image */
  .left-section {
    width: 25em;              /* Fixed width for the left section */
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  
  /* Profile Image - fills entire left section (not circular) */
  .profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Removed border-radius so the image is not circular */
  }
  
  /* Right Section (Content + Background) */
  .right-section {
    flex: 1;
    position: relative;
    padding: 20px 30px;
    box-sizing: border-box;
  }
  
  /* Grid Background in Right Section */
  .grid-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none; /* Ensures background doesn't block interactions */
  }
  
  /* Name styling in green */
  .name {
    position: relative;
    z-index: 2;
    color: #039c00;
    font-size: 2.5em;
    margin: 0 0 10px 0;
    font-weight: 600;
  }
  
  /* Contact Information */
  .info {
    position: relative;
    z-index: 2;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
  }
  
  .info i {
    margin-right: 6px;
    color: #555;
  }
  
  /* Region Badge with Green Background */
  .region-badge {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    background-color: #039c00;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    margin: 10px 0;
    font-size: 14px;
    margin-top: 15em;
  }
  
  .region-badge .loc-icon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
  }
  
  /* Address Styling */
  .address {
    position: relative;
    z-index: 2;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    margin: 10px 0 20px;
  }
  
  /* LinkedIn Link at the Bottom Right */
  .linkedin-link {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 3;
  }
  
  .linkedin-link img {
    width: 30px;
    height: 30px;
    display: block;
  }
  
  /* Mobile Responsiveness */
  @media (max-width: 600px) {
    .carousel-container{
        overflow: auto;
    }
    .card2 {
      flex-direction: column;
      width: 90%;
      height: auto;  /* Let height adjust automatically */
    }
    .region-badge{
        margin-top: 2%;
    }
    .left-section,
    .right-section {
      width: 100%;
      height: auto;
    }
  
    .left-section {
      height: 200px;  /* Adjust left section height for mobile */
    }
  
    .right-section {
      padding: 15px;
    }
  
    .linkedin-link {
      bottom: 15px;
      right: 15px;
    }
  }
  .page5{
    position: relative;
    background: url(images/Sales\ Team.svg);
    padding: 1vw;
  }
  .carousel-container {
    position: relative;
    width: 80%;        /* Adjust as desired */
    margin: 40px auto;
    overflow: hidden;  /* Hide scrollbars and overflow from sliding cards */
  }

  .carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    /* No fixed width; it will expand to fit all slides */
  }

  .slide {
    /* Each slide takes full width of the container if you want a single-card view */
    min-width: 100%;
    box-sizing: border-box;
    /* If you want multiple cards at once, adjust min-width accordingly */
  }

  /* ===== Navigation Buttons (NEW) ===== */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    z-index: 5;
  }

  .carousel-btn.left {
    left: 10%;
  }
  .carousel-btn.right {
    right: 10%;
  }

  /* (Optional) Hover effect for buttons */
  .carousel-btn:hover {
    background: #fff;
  }

  /* ===== Responsive (Optional) ===== */
  @media (max-width: 600px) {
    .carousel-container {
      width: 100%;
      overflow: auto;
    }
    .carousel-btn {
      display: none;
      font-size: 1.5rem;
    }carousel-container {
        width: 100%;
        overflow-x: auto;                /* Horizontal scrolling */
        scroll-snap-type: x mandatory;   /* Enable horizontal snap */
        -webkit-overflow-scrolling: touch;
        /* Keeps the transform-based approach for desktop; 
           on mobile, we simply allow manual scrolling. */
      }
    
      /* Each slide snaps to the start (left) of the container */
      .slide {
        scroll-snap-align: start;
      }
    
      /* Hide carousel buttons on mobile */
      .carousel-btn {
        display: none;
      }
  }
.formcont{
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(0, 168, 89, 0.1);
  backdrop-filter: blur(190px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 20px;
}
.maingrid {
  display: grid;
  gap: 1vw;
  margin: 5vw auto;
  width: 80vw;
  height: 40vw;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 150px);
}

.lifegreen {
  background: rgba(0, 226, 132, 0.2);
  border: 1px solid #00A859;
  border-radius: 16px;

  /* Make .lifegreen start at column 1 and span 3 columns (lines 1 to 4) */
  grid-column: 1 / span 3;
  /* Make .lifegreen start at row 1 and span 3 rows (lines 1 to 4) */
  grid-row: 1 / span 3;
  padding: 4em;
}
.lifegreen h2{
  font-size: 3em;
}
.lifegreen p{
  width: 60%;
  font-size: 0.9vw;
  margin-bottom: 2vw;
}
.lifegreen .button {
  color: white;
  background-color: #00A859;
  padding: 0.4em 0.8em;
  border: 2px solid #00A859;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.lifegreen .button:hover {
  background-color: white; /* slightly darker green */
  color: #00a859;
  border-color: #008F4E;
  transform: translateY(-2px);
  cursor: pointer;
}


.im1 {
  grid-column: 4 / span 1;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  grid-row: 1 / span 2;  /* occupies rows 1-2 */
}

.im2 {
  grid-column: 4 / span 1;
  width: 100%;
  object-fit: cover;
  height: 100%;
  border-radius: 10px;
  grid-row: 3 / span 2;  /* occupies rows 3-4 */
}
.im3{
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  grid-column: 1 / span 2;
  grid-row: 4/ span 1;  /* occupies rows 1-2 */
}
.im4{
  position: relative;
  grid-column: 3 / span 1;
  width: 100%;
  object-fit: cover;
  height: 100%;
  grid-row: 4/ span 1;  /* occupies rows 1-2 */
}
.im4 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.im4 h3{
  color: white;
  width: 10vw;
  position: absolute;
  text-align: center;
  inset: 10% 25%;
  font-weight: 600;
  font-size: 1.3em;
}

/* Responsive adjustments for medium screens (max-width: 1024px) */
@media (max-width: 1024px) {
  .maingrid {
    width: 90vw;
    height: auto; /* Allow height to adjust */
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  
  /* Make .lifegreen span full width of the new 2-col grid */
  .lifegreen {
    grid-column: 1 / span 2;
    grid-row: auto;
    padding: 2em;
  }
  
  .lifegreen h2 {
    font-size: 2.5em;
  }
  
  .lifegreen p {
    width: 100%;
    font-size: 1em;
    margin-bottom: 1em;
  }
  
  /* Let the image items flow naturally */
  .im1, .im2, .im3, .im4 {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    height: auto;
  }
  
  .im4 h3 {
    width: 100%;
    font-size: 3em;
    inset: 20%  0%;
  }
}

/* Responsive adjustments for small screens (max-width: 768px) */
@media (max-width: 768px) {
  .maingrid {
    width: 95vw;
    grid-template-columns: 1fr;
  }
  
  .lifegreen {
    grid-column: 1;
    padding: 1.5em;
  }
  
  .lifegreen h2 {
    font-size: 2em;
  }
  
  .im1, .im2, .im3, .im4 {
    grid-column: 1;
    grid-row: auto;
  }
  .im4 h3{
    font-size: 3em;
    inset: 0;
  }
}
/* Container for the “Open Positions” heading, subheading, and cards */
.open-positions-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

/* Main heading */
.open-positions-section h2 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Subheading */
.open-positions-section p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #555;
}

/* Individual job card */
.job-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #fff;
  border: 1px solid #00A859;
  box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.1); 
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: left;
}

/* Header area with title on left, button on right */
.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

/* Job title */
.job-card-header h3 {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0;
}

/* Apply Now button */
.apply-button {
  background-color: transparent;
  color: black;
  font-weight: 500;
  border: 2px solid black;
  padding: 10px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.apply-button:hover {
  background-color: #008F4E;
  color: white;
}

/* Meta info: location, job type, posted date */
.job-card-meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.job-card-meta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 3vw; /* Change this value to adjust the line length */
  height: 3px; /* Line thickness */
  background-color: #00A859; /* Green color */
  border-radius: 2px; /* Slight rounding for smooth edges */
}
.meta-icon {
  width: 18px; /* Adjust icon size */
  height: 18px;
}

.job-location,.job-type,.job-date{
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 0.2vw 0.4vw;
  backdrop-filter: blur(50px);
}
/* Just to separate them visually, each meta info is inline-block */
.job-card-meta span {
  display: inline-flex;
  gap: 0.5vw;
}

/* Job description (bullet points) */
.job-description {
  margin-left: 1.5rem;
  list-style-type: disc;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .open-positions-section {
    padding: 20px;
  }
  .job-card-header h3 {
    font-size: 1.1rem;
  }
  .apply-button {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
  .job-card{
    flex-direction: column;
    gap: 1em  ;
  }
}

