
body {
  background-color: #f8f9fa;
  color: #343a40;
}


/* Compact Card Styling */
.compact-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  text-decoration: none;
  background-color: #ffffff;

}

.compact-card a {
  text-decoration: none;

}
.compact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

/* Header Styling */
.compact-card header {
  margin-bottom: 0.5rem;
}
.metadata-card{
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0px 2px 4px rgba(172, 171, 171, 0.1);
  

}

.job-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0;
  color: #343a40;
}

.homepage-jobs h5 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  color: #343a40;
}

.job-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.job-title a:hover {
  text-decoration: underline;
  color: #007bff;
}

.job-type {
  font-size: 1rem;
}

.Content_details{
  font-size:16px;
  display:flex;
  flex-wrap:wrap;
  text-align:right;  /* Align the text to the right */
  margin-left:auto;
}
.Content_details > *{margin:4px;}



/* Metadata Section Styling */
.job-metadata {
  font-size: 1rem;
  display:flex;
  flex-wrap:wrap;
  color:#6c757d;
  margin-top:0%;
  gap:0.5rem;
}

.job-metadata > p {
  margin:0; /* Remove default margins */
  padding:2px 0; /* Add slight padding to each line */
}

.job-categories {
  font-size: medium;
  color: #343a40;
}

.job-categories a {
  font-size: 16px;
  color: #6c757d; /* Distinct color for links */
  transition: background-color 0.3s, color 0.3s;
}

.job-categories a:hover {
  background-color: #f8f9fa;
  color: #007bff;
}

.job-metadata span {
  white-space: nowrap;
  font-size: medium;
}

.job-company {
  font-weight: bold;
  color: #343a40;
}

.job-logo {
  margin: 20px;
}
/* Hidden Metadata Styling */
.hidden-metadata {
  display:flex;
  flex-wrap:wrap;
  margin-top:0px; /* Reduced spacing between visible and hidden metadata */
  color:#6c757d;
  gap:0.5rem;
}

.hidden-metadata > p {
  margin:0;
  padding:2px 0;
}

/* For larger screens (desktop) */
@media (min-width: 768px) {
  .hidden-metadata {
    font-size: 0.95rem;
  }

  .read-more {
    display: none;
  }
}

/* For smaller screens (mobile) */
@media (max-width: 768px) {
  .hidden-metadata {
    display: none;
  }

  .hidden-metadata.visible {
    display: block;
  }

  .read-more {
    display: inline-block;
  }
}

.read-more {
  font-size: 0.95rem;
  color: #007bff;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: right;
  margin-top: 5px; /* Slight spacing above the toggle button */
  transition: color 0.3s ease;
}

.read-more:hover {
  text-decoration: underline;
  color: #6c757d;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .job-metadata {
    flex-direction: column;
  }
}

/* Hero Section Styling */
.hero {
  padding: 3rem 0; /* Adjust padding for content spacing */
  position: relative;
  color: #ffffff;
  background: linear-gradient(135deg, #007bff, #0056b3);
}


/* Ensure content appears above the overlay */
.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Title Styling */
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

/* Subtitle Styling */
.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.skills-section {
  margin-bottom: 4rem;
}
.skills-content-grid {
  display:flex;
  flex-wrap:wrap;
  margin:-10px;
  text-align:center;
}
.skills-content-grid .compact-card {
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  padding-top:40px;
  background-color:#ffffff;
  border:1px solid #ddd;
  border-radius:12px;
  box-shadow:0 2px 4px rgba(0,0,0,0.1);
  transition:transform 0.2s ease, box-shadow 0.2s ease;
  text-align:center;
  flex:1 1 calc(33.333% - 20px);
  margin:10px;
}
.skills-content-grid .compact-card p {
  margin:0; /* Remove margin from paragraph for tighter spacing */
}

.skills-content-grid .compact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width:1024px){
  .skills-content-grid .compact-card{flex:1 1 calc(50% - 20px);}
}
@media (max-width:768px){
  .skills-content-grid .compact-card{flex:1 1 100%; margin:10px 0;}
}

/* Basic Carousel Styles */
.carousel {
  background-image: url('/images/hero.png'); /* Background image path */
  background-size: cover; /* Ensures the image covers the entire container */
  background-position: center center; /* Centers the image */
  width: 100%;
  min-height: 50vh; /* Ensure hero takes at least half the viewport height */
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Optional: Text styles within the carousel */
.carousel h1 {
  color: #343a40; /* Make sure the text is visible on the background */
  font-size: 2rem;
  text-shadow: 2px 2px 5px rgba(70, 70, 70, 0.5);
  padding-top: 80px;
   /* Adds a shadow to make text stand out */
}

/* Space between carousel text and buttons */
.carousel p {
  margin-bottom: 20px;
}

/* Optional: Button inside the carousel */
.carousel .btn {

  padding: 10px 20px;
  background-color: #007bff; /* Semi-transparent background for better contrast */
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.carousel .btn:hover {
  background-color: #6c757d; /* Darkens the background on hover */
}



.show{
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #007bff; /* Semi-transparent background for better contrast */
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s;

}
.show:hover {
  background-color: #6c757d; /* Darkens the background on hover */
}

/* Responsive hero typography and spacing */
@media (max-width: 768px) {
  .carousel {
    padding: 2rem 1rem;
  }

  .carousel h1 {
    font-size: 1.75rem;
    padding-top: 0;
    margin-bottom: 1rem;
  }

  .carousel .btn,
  .show {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

@media (min-width: 769px) {
  .carousel {
    padding: 4rem 2rem;
  }

  .carousel h1 {
    font-size: 3rem;
  }
}
.features {
  text-align: center;
  padding: 50px 30px;
  background-color: #f8f9fa;
}

.features h2 {
  margin-bottom: 30px;
  font-size: 1.8rem;
  color: #343a40;
}

.features-container {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  margin:-10px;
}
.features-container > * {margin:10px;}

.feature-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  width: 280px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}




.feature-card img {
  width: 24px;
  height: 24px;
  
}

.feature-card img.edu-icon {
  width: 32px;
  height:32px;
  
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #343a40;
}

.feature-card p {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
}


.homepage-jobs {
    text-align: center;
    padding: 50px 30px;
}

.jobs-container {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    margin:-0.5rem;
    text-decoration:none;
}
.jobs-container > *{margin:0.5rem;}

/* Styling for the FAQ Section */
.faq-section {
  padding: 50px 30px;
  background-color: #f8f9fa;

}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: right;
  color: #343a40;
}

/* Styling the Accordion */
.accordion {
  display: flex;
  flex-direction: column;
}

.accordion-item {
  border-bottom: 2px solid #ddd;
  overflow: hidden;
  text-align: right;
}

.accordion-header {
  background-color: #ffffff;
  color: #343a40;
  text-align: right;
  padding: 1rem;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: #f8f9fa;
  color: #007bff;
}

.accordion-content {
  background-color: #ffffff;
  padding: 1rem;
  display: none;
  font-size: 1rem;
  color: #343a40;
}

/* Active accordion item */
.accordion-item.active .accordion-content {
  display: block;
  
}

/* Smooth transition for expanding/collapsing content */
.accordion-header:after {
  content: '▼';
  float: left;
  font-size:x-small;
}

.accordion-item.active .accordion-header:after {
  content: '▲';
}


footer {

 /* Basic dimensions and centering */

 color: #ffffff;
 /* Dark mode colors and gradient */
 background: #343a40; /* Fallback for browsers that don't support gradients */
}  
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: medium;
  color: #ffffff;
}

footer h6 {
  font-size:1.25rem;
}

.footer-container div {
 margin: 10px;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 10px;
  border-radius: 80px;
  
  

}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 5px 0;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size:1rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-social a {
  margin-right: 10px;
  color: #ffffff;
  text-decoration: none;
  font-size:1rem;
}

.facebook:hover {
  color: #0443f0;
}

.pinterest:hover {
  color: #f00418;
}
.instagram:hover {
  color: #eb00b0;
}
.x:hover {
  color: #000000;
}
.telegram:hover {
  color: #1e97fa;
}
.footer-bottom {
  font-size:medium;
  text-align: center;
  margin-top: 20px;
  padding-top: 10px;
  color: #ffffff;
}

.footer-bottom p {
  margin:0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    padding: 2rem 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

.content {
  margin-top: 2rem;


}

.breadcrumbs {
  margin:1rem 0;
  font-size:0.9rem;
  color:#6c757d;
}

.breadcrumbs a {
  color:#007bff;
  text-decoration:none;
}

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

.breadcrumbs ol {
  display: flex; /* Ensures horizontal alignment */
  align-items: center; /* Aligns items vertically */
  list-style: none; /* Removes bullet points */
  padding: 0;
  margin: 0;
}

.breadcrumbs li {
  margin: 0;
  padding: 0;
}

.breadcrumbs li::after {
  content: "›";
  margin: 0 0.5rem; /* Standard spacing for desktop */
  color: #aaa;
}

.breadcrumbs li:last-child::after {
  content: ""; /* Removes the separator for the last item */
}

.breadcrumbs li.titlebread{
  margin: 0;
  padding: 0;
}
/* Responsive design for phones */
@media (max-width: 368px) {
  .breadcrumbs ol {
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
  
  }

  .breadcrumbs li {
    font-size: 0.8rem; /* Adjust font size for smaller screens */
  }


}

.breadtitle{
  padding: 0;
  margin: 0;
}


/* General Navbar Styling */
.navbar {
  padding: 1rem;
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Centered Logo */
.centered-header .logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  text-align: right;
  display: flex;
  justify-content: flex-start;
}


.site-logo {
  max-height: 100px; /* Adjust logo size */
  height: auto;
  transition: transform 0.3s ease;
}


/* Menu Container */
.menu-container {
  position: relative;
  background-color: #ffffff;
  border: #ddd solid 2px;
  border-left: 0;
  border-right: 0;
}

/* Hamburger Menu */
.menu-toggle {
  display: none; /* Hidden by default for large screens */
  font-size: 24px;
  background: none;
  border: none;
  color: #6c757d;
  cursor: pointer;
  padding: 10px;
  margin: 10px;
}

/* Main Menu */
.main-menu {
  list-style:none;
  padding:0;
  display:flex; /* Default horizontal layout */
  justify-content:center;
}

.main-menu li {
  position:relative;
  margin-left:15px;
}
.main-menu li:first-child {margin-left:0;}

.main-menu a {
  text-decoration:none;
  color:#343a40;
  font-size:18px;
  padding:5px 10px;
  transition:color 0.3s;
}

.main-menu a:hover {
  color: #007bff;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block; /* Show hamburger menu on small screens */
  }

  .main-menu {
    display:none; /* Hide menu by default */
    flex-direction:column;
    background-color:#ffffff;
    text-align:center;
    position:absolute;
    top:60px;
    right:10px;
    width:99%;
    z-index:1000;
    border:#aaa solid 1px;
    border-radius:6px;
  }

  .main-menu.active {
    display: flex; /* Show menu when active */
    
  }

  .main-menu li {margin:0;}
  .main-menu a {
    font-size:18px;
    padding:10px;
  }
}