/*!******************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./pi/src/css/DigitalCore.css ***!
  \******************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;700&display=swap);
/*!**********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./pi/src/css/DigitalCore.css (1) ***!
  \**********************************************************************************/
.digital-core-container {
  background-color: #a65d00; 
  padding: 80px 60px;
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.digital-core-text {
  margin-left: 150px;
  margin-top: 50px;
  max-width: 50%;
  opacity: 0;
  transform: translateY(90px); 
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.digital-core-text.show {
  opacity: 1;
  transform: translateY(0);
}

.heading {
  font-size: 76px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}

.secondpara {
  font-size: 24px;
  font-style: italic;
  margin-bottom: 40px;
}

.case-studies {
  margin-top: 20px;
  display: flex;
  gap: 40px;
}

.case-studies > div {
  max-width: 353px;
}

.twopara {
  font-size: 20px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  margin-top: 30px;
}  

/* ---------- MOBILE LAYOUT (DIGITAL CORE SECTION ONLY) ---------- */

 @media (max-width: 768px) {

  .digital-core-container {
    padding: 60px 20px 40px;
    min-height: auto;
  }

  .digital-core-text {
    margin-left: 0;
    margin-top: 80px; 
    max-width: 100%;
  }

  .heading {
    font-size: 38px;
  }

  .secondpara {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .twopara {
    font-size: 16px;
  }

  .case-studies {
    flex-direction: column;
    gap: 15px;
  }

  .case-studies > div {
    max-width: 100%;
  }

  .image-overlay,
  .butterfly,
  .flower {
    display: none;
  }
} 



/*!*********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./pi/src/css/DigitalSection.css ***!
  \*********************************************************************************/
.digital-section {
    padding: 50px;
    min-height: 100vh;
    color: white;
    position: relative;
    overflow: hidden;
  }  
  
  /* Initially hidden and lower */
  .digital-section-content {
    margin-left: 650px;
    margin-top: 100px;
    max-width: 50%;
    opacity: 0;
    transform: translateY(90px); /* Starts 70px lower */
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  }
  .fade-in {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Title and Subtitle */
  .title {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 16px;
  }
  
  .subtitle {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
  }
  
  
  /* Case Studies */
  .case-studies {
    margin-top: 20px;
    display: flex;
    gap: 40px;
  }
  
  .case-study h3 {
    font-size: 18px;
    color: aliceblue;
    line-height: 25px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-bottom: 24px;
  }
  
  .case-study a {
    color: white;
    text-decoration: none;
    /* font-weight: bold; */
    
  }
/* Image Placement */
  .digital-section-image {
    position: absolute;
    right: 10%;
    bottom: 0;
    max-height: 80%;
  }
  
/* ---------- MOBILE LAYOUT (DIGITAL SECTION ONLY) ---------- */

@media (max-width: 768px) {

  .digital-section {
    padding: 80px 20px 40px;
    min-height: auto;
  }

  .digital-section-content {
    margin-left: 0;
    margin-top: 80px;
    max-width: 100%;
  }

  .title {
    font-size: 36px;
  }

  .subtitle {
    font-size: 16px;
  }

  .case-studies {
    flex-direction: column;
    gap: 15px;
  }

  .digital-section-image {
    position: static;
    max-width: 100%;
    max-height: none;
    margin-top: 24px;
    display: block;
  }
}

/*!*****************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./pi/src/css/Empowering.css ***!
  \*****************************************************************************/
.digital-section {
    padding: 50px;
    min-height: 100vh;
    color: white;
    position: relative;
    overflow: hidden;
  }
  
  .digital-section-empowering-content {
    margin-left: 150px; /* Adjust text positioning */
    margin-top: 100px;
    max-width: 50%;
    opacity: 0;
    transform: translateY(90px); /* Starts 90px lower */
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  }
  .fade-in {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Title and Subtitle */
  .title {
    font-size: 60px;
    font-weight: bold;
  }
  .subtitle {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 20px;
  }
  
  .explore-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
  }
  
  .explore-btn:hover {
    background: white;
    color: #86229e;
  }
  
  /* Case Studies */
  .case-studies {
    margin-top: 20px;
    display: flex;
    gap: 40px;
  }
  
  .case-study h3 {
    font-size: 18px;
  }
  
  .case-study a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  /* Image Placement */
  .digital-section-image {
    position: absolute;
    right: 10%;
    bottom: 0;
    max-height: 80%;
  }
  

  /* ---------- MOBILE LAYOUT (DIGITAL EMPOWERING SECTION ONLY) ---------- */
  
@media (max-width: 768px) {

  .digital-section {
    padding: 50px 20px 40px;
    min-height: auto;
  }

  .digital-section-empowering-content {
    margin-left: 0;
    margin-top: 80px;      /* start below header */
    max-width: 100%;
  }

  .title {
    font-size: 34px;
  }

  .subtitle {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .explore-btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  .case-studies {
    flex-direction: column;
    gap: 10px;
  }

  .case-study h3 {
    font-size: 16px;
  }
  .digital-section-image {
    position: static;
    max-width: 100%;
    max-height: none;
    margin-top: 20px;
    display: block;
  }
}

/*!******************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./pi/src/css/CareersPage.css ***!
  \******************************************************************************/
.careers-container {
    text-align: center;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
  }
  
  .careers-header h1 {
    font-size: 36px;
    font-weight: bold;
    margin-top: 10px;
  }
  
  .careers-header p {
    font-size: 18px;
    margin-top: 10px;
  }
  
  .image-container {
    width: 80%;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
  }
  
  .zoom-image {
    width: 100%;
    transition: transform 0.3s ease-in-out;
  }
  
  .zoom-image:hover {
    transform: scale(1.1);
  }
  
  .zoom-image:not(:hover) {
    transform: scale(1);
  }

  /* ------------------ RESPONSIVE DESIGN ------------------ */

/* Tablets and Mobile */
@media (max-width: 768px) {
  .careers-header h1 {
    font-size: 28px;
  }

  .careers-header p {
    font-size: 15px;
    margin-top: 6px;
    font-weight: 500;
  }

  .image-container {
    width: 95%;
    margin-top: 15px;
  }

  .zoom-image {
    height: auto;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .careers-header h1 {
    font-size: 22px;
  }

  .careers-header p {
    font-size: 14px;
  }

  .image-container {
    width: 100%;
    margin: 10px auto;
  }

  .zoom-image:hover {
    transform: scale(1.05); 
  }
}
/*!****************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./pi/src/css/HoverGrid.css ***!
  \****************************************************************************/
/* Container for heading and grid */
.hover-grid-container {
    text-align: center; /* Center aligns the heading */
    padding: 20px;
  }
  
  /* Styling for the heading section */
  .grid-heading h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .grid-heading p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
  }
  
/* Container for the grid layout */
.hover-grid {
    display: grid;
    grid-template-rows: 1fr 1fr ; /* Creates two rows: first row is twice the height of the second */
    grid-template-columns: 1fr 1fr; /* Two columns of equal width */
    gap: 5px; /* Space between grid items */
    width: 100%;
    max-width: 1000px; /* Maximum width of the grid */
    margin: auto; /* Centers the grid horizontally */
    margin-bottom: 40px; /* Adds spacing below the grid */
}

/* General styling for grid items */
.grid-item {
    position: relative; /* Allows absolute positioning for overlay */
    background-size: cover; /* Ensures the background image covers the entire item */
    background-position: center; /* Centers the background image */
    display: flex; /* Uses flexbox to position content */
    align-items: flex-end; /* Aligns content (overlay) to the bottom */
    justify-content: center; /* Centers content horizontally */
    overflow: hidden; /* Prevents content from overflowing */
    cursor: pointer; /* Changes cursor to pointer on hover */
    height: 300px; /* Default height for grid items */
}

/* Large left-side image */
.grid-item.large {
    grid-row: span 2; /* Makes the left image span two rows */
    height: 100%; /* Ensures it fills the full height */
}


/* Right-side images (2x2 grid) */
.grid-item:nth-child(2) { grid-column: 2; grid-row: 1; } 
 
 .grid-item:nth-child(5) { grid-column: 3; grid-row: 2; }  
/* Bottom-right  */ 
 

/* Overlay effect (hidden initially, slides up on hover) */
.overlay {
    position: absolute; /* Positioned relative to the grid item */
    bottom: -100%; /* Starts hidden below the image */
    left: 0;
    width: 100%; /* Covers the entire width of the grid item */
    height: 100%; /* Ensures the overlay covers the full image */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)); 
    color: white; /* White text */
    padding: 15px; /* Adds padding inside the overlay */
    text-align: left; /* Aligns text to the left */
    transition: bottom 0.5s ease-in-out; 
}


.grid-item:hover .overlay {
    bottom: 0; /* Moves overlay up to become fully visible */
    opacity: 1; /* Makes it visible */
}

/* Overlay text styles */
.overlay h3 {
    font-size: 27px; /* Title size */
    font-weight: bold;
    margin-top: 65px;
    color: #ffffff; /* White text */
  }
  
  /* Subtitle styling */
  .overlay .subtitle {
    font-size: 20px;
    font-weight: bold;
    margin-top: 11px;
    margin-bottom: 11px;
    color: #f1f1f1; 
    line-height: 1.3;
  }
  
  /* Description styling */
  .overlay .description {
    font-size: 16px;
    color: #e0e0e0; /* Light gray to differentiate */
    line-height: 1.5;
    max-width: 90%; /* Restricts width for better readability */
  }
  
  /* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 768px) {
  /* Container spacing */
  .hover-grid-container {
    padding: 15px 10px;
  }

  /* Heading sizes */
  .grid-heading h2 {
    font-size: 22px;
  }

  .grid-heading p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  /* Stack all items in a single column */
  .hover-grid {
    display: grid;
    grid-template-columns: 1fr;   /* 1 column */
    grid-template-rows: auto;     /* auto height rows */
    gap: 8px;
    max-width: 100%;
  }

  
  .grid-item,
  .grid-item.large {
    grid-column: auto;
    grid-row: auto;
    height: 220px;                 
  }


  .grid-item .overlay {
    bottom: 0;
    height: 100%;
  }

  
  .overlay h3 {
    font-size: 18px;
    margin-top: 20px;
  }

  .overlay .subtitle {
    font-size: 14px;
    margin-top: 6px;
    margin-bottom: 6px;
  }

  .overlay .description {
    font-size: 13px;
    max-width: 100%;
  }
}

/*!*************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./pi/src/css/Footer.css ***!
  \*************************************************************************/

.contact-banner {
  background-size: cover;
  background-position: center;
  padding: 100px 20px ;
  height:600px;
  position: relative;
  text-align: center;
  color: white; 

}
.contact-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(10, 10, 10, 0.3);
  z-index: 0;
}

.contact-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: auto;
}

.contact-content h1 {
  font-size: 44px;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact-content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}


/* ---------- MOBILE LAYOUT (CONTACT BANNER ONLY) ---------- */
@media (max-width: 768px) {

  .contact-banner {
    padding: 80px 16px 40px;
    height: auto;              /* let it grow with content */
    text-align: left;          /* or keep center if you like */
  }

  .contact-content {
    max-width: 100%;
  }

  .contact-content h1 {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .contact-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}


.footer{
  background-color: #0a0600;
  color:#fff ;
  padding:40px 20px;
  font-family: 'Arial', sans-serif;
}

.footer-container{
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto; 
  margin-left: 194px;
}

.footer-column{
  flex:1;
  min-width:150px ;
}
.footer-column h3{
  color: #fff;
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 33px;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  
}
.footer-column li {
  margin-bottom: 12px;
  font-size: 16px;
  
}
.footer-column li a{
  text-decoration: none;
  color: #fff;
}
.colour{
  text-decoration: none;
}
.footer-contact{
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 16px;
}
.footer-contact .icon{
  color: #2762ff;
  margin-right: 12px;
  font-size: 18px;

}

/* ---------- MOBILE LAYOUT (FOOTER ONLY) ---------- */

@media (max-width: 768px) {

  .footer {
    padding: 30px 16px;
  }

  .footer-container {
    flex-direction: column;     /* stack columns */
    align-items: flex-start;    /* or center */
    margin: 0 auto;             /* remove big left margin */
    max-width: 100%;
  }

  .footer-column {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-column h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .footer-column li {
    font-size: 14px;
  }

  .footer-contact {
    font-size: 14px;
  }
}

/*!*******************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./pi/src/css/rightsidebar.css ***!
  \*******************************************************************************/
/* Wrapper for Sidebar & Slide */
.sidebar-wrapper {
  display: flex;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

/* Sidebar hidden state */
.sidebar-wrapper.hidden {
  display: none;
}

/* dimmed background behind the panel */
.sidebar-wrapper.open {
  background: rgba(0, 0, 0, 0.4);
}

.sidebar-header {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
}

/* Right Sidebar */
.right-sidebar {
  width: 340px;
  max-width: 75%;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    #f7f7f7,
    #fffcfc 2px,
    #e0e0e0 2px,
    #e0e0e0 5px
  );
  padding: 20px;
  display: flex;
  flex-direction: column;
  position: fixed;
  right: 0;
  top: 0;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.3);
}

.right-sidebar-scroll {
  margin-top: 40px;
  overflow-y: auto;
  height: calc(100% - 60px);
}

/* Close icon */
.close-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 28px;
  cursor: pointer;
  z-index: 2000;
  background-color: white;
  color: black;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* ---------- NEW: primary header nav (Home / About / etc.) ---------- */

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-links a,
.mobile-logout {
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  border: none;
  background: none;
  padding: 6px 0;
  text-align: left;
  cursor: pointer;
}

.mobile-nav-links a:hover,
.mobile-logout:hover {
  opacity: 0.75;
}

/* Existing sidebar menu (categories) */

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sidebar-menu > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu > ul > li {
  list-style: none;
}

.sidebar-menu a.menu-item {
  display: inline-block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  color: black;
  white-space: nowrap;
}

/* Slide Container (subcategories) */
.slide-container {
  flex: 1;
  background: rgb(235, 235, 235);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0; /* fixed left, we animate only transform */
  width: calc(100% - 300px); /* Takes remaining space beside sidebar */
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%); /* start off-screen to the left */
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.slide-container.show {
  transform: translateX(0); /* slide in */
  opacity: 1;
  visibility: visible;
}

.industries-container {
  padding: 10px;
  height: 100%;
}

.industries-container h2 {
  font-size: 45px;
  font-weight: bold;
  margin: 5px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.industries-grid li {
  list-style: none;
  font-size: 16px;
  padding: 15px 10px;
  border-bottom: 1px solid #ddd;
  transition: color 0.3s ease-in-out;
}

.industries-grid li:hover {
  color: #0056b3;
  cursor: pointer;
}

.subcategory-link {
  text-decoration: none;
  color: black;
}

/* ----------------- Services ----------------- */

.services-container {
  padding: 20px;
}
.services-container h2 {
  font-size: 44px;
  font-weight: bold;
  margin: 15px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.services-grid {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.services-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.services-grid > ul > li {
  display: flex;
  font-size: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  transition: color 0.3s ease-in-out;
}

.services-grid li:hover {
  color: #0056b3;
  cursor: pointer;
}

/* ----------------- Platforms ----------------- */

.platforms-container {
  padding: 20px;
}

.platforms-container h2 {
  font-size: 44px;
  font-weight: bold;
  margin: 15px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.platforms-grid {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.platforms-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.platforms-grid li {
  font-size: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  transition: color 0.3s ease-in-out;
}

.platforms-grid li:hover {
  color: #0056b3;
  cursor: pointer;
}

/* ----------------- Knowledge ----------------- */

.knowledge-container {
  padding: 20px;
}

.knowledge-container h2 {
  font-size: 40px;
  font-weight: bold;
  margin: 10px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.knowledge-grid {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.knowledge-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.knowledge-grid li {
  font-size: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  transition: color 0.3s ease-in-out;
}

.knowledge-grid li:hover {
  color: #0056b3;
  cursor: pointer;
}

.knowledge-grid ul li strong {
  font-size: 18px;
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .slide-container {
    position: fixed;
    top: 0;
    left: 0; /* fixed */
    width: 100vw;
    height: 100vh;
    background: rgb(235, 235, 235);
    z-index: 1100;
    transform: translateX(-100%); /* off-screen left */
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }

  .slide-container.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .right-sidebar {
    width: 100%;
    max-width: 100%;
  }

  .industries-grid,
  .services-grid,
  .platforms-grid,
  .knowledge-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

/*!*************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./pi/src/css/Header.css ***!
  \*************************************************************************/
/* -------------------- HEADER LAYOUT -------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 30px;
  z-index: 1000;
  background: transparent;
  transition: 0.35s ease-in-out;
}
/* -------------------- HIDE ON SCROLL -------------------- */

.header.hide-on-scroll {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
/* -------------------- LOGO -------------------- */
.logo {
  color: aliceblue;
  font-size: 28px;
  font-weight: bold;
  text-decoration: none;
}

.logo img {
  height: 40px;
  object-fit: contain;
}
/* -------------------- NAVIGATION LINKS -------------------- */
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-left: auto;  /* push links to the right */
}
.nav-links a {
  color: whitesmoke;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.7;
}

/* Hide nav-links on scroll - fade only */
.nav-links.hide-on-scroll {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}



/* -------------------- USER AUTH DISPLAY -------------------- */
.user-container {
  position: relative;
  display: inline-block;
}

.user-email {
  cursor: pointer;
  color: whitesmoke;
  font-weight: 500;
}

.logout-button {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  color: black;
  border: 1px solid #ccc;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 100;
}

.user-container:hover .logout-button {
  display: block;
}

.signin-link {
  color: whitesmoke;
  font-weight: 600;
  text-decoration: none;
}

.signin-link:hover {
  opacity: 0.7;
}

/* -------------------- RIGHT SIDE ICONS -------------------- */
.icons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 20px;
}

/* Hamburger icon */
.menu-icon {
  width: 45px;
  height: 45px;
  background-color: white;
  color: black;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.menu-icon:hover {
  opacity: 0.85;
}
/* -------------------- DARK HEADER FOR LOGIN + REGISTER -------------------- */
.dark-header {
  color: black !important;
}

.dark-header .logo,
.dark-header .nav-links a,
.dark-header .signin-link,
.dark-header .user-email {
  color: black !important;
}

/* Hamburger icon becomes dark */
.dark-header .menu-icon {
  background-color: black !important;
  color: white !important; 
}
.dark-header {
  background: transparent !important;
  backdrop-filter: none !important;
}

/* -------------------- MOBILE LAYOUT -------------------- */
@media (max-width: 768px) {
  .header {
    padding: 12px 20px;
  }

  .logo {
    font-size: 22px;
  }

  /* Hide desktop nav & user section */
  .nav-links,
  .user-container {
    display: none;
  }

  .icons {
    margin-left: auto;
  }
  .menu-icon {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
}

/*!******************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./pi/src/css/leftsidebar.css ***!
  \******************************************************************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
} 

/* Sidebar Container */
.sidebar-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100vw;
  position: relative;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 120px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10;
}

/* Light Theme */
.light-theme .line {
  /* background-color: black; */
  border-bottom: 3px dashed black;
}
.light-theme .menu-text {
  color: black;
  font-size: 15px;
  font-weight: 600;
  margin-top: 12px;
}

/* Dark Theme */
.dark-theme .line {
  /* background-color: white; */
  border-bottom: 3px dashed white;
}
.dark-theme .menu-text {
  color: white;
  font-size: 15px;
  font-weight: 500;
  margin-top: 12px;
}

/* Sidebar Menu Items */
.menu-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease-in-out;
}

/* Line Under Menu Items */
.line {
  width: 40px;
  /* height: 4px; */
  height: 0;
  border-bottom: 3px dashed black;
  transition: width 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

/* Expand Line on Hover & Active */
.menu-item:hover .line,
.menu-item.active .line {
  width: 80px;
}

/* Hidden Text */
.menu-text {
  font-size: 14px;
  margin-top: 7px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}

/* Show Text on Hover & Active */
.menu-item:hover .menu-text,
.menu-item.active .menu-text {
  opacity: 1;
}

/* Ensure "Navigate your next" is Always Visible */
.always-visible {
  opacity: 1 !important;
}

/* Image Scroll Container */
.component-scroll-container {
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: darkgray transparent;
  position: relative;
}

/* Images inside the Scroll Container */
.component-scroll-container img {
  width: 100vw;
  min-height: 100vh;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}

/* Full-width Image Container */
.full-width-image-container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.full-width-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* -------- MOBILE: HIDE LEFT SIDEBAR -------- */
@media (max-width: 768px) {

  .sidebar {
    display: none !important; /* hides the entire left menu */
  }

  /* prevent empty space */
  .sidebar-container {
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
}

/*!************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./pi/src/css/Login.css ***!
  \************************************************************************/
.login-container {
  background-image: url("https://media.istockphoto.com/id/479842074/photo/empty-road-at-building-exterior.jpg?s=612x612&w=0&k=20&c=SbyfZGN0i2O_QPLCdBcu9vhuzbQvTz4bGEn-lIzrN0E=");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Segoe UI', sans-serif;
}

.login-box {
  background: #ffffff;
  padding: 40px;
  width: 380px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
  height: 450px;
}

.loginh2 {
  color: #000;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: bold;
}

label {
  display: block;
  font-size: 12px;
  color: #777;
  margin-bottom: 5px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.input-box-login {
  width: 100%;
  padding: 15px 10px;
  margin-bottom: 37px;
  font-size: 15px;
  border: none;
  border-bottom: 1.5px solid #ccc;
  background-color: transparent;
  color: #333;
  outline: none;
  transition: border-color 0.3s ease;
  appearance: none;
}

.input-box:focus {
  border-bottom: 1.5px solid #1a237e;
}

.password-wrapper {
  position: relative;
}

.password-toggle-icon {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.continue-btn {
  width: 100%;
  background-color: #d09345;
  border: none;
  padding: 12px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 2px;
  
}

.continue-btn:hover {
  background-color: #c38336;
}

.create-account {
  margin-top: 20px;
  font-size: 14px;
  color: #333;
  text-align: center;
}

.create-account a {
  display: block;
  text-decoration: none;
  font-weight: bold;
  color: #007185;
  margin-top: 5px;
}

.create-account a:hover {
  text-decoration: underline;
}



.input-wrapper {
  position: relative;
  margin-bottom: 10px; 
}



.floating {
  position: absolute;
  top: 10px;
  font-size: 14px;
  color: #777;
  pointer-events: none;
  transition: 0.2s ease all;
}

.input-box-login:focus + .floating,
.filled.floating {
  top: -20px;
  font-size: 15px;
  background: white;
  padding: 0 4px;
}


.input-box-login.input-error {
  color: red;
  border-bottom: 1.5px solid red;
}

.input-box-login::placeholder {
  color: red;
  opacity: 1; 
}



/*!******************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/react-toastify/dist/ReactToastify.css ***!
  \******************************************************************************************************/
:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: hsl(6, 78%, 57%);
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);

  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);

  --toastify-container-width: fit-content;
  --toastify-toast-width: 320px;
  --toastify-toast-offset: 16px;
  --toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
  --toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
  --toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
  --toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
  --toastify-toast-background: #fff;
  --toastify-toast-padding: 14px;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-toast-bd-radius: 6px;
  --toastify-toast-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;

  /* Used only for colored theme */
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;

  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
  /* used to control the opacity of the progress trail */
  --toastify-color-progress-bgo: 0.2;
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  width: var(--toastify-container-width);
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.Toastify__toast-container--top-left {
  top: var(--toastify-toast-top);
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--top-center {
  top: var(--toastify-toast-top);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.Toastify__toast-container--top-right {
  top: var(--toastify-toast-top);
  right: var(--toastify-toast-right);
  align-items: end;
}
.Toastify__toast-container--bottom-left {
  bottom: var(--toastify-toast-bottom);
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--bottom-center {
  bottom: var(--toastify-toast-bottom);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.Toastify__toast-container--bottom-right {
  bottom: var(--toastify-toast-bottom);
  right: var(--toastify-toast-right);
  align-items: end;
}

.Toastify__toast {
  --y: 0;
  position: relative;
  touch-action: none;
  width: var(--toastify-toast-width);
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: var(--toastify-toast-padding);
  border-radius: var(--toastify-toast-bd-radius);
  box-shadow: var(--toastify-toast-shadow);
  max-height: var(--toastify-toast-max-height);
  font-family: var(--toastify-font-family);
  /* webkit only issue #791 */
  z-index: 0;
  /* inner swag */
  display: flex;
  flex: 1 auto;
  align-items: center;
  word-break: break-word;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    left: env(safe-area-inset-left);
    margin: 0;
  }
  .Toastify__toast-container--top-left,
  .Toastify__toast-container--top-center,
  .Toastify__toast-container--top-right {
    top: env(safe-area-inset-top);
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left,
  .Toastify__toast-container--bottom-center,
  .Toastify__toast-container--bottom-right {
    bottom: env(safe-area-inset-bottom);
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: env(safe-area-inset-right);
    left: initial;
  }
  .Toastify__toast {
    --toastify-toast-width: 100%;
    margin-bottom: 0;
    border-radius: 0;
  }
}

.Toastify__toast-container[data-stacked='true'] {
  width: var(--toastify-toast-width);
}

.Toastify__toast--stacked {
  position: absolute;
  width: 100%;
  transform: translate3d(0, var(--y), 0) scale(var(--s));
  transition: transform 0.3s;
}

.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body,
.Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
  transition: opacity 0.1s;
}

.Toastify__toast--stacked[data-collapsed='false'] {
  overflow: visible;
}

.Toastify__toast--stacked[data-collapsed='true']:not(:last-child) > * {
  opacity: 0;
}

.Toastify__toast--stacked:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: calc(var(--g) * 1px);
  bottom: 100%;
}

.Toastify__toast--stacked[data-pos='top'] {
  top: 0;
}

.Toastify__toast--stacked[data-pos='bot'] {
  bottom: 0;
}

.Toastify__toast--stacked[data-pos='bot'].Toastify__toast--stacked:before {
  transform-origin: top;
}

.Toastify__toast--stacked[data-pos='top'].Toastify__toast--stacked:before {
  transform-origin: bottom;
}

.Toastify__toast--stacked:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  transform: scaleY(3);
  z-index: -1;
}

.Toastify__toast--rtl {
  direction: rtl;
}

.Toastify__toast--close-on-click {
  cursor: pointer;
}

.Toastify__toast-icon {
  margin-inline-end: 10px;
  width: 22px;
  flex-shrink: 0;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.5s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}

.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}

.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}

.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}

.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}

.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}

.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}

.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}

.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  position: absolute;
  top: 6px;
  right: 6px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  z-index: 1;
}

.Toastify__toast--rtl .Toastify__close-button {
  left: 6px;
  right: unset;
}

.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}

.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}

.Toastify__close-button:hover,
.Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.7;
  transform-origin: left;
}

.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}

.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}

.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
  border-bottom-left-radius: initial;
}

.Toastify__progress-bar--wrp {
  position: absolute;
  overflow: hidden;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
  border-bottom-right-radius: var(--toastify-toast-bd-radius);
}

.Toastify__progress-bar--wrp[data-hidden='true'] {
  opacity: 0;
}

.Toastify__progress-bar--bg {
  opacity: var(--toastify-color-progress-bgo);
  width: 100%;
  height: 100%;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes Toastify__bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.Toastify__bounce-enter--top-left,
.Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}

.Toastify__bounce-enter--top-right,
.Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left,
.Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}

.Toastify__bounce-exit--top-right,
.Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: translate3d(0, var(--y), 0) scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

@keyframes Toastify__flipOut {
  from {
    transform: translate3d(0, var(--y), 0) perspective(400px);
  }
  30% {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}

.Toastify__slide-enter--top-left,
.Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}

.Toastify__slide-enter--top-right,
.Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left,
.Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-right,
.Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*!***************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./pi/src/css/Register.css ***!
  \***************************************************************************/
.register-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url('https://media.istockphoto.com/id/479842074/photo/empty-road-at-building-exterior.jpg?s=612x612&w=0&k=20&c=SbyfZGN0i2O_QPLCdBcu9vhuzbQvTz4bGEn-lIzrN0E=');
  background-size: cover;
  background-position: center;
  padding: 60px 40px 30px 40px;
  font-family: 'Segoe UI', sans-serif;
}

.register-box {
  background-color: #fff;
  padding: 40px 40px 30px 40px;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 40px;
}

.register-box h2 {
  grid-column: 1 / -1;
  font-size: 32px;
  font-weight: bold;
  /* text-align: center; */
  margin-bottom: 20px;
}

.form-field {
  position: relative;
  width: 100%;
}

.form-field input {
  width: 100%;
  border: none;
  border-bottom: 2px solid #ccc;
  font-size: 16px;
  padding: 10px 5px;
  background: transparent;
  transition: border-color 0.3s;
}

.form-field input:focus {
  outline: none;
  border-bottom: 2px solid #d69a2d;
}

.form-field label {
  position: absolute;
  top: 10px;
  left: 5px;
  color: #999;
  font-size: 16px;
  pointer-events: none;
  transition: 0.3s ease all;
}

.form-field input:focus + label,
.form-field input:not(:placeholder-shown):valid + label {
  top: -14px;
  font-size: 13px;
  color: #d69a2d;
  background: #fff;
  padding: 0 4px;
}

.password-field {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 12px;
  font-size: 13px;
  color: #666;
  cursor: pointer;
  user-select: none;
}

.full-width {
  grid-column: 1 / -1;
}

.agreement {
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 10px;
  color: #555;
}

.agreement a {
  color: #007185;
  text-decoration: none;
}

.agreement a:hover {
  text-decoration: underline;
}

.submit-btn {
  padding: 12px;
  background-color: #d69a2d;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #c3871f;
}

.signin-linkreg {
  text-align: center;
  font-size: 16px;
  color:#555;
  text-decoration: none;
  margin-left: 150px;
}

.signin-linkreg a {
  color: #007185;
  text-decoration: none;
  
}

.signin-link a:hover {
  text-decoration: underline;
}

/* -------- MOBILE  -------- */

@media (max-width: 768px) {

  .register-container {
    height: auto;                 /* no fixed height */
    min-height: 100vh;            /* at least full screen */
    padding: 80px 16px 40px 16px; /* smaller side padding */
    background-size: cover;       /* keep covering */
    background-position: center;  /* stay centered */
  }

  .register-box {
    padding: 26px 26px 26px 26px;
    max-width:413px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);

    /* 1 column form instead of 2 */
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .register-box h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .form-field input {
    font-size: 14px;
    padding: 8px 4px;
  }

  .form-field label {
    font-size: 14px;
  }

  .agreement {
    align-items: flex-start;
    font-size: 13px;
  }

  .submit-btn {
    width: 100%;
    font-size: 15px;
  }

  .signin-linkreg {
    margin-left: 0;
    margin-top: 12px;
    text-align: center;
    font-size: 14px;
  }
}

/*!*******************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./pi/src/css/ResumeUpload.css ***!
  \*******************************************************************************/
.resume-container {
    display: flex;
    justify-content: center;
    padding: 120px 20px;
    background-color: #f9f9f9;
  }
  
  .resume-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
  }
  
  .upload-icon {
    margin-bottom: 15px;
  }
  
  h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .subtext {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  
  .upload-btn {
    background-color: #7c3aed;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .cloud-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .cloud-btn {
    background-color: #f4f4f4;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .build-btn {
    background-color: transparent;
    color: #7c3aed;
    border: 2px solid #7c3aed;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    margin-bottom: 15px;
  }
  
  .file-info {
    font-size: 0.85rem;
    color: #888;
  }
  
/*!****************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./pi/src/css/AdminJobs.css ***!
  \****************************************************************************/
.admin-jobs-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f7f7f7;
  padding-top: 30px;
}

.admin-jobs-box {
  width: 450px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: whitesmoke;
}

.admin-jobs-box h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.admin-jobs-form {
  display: flex;
  flex-direction: column;
}

.admin-jobs-form label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  margin-top: 10px;
}

.admin-jobs-form input,
.admin-jobs-form textarea {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 10px;
  background-color: #fff;
}

.admin-jobs-form textarea {
  resize: vertical;
  min-height: 100px;
}

.admin-jobs-form button {
  padding: 10px;
  background: linear-gradient(135deg, #264653, #2a9d8f);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 15px;
}

.admin-jobs-form button:hover {
  background-color: #21867a;
}

/* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 768px) {
  .admin-jobs-container {
    align-items: flex-start;           /* form moves up on screen */
    padding-top: 80px;                 /* space for header if any */
    padding-left: 15px;
    padding-right: 15px;
  }

  .admin-jobs-box {
    width: 100%;
    max-width: 100%;
    padding: 20px 15px;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
  }

  .admin-jobs-box h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .admin-jobs-form label {
    font-size: 13px;
  }

  .admin-jobs-form input,
  .admin-jobs-form textarea {
    font-size: 13px;
    padding: 8px;
  }

  .admin-jobs-form button {
    font-size: 14px;
    padding: 9px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .admin-jobs-container {
    padding-top: 70px;
  }

  .admin-jobs-box {
    padding: 18px 12px;
  }
}
/*!*******************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./pi/src/css/AdminResumes.css ***!
  \*******************************************************************************/
body {
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.resumes-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.resumes-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #004f80;
  margin-bottom: 40px;
  position: relative;
}

.resumes-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #5cb85c; /* soft green accent */
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Resume Cards */
.resume-card {
  background: linear-gradient(to right, #ffffff, #f9f9f9);
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.resume-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.resume-card h3 {
  font-size: 24px;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.resume-card p {
  font-size: 16px;
  color: #4b4b4b;
  margin: 6px 0;
  line-height: 1.5;
}

.resume-card strong {
  color: #222;
}

/* Section Headings */
.resume-card h4 {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  color:black; /* green */
  padding-bottom: 6px;
  margin-bottom: 6px;
}

/* Resume download link button */
.download-link {
  background-color: #5cb85c;
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.download-link:hover {
  background-color: #449d44;
}

/* Optional status badge */
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 13px;
  border-radius: 12px;
  font-weight: 500;
  background-color: #ff9800;
  color: #fff;
  margin-left: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .resumes-container {
    padding: 10px;
  }

  .resume-card {
    padding: 20px;
  }

  .resumes-title {
    font-size: 28px;
  }

  .resume-card h3 {
    font-size: 20px;
  }

  .download-link {
    font-size: 14px;
    padding: 6px 12px;
  }
}

/* ---------- MOBILE (TABLETS & PHONES) ---------- */
@media (max-width: 768px) {
  body {
    background-color: #ffffff; 
  }

  .resumes-container {
    max-width: 100%;
    margin: 70px 0 20px 0;   /* remove big side margins */
    padding: 16px;
    border-radius: 0;        /* edge-to-edge look */
    box-shadow: none;        /* remove heavy shadow */
  }

  .resumes-title {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .resume-card {
    padding: 18px;
    margin-bottom: 18px;
    border-radius: 10px;
  }

  .resume-card h3 {
    font-size: 18px;
  }

  .resume-card p {
    font-size: 14px;
  }

  .resume-card h4 {
    font-size: 16px;
  }

  .download-link {
    font-size: 14px;
    padding: 6px 12px;
    margin-top: 8px;
  }

  .status-badge {
    display: block;
    margin: 6px 0 0 0; /* move below title on mobile */
  }
}

/* ---------- SMALL PHONES ---------- */
@media (max-width: 480px) {
  .resumes-container {
    padding: 12px 10px;
    margin-top: 60px;
  }

  .resumes-title {
    font-size: 22px;
  }

  .resume-card {
    padding: 14px;
  }

  .resume-card h3 {
    font-size: 17px;
  }

  .resume-card p {
    font-size: 13px;
  }

  .download-link {
    width: 100%;       
    text-align: center;
  }
}
/*!*******************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./pi/src/css/UploadResume.css ***!
  \*******************************************************************************/
.upload-container {
    max-width: 500px;
    margin: 90px auto;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  }
  
  .upload-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
  }
  
  .upload-form {
    display: flex;
    flex-direction: column;
  }
  
  .input-field,
  .file-input {
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
  }
  
  .input-field:focus,
  .file-input:focus {
    border-color: #007bff;
    outline: none;
  }
  
  .upload-button {
    padding: 12px;
    /* background-color: #007bff; */
    background: linear-gradient(135deg, #264653, #2a9d8f); /* Dark Green to Teal */
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  
  /* Tablets & normal mobiles (≤ 768px) */
@media (max-width: 768px) {
  .upload-container {
    max-width: 100%;
    margin: 80px 15px 30px 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  }

  .upload-container h2 {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .input-field,
  .file-input {
    font-size: 14px;
    padding: 10px;
  }

  .upload-button {
    font-size: 14px;
    padding: 10px;
  }
}

/* Small phones (≤ 480px) */
@media (max-width: 480px) {
  .upload-container {
    margin: 70px 10px 20px 10px;
    padding: 16px;
  }

  .upload-container h2 {
    font-size: 18px;
  }

  .input-field,
  .file-input {
    font-size: 13px;
    padding: 8px;
  }

  .upload-button {
    width: 100%;      /* full width button for easy tapping */
    padding: 10px;
  }
}
/*!**************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./pi/src/css/JobList.css ***!
  \**************************************************************************/
.job-list-containerone{
  width: 100%;
  height: 100%;
  background-color: whitesmoke;
}  

.job-list-container {
    max-width: 1100px; 
    margin: 0px auto;
    padding: 20px;
    
  }
  
  .job-list-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 35px;
  }
  
  .job-list {
    list-style-type: none;
    padding: 0;
  }
  
  .job-item {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #264653, #2a9d8f);  
    transition: box-shadow 0.3s;
  }
  
  .job-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .job-item h3 {
    margin-top: 0;
    color:orange;
  }
  
  .job-item p {
    margin: 8px 0;
    color:whitesmoke; 
    
  }
  
  .job-item b {
    color:orange;
  }
  
  .applybutton{
    background-color:#f86c54;
    color: aliceblue;
    padding: 10px 30px;
    font-size: 15px;
    border:none;
    cursor: pointer;
    border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px; }
  
  .job-description li,
.job-qualifications li {
  margin-left: 20px;
  line-height: 1.5;
  list-style-type: disc;
  color: aliceblue;
}

/* Tablets & normal mobiles (≤ 768px) */
@media (max-width: 768px) {
  .job-list-container {
    margin: 20px auto;
    padding: 12px;
  }

  .job-list-container h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .job-item {
    padding: 16px;
  }

  .job-item h3 {
    font-size: 20px;
  }

  .job-item p {
    font-size: 15px;
  }

  .applybutton {
    font-size: 15px;
    padding: 8px 20px;
    border-radius: 8px;
  }
}

/*!**************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./pi/src/css/Aboutus.css ***!
  \**************************************************************************/
.about-container{
    padding-top: 80px;
    display: flex;
    width: 100%;
    height: 400px;
    background-color: #0a1e3a;
    color: whitesmoke;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.about-left{
    flex:1;
    position: relative;
    padding: 100px 60px;
}
.breadcrum{
    font-size: 18px;
    margin: 60px;
}
.home-link{
    color: #fff;
  font-weight: 400;
  text-decoration: none;
  margin-left: 38px;
}
.seperator{
    margin: 0 10px;
    color: #4473ff;
}
.aboutus-link{
    color: #4473ff;
}
.about-heading{
    margin-bottom: 20px; 
    font-size: 70px;
    line-height: 1;
}
.about-heading span{
    font-weight: 300;

}
.heading-wrapper{
    position: relative;  
    
}
.about-heading-bg{
    position: absolute;
     top: -50px; 
   left: 0; 
  font-size: 120px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1); 
  font-weight: 600;
  z-index: 0;
  pointer-events: none;
  white-space: nowrap; 
}
.about-right{
    flex: 1;
    position: relative;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    overflow: hidden;

}
.about-image{
    width: 100%;
    height: 100%;
}


/* --------------------------------------------------------------------------------------- */

.company-info-section {
  display: flex;
  padding: 100px 40px;
  background: #fff;
  gap: 40px;
}

.info-left {
  flex: 1;
  padding-right: 40px;
}

.info-left h2 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 20px;
}

.info-left p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.info-right {
  flex: 1;
  position: relative;
}

.image-stack {
  margin-right: 50px;
  width: 480px;
  height: 500px;
 background-size: cover;
  background-position: center;
  position: relative;
  z-index: 2;
  
}

/* Common Box */
.stats-box {
  position: absolute;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay using ::before */
.stats-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8); /* dark overlay */
  z-index: 1;
}

/* Special case: orange overlay on first box */
.box-top-right::before {
  background-color: rgba(255, 133, 27, 0.9);
}

/* Text content above overlay */
.text-overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.text-overlay h3 {
  font-size: 38px;
  font-weight: bold;
  margin: 0;
  color: whitesmoke;
}

.text-overlay p {
  font-size: 17px;
  margin-top: 10px;
  line-height: 1.5;
}

.box-top-right {
  top: 169px;
  right: -127px;
  width: 200px;
  height: 200px;
  animation: floatupdown 2s ease-in-out infinite alternate;
}

@keyframes floatupdown{
  from{
    transform: translateY(0);
  }
  to{
    transform: translateY(-30px)
  }
}

.box-middle-left {
  top: 268px;
  left: -114px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  width: 318px;
  height: 300px;
}

.box-bottom-right {
  bottom: -158px;
  right: 40px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  width: 300px;
  height: 190px;
  z-index: 1;
  position: absolute;
}

/* -------------------------------------------------------------------------------------------- */

.choosecomp{
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    gap:40px;
    padding: 200px 40px;
    
}
 .choose-comp-left{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.image-row{
  display: flex;
  align-items: flex-start;
  gap:20px;
  position: relative;
}
.image-with-box{
  position: relative;
}

.choose-image {
  width: 280px;
  height: 450px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.left-image {
  margin-top: -50px; 
}

.right-image {
  margin-bottom: 40px;
}

.experience-box{
  
  position: absolute;
  bottom: -80px;
  left: 20px;
  background-color: #2762ff;
  color: #fff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  width: 240px;
}
.experience-box h1{
  font-size: 36px;
  margin: 0;
}

.choose-comp-right{
    flex:2;
    min-width: 300px;
    
}
.choose-comp-right-heading{
    font-size: 55px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #0a0a23;
    
}
.choose-comp-right-heading span{
    font-weight: 200;
    margin-left: 20px;
    color: #000;

}

.choose-r-para-one{
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
}
.choose-r-para-two{
  list-style: none;
  padding-left: 0;
  font-size: 16px;
  color: #444;
  line-height: 1.8;
}
.choose-r-para-two li {
  margin-bottom: 15px;
}

.choose-r-para-two strong {
  color: #0a0a23;
}

/* ---------- MOBILE (About / Blue Banner + Image) ---------- */

@media (max-width: 768px) {

  .about-container{
      margin-top: 0;        
      padding-top: 50px;    
      display: flex;
      width: 100%;
      flex-direction: column;   
      height: auto;
      background-color: #0a1e3a;
      color: whitesmoke;
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  }

  .about-left {
    padding: 0;
    width: 100%;
  }

  .heading-wrapper {
    margin-bottom: 12px;
  }

  .about-heading {
    margin: 0 0 8px 0;
    font-size: 34px;
    line-height: 1.1;
    white-space: nowrap;         
  }

  .about-heading span {
    display: inline;
    font-weight: 300;
  }

  .about-heading-bg {
    display: none;               
  }

  .breadcrum {
    /* margin: 0; */
    margin: 12px 0 0; 
    font-size: 14px;
    text-align: left;
  }

  .home-link {
    margin-left: 0;
    font-size: 14px;
  }

  .seperator {
    margin: 0 6px;
  }

  .aboutus-link {
    font-size: 14px;
  }

  /* ----- IMAGE PART (visible again) ----- */
  .about-right {
    display: block;
  width: 100%;
   
  }

  .about-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;          
  }

/* ---------- MOBILE: ABOUT COMPANY SECTION (SAFE VERSION) ---------- */


  .company-info-section {
    flex-direction: column;      /* visual first, text below */
    align-items: center;
    padding: 32px 16px 72px;
    gap: 0;
  }

  /* Entire visual (bg + 3 cards) */
  .info-right {
    order: -1;                   /* show image/cards above the text */
    transform: scale(0.8);       /* shrink everything together */
    transform-origin: top center;
    margin-bottom: -40px;        /* pull cards a bit closer to heading */
  }

/* middle box */
  .image-stack {
         margin: 0 auto; 
    background-position: center;
  }

  .info-left {
    padding-right: 0;
    margin-top: 40px;           /* ensures “About Company” starts below cards */
    text-align: left;
  }

  .info-left h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .info-left p {
    font-size: 14px;
    line-height: 1.6;
  }

  .box-top-right {
    right: -10px !important;    /* move LEFT (closer to centre) */
    top: 230px !important;      /* move DOWN slightly */
  }

  /* 300+ card */
  .box-middle-left {
    width: 240px;          
    height: 230px;
    left: -10px;           /* a bit closer to centre */
    top: 300px;            /* slightly higher so it doesn't hit text */
  }

  .box-middle-left .text-overlay h3 {
    font-size: 32px;
  }

  .box-middle-left .text-overlay p {
    font-size: 18px;
  }

  /* 4+ card */
  .box-bottom-right {
    width: 240px;          /* smaller */
    height: 130px;
    right: -7px;            
    bottom: -120px;         
  }

  .box-bottom-right .text-overlay h3 {
    font-size: 30px;
  }

  .box-bottom-right .text-overlay p {
    font-size: 15px;
  }


/* ---------- MOBILE: CHOOSE COMPANY SECTION ---------- */

.choosecomp {
    flex-direction: column;
    padding: 2px 20px;
    gap: 32px;
  }

  .choose-comp-left {
    width: 100%;
  }

  .image-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .choose-image {
    width: 100%;
    max-width: 340px;      
    height: auto;
  }

  .left-image {
    margin-top: 0;
  }

  .right-image {
    margin-bottom: 0;
  }

  /* Blue 4+ box – center under first image */
  .experience-box {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 80%;
    max-width: 280px;
    margin: -40px auto 10px;
  }

  .experience-box h1 {
    font-size: 28px;
  }

  .choose-comp-right {
    margin-top: 10px;
  }

  .choose-comp-right-heading {
    font-size: 30px;
  }

  .choose-r-para-one,
  .choose-r-para-two {
    font-size: 14px;
  }

}
/*!***************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./pi/src/css/JobApplicationChoice.css ***!
  \***************************************************************************************/
.job-application-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
.job-header {
    background-color: #ed6a4d;
    color: white;
    padding: 40px 60px;
    height: 300px;
  }
  
  .job-header p {
    margin-top: 90px;
    font-size: 18px;
  }
  
  .job-header h1 {
    font-size: 42px;
    margin: 10px 0 5px;
    font-weight: 700;
  }
  
  .job-header h2 {
    font-size: 24px;
    font-weight: 400;
    margin: 0;
  }
  
  .job-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 60px 20px;
  }
  
  .job-card {
    background-color: #f8f8f8;
    border: 1px solid #ccc;
    padding: 40px;
    text-align: center;
    width: 280px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .job-label {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
  }
  
  .job-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #ed6a4d;
    color: #ed6a4d;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
  }
  
  .job-btn:hover {
    background-color: #ed6a4d;
    color: white;
  }
  


/*!***********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./pi/src/css/PersonalInfoForm.css ***!
  \***********************************************************************************/
.form-container {
    max-width: 900px;
    margin: 110px auto;
    font-family: Arial, sans-serif;
    padding: 20px;
}
  
  .step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    font-weight: bold;
  }
  
  .step {
    flex: 1;
    text-align: center;
    color: #888;
    position: relative;
  }
  
  .step.active {
    color: #ff7043;
  }
  
  .step::before {
    content: '';
    display: block;
    margin: 0 auto 8px;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 2px solid #ccc;
    border-radius: 50%;
  }
  
  .step.active::before {
    background: #ff7043;
    border-color: #ff7043;
  }
  
  .upload-section {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .upload-box {
    flex: 1;
  }
  
  .upload-input {
    background-color: #e0e0e0;
    padding: 16px;
    margin-top: 5px;
    text-align: center;
  }
  
  .linkedin-section {
    margin: 20px 0;
  }
  
  .linkedin-button {
    padding: 10px 16px;
    color: #0073b1;
    border: 1px solid #0073b1;
    background: none;
    cursor: pointer;
    font-weight: 500;
  }
  
  .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  input, select {
    padding: 10px;
    font-size: 13px;
    border: 1px solid #ccc;
  }
  .next{
    padding: 10px 50px;
    font-size: 15px;
    cursor: pointer;
    background-color:#ff7043 ;
    color: white;
    margin: 0 auto;
    border:none;
    
  }

  /* Tablets & normal mobiles (≤ 768px) */
@media (max-width: 768px) {
  .form-container {
    max-width: 100%;
    margin: 90px 10px 30px 10px;
    padding: 16px;
  }

  .step-indicator {
    flex-direction: row;
    font-size: 13px;
    gap: 8px;
  }

  .step::before {
    width: 14px;
    height: 14px;
    margin-bottom: 6px;
  }

  .upload-section {
    flex-direction: column;
    gap: 12px;
  }

  .info-grid {
    grid-template-columns: 1fr; /* single column on mobile */
    gap: 14px;
  }

  input,
  select {
    font-size: 12px;
    padding: 8px;
  }

  .linkedin-button {
    width: 100%;
    text-align: center;
  }

  .next {
    width: 100%;        
    padding: 10px;
    font-size: 14px;
  }
}

/* Small phones (≤ 480px) */
@media (max-width: 480px) {
  .form-container {
    margin: 80px 8px 20px 8px;
    padding: 12px;
  }

  .step-indicator {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .step {
    font-size: 12px;
  }

  .upload-input {
    padding: 12px;
    font-size: 12px;
  }

  .linkedin-button {
    font-size: 12px;
    padding: 8px 10px;
  }

  .next {
    font-size: 13px;
  }
}
/*!********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./pi/src/css/EducationForm.css ***!
  \********************************************************************************/
.education-form-container {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
  }
  
  h3 {
    margin-bottom: 10px;
    color: #333;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }
  
  .button-group {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  
  button.back,
  button.next {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button.back {
    background-color: #ccc;
  }
  
  button.next {
    background-color: #d86c51;
    color: white;
  }

  .education-group{
    display: grid;
    gap:20px;
    grid-template-columns: 1fr 1fr;
  }

  .work-group{
    display: grid;
    gap:20px;
    grid-template-columns: 1fr 1fr;
  }

  /* ----------------- RESPONSIVE DESIGN ----------------- */

@media (max-width: 768px) {
  .education-form-container {
    padding: 16px;
  }

  .education-group,
  .work-group {
    grid-template-columns: 1fr;  /* stack fields in one column */
    gap: 14px;
  }

  .button-group {
    flex-direction: row;
    justify-content: space-between;
  }

  button.back,
  button.next {
    flex: 1;
    padding: 10px;
    font-size: 14px;
  }

  button.back {
    margin-right: 6px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .education-form-container {
    padding: 12px;
  }

  h3 {
    font-size: 16px;
  }

  input {
    padding: 8px;
    font-size: 13px;
  }

  .button-group {
    flex-direction: column;
    gap: 8px;
  }

  button.back,
  button.next {
    width: 100%;      
    margin: 0;
  }
}
/*!********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./pi/src/css/MultiStepForm.css ***!
  \********************************************************************************/
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  
  .step {
    padding: 10px 15px;
    border-bottom: 2px solid #ccc;
    color: #888;
  }
  
  .step.active {
    border-bottom: 3px solid #d86c51;
    color: #d86c51;
    font-weight: bold;
  }
  
  .form-container{
    margin-top: 90px;
  }
/*!**************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./pi/src/css/Contact.css ***!
  \**************************************************************************/
.about-container{
    padding-top: 80px; 
    display: flex;
    width: 100%;
    height: 400px;
    background-color: #0a1e3a;
    color: whitesmoke;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.about-left{
    flex:1;
    position: relative;
    padding: 100px 60px;
}
.breadcrum{
    font-size: 18px;
    margin: 60px;
}
.home-link{
    color: #fff;
  font-weight: 400;
  text-decoration: none;
  margin-left: 38px;
}
.seperator{
    margin: 0 10px;
    color: #4473ff;
}
.aboutus-link{
    color: #4473ff;
}
.about-heading{
    margin-bottom: 20px; 
    font-size: 70px;
    line-height: 1;
}
.about-heading span{
    font-weight: 300;

}
.heading-wrapper{
    position: relative;  
    
}
.about-heading-bg{
    position: absolute;
     top: -50px; 
   left: 0; 
  font-size: 120px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1); 
  font-weight: 600;
  z-index: 0;
  pointer-events: none;
  white-space: nowrap; 
}
.about-right{
    flex: 1;
    position: relative;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    overflow: hidden;

}
.about-image{
    width: 100%;
    height: 100%;
}
/* ----------------------------------------------------------------------------- */


   .contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    padding: 110px 110px;
    background: #f9fafc;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .contact-left {
    flex: 1;
    max-width: 45%;
  }
  
  .contact-title {
    font-size: 48px;
    font-weight: 700;
    color: #0b1c34;
    margin-bottom: 30px;
  }
  
  .contact-description {
    font-size: 20px;
    color: #263238;
    line-height: 1.6;
    max-width: 90%;
  }
  
  .contact-right {
    flex: 1;
    max-width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .contact-card {
    background-color: #fff;
    border-radius: 24px;
    padding: 30px 20px; 
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .contact-card:hover {
    transform: translateY(-5px);
  }
  .contact-iconone {
    font-size: 45px;
    color: #3d5afe;
    margin-bottom: 20px;
  }
  
  .contact-icon {
    font-size: 28px;
    color: #3d5afe;
    margin-bottom: 20px;
  }
  
  .contact-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #0b1c34;
  }
  
  .contact-card p {
    
    font-size: 16px;
    color: #37474f;
  }


/* --------- MOBILE (About + Contact) --------- */

@media (max-width: 768px) {

  .about-container{
      margin-top: 0;        
      padding-top: 50px;    
      display: flex;
      width: 100%;
      flex-direction: column;   
      height: auto;
      background-color: #0a1e3a;
      color: whitesmoke;
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  }

  .about-left {
    padding: 40px 20px;
    text-align: left;
  }

  .breadcrum {
    /* margin: 20px 0; */
    margin: 12px 0 0; 
    font-size: 16px;
  }

  .about-heading {
    font-size: 40px;
    margin-bottom: 12px;
  }

  .about-heading-bg {
    font-size: 70px;
    top: -30px;
  }

  .about-right {
    width: 100%;
    height: auto;
  }

  .about-image {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 10px;
  }
  .contact-container {
    flex-direction: column;
    padding: 32px 20px 40px;
    gap: 24px;
  }

  .contact-left {
    max-width: 100%;
    text-align: left;
  }

  .contact-title {
    font-size: 30px;
    margin-bottom: 12px;
  }

  .contact-description {
    font-size: 15px;
    max-width: 100%;
  }

  .contact-right {
    max-width: 100%;
    grid-template-columns: 1fr;   
    gap: 16px;
  }

  .contact-card {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .contact-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .contact-card p {
    font-size: 14px;
  }

  .contact-icon,
  .contact-iconone {
    font-size: 30px;
    margin-bottom: 8px;
  }
}

/*!**********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./pi/src/css/SubcategoryPage.css ***!
  \**********************************************************************************/
/* ================= HERO BANNER ================= */

.hero-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 620px;
  display: flex;
  align-items: center;
  color: white;
  padding-left: 40px;
  font-family: "Arial", sans-serif;
  margin-top: 0;                
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
}

.hero-content {
  position: relative;
  max-width: 800px;
  z-index: 2;
  padding-top: 90px;            /* push text below fixed header */
}

.hero-content .tag {
  background: #000;
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-size: 45px;
  line-height: 1.4;
  margin-bottom: 20px;
}

/* ================= AGRICULTURE SECTION ================= */

.agriculture-section {
  width: 100%;
  min-height: 450px;
  background: repeating-linear-gradient(
    45deg,
    #ffffff,
    #ffffff 4px,
    #f5f5f5 4px,
    #f5f5f5 8px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  box-sizing: border-box;
}

/* If you add more layout later, you can use this container */
.agri-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 60px;
}

.agri-left {
  max-width: 900px;   /* controls width of title + paragraph */
  margin: 0 auto;     /* horizontally center */
  text-align: center; /* center text inside */
}

.agri-left h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #111;
}

.agri-left p {
  font-size: 22px;
  line-height: 1.6;
  color: #222;
}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 768px) {
  .hero-banner {
    height: 380px;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 0;
    text-align: center;
    justify-content: center;
  }

  .hero-content {
    max-width: 100%;
    padding-top: 70px;      /* smaller header height on mobile */
  }

  .hero-content .tag {
    font-size: 10px;
    padding: 3px 7px;
  }

  .hero-content h1 {
    font-size: 27px;
    line-height: 1.3;
  }

  /* ---------- AGRICULTURE SECTION ---------- */
  .agriculture-section {
    width: 100%;
    /* height: auto; */
    min-height: 320px; 
    padding: 40px 10px;
  }

  .agri-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .agri-left {
    max-width: 600px;
    padding: 0 10px;   
  }

  .agri-left h2 {
    font-size: 26px;
    margin-bottom: 22px;
  }

  .agri-left p {
    font-size: 16px;
    line-height: 1.5;
  }
}


/*# sourceMappingURL=styles.a345abda99d9823c0a73.css.map*/