:root {
  --primary-color: #00B0FF;  /* Vivid Sky Blue */
  --secondary-color: #212121;  /* Charcoal Black */
  --accent-color: #F50057;  /* Vibrant Pink */
  --bg-light: #FAFAFA;  /* Soft White */
  --bg-white: #ffffff;  /* White */
  --text-color: #333333;  /* Dark Gray */
  --heading-font: "Poppins", sans-serif;
  --body-font: "Poppins", sans-serif;
}


body {
  font-family: var(--body-font);
  line-height: 1.7;
  margin: 0;
  padding: 0;
  background-color: var(--bg-light);
  color: var(--text-color);
  scroll-behavior: smooth;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

/* --- NEW: Navigation Bar --- */
.navbar {
  background: var(--secondary-color);
  color: var(--bg-white);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 70px;
}
.nav-logo {
  font-size: 1.5em;
  font-weight: 700;
  color: var(--bg-white);
  text-decoration: none;
}
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item {
  position: relative;
}
.nav-link {
  color: var(--bg-white);
  text-decoration: none;
  padding: 25px 20px;
  display: block;
  transition: background-color 0.3s;
}
.nav-item:hover > .nav-link {
  background-color: var(--primary-color);
}

/* Dropdown Styles */
.dropdown {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--secondary-color);
  border-radius: 0 0 5px 5px;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  display: none; /* Hidden by default */
}
.nav-item:hover .dropdown {
  display: block; /* Show on hover */
}
.dropdown li a {
  padding: 12px 20px;
  display: block;
  color: var(--bg-white);
  text-decoration: none;
  transition: background-color 0.3s;
}
.dropdown li a:hover {
  background-color: var(--primary-color);
}

/* Hamburger Menu for Mobile */
.hamburger {
  display: none;
  cursor: pointer;
  font-size: 2em;
}

/* --- Header & Hero Section --- */
.hero {
  background: #566472;
  color: var(--bg-white);
  padding: 30px 20px;
  text-align: center;
}
.hero h1 {
  font-family: var(--heading-font);
  font-size: 3em;
  margin-bottom: 10px;
  font-weight: 700;
}
.hero p {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 30px;
}
.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 15px 35px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1.1em;
}
.cta-button:hover {
  background-color: #2980b9;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* --- General Section Styling --- */
section {
  padding: 15px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 15px;
}
.section-title h2 {
  font-family: var(--heading-font);
  font-size: 2.5em;
  color: var(--secondary-color);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  margin-top: 10px;
}
.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.service-card {
  background: var(--bg-white);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}
.service-card ul{
  text-align: left;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.12);
}
.service-card .icon {
  font-size: 3em;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.service-card h3 {
  font-family: var(--heading-font);
  color: var(--secondary-color);
  margin-bottom: 10px;
}

/* Hire Talent additions */
.testimonial {
  background: var(--bg-white);
  padding: 18px 22px;
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  margin: 18px 0;
}
.testimonial blockquote {
  margin: 0 0 8px 0;
  font-style: italic;
  color: #0f2b3a;
}
.testimonial cite {
  font-size: 0.95rem;
  color: #666;
}

.why-choose {
  margin-top: 18px;
}
.why-choose ul {
  list-style: disc;
  margin-left: 18px;
  color: #444;
}

.process-and-form {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: start;
  margin-top: 20px;
}
.process-block .process-steps {
  padding-left: 18px;
}
.process-steps li {
  margin-bottom: 10px;
}
.form-block .contact-form {
  padding: 18px;
}

.faq {
  margin-top: 20px;
}
.faq-item {
  margin-bottom: 12px;
}
.faq-item details summary {
  cursor: pointer;
  font-weight: 600;
}

@media (max-width: 992px) {
  .process-and-form {
    grid-template-columns: 1fr;
  }
}

/* --- Track Record Section --- */
#track-record {
  background-color: var(--secondary-color);
  color: var(--bg-white);
}
#track-record .section-title h2 {
  color: var(--bg-white);
}
.track-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
}
.stat-item .number {
  font-size: 3em;
  font-weight: 700;
  color: var(--primary-color);
}
.stat-item .label {
  font-size: 1.1em;
  margin-top: 5px;
}


/* --- Industries Section --- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  text-align: center;
}
.industry-item {
  background: var(--bg-white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-weight: 600;
}
.industry-item .icon {
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* --- Latest Features Section --- */
#features {
  background-color: var(--bg-white);
}
.feature-list .feature-item {
  margin-bottom: 15px;
}
.feature-list h4 {
  color: var(--secondary-color);
  margin-bottom: 5px;
}

/* --- Portfolio Section --- */
.project-card {
  background: var(--bg-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.project-card .project-content {
  padding: 18px;
  flex: 1;
}
.project-card h4 {
  margin: 0 0 8px 0;
  color: var(--secondary-color);
}
.project-card p {
  margin: 0 0 12px 0;
  color: var(--text-color);
  font-size: 0.95em;
}
.project-card .project-tags {
  font-size: 0.85em;
  color: #777;
  margin-bottom: 12px;
}
.project-card .action-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.project-card .btn-link {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid transparent;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* --- Contact / CTA Form --- */
.contact-section {
  background: var(--bg-white);
  padding: 40px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-form {
  background: var(--bg-white);
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--secondary-color);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  margin-bottom: 14px;
  background: #fff;
}

.contact-form input,
.contact-form textarea {
  width: 92%;
}

.contact-form textarea {
  width: 97%;
  min-height: 150px;
  resize: vertical;
}
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-form .full {
  grid-column: 1 / -1;
}
.contact-form .cta-button {
  margin-top: 8px;
}

.success-message {
  background: #e6ffed;
  border: 1px solid #b9f2c7;
  color: #0b6b3a;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 12px;
}
.hidden {
  display: none !important;
}

.note {
  font-size: 0.95rem;
  color: #666;
  margin-top: 20px;
}

/* Focus states for accessible inputs */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(16, 42, 54, 0.06);
}

.contact-info {
  background: linear-gradient(135deg, #071826, #566472);
  color: var(--bg-white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.contact-info h3 {
  margin-top: 0;
}
.contact-info a {
  color: #fff;
  text-decoration: underline;
}
.contact-info .social-links a {
  color: #fff;
  margin-right: 10px;
  text-decoration: none;
}
.contact-info .social-links {
  margin-top: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.contact-info .follow {
  margin-top: 12px;
}

.info-cards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.info-card {
  background: var(--bg-white);
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.office-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.office-card {
  background: var(--bg-white);
  padding: 14px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.office-card .muted {
  color: #666;
  margin-top: 6px;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-info {
    order: 2;
  }
  .contact-form {
    order: 1;
  }
  .contact-form .row {
    grid-template-columns: 1fr;
  }
  .cta-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding: 18px;
  }
  .contact-info {
    padding: 18px;
  }
  .info-card {
    padding: 14px;
  }
}

/* --- Footer Layout --- */
footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}
footer .footer-grid h4 {
  color: var(--bg-white);
  margin-bottom: 12px;
}
footer .footer-links a {
  display: block;
  color: #bbb;
  text-decoration: none;
  margin-bottom: 8px;
}
footer .social-icons a {
  margin-right: 10px;
  color: #bbb;
  text-decoration: none;
  font-size: 1.2em;
}

/* Adjust responsive rules */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- FAQ Section --- */
.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-white);
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  position: relative;
}
.faq-item summary {
  display: block;
  font-size: 1.1em;
  font-weight: 600;
  padding: 20px 48px 20px 20px;
  cursor: pointer;
  outline: none;
  color: var(--secondary-color);
  position: relative;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4em;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  top: 25%;
}
.faq-item div {
  padding: 0 20px 20px;
  border-top: 1px solid #eee;
}

/* --- CTA Section --- */
.cta-section {
  background-color: #212121;
  color: var(--bg-white);
  text-align: center;
  padding: 60px 20px;
}
.cta-section h2 {
  font-size: 2.2em;
  margin-bottom: 15px;
}

/* --- Footer --- */
footer {
  background-color: #222;
  color: #aaa;
  text-align: center;
  padding: 20px;
}
footer p {
  margin: 0;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    background-color: var(--secondary-color);
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-item {
    width: 100%;
  }
  .nav-link {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #444;
  }
  .hamburger {
    display: block;
  }
  .dropdown {
    position: static;
    display: none;
    width: 100%;
    background-color: #334a60;
  }
  .nav-item:hover .dropdown {
    display: none; /* Disable hover on mobile */
  }
  .nav-item.active .dropdown {
    display: block; /* Show on click */
  }

  .why-image {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5em;
  }
  .section-title h2 {
    font-size: 2em;
  }
}

section#hire-talent {
  background-color: #566472;
  color: white;
}
section#hire-talent h2 {
  color: white;
}

footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}
footer .footer-grid h4 {
  color: var(--bg-white);
  margin-bottom: 12px;
}
footer .footer-links a {
  display: block;
  color: #bbb;
  text-decoration: none;
  margin-bottom: 8px;
}
footer .social-icons a {
  margin-right: 10px;
  color: #bbb;
  text-decoration: none;
  font-size: 1.2em;
}

.faq.talent .faq-item p {
  padding: 0px 20px 20px 20px;
  margin-top: 0px;
}

/* Adjust responsive rules */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Portfolio styles */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 8px 0;
}
.filter-bar .filter {
  background: rgba(16, 42, 54, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}
.filter-bar .filter.active {
  background: var(--primary-color);
  color: #fff;
  border-color: rgba(0, 0, 0, 0.06);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 4 columns on larger screens */
  gap: 24px;
  margin-top: 35px;
}

@media (max-width: 800px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller screens */
  }
}

@media (max-width: 500px) {
  .portfolio-grid {
    grid-template-columns: 1fr; /* 1 column on very small screens */
  }
}



.project-card {
  background: var(--bg-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
  transition: all 0.18s ease;
}
.project-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.project-card h3 {
  margin: 12px 16px 4px;
}
.project-meta {
  color: #666;
  font-size: 0.92rem;
  margin: 0 16px 8px;
}
.project-card p {
  margin: 0 16px 12px;
  color: #333;
}
.project-tags {
  display: flex;
  gap: 8px;
  padding: 0 16px 12px;
}
.project-tags span {
  background: #f3f6f7;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #345;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Social icons & footer-contact */
.footer-contact .muted {
  color: #bbb;
  margin: 0 0 6px 0;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  align-items: center;
  justify-content: center;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: #bbb;
  transition: all 0.18s ease;
  text-decoration: none;
}
.social-icons a svg {
  width: 25px;
  height: 25px;
  display: block;
}
.social-icons a svg path {
  fill: currentColor;
}
.social-icons a:hover,
.social-icons a:focus {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  color: #fff;
}
.social-icons a.linkedin:hover {
  background: #0a66c2;
}
.social-icons a.facebook:hover {
  background: #1877f2;
}
.social-icons a.instagram:hover {
  background: #e4405f;
}

/* --- Careers / Jobs --- */
.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.job-card {
  background: var(--bg-white);
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.job-card h4 {
  margin: 6px 0;
  color: var(--secondary-color);
}
.job-card .meta {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.careers-form .resume {
  margin-top: 8px;
}
.careers-cta {
  text-align: center;
  margin-top: 18px;
}

@media (max-width: 992px) {
  .job-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Footer --- */
footer {
  background-color: #222;
  color: #aaa;
  text-align: center;
  padding: 20px;
}
footer p {
  margin: 0;
}

@media (max-width: 992px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    background-color: var(--secondary-color);
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-link {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #444;
  }
  .hamburger {
    display: block;
  }
  .cta, .cta-button {
    width: 80%;
    text-align: center;
    justify-self: center;
  }
}

/* Mobile specific styles */
@media screen and (max-width: 992px) {
  .hamburger {
    display: block; /* Show hamburger icon on mobile */
  }

  .nav-menu {
    display: none; /* Hide nav menu by default on mobile */
    flex-direction: column; /* Stack menu items vertically */
  }

  .nav-menu.active {
    display: flex; /* Show nav menu when 'active' class is added */
  }

  .dropdown {
    display: none; /* Hide dropdown by default */
  }

  .nav-item:hover .dropdown {
    display: block; /* Show dropdown when hovered (optional for desktop) */
  }

  /* Additional styles for the dropdown on mobile */
  .dropdown {
    flex-direction: column; /* Stack dropdown items */
  }
}


.navbar {
  position: relative;
  width: 100%;
  padding: 0px;
  z-index: 1000; /* Ensure navbar is above other elements */
}

.navbar.sticky {
  position: fixed;
  top: 0;  /* This will ensure it stays at the top */
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  padding: 0px 20px;
}


/* Style for the Load More button */
.load-more-container {
  text-align: center;
  margin-top: 30px;
}

#load-more {
  background-color: #3498db;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#load-more:hover {
  background-color: #0056b3;
}

.container p.lead.center-text {
	text-align: center;
}

.about-flow {
  background: var(--bg-white);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Home - Main container */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns per row */
  gap: 30px; /* space between the items */
  margin-top: 20px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.why-item .icon {
  font-size: 50px;
  margin-bottom: 10px;
}

.why-item h4 {
  font-size: 18px;
  margin: 10px 0;
}

.why-item p {
  font-size: 16px;
  color: #555;
}

@media (max-width: 768px) {
  /* Stack items into one column on smaller screens */
  .why-grid {
    grid-template-columns: 1fr;
  }
}
