/* ===================== Reset ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
  background-color: #f3f6fa !important;  
  font-family: 'Poppins', sans-serif;
}

/* =====================  HOMEPAGE START =================== */

body {
  font-family: 'Poppins', sans-serif;
  background: #f9fafc;
  margin: 0;
  padding: 0;
}
/* ===================== Header Starts ===================== */
/* ===================== Header Starts ===================== */
header {
    position: sticky;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    top: 0;
    max-width: 100vw; /* prevent horizontal overflow */
    width: 100%; /* full width */
    padding: 1rem 3%; /* relative padding instead of fixed 50px */
    display: flex;
    justify-content: space-between;
    align-items: right;
    background-color: #fffeff;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    box-sizing: border-box; /* include padding in width */
}


header.scrolled {
    box-shadow: 0 6px 25px rgba(0,0,0,0.25);
}

.logo img {
    max-height: 50px; /* responsive max height */
    width: auto;
    display: block;
}


/* ===================== Navigation ===================== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;          /* increase from 100% to leave small margins */
    max-width: 1400px;   /* optional, prevent it from being too wide on large screens */
    margin: 0 auto;      /* center the nav bar */
    position: relative;
    padding: 1rem 3%;
}

/* Hamburger Menu (hidden on desktop) */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #0419dc;
}

/* Desktop nav links */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
}

.nav-links li a {
    white-space: nowrap; /* prevent breaking */
    text-decoration: none;
    color: #0419dc;
    padding: 10px 15px;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.nav-links li a:hover,
.nav-links li a.active {
    background-color: #0419dc;
    color: #fff;
}

/* Contact Button */
.nav-links li a.btn-contact {
    background-color: #012fa3;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

.nav-links li a.btn-contact:hover {
    background-color: #012fa3;
}

/* Dropdown menu */
.nav-links li.dropdown {
    position: relative; /* for absolute positioning of dropdown */
}

.nav-links li .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-width: 200px;
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
}

.nav-links li .dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 1rem;
    color: #012fa3;
    transition: 0.3s;
}

.nav-links li .dropdown-menu li a:hover,
.nav-links li .dropdown-menu li a.active {
    background: #012fa3;
    color: #fff;
    border-radius: 8px;
}

/* Desktop hover behavior ONLY */
@media (min-width: 1025px) {
    .nav-links li.dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* ===================== Mobile Styles ===================== */
@media (max-width: 1024px) {
    /* Show hamburger */
    .menu-toggle {
        display: block;
    }

    /* Hide nav links by default */
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 10px 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        border-radius: 0 0 12px 12px;
        z-index: 999;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .nav-links li a {
        display: block;
        width: 100%;
        padding: 12px 0;
    }

    /* Dropdowns on mobile */
    .nav-links li.dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        display: none;
        padding: 0;
        background: #f8f9fb;
    }

    .nav-links li.dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-links li.dropdown .dropdown-menu li a {
        padding: 10px 0;
        text-align: center;
        color: #012fa3;
    }

    /* Make contact button full width */
    .nav-links li a.btn-contact {
        width: 90%;
        margin: 10px auto;
        text-align: center;
        padding: 12px 0;
    }
}

@media (max-width: 768px) {
    /* Adjust dropdown text alignment */
    .nav-links li.dropdown .dropdown-menu li a {
        padding: 10px 0;
        text-align: center;
    }
}

/* ===================== Header End ===================== */


/* ===================== Hero Starts ===================== */
.hero {
  width: 100%;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  background: url('../images/home01.jpg') center/cover no-repeat;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background-color: rgba(1, 36, 68, 0.65); 
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.hero-content p {
  background: rgba(255, 255, 255, 0.2);
  color: #fcf9f9;
  padding: 20px 30px;
  border-radius: 15px;
  font-size: 1.1rem;
  line-height: 1.6;
  display: inline-block; 
  backdrop-filter: blur(4px);
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}

.hero .primary-btn {
  background: #012fa3;
  color: #fff;
  padding: 14px 28px;
  font-size: 1.1rem;
  border-radius: 30px;
  display: inline-block;
  margin-top: 20px;
  transition: 0.3s ease;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}
.hero .primary-btn:hover {
  background: #012fa3;
  color: #fff;
}

.job-search-box {
  background: rgba(255, 255, 255, 0.15); 
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  max-width: 900px;
  margin: 20px auto;
  font-family: 'Poppins' sans-serif;
}

.job-search-box-select[name="location"] {
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 16px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 900px;
  margin: 20px auto;
  font-family: 'Poppins', sans-serif;
  border: 1.2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  outline: none;
  font-size: 14px;
  appearance: none; /* hide default arrow */
  cursor: pointer;
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24"><path fill="white" d="M7 10l5 5 5-5H7z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  transition: all 0.3s ease;
}

/* Hover and Focus States */
.job-search-box-select[name="location"]:hover,
.job-search-box-select[name="location"]:focus {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Ensure all options have Poppins font */
.job-search-box-select[name="location"] option {
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px;
  color: #fff; /* white text for frosted glass style */
  background: rgba(0, 0, 0, 0.3); /* optional: dark semi-transparent background for options */
}

/* Placeholder styling */
.job-search-box-select[name="location"] option[value=""] {
  color: #ccc;
}

.job-search-form {
  display: flex;
  gap: 15px;
  flex-wrap: wrap; 
}

.job-search-form input,
.job-search-form select {
  flex: 1;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
}

.search-btn {
  background: #012fa3;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
}

.search-btn i {
  font-size: 1rem;
}

.search-btn:hover {
  background: #012fa3;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

/* ===================== Responsive ===================== */

@media (max-width: 768px) {
  .job-search-form {
    flex-direction: column;
  }
  .search-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.2rem;
    font-family: 'Poppins', sans-serif;
  }
  .hero-content p {
    font-size: 1rem;
    padding: 15px 20px;
    font-family: 'Poppins', sans-serif;
  }
}

@media (max-width: 768px) {
  .job-search-form {
    flex-direction: column;
    align-items: stretch;
  }
  .job-search-form input,
  .job-search-form select,
  .job-search-form .search-btn {
    width: 100%;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
    font-family: 'Poppins', sans-serif;
  }
  .hero-content p {
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
  }
}

/* ===================== Hero CTA Buttons ===================== */
.add-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.add-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: #e9eaec;
  background:#034684 ;
}

/* Jobseeker Button */
.jobseeker-btn {
  color: #e9eaec;
  background:#012fa3 ;
  backdrop-filter: blur(4px);
}

.jobseeker-btn:hover {
  color: #e9eaec;
  background:#012fa3;
  
}

/* Employer Button */
.employers-btn {
  color: #e9eaec;
  background:#012fa3;
  backdrop-filter: blur(4px);
}

.employers-btn:hover {
  color: #e9eaec;
  background:#012fa3;
  
}

/* Icon Styling */
.add-btn i {
  font-size: 1.1rem;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .add-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===================== Hero Section Ends ===================== */



/* ==================== Recruitment Section Stars ===================== */
.recruitment-section {
  background-color: transparent; /* if you want overlap */
  padding:  40px 20px 80px 20px;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

/* ==================== Modern Recruitment Card ==================== */

/* Unified Rounded Card */
.recruitment-card {
  display: flex;
  flex-wrap: wrap;
  background: rgba(6, 13, 25, 0.441); /* semi-transparent base */
  background: linear-gradient(
      135deg, 
      rgba(2, 63, 124, 0.4) 0%, 
      rgba(1, 25, 50, 0.3) 100%
  ); /* soft gradient overlay */
  backdrop-filter: blur(10px); /* glassmorphism effect */
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  overflow: hidden;
  max-width: 1400px;
  margin: 0px auto 0 auto; /* negative top margin pulls it up */
  color: #ffffff;
  transition: all 0.3s ease;
}

.recruitment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

/* Left Column: Image */
.card-image {
  flex: 1 1 45%;
  min-width: 300px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card-image img:hover {
  transform: scale(1.05);
}

/* Right Column: Text + Headline + CTA */
.card-content {
  flex: 1 1 55%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-headline h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #012fa3;
  font-family: 'Poppins', sans-serif;
}

.card-headline .subheading {
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-bottom: 25px;
  font-family: 'Poppins', sans-serif;
}

.card-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
}

/* CTA Button */
.cta-button {
  background-color: #012fa3;
  color: #ffffff;
  font-weight: 600;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
}

.cta-button:hover {
  background-color: #012fa3;
}

/* Responsive */
@media screen and (max-width: 991px) {
  .recruitment-card {
    flex-direction: column;
  }

  .card-content {
    padding: 30px 20px;
  }

  .card-headline h2 {
    font-size: 2rem;
  }

  .card-headline .subheading {
    font-size: 1.3rem;
  }

  .card-content p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 12px 30px;
  }
}

/* ===================== Recruitments Section Ends  ===================== */


/* ===================== Insights Section Starts ===================== */
.insights {
  padding:  20px 80px 20px;
  text-align: center;
  margin: 0px auto 0; 
  background:#f3f6fa;
  }


.insights h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color:#012fa3;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    margin-top: 20px;
}

.section-title {
  text-align: center;     
  margin: 0 auto 20px;    
  padding: 0;
  font-size: 2rem;        
  color: #010121;         
  width: fit-content;     
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
 
}

/* ------------ Insights Responsive Grid ------------ */
.insights-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);  /* FORCE 4 CARDS on large screens */
  gap: 8px;
  max-width: 1300px;
  margin: 0 auto;
}

/* ------------ Bigger Cards ------------ */
.flip-card {
  width: 100%;       /* Let grid control width */
  height: 350px;     /* Bigger height */
  border-radius: 8px;
}

/* Tablets (2 per row) */
@media (max-width: 1024px) {
  .insights-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (1 per row) */
@media (max-width: 768px) {
  .insights-cards {
    grid-template-columns: 1fr;
  }
}


.flip-card h3 {
    margin-bottom: 15px;
    color: #010121;
    justify-content: center;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
}

.flip-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    font-family:'Poppins', sans-serif;
    font-weight: 400;
    justify-content: center;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  border-radius: 5px; 
  box-sizing:border-box;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Flip on hover (desktop) */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Flip on touch (mobile) */
.flip-card.flip-card-active .flip-card-inner {
  transform: rotateY(180deg);
}


.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 5px; 
  box-sizing:border-box;
}

.flip-card-front {
  background: linear-gradient(
    135deg, 
    #ffffff,   
    #4f6ef7   
  );
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  color: #010121; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  transition: transform 0.6s ease, box-shadow 0.3s ease;
}

.flip-card-back {
  color: rgb(19, 18, 18);
  background: #fff;
  transform: rotateY(180deg);
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (max-width: 1024px) {
  .insights-cards {
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 768px) {
  .insights-cards {
    grid-template-columns: 1fr; 
  }
}

/* ===================== Insights Section Ends ===================== */

/* ==================== Featured Article ===================== */
.featured-article {
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fb;
  text-align: center; /* centers only the section title */
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #010121;
  margin-bottom: 40px;
  display: inline-block;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

/* Container */
.fa-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  align-items: stretch; /* ensures image & content same height */
}

/* Image container */
.fa-image {
  flex: 1 1 45%;
  display: flex;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* Image styling */
.fa-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content container */
.fa-content {
  flex: 1 1 55%;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical centering next to image */
  text-align: left;
}

/* Labels and headings */
.fa-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #012fa3;
  margin-bottom: 12px;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
}

.fa-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #012fa3;
  line-height: 1.3;
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
}

.fa-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 25px;
  font-family: 'Poppins', sans-serif;
}

/* Button */
.fa-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  background: #012fa3;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
  font-family: 'Poppins', sans-serif;
}

.fa-btn:hover {
  background: #034684;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Hover effect for container */
.fa-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* ==================== Responsive ===================== */
@media (max-width: 992px) {
  .fa-container {
    flex-direction: column; /* stack image on top for smaller screens */
    gap: 20px;
  }

  .fa-content {
    text-align: center;
    padding: 20px 25px;
  }

  .fa-btn {
    align-self: center;
  }

  .fa-image {
    min-height: 250px;
  }

  .fa-heading {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .fa-image {
    min-height: 200px;
  }

  .fa-heading {
    font-size: 1.3rem;
  }

  .fa-text {
    font-size: 0.95rem;
  }

  .fa-btn {
    padding: 10px 24px;
  }
}


/* ===================== Events Section Starts ===================== */
.events-section {
  background: #f3f6fa;
  padding: 10px 10px;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

.events-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: rgba(0, 123, 255, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
}

.events-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2px 20px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px; /* space between header and slider */
}


.section-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 10px 0px;
  background: rgba(0, 123, 255, 0.05); /* subtle glow background */
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 1s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.section-header:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #012444; /* accent color to attract attention */
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  font-family: "Poppins", sans-serif;
}

.section-title::after {
  content: "";
  width: 90px;
  height: 4px;
  background: #012444;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
  font-family: "Poppins", sans-serif;
}

.section-header p {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.9;
  color: #333;
  font-weight: 500;
  letter-spacing: 0.3px;
  font-family: "Poppins", sans-serif;
}


/* Fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider-container {
  perspective: 2000px;
  width: 100%;
  overflow: visible;
  padding: 0 40px;
}

.event-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
}

/* Event card styling */
.event-card {
  flex: 0 0 300px;
  margin: 0 15px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0.5;
  transform: scale(0.8);
  cursor: pointer;
  overflow: hidden;
}

.event-card.active {
  transform: scale(1.1);
  opacity: 1;
  z-index: 10;
}

.event-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.event-card:hover img {
  transform: scale(1.05);
}

.event-info {
  padding: 20px;
  text-align: center;
}

.event-info h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.event-info p {
  color: #475569;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
}

.read-more {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 25px;
  background: #012fa3;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.read-more:hover {
  background: #012fa3;
  color: #fff;
}

/* Navigation buttons */
.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.slider-nav button {
  pointer-events: all;
  background: rgba(8, 1, 52, 0.18);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
}

.slider-nav button:hover {
  background: #012fa3;
}

.slider-nav i {
  font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .event-card {
    flex: 0 0 260px;
    margin: 0 10px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .section-header p {
    font-size: 1rem;
    line-height: 1.6;
  }
  .event-card {
    flex: 0 0 220px;
    margin: 0 8px;
  }
  .event-card img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .event-card {
    flex: 0 0 180px;
  }
  .event-card img {
    height: 180px;
  }
}
/* ===================== Events Section Ends ===================== */

/* ===================== Why Choose Us Starts ===================== */
.why-choose-us {
  padding: 60px 20px;
  text-align: center;
  color: #333;
  background: #f3f6fa;
}

.why-choose-us h2 {
  font-size: 2rem;
  margin-bottom: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  color: #012fa3;
}

/* Features container */
.features {
  display: flex;
  justify-content: center;
  gap: 25px;
  max-width: 1400px;
  margin: 40px auto;
  flex-wrap: wrap;
}

/* Card styling */
.feature-card {
  background: linear-gradient(135deg, #ffffff, #4f6ef7);
  padding: 40px 25px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  width: calc(25% - 25px);
  min-height: 260px;
  cursor: pointer;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  z-index: 5;
}

.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.feature-card .icon {
  font-size: 3.2rem;
  margin-bottom: 18px;
  font-weight: bold;
  color: #000;
  transition: color 0.3s ease;
}

.feature-card:hover .icon {
  color: #04167c;
}

.feature-card h3 {
  margin-bottom: 15px;
  color: #333;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

/* ================= Description Container ================= */
.description-container {
  position: relative;
  max-width: 1200px;
  margin: 20px auto 0 auto;
  text-align: center;
  min-height: 120px;
  z-index: 10;
}

/* Arrow */
.feature-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #c4caf6;
  display: block;
  transition: left 0.3s ease, top 0.3s ease;
  z-index: 11;
}

/* Description box */
.feature-description {
  background: #c4caf6;
  padding: 25px 30px;
  border-radius: 15px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  min-width: 60%;
  text-align: left;
  margin: 0;
  transition: all 0.3s ease;
  z-index: 12;
}

.description-container #feature-description,
.description-container #feature-description p {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
  color: #333 !important;
  margin: 0 !important;
}

/* ===================== Tablet ===================== */
@media (max-width: 1024px) {
  .features {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .feature-card {
    width: calc(50% - 20px);
    margin-bottom: 20px;
  }
}

/* ===================== Mobile ===================== */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .feature-card {
    width: 90%;
    min-height: auto;
    padding: 25px 20px;
  }

  .feature-arrow {
    display: none; /* Hide arrow on mobile */
  }

  .feature-description {
    display: none;
    min-width: 100%;
    text-align: center;
    padding: 20px 15px;
    margin-top: 10px;
  }

  .feature-card.active .feature-description {
    display: block; /* Expand on tap */
  }
}
/* ===================== Why Choose Us Ends ===================== */




/* ==================== Upload CV Section Starts ==================== */
.upload-cv-section {
  padding: 80px 20px;
  background:#f3f6fa;
  font-family: 'Poppins', sans-serif;
}

.upload-cv-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.upload-cv-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 40px;
  background: #c4caf6;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}


/* Left Slider Column */
.cv-slider-container {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.cv-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: max-content;
}

.cv-slide {
  flex: 0 0 300px;
  position: relative;
  margin: 0 10px;
}

.cv-slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
}

.cv-name-overlay {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  background: rgba(74, 74, 74, 0.5);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 0;
  text-align: center;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.cv-slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.cv-slider-nav button {
  pointer-events: all;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.cv-slider-nav button:hover {
  background: #012fa3;
}

.cv-card-content {
  flex: 1;
  min-width: 300px;
}

.cv-card-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #012fa3;
  font-family: 'Poppins', sans-serif;
}

.cv-card-content .subheading {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  justify-content: center;
  color: #191919;
  font-family: 'Poppins', sans-serif;
}

.cv-card-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
}

.cv-card-content .cta-button {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 30px;
  background: #012fa3;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.cv-card-content .cta-button:hover {
  background: #78b0da;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
  .upload-cv-card {
    flex-direction: column;
  }
  .cv-slider-container, .cv-card-content {
    flex: 1 1 100%;
  }
}

@media (max-width: 576px) {
  .cv-slide img {
    height: 200px;
  }
  .cv-card-content h2 {
    font-size: 1.6rem;
  }
  .cv-card-content .subheading {
    font-size: 1rem;
  }
}
/* ==================== Upload CV Section Ends ==================== */

/* ========================= Job Seekers Section Starts ========== */
.featured-jobseekers {
  padding: 40px 20px 80px 20px;
  background: #f3f6f9;
  text-align: center;
  margin-top: -80px;
}

.featured-jobseekers h2 {
  font-size: 2rem;
  color: #012fa3;
  margin-bottom: 40px;
  font-family: 'Poppins', sans-serif;
}

.jobseekers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  
  gap: 30px;                               /* Bigger spacing = professional */
  max-width: 1600px;                       /* Expanded width */
  margin: 0 auto;
  padding: 0 10px;                         /* Reduce side padding to make cards wider */
}

.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  width: 100%;
  min-height: 650px; 
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card img {
  width: 100% !important;
  height: 350px !important;   /* increase this value to make the card taller */
  object-fit: contain !important;
  object-position: top !important;
}




.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.card-content {
  padding: 15px 20px;
  text-align: left;
}

.card-content h3 {
  margin: 0;
  font-size: 1.3rem;
  color: #012fa3;
}

.card-content .role,
.card-content .location {
  font-size: 1rem;
  font-weight: 500;
  color: #2b2b2c;
  margin-bottom: 10px;
}

.skills span {
  display: inline-block;
  background: #e0f0ff;
  color: #012fa3;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 0.75rem;
  margin: 3px 3px 3px 0;
}

.details span {
  display: block;
  font-size: 0.75rem;
  color: #2b2b2c;
  margin-top: 10px;
}

.card-content .bio {
  font-size: 0.85rem;
  color: #333;
  margin-bottom: 10px;
  height: 60px;       /* fixed height */
  overflow-y: auto;   /* vertical scroll */
  padding-right: 5px; /* prevent scrollbar overlap */
  scrollbar-width: thin;        /* Firefox */
  scrollbar-color: #2b2b2c #e0e0e0; /* thumb color / track color */
}

/* Optional: Webkit scrollbar for Chrome/Edge/Safari */
.card-content .bio::-webkit-scrollbar {
  width: 5px;
}

.card-content .bio::-webkit-scrollbar-thumb {
  background-color: #4f46e5;
  border-radius: 5px;
}

.card-content .bio::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 5px;
}


/* Media Queries for Responsiveness */

/* Tablets */
@media (max-width: 992px) {
  .jobseekers-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    gap: 20px;
    padding: 0 10px;
  }
  .card {
    width: 100%; /* let grid control width */
  }
  .card-content h3 {
    font-size: 1.1rem;
  }
  .card-content .bio {
    height: 50px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .jobseekers-grid {
    display: flex;
    flex-direction: column; /* stack cards vertically */
    align-items: center;
    gap: 20px;
    padding: 0 10px;
  }
  .card {
    width: 95%; /* nearly full width */
  }
  .card-content h3 {
    font-size: 1rem;
  }
  .card-content .bio {
    height: auto; /* allow full bio text to show */
  }
  .skills span {
    font-size: 0.7rem;
    padding: 2px 6px;
  }
  .details span {
    font-size: 0.7rem;
  }
}


/* ========================= Job Seekers Section Ends ==============*/


/* ===================== CTA Section Starts ===================== */
.cta-section {
  padding: 10px 5px;
  text-align: center;
  background: #f3f6f9;
  margin-top: 1.2px;
  position: relative;
  z-index: 1;
}


.cta-section .cta-content p {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: bold;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cta-btn {
    background: #012fa3;
    color:#fff;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: bold;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.cta-btn:hover {
    background: #78b0da;
    transform: translateY(-3px);
}

/* ===================== CTA Section Ends ===================== */


/* ==================== Client Reviews Section ==================== */
.reviews-section {
  background: #f9fafc;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-size: 2.2rem;
  color: #012fa3;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
  font-family: "Poppins", sans-serif;
}

.reviews-slider-container {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.reviews-slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.review-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  margin: 0 15px;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-profile img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #012fa3;
}

.review-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #012fa3;
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
}

.review-title {
  font-size: 1rem;
  color: #333;
  font-style: italic;
  margin-bottom: 4px;
}

.review-country {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
}

.review-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  max-width: 700px;
  font-family: "Poppins", sans-serif;
}

.reviews-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.review-prev,
.review-next {
  background: #012fa3;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.review-prev:hover,
.review-next:hover {
  background: #78b0da;
}

@media (max-width: 768px) {
  .review-card {
    padding: 30px 20px;
  }
  .review-text {
    font-size: 0.95rem;
  }
}




/* ==================== Careers Section ==================== */
.careers-openings {
  background: #fff; /* light blue background */
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.careers-openings .section-title {
  font-size: 2.2rem;
  color: #012fa3;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.careers-openings .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
  font-family: 'Poppins', sans-serif;
}

.careers-openings .openings-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  padding: 40px 30px;
  max-width: 800px;
  margin: 0 auto;
}

.careers-openings .openings-box h3 {
  font-size: 1.5rem;
  color: #012fa3;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.careers-openings .openings-box p {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 25px;
  font-family: 'Poppins', sans-serif;
}

.careers-openings .apply-btn {
  display: inline-block;
  background: #012fa3;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.careers-openings .apply-btn:hover {
  background: #78b0da;
}

/* Mobile responsive adjustments for Careers Openings */
@media (max-width: 768px) {
  .careers-openings .openings-box {
    padding: 30px 20px;       /* Adjust padding for smaller screens */
    margin: 0 10px;           /* Optional: adds a little horizontal spacing */
  }

  .careers-openings .openings-box h3 {
    font-size: 1.3rem;        /* Slightly smaller heading on mobile */
  }

  .careers-openings .openings-box p {
    font-size: 0.95rem;       /* Smaller paragraph text */
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;         /* Improve readability */
  }

  .careers-openings .openings-box .apply-btn {
    padding: 12px 20px;       /* Smaller button on mobile */
    font-size: 0.95rem;
  }
}


/* =====================  HOMEPAGE END =================== */



/* =====================  ABOUT US PAGE START =================== */

/* ===================== About Page Hero Section ===================== */
.about-hero {
    width: 100%;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    border-radius: 0 0 40px 40px;
    color: #fff;
    background: url('../images/Events/officemeeting.jpg') center/cover no-repeat;
}

/* Dark overlay with subtle blur */
.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1,36,68,0.5); /* grey fade */
    /* backdrop-filter: blur(2px); */
    z-index: 0;
    border-radius: 0 0 40px 40px;
}

/* Box containing heading, paragraph, and button */
.hero-content-box {
    position: relative;
    z-index: 1; /* above overlay */
    background: rgba(255, 255, 255, 0.15); /* semi-transparent */
    padding: 40px 50px;
    border-radius: 20px;
    max-width: 1400px;
    text-align: center;
}

/* Hero heading */
.hero-content-box h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

/* Hero paragraph */
.hero-content-box p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #fcf9f9;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
}

/* Hero button */
.hero-content-box .btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    background: #012fa3;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: background 0.3s, transform 0.3s;
}

.hero-content-box .btn:hover {
    background: #012fa3;
    transform: translateY(-3px);
}

/* ===================== Welcome Section =================== */
.about-welcome {
    background: #c4caf6;
    border-radius: 20px;
    padding: 60px 20px;
    max-width: 1500px;
    margin: 60px auto;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-welcome h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.1);
}

.about-welcome p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #333;
}

/* Side by side CTA boxes */
.cta-boxes {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap; /* makes them stack on smaller screens */
}

.cta-box {
    background: #e9e6e2;
    border-radius: 20px;
    padding: 30px 25px;
    flex: 1 1 300px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Buttons */
.about-btn {
    display: inline-block;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 5px 15px rgba(0,115,230,0.3);
    margin-bottom: 12px;
}

/* Employer button */
.employer-btn {
    background: #012fa3;
    color: #fff;
}
.employer-btn:hover {
    background: #012fa3;
    transform: translateY(-3px);
}

/* Job seeker button */
.job-btn {
    background: #012fa3;
    color: #fff;
}
.job-btn:hover {
    background: #012fa3;
    transform: translateY(-3px);
}

/* Descriptions */
.cta-desc {
    font-size: 0.90rem;
    color: #444;
    font-weight: 500;
    margin: 0;
}


/* ===================== Accordion Section =================== */
.accordion {
    max-width: 800px;
    margin: 40px auto 60px;
}

.accordion-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.accordion-header {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    background: #f1f1f1;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #e0e0e0;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #fff;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-body.active {
    padding: 15px 20px;
    max-height: 500px; /* enough height for content */
}
/* =====================  ABOUT US PAGE END  =================== */


/* =========================== ABOUT US DROPDOWNS PAGES START ===================== */

/* ===================== History Page  Start =================== */
/* ===================== History Intro Section =================== */

.history-hero {
    background: url('../images/Members/hero-leaders.jpg') no-repeat center center/cover;
    height: 70vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0;
    color: #fff;
}

/* Blue blur overlay */
.history-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 28, 42, 0.45); 
    /* backdrop-filter: blur(4px);  */
    z-index: 1;
}

/* Keep text above the overlay */
.history-hero * {
    position: relative;
    z-index: 2;
}

.history-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3); /* subtle overlay */
    z-index: 1;
}

.history-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 20px;
}

.history-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    color:#fff;
}

.history-hero p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}


.history-intro .intro-box p {
    background: #c4caf6;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* ===================== History Timeline Section =================== */
.history-timeline {
    max-width: 1200px;
    margin: 50px auto;
}

.history-timeline h2 {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #0419dc;
    margin-bottom: 30px;
}

.history-timeline p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #030404;
   
}

.history-timeline ul.timeline {
    list-style: none;
    padding: 0;
    position: relative;
}

.history-timeline ul.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    width: 3px;
    height: 100%;
    background: #0419dc;
}

.history-timeline ul.timeline li {
    position: relative;
    margin-bottom: 30px;
    padding-left: 50px;
}

.history-timeline ul.timeline li .year {
    position: absolute;
    left: -10px;
    top: 0;
    background: #0419dc;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.history-timeline ul.timeline li p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.timeline-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-card {
    background: #f8f9fb;
    padding: 25px 30px;
    border-left: 5px solid #0073e6;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.timeline-card .year {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0419dc;
    margin-bottom: 10px;
}

/* ===================== History Conclusion Section =================== */
.history-conclusion {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.history-conclusion .conclusion-box {
    background: #c4caf6;
    border-radius: 20px;
    padding: 50px 40px;
    color: #151515;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.history-conclusion .conclusion-box h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color:#0419dc;
}

.history-conclusion .conclusion-box p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
}

.history-conclusion .conclusion-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* ===================== HISTORY PAGE  END =================== */


/* ===================== CORE VALUES PAGE START ===================== */

/* ===================== Core Values Hero ===================== */
.core-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: url('../images/Solutions/solutions008.jpg') no-repeat center center/cover;
    overflow: hidden; 
}

/* Blue overlay with blur */
.core-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 10, 40, 0.5); 
    backdrop-filter: blur(2px);
    z-index: 1; 
}

/* Hero content */
.core-hero > * {
    position: relative;
    z-index: 2; 
}

.core-hero .hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.core-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}

.core-hero p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

/* ===================== Core Strategy Grid ===================== */
.core-strategy {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto;
}

/* Card styling */
.core-card {
    flex: 1 1 200px;
    background: #c4caf6;
    border-radius: 15px;
    padding: 40px 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
    overflow: hidden;
    transition: all 0.5s ease;
    height: 160px;
    position: relative;
}

/* Card icons and heading */
.core-card i,
.value-card i {
    font-size: 2rem;
    color: #0a99eb;  
    margin-bottom: 15px;
}

.core-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #0419dc;
    margin-bottom: 0;
}

/* Hide paragraph/list initially */
.core-card p,
.core-card ul {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

.core-card ul {
    padding-left: 20px;
    text-align: left;
}

.core-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}

/* Hover effect: expand card and reveal text */
.core-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    height: auto;
}

.core-card:hover p,
.core-card:hover ul {
    opacity: 1;
    transform: translateY(0);
    max-height: 1000px; 
    pointer-events: auto;
    margin-top: 15px;
}

/* ===================== What Drives Us Section ===================== */
.what-drives {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 30px;
    background: #c4caf6;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.what-drives h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #0419dc;
    margin-bottom: 20px;
}

.what-drives p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

/* ===================== Core Values Section ===================== */
.core-values {
    max-width: 1400px;
    margin: 60px auto;
    text-align: center;
}

.core-values h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #0419dc;
    margin-bottom: 40px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: #c4caf6;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.value-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0419dc;
}

.value-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* ===================== CORE VALUES PAGE END ===================== */

/* ======================= Founder Message Section Start ======================= */
.founder-message {
  padding: 60px 20px;
  background: #fdfdfd;
}

.founder-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.founder-image {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
}

.founder-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.founder-text {
  flex: 2 1 500px;
}

.founder-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #0419dc;
  margin-bottom: 10px;
}

.founder-text h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: #0419dc;
  margin-bottom: 25px;
  font-weight: 600;
}

.founder-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}

.founder-text .founder-quote {
  font-style: italic;
  font-weight: 500;
  color: #012444;
  margin-top: 20px;
  font-size: 1.2rem;
}

/* ======================= Founder Message Section End ======================= */



/* ========== Our  Approach Sections Starts ========== */

/* Hero */
.approach-hero {
  background: url('../images/Solutions/solution02.png') no-repeat center center/cover;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  color: #fff;
}

.approach-hero .hero-content {
  max-width: 800px;
}

.approach-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.approach-hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 300;
  color: #f1f1f1;
  font-family: 'Poppins', sans-serif;
}

/* Approach Steps */
.approach-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.step-card i {
  font-size: 2.5rem;
  color: #0073e6;
  margin-bottom: 15px;
}

.step-card h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color:#0056b3;
}

.step-card p {
  color: #444;
  font-size: 1rem;
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
}

.step-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.step-card i {
  font-size: 3rem;
  color: #0a99eb;
  margin-bottom: 20px;
  transition: color 0.4s ease;
}

.step-card:hover i {
  color: #0056b3;
}

.step-card h2 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.step-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}


/* ========== Our Approach Section Ends ========== */


/* ========== Leadership / Our Team  Page Starts ======================= */
/* Hero Section */
.team-hero {
   width: 100%;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    background: url('../images/Members/hero-leaders.jpg') center/cover no-repeat;
    color: #fff;
}

.team-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.hero-overlay {
  position: relative;
  z-index: 1;
}

.hero-overlay h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.hero-overlay p {
  font-size: 1.2rem;
  font-family: 'Poppins', sans-serif;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Section Title */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 50px;
  color: #0419dc;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin: 10px auto 0;
  background: #0419dc;
  border-radius: 2px;
}

/* Leadership Section */
.leadership {
  padding: 80px 20px;
  background: #f9fafc;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* Leadership Grid */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  justify-content: center;
}

/* Individual Leader Card */
.leader-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  min-height: 500px; 
  display: flex;
  flex-direction: column;

}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Leader Image Container */
 .leader-img {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

/* Leader Image */
/* Leader Card */
.leader-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Leader Image */
.leader-img {
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.leader-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Leader Info */
.leader-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.leader-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: #0419dc;
  font-family: 'Poppins', sans-serif;
}
.leader-info .position {
  font-size: 0.95rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

/* Bio hidden by default */
.leader-info .bio {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

/* Show bio on hover */
.leader-card:hover .leader-info .bio {
  max-height: 220px; /* enough to show full bio */
  opacity: 1;
  overflow-y: auto;     /* enable scroll if text exceeds the box */
  padding-right: 8px; 
}

/* Optional: prettier scrollbar */
.leader-info .bio::-webkit-scrollbar {
  width: 6px;
}
.leader-info .bio::-webkit-scrollbar-thumb {
  background: rgba(0,119,182,0.5);
  border-radius: 8px;
}
.leader-info .bio::-webkit-scrollbar-track {
  background: transparent;
}

/* Social Icons */
.leader-info .social-icons {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 15px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.leader-card:hover .social-icons {
  opacity: 1; 
}

.leader-info .social-icons a {
  color: #0419dc;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.leader-info .social-icons a:hover {
  color: #0419dc;
}

/* ========== Leadership / Our Team  Page Ends ========== */


/* ==================== Global  Network  Section Starts ==================== */

/* ============================== Global Network Section - Cards ============================== */
   .global-hero {
    width: 100%;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    background: url('../images/global/global3.jpg') center/cover no-repeat;
    color: #fff;
}

.global-network {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.global-network .region {
  margin-bottom: 60px;
}

.global-network h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0056b3;
  margin-bottom: 25px;
  text-align: left;
  border-bottom: 3px solid #0056b3;
  display: inline-block;
  padding-bottom: 5px;
  font-family: 'Poppins', sans-serif;
}

.countries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Country Card */
.country-card {
  background: #fff;
  border-radius: 30px; /* pill shape */
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.country-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.country-card .fi {
  font-size: 2rem; /* flag size */
  font-family: 'Poppins', sans-serif;
}

.country-card p {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  color: #222;
  font-family: 'Poppins', sans-serif;
}

.region {
  margin: 60px 0;
}

.region h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0d47a1;
  text-align: center;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); 
  gap: 20px;
  justify-items: center;
}

.country-card {
  width: 140px;
  height: 100px;
  background: #fff;
  border-radius: 20px; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding: 10px;
}

.country-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.country-card span {
  font-size: 2rem; /* flag icon size */
  margin-bottom: 6px;
  font-family: 'Poppins', sans-serif;
}

.country-card p {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

/* Placeholder "More" card */
.more-placeholder {
  background: #e0e0e0;
  color: #555;
  font-weight: 600;
  cursor: default;
}

/* ==================== Global  Network  Section Ends ==================== */

/* =========================== ABOUT US DROPDOWNS PAGES END ===================== */


/* =====================  SOLUTIONS PAGE START  =================== */

/* Hero for Solutions Page */
.solutions-hero {
background: 
  url('../images/Solutions/solutions01.jpeg') no-repeat center center/cover;
  height: 70vh; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.solutions-hero .hero-content {
  max-width: 850px;
}

.solutions-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #fff; 
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.solutions-hero p {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #fefafa;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}

/* Two Columns Section */
.solutions-columns {
    position: relative; 
    background: #fff;   
    padding: 60px 20px;
    overflow: hidden;   
}

/* Gradient fade to footer */
.solutions-columns::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px; 
    background: #fff;
    pointer-events: none;
    z-index: 1;
}

/* Solutions container above the gradient */
.solutions-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative; 
    z-index: 2;
}

.btn-cta {
  display: inline-block;
  margin-top: 20px;
  background-color: #0419dc; /* main brand blue */
  color: #fff;
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background-color: #0419dc; /* slightly darker blue */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(4, 25, 220, 0.3);
}

/* ==================== Solution Boxes ==================== */
.solutions-columns {
  padding: 50px 20px;
  background: #fff;
}

.solutions-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.solution-box {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 400px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.solution-box:hover {
  transform: translateY(-5px);
}

.solution-box h2 {
  font-size: 1.3rem;
  color: #0419dc;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.solution-box p {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.solution-box .btn {
  display: inline-block;
  background: #0419dc;
  color: #fff;
  padding: 8px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: background 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.solution-box .btn:hover {
  background: #0419dc;
}

/* ==================== Modal ==================== */
/* ===========================
   MODAL OVERLAY
=========================== */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
   background-color: rgba(0, 0, 0, 0.6) !important; /* semi-transparent black */
  backdrop-filter: blur(3px);
  transition: opacity 0.3s ease;
}

/* ===========================
   MODAL CONTENT BOX
=========================== */
.modal-content {
  background-color: #fff !important;
  color: #000 !important;
  margin: 5% auto;
  padding: 25px 30px;
  border-radius: 12px;
  width: 80%;
  max-width: 1000px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

/* ===========================
   TEXT STYLES
=========================== */
.modal-content h2 {
  color: #0419dc; 
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.modal-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #0419dc !important;
}

.modal-content p {
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Make strong text bold and elegant */
.modal-content strong {
  color: #0419dc;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.modal-content ul {
  margin-left: 20px;
  margin-bottom: 10px;
}

.modal-content ul li {
  margin-bottom: 6px;
}

.modal-content h2,
.modal-content h3,
.modal-content p,
.modal-content li {
  color: #000 !important;
  font-family: 'Poppins', sans-serif  !important;
}
/* ===========================
   CLOSE BUTTON
=========================== */
.close {
  color: #0419dc;
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #ff0000;
}

/* ===========================
   ANIMATIONS
=========================== */
@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */
@media (max-width: 768px) {
  .solutions-container {
    flex-direction: column;
    align-items: center;
  }

  .solution-box {
    width: 90%;
  }

  .modal-content {
    width: 90%;
    padding: 20px;
  }
}

/* ===================== Core Talent Acquisition Two-Column =================== */
.solution-content.two-column {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin: 0 auto;
    max-width: 1300px;
    background: #fff; 
    padding: 60px 20px;
    position: relative; 
    z-index: 1;
}

/* Left Column - Text */
.solution-text {
    flex: 1 1 500px;
}

.solution-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #0419dc;
    margin-bottom: 20px;
}

.solution-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
    color: #333;
}

/* Right Column - Image */
.solution-image {
    flex: 1 1 500px;
    display: flex;
    justify-content: center;
}

.solution-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

/* ===================== Blend Effect to Next Section =================== */
.solution-content.two-column::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px; 
    background: #fff;
}

/* =====================  SOLUTIONS PAGE END  =================== */


/* ======================== HIRING EXPERTISE PAGE STARTS =============================== */

/* ==================== Hero Section Starts ==================== */
.hiring-hero {
background: linear-gradient(rgba(0, 50, 120, 0.6), rgba(0, 50, 120, 0.6)),
  url('../images/Solutions/solutions01.jpeg') no-repeat center center/cover;
  height: 70vh; /* adjust height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  backdrop-filter: blur(4px); /* subtle blur effect */
}

.hiring-hero .hero-content {
  max-width: 800px;
  color: #1a1a1a;
}

.hiring-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 20px;
}

.hiring-hero p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #000;
  margin-bottom: 35px;
}

.hiring-hero .btn-cta {
  display: inline-block;
  background: #0149dc;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hiring-hero .btn-cta:hover {
  background: #0149dc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 90, 42, 0.3);
}

/* ==================== Hero Section End ==================== */

/* ==================== Discover Our Skills Section Starts ==================== */
.skills-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.skills-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.skills-image {
    flex: 1;
    min-width: 280px;
}

.skills-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.skills-content {
    flex: 1;
    min-width: 280px;
}

.skills-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #0149dc;
    font-family: 'Poppins', sans-serif;
}

.skills-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
    font-family: 'Poppins', sans-serif;
}

.skills-content .btn {
    background-color: #0149dc;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
    
}

.skills-content .btn:hover {
    background-color: #0149dc;
}
/* ==================== Discover Our Skills Section Ends ==================== */

/* ==================== Recruitment Areas Section Stars ==================== */
.recruitment-areas {
    padding: 80px 20px;
    background-color: #fff;
}

.recruitment-areas .section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #222;
    font-family: 'Poppins', sans-serif;
}

.recruitment-areas p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #222;
    font-family: 'Poppins', sans-serif;
    text-align: justify;
}

.recruitment-areas h3 {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #0419dc;
    font-family: 'Poppins', sans-serif;
}

.areas-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}
/* ==================== Recruitment Areas Section Ends ==================== */


/* ==================== Area Card Starts ==================== */
.area-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;  
    max-width: 400px;    
    margin: 20px;
}

/* Image + title + brief */
.area-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.area-content {
    padding: 15px;
}

/* Roles table hidden by default */
.roles-table {
    display: none;          
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.roles-table td {
    border: 1px solid #ddd;
    padding: 8px;
    background-color: #f7f7f7;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.roles-table td::before {
    content: "+ ";
    color: #000d7d;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}

/* Show table on hover and expand card */
.area-card:hover .roles-table {
    display: table;        
}


/* ==================== Responsive Adjustments ==================== */
@media (max-width: 900px) {
    .skills-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .skills-content {
        margin-bottom: 30px;
    }

    .area-card img {
        height: 180px;
    }
}

@media (max-width: 500px) {
    .skills-content h2 {
        font-size: 26px;
    }

    .recruitment-areas .section-title {
        font-size: 28px;
    }

    .area-content h3 {
        font-size: 20px;
    }
}

/*====================  Hiring Expertise Section ============================== */
.hiring-expertise {
  padding: 80px 20px;
  background-color: #f8f9fc;
  text-align: center;
}

/* Add a centered container */
.hiring-expertise .container {
  max-width: 1200px;
  margin: -80px auto 0; /* moves section up slightly and centers it */
  background: rgba(157, 173, 239, 0.85);
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  padding: 60px 40px;
}


/* Title styling */
.hiring-expertise h2 {
  font-size: 2rem;
  color: #0149dc;
  margin-bottom: 50px;
  font-family: 'Poppins', sans-serif;
}

/* Grid stays the same */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Card style */
.expertise-item {
  background: #cbcaca;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(4, 25, 220, 0.15);
}

/* Headings & text */
.expertise-item h3 {
  color: #0149dc;
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-family: 'Poppins', sans-serif;
}

.expertise-item p {
  color: #000;
  margin-bottom: 20px;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
}

/* Button */
.open-modal {
  background-color: #0149dc;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.open-modal:hover {
  background-color: #0149dc;
}

/* ===== MODAL BACKDROP ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
}

/* ===== MODAL BOX ===== */
.modal-content {
  background: #ffffff;
  margin: 5% auto;
  padding: 40px 30px;
  border-radius: 20px;
  width: 90%;
  max-width: 700px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  animation: fadeIn 0.4s ease;
}

/* Animation for smooth entry */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== CLOSE BUTTON ===== */
.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #0149dc; /* dark text for contrast */
  cursor: pointer;
  background: rgba(1, 36, 68, 0.2); /* slightly stronger background */
  padding: 6px 12px; /* a bit larger padding for clarity */
  border-radius: 50%;
  line-height: 1;
}



/* ===== TEXT INSIDE MODAL ===== */
.modal-content h3 {
  color: #0149dc;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.modal-content p,
.modal-content li {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.modal-content ul {
  text-align: left;
  padding-left: 20px;
}



/* ======================== HIRING EXPERTISE PAGE END =============================== */


/* ======================== JOB PAGE STARTS =============================== */

/* ==================== Jobs Section Container ==================== */

/* ==================== Job Filters Section ==================== */
.job-filters {
  max-width: 1200px;
  margin: 50px auto;
  background: #fff;
  padding: 35px 30px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.job-filters h2 {
  font-size: 24px;
  font-weight: 700;
  color: #012444;
  margin-bottom: 25px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.filters-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 25px;
}

/* ==================== Filter Cards ==================== */
.filter-card {
  background: #fff;
  padding: 20px 22px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.filter-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.filter-card label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0419dc;
  font-family: 'Poppins', sans-serif;
}

/* ==================== Inputs & Dropdowns ==================== */
.filter-card input,
.filter-card select {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  background: #fdfdfd;
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
  font-family: 'Poppins', sans-serif;
}

.filter-card input:focus,
.filter-card select:focus {
  border-color: #012444;
  box-shadow: 0 0 8px rgba(4,25,220,0.15);
}

/* Modern dropdown arrow */
.filter-card select {
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24"><path fill="%234419dc" d="M7 10l5 5 5-5H7z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  cursor: pointer;
}

/* ==================== Button Styling ==================== */
.filter-actions {
  grid-column: 1 / -1;
  text-align: center;
}

.apply-btn {
  background: #012444;
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease, transform 0.2s ease;
}

.apply-btn:hover {
  background: #012444;
  transform: translateY(-2px);
}

/* ==================== Jobs Page Wrapper ==================== */
.jobs-wrapper {
    max-width: 1200px;
    margin: 50px auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* ==================== Filter Sidebar ==================== */
.filter-sidebar {
    flex: 1 1 250px;
    background: #fff;
    padding: 25px 20px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-sidebar h3 {
    font-size: 20px;
    color: #012444;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-sidebar .filter-group {
    margin-bottom: 20px;
}

.filter-sidebar label {
    font-size: 14px;
    font-weight: 600;
    color: #0419dc;
    display: block;
    margin-bottom: 8px;
}

.filter-sidebar select,
.filter-sidebar input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    background: #fdfdfd;
    outline: none;
    transition: border 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.filter-sidebar select:focus,
.filter-sidebar input:focus {
    border-color: #012444;
    box-shadow: 0 0 8px rgba(4,25,220,0.15);
}

.filter-actions {
    text-align: center;
}

.apply-btn {
    background: #012444;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease, transform 0.2s ease;
}

.apply-btn:hover {
    background: #0419dc;
    transform: translateY(-2px);
}

/* ==================== Job Listings Column ==================== */
.job-listings {
    flex: 3 1 700px;
}

/* Job cards */
.job-card {
    background: #fff;
    border-radius: 14px;
    padding: 25px 20px;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border-left: 6px solid #0419dc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.job-title {
    font-size: 18px;
    font-weight: 700;
    color: #0419dc;
}

.job-status {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.job-status.open {
    background: #27ae60;
}

.job-status.closed {
    background: #e74c3c;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.job-description {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.job-footer {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-readmore,
.btn-apply {
    background: #0419dc;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-readmore:hover,
.btn-apply:hover {
    background: #0725a8;
    transform: translateY(-2px);
}

/* ==================== Loading / No Jobs Text ==================== */
.loading-text,
.no-jobs {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-top: 50px;
}

/* ==================== Responsive ==================== */
@media screen and (max-width: 992px) {
    .jobs-wrapper {
        flex-direction: column;
    }
    .filter-sidebar {
        position: relative;
        top: auto;
        margin-bottom: 30px;
    }
}

/* ======================== JOB PAGE ENDS =============================== */


/* =============== CONTACT PAGE REFINED =============== */

/* Hero Section */
.contact-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35vh;
  min-height: 180px;
  background-color: #012444;
  color: #fff;
  text-align: center;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 36, 68, 0.6);
  z-index: 1;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 1000px;
  font-family: 'Poppins', sans-serif;
}

.contact-hero-content h1 {
  font-size: 2.4rem;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}

.contact-hero-content p {
  font-size: 1.1rem;
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
}

@media (max-width: 768px) {
  .contact-hero-content h1 { font-size: 2rem; font-family: 'Poppins', sans-serif; }
  .contact-hero-content p { font-size: 0.95rem; font-family: 'Poppins', sans-serif; }
  
}


/* Info + Map + FAQ Container */
.info-map-faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .info-map-faq-container {
    grid-template-columns: 1fr;
    padding: 30px 15px;
  }
}

/* Left Column */
.left-column {
  display: flex;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
}

.left-column h2 {
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: #012fa3;
  font-family: 'Poppins', sans-serif;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  color: #020202;
  font-size: 1.2rem;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}

.contact-list li i {
  margin-right: 12px;
  color: #012fa3;
  font-size: 1.25rem;
  
}

.contact-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Poppins', sans-serif;
}

.contact-table td {
  padding: 12px 15px;
  font-size: 1.1rem;
  color: #020202;
  vertical-align: middle;
}

.contact-table td i {
  color: #012fa3;
  font-size: 1.4rem;
  margin-right: 12px;
}

.contact-table tr {
  border-bottom: 1px solid #e0e0e0;
}

.contact-table tr:last-child {
  border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-table td {
    font-size: 1rem;
    padding: 10px 12px;
  }

  .contact-table td i {
    font-size: 1.2rem;
  }
}


/* Responsive Map Container */
.map-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio, can be changed */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* FAQ Button */
.faq-btn {
  margin-top: 24px;
  padding: 12px 26px;
  background: #012fa3;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.15s;
  display: center;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
}

.faq-btn:hover {
  background: #012fa3;
  transform: translateY(-2px);
}

/* Right Column */
.right-column {
  display: flex;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
}

.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.action-btn {
  flex: 1 1 140px;
  padding: 12px 20px;
  border: 2px solid #012fa3;
  background: #fff;
  color: #012fa3;
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
  font-family: 'Poppins', sans-serif;
}

.action-btn:hover,
.action-btn.active {
  background: #012fa3;
  color: #fff;
}

.inquiry-form {
  background: #f8f9fb;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s, box-shadow 0.2s;
  font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #012fa3;
  box-shadow: 0 0 0 3px rgba(0, 115, 230, 0.2);
}

.form-group.full-width textarea {
  resize: vertical;
}

.submit-btn {
  padding: 14px 32px;
  background: #012fa3 !important;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
  background: #012fa3;
  transform: translateY(-1px);
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 9999; /* make sure it's high enough */
}

.modal-overlay.show {
  display: flex;
}


.modal-content {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 85%;
  overflow-y: auto;
  position: relative;
  outline: none;
  font-family: 'Poppins', sans-serif;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #012444;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.faq-body h3 {
  margin-top: 24px;
  font-size: 1.15rem;
  color: #012444;
  font-family: 'Poppins', sans-serif;
}

.faq-body p {
  margin-top: 8px;
  font-size: 0.97rem;
  color: #555;
  font-family: 'Poppins', sans-serif;
}

/* Focus / Accessibility */
.modal-close:focus,
.faq-btn:focus,
.action-btn:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: 3px solid #005bb5;
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .modal-content { padding: 24px; }
  .faq-body h3 { font-size: 1rem;  }
  .submit-btn { width: 100%; text-align: center; }
}

/* ======================== CONTACT PAGE STARTS =============================== */

/* ======================== TALENTS PAGE STARTS =============================== */
/* ===== Hero Section ===== */
.talents-hero {
  width: 100%;
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(rgba(0,50,120,0.6), rgba(0,50,120,0.6)),
   url('../images/global/global3.jpg') center/cover no-repeat;
  color: #fff;
  border-radius: 0 0 40px 40px;
  position: relative;
}

.hero-content-box {
  max-width: 1200px;
  padding: 40px 50px;
  border-radius: 20px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
}

.hero-content-box h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.hero-content-box p {
  font-size: 1.15rem;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}

/* =================== Talent Services Section =================== */
.talent-services {
    padding: 60px 20px;
    background: linear-gradient(#f4f7fb, #eef3f9);
}

.services-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.service-box {
    background: #fff;
    flex: 1;
    min-width: 250px;
    padding: 35px 25px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 12px 25px rgba(0,0,0,0.06);
    text-align: center;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #0419dc, #1e90ff);
}

.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service-box h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: #012444;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.service-box p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #444;
    font-family: 'Poppins', sans-serif;
}

.btn-service {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(90deg, #0419dc, #1e90ff);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-service:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .services-wrapper { justify-content: center; }
}

@media (max-width: 768px) {
    .services-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .service-box {
        width: 90%;
        margin-bottom: 20px;
    }
}

/* ===== Filter/Search ===== */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px auto;
  flex-wrap: wrap;
}

.filter-bar input, 
.filter-bar select, 
.filter-bar button {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #c5d0e1;
  font-size: 0.95rem;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.filter-bar button {
  background: #0077b6;
  color: #fff;
  border: none;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.filter-bar button:hover { 
  background: #005f8c; 
}

/* ===== Talent Grid ===== */
.talent-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  padding: 20px;
}
@media (max-width: 768px) { 
    .talent-grid { grid-template-columns: 1fr; } 
}

.talent-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: 0.3s ease;
}

.talent-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.talent-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #0419dc;
  margin-bottom: 15px;
}

.talent-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #012444;
  margin-bottom: 5px;
  font-family: 'Poppins', sans-serif;
}

.talent-card p {
  font-size: 0.95rem;
  color: #666;
  font-family: 'Poppins', sans-serif;
}

/* ===== Modal ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 25px 45px rgba(0,0,0,0.2);
}

.modal .close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 1.8rem;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

/* ===== CTA ===== */
.talent-cta {
  background: linear-gradient(90deg,#0419dc,#1e90ff);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  border-radius: 14px;
  margin: 50px 20px;
}

.talent-cta h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.talent-cta p {
  font-size: 1rem;
  margin-bottom: 20px;
  opacity: 0.9;
  font-family: 'Poppins', sans-serif;
}

.talent-cta .btn-cta {
  display: inline-block;
  padding: 14px 30px;
  background: #fff;
  color: #012444;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.3s;
}

.talent-cta .btn-cta:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-content {
    padding: 15px 20px;
}

.card-content h3.talent-name {
    color: #0419dc;
    margin-bottom: 5px;
}

.card-content .bio {
    font-size: 0.9rem;
    color: #555;
    margin: 10px 0;
}

.card-content .skills span {
    display: inline-block;
    background: #1e90ff;
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    margin: 3px 3px 0 0;
    font-size: 0.8rem;
}



/* ===== NEWS PAGE STYLING STARTS ===== */

/* Hero Slideshow */
.news-hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.slideshow-container {
  position: relative;
  height: 100%;
  background: linear-gradient(rgba(0, 50, 120, 0.6), rgba(0, 50, 120, 0.6));
}

.slide {
  display: none;
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.slide-caption {
  position: absolute;
  bottom: 20%;
  left: 5%;
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 20px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
}

.slide-caption h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.slide-caption p {
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
}

/* Dots */
.slide-dots {
  text-align: center;
  position: absolute;
  bottom: 15px;
  width: 100%;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  display: inline-block;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
}

.active-dot {
  background: #fff;
}

/* News Section */
.news-section {
  padding: 60px 20px;
  background: #f9fafc;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #003366;
  font-family: 'Poppins', sans-serif;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-content {
  padding: 20px;
}

.news-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #04167c;
  font-family: 'Poppins', sans-serif;
}

.news-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.news-date {
  font-size: 0.85rem;
  color: #999;
  font-family: 'Poppins', sans-serif;
}

.slide {
  display: none;
  height: 100%;
  position: relative;
}

.news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.btn-read-more {
  padding: 8px 15px;
  background: #0077cc;
  color: #fff;
  border-radius: 6px;
  text-decoration:none;
  font-size: 0.9rem;
  transition: 0.3s;
  font-family: 'Poppins', sans-serif;
}

.btn-read-more:hover {
  background: #005fa3;
}

/* ===== NEWS PAGE STYLING ENDS ===== */


/* ===== RESUME PAGE STYLING STARTS ===== */
/* ==================== Resume Upload Two-Column Layout ===================== */
.resume-upload-section {
  padding: 60px 20px;
  background-color: #fff;
}

.resume-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Left Column: Form */
.resume-left {
  flex: 1;
  min-width: 320px;
  background-color: #c4caf6;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.resume-left h2 {
  margin-bottom: 25px;
  font-size: 20px;
  color: #04167c;
  font-family: 'Poppins', sans-serif; 
}

.resume-left .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.resume-left label {
  margin-bottom: 5px;
  font-weight: 800;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.resume-left label .required {
  color: red;
  margin-left: 2px;
}

.resume-left input,
.resume-left textarea,
.resume-left select {
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 10px;
  outline: none;
  transition: 0.3s;
  font-family: 'Poppins', sans-serif;
}

.resume-left input:focus,
.resume-left textarea:focus,
.resume-left select:focus {
  border-color: #007BFF;
  box-shadow: 0 4px 8px rgba(0,123,255,0.1);
}

.resume-left small {
  margin-top: 5px;
  color: #666;
}

.submit-btn {
  padding: 14px 25px;
  background-color: #012444 ;
  color: #fff;
  border-radius: 10px;
  border: none;
  font-size: 12px;
  cursor: pointer;
  transition: 0.3s;
  font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
  background-color: #04167c ;
}

/* ===== Country & Phone Flags ===== */
.country-wrapper,
.phone-wrapper {
  display: flex;
  align-items: center;
  gap: 10px; /* space between flag and select/input */
}

.country-flag {
  width: 24px;    /* set a reasonable size */
  height: 16px;   /* maintain aspect ratio */
  object-fit: cover;
  border-radius: 2px;
}

/* Make select/input take remaining width */
.country-wrapper select,
.phone-wrapper select,
.phone-wrapper input {
  flex: 1;
  padding: 10px 12px;
  font-size: 12px;
}

/* Adjust for mobile */
@media (max-width: 600px) {
  .country-flag {
    width: 20px;
    height: 14px;
  }

  .country-wrapper select,
  .phone-wrapper select,
  .phone-wrapper input {
    font-size: 11px;
    padding: 8px 10px;
  }
}


/* Right Column: Info Boxes */
.resume-right {
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.resume-right h2 {
  margin-bottom: 25px;
  font-size: 20px;
  color: #04167c;
  font-family: 'Poppins', sans-serif; 
}

.resume-right .info-box {
  background-color: #c4caf6;
  padding: 25px 30px;
  border-radius: 0px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.resume-right .info-box p {
  font-size: 12px;
  line-height: 1.7;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.resume-right .resume-right-image {
  text-align: center;
  margin-top: 10px;
}

.resume-right .resume-right-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .resume-container {
    flex-direction: column;
    gap: 40px;
  }
  .phone-wrapper {
    flex-direction: column;
  }
}

/* === Upload Box === */
.upload-box {
  position: relative;
}

.custom-file-input {
  position: relative;
  border: 2px dashed #007BFF;
  border-radius: 15px;
  padding: 40px 20px;
  text-align: center;
  background-color: #f8faff;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}

.custom-file-input:hover {
  background-color: #eaf2ff;
  border-color: #0056b3;
}

.custom-file-input input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.custom-file-input i {
  font-size: 32px;
  color: #007BFF;
  margin-bottom: 10px;
  display: block;
}

.upload-text {
  font-size: 13px;
  color: #007BFF;
  font-weight: 500;
}

/* Custom dropdown wrapper */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-wrapper select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ccc;
  border-radius: 12px;
  font-size: 10px;
  outline: none;
  appearance: none; /* remove default arrow */
  background-color: #f9f9f9;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

/* Hover & focus */
.custom-select-wrapper select:hover {
  border-color: #007BFF;
  background-color: #fff;
}

.custom-select-wrapper select:focus {
  border-color: #007BFF;
  box-shadow: 0 4px 8px rgba(0,123,255,0.2);
}

/* Custom arrow */
.custom-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 16px;
  color: #555;
  font-family: 'Poppins', sans-serif;
}

/* Optional: smooth transition for options when hovering */
.custom-select-wrapper select option {
  padding: 10px;
}


/* ==================== Overlay Loader ===================== */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #012444;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ==================== Success Popup ===================== */
.success-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.success-content {
  background: #fff;
  border-radius: 20px;
  padding: 40px 60px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: popIn 0.5s ease forwards;
}

.success-content i {
  font-size: 50px;
  color: #28a745;
  margin-bottom: 15px;
}

.success-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  color: #012444;
  margin-bottom: 8px;
}

.success-content p {
  color: #444;
  font-size: 14px;
}

@keyframes popIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ==================== File Upload Animation ===================== */
.custom-file-input.selected {
  animation: filePop 0.4s ease;
  background-color: rgba(0, 123, 255, 0.05);
  border-color: #28a745;
}

@keyframes filePop {
  0% { transform: scale(0.98); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}


/* ===== REESUME PAGE STYLING ENDS ===== */

/* ================================
   CAREERS PAGE STYLING
   ================================ */

/* ---------- HERO SECTION ---------- */
.careers-hero {
    width: 100%;
    padding: 120px 20px;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                url('/images/office-team.jpg'); /* Replace with your hero image */
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}

.careers-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.careers-hero-content p {
    font-size: 18px;
    opacity: .9;
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

/* ---------- SECTION BASICS ---------- */
.careers-intro,
.careers-values,
.careers-culture,
.careers-openings {
    padding: 70px 20px;
    max-width: 1400px;
    margin: auto;
    text-align: center;
}

.careers-intro h2,
.careers-values h2,
.careers-culture h2,
.careers-openings h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.careers-intro p,
.careers-culture p,
.careers-openings p {
    font-size: 17px;
    color: #444;
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.7;
}

/* ---------- VALUES GRID ---------- */
.values-grid {
    margin-top: 40px;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.value-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.value-card i {
    font-size: 40px;
    color: #0056ff;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.value-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.value-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.10);
}

/* ---------- CULTURE LIST ---------- */
.culture-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.culture-list li {
    background: #f1f5ff;
    margin: 10px 0;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    border-left: 4px solid #0056ff;
}

.careers-row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin: 60px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.careers-row section {
    flex: 1;
    background: #f8f8f8;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* Headings */
.careers-row h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #333;
}

/* Culture list styling */
.culture-list {
    margin-top: 15px;
    padding-left: 20px;
}

.culture-list li {
    margin-bottom: 8px;
    font-size: 16px;
}

/* Responsive: stack on mobile */
@media(max-width: 768px) {
    .careers-row {
        flex-direction: column;
    }
}

/* ---------- OPENINGS BOX ---------- */
.openings-box {
    background: #ffffff;
    padding: 35px;
    margin-top: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 22px rgba(0,0,0,0.08);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.openings-box h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.openings-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* ---------- BUTTONS ---------- */
.apply-btn,
.cta-btn {
    display: inline-block;
    background: #0056ff;
    color: #fff;
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 8px;
    margin-top: 20px;
    text-decoration: none;
    transition: 0.3s ease;
}

.apply-btn:hover,
.cta-btn:hover {
    background: #003fba;
}

/* ---------- CTA SECTION ---------- */
.careers-cta {
    padding: 80px 20px;
    background: #0056ff;
    color: #fff;
    text-align: center;
}

.careers-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.careers-cta p {
    font-size: 18px;
    opacity: 0.9;
}

/* ==================== Careers Preview Section ==================== */
/* ==================== Careers Listing ==================== */
.careers-listing {
    background: #f9fafc;
    padding: 70px 20px; /* aligned with other sections */
    font-family: 'Poppins', sans-serif;
    max-width: 1100px;
    margin: 0 auto;
}

.careers-listing .section-title {
    font-size: 34px; /* consistent with other section titles */
    color: #012fa3;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.careers-listing .section-subtitle {
    font-size: 17px; /* consistent with section paragraphs */
    color: #555;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Poppins', sans-serif;
}

/* Career Card Container */
.career-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 22px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.career-row {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.career-card.reverse .career-row {
    flex-direction: row-reverse;
}

.career-image {
    flex: 1;
    min-width: 280px;
}

.career-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    object-fit: cover;
}

.career-info {
    flex: 2;
    min-width: 300px;
}

.career-info h3 {
    font-size: 26px;
    color: #012fa3;
    margin-bottom: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.career-info p {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
}

.apply-btn {
    display: inline-block;
    background: #0056ff; /* consistent with CTA buttons */
    color: #fff;
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.apply-btn:hover {
    background: #003fba;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .career-row, .career-card.reverse .career-row {
        flex-direction: column;
        text-align: center;
    }
    .career-info {
        margin-top: 20px;
    }
    .career-image img {
        max-width: 100%;
        height: auto;
    }
}

/* Background overlay */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
  overflow-y: auto;   /* allows scrolling on small screens */
  padding: 10px;      /* prevents modal from touching screen edges */
}

/* Modal content container */
.modal-content {
  background: #fff;
  padding: 0;
  border-radius: 12px;
  width: 100%;
  max-width: 650px;
  max-height: 90vh;   /* keeps modal inside screen height */
  overflow-y: auto;   /* scroll if content is too tall */
  animation: fadeIn 0.3s ease-in-out;
  position: relative;
}

/* Poster image */
.modal-content img {
  width: 100%;
  height: auto;
  object-fit: contain; /* shows full image without cutting */
  display: block;
}

/* Close button */
.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  z-index: 9999;
}

/* Fade animation */
@keyframes fadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Responsive for extra-small devices */
@media(max-width: 480px){
  .modal-content {
    width: 100%;
    max-width: 100%;
    max-height: 95vh;
    border-radius: 8px;
  }

  .close {
    font-size: 24px;
    top: 8px;
    right: 8px;
  }
}


/* ===================== FOOTER STARTS ===================== */
footer {
  background: #000006f1;
  color: white;
  padding: 50px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

/* Force 5 columns on desktops */
@media (min-width: 1400px) {
  .footer-container {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1600px;
  }
}

.footer-column h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #00aaff;
  font-family: 'Poppins', sans-serif;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.footer-column ul li a:hover {
  color: #fff;
}

/* Social icons */
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.2rem;
  color: #fff;
  transition: color 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.social-icons a:hover {
  color: #00aaff;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
}

.footer-bottom ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: 'Poppins', sans-serif;
}

.footer-bottom ul li a {
  color: #bbb;
  font-size: 0.85rem;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}

.footer-bottom ul li a:hover {
  color: #fff;
}

/* Contact Us column tweaks */
.footer-column p {
  display: flex;
  align-items: center;
  margin: 8px 0;
  font-family: 'Poppins', sans-serif;
}

.footer-column p i {
  margin-right: 10px;
  font-size: 16px;
  color: #fbfafc; 
}

.footer-column p  {
  margin-right: 10px;
  font-size: 1.6;
  color: #fff; 
  font-family: 'Poppins' sans-serif;
}

/* Social icons inside Contact Us */
.footer-column .social-icons {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

.footer-column .social-icons a {
  width: 32px;
  height: 32px;
  background: #222;
  color: #fafafc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.footer-column .social-icons a:hover {
  background: #fbfbfd;
  color: #111;
}

/* ===================== FOOTER ENDS ===================== */


.brief-role-form {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.form-container {
  max-width: 600px;
  width: 100%;
  background: #c4caf6;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.form-container h1 {
  font-size: 1.8rem;
  color: #0419dc;
  margin-bottom: 15px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.form-container p {
  font-size: 1rem;
  color: #555;
  text-align: center;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
}

.form-container label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  color: #000000;
  font-family: 'Poppins', sans-serif;
}

.form-container input,
.form-container select,
.form-container textarea {
  width: 100%;
  padding: 10px 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
}

.form-container button.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg, #0419dc, #1e90ff);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  font-family: 'Poppins', sans-serif;
}

.form-container button.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  background: linear-gradient(90deg, #0026a0, #1c7cff);
}


