/* --------------------------------------------------
   GLOBAL STYLES
-------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #f7f9fc;
  color: #1a1a1a;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

/* --------------------------------------------------
   NAVBAR
-------------------------------------------------- */
/* --------------------------------------------------
   NAVBAR STYLING
-------------------------------------------------- */

/* ---------- Navbar Base ---------- */
.navbar {
  width: 100%;
  background: #ffffff;
  padding: 15px 40px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Logo */
/* NAVBAR TEXT LOGO */
/* NAVBAR TEXT LOGO (CLICKABLE NOW) */
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none; /* removes underline */
}

.logo-text .sky {
  font-size: 35px;
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #005fff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Poppins", sans-serif;
}

.logo-text .sub {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  margin-top: 2px;
  letter-spacing: 0.5px;
  font-family: "Inter", sans-serif;
}

@media (max-width: 768px) {
  .logo-text .sky {
    font-size: 27px;
  }

  .logo-text .sub {
    font-size: 13px;
  }
}


/* ---------------------- Navigation Links ---------------------- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none !important;
}

.nav-links li {
  position: relative;
  list-style: none !important;
}

.nav-links a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  padding: 8px 5px;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #007bff;
}

/* ---------------------- Dropdown Styling ---------------------- */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0px);
}

.dropdown-menu {
  position: absolute;
  top: 30px;
  left: 0;
  background: #ffffff;
  min-width: 230px;
  border-radius: 10px;
  box-shadow: 0px 10px 25px rgba(0,0,0,0.12);
  padding: 12px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: 0.3s ease;
  list-style: none !important;
  z-index: 999;
}

.dropdown-menu li {
  list-style: none !important;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #333;
  font-size: 15px;
  transition: 0.25s ease;
}

.dropdown-menu a:hover {
  background: #f1f5ff;
  color: #007bff;
  padding-left: 25px;
}

/* Remove dots fully */
.nav-links,
.nav-links li,
.dropdown-menu,
.dropdown-menu li {
  list-style: none !important;
}

/* ---------------------- Hamburger Menu ---------------------- */
.menu-toggle {
  display: none;
  flex-direction: column;
  width: 28px;
  cursor: pointer;
  gap: 6px;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background: #084E8A;
  border-radius: 5px;
  transition: 0.3s ease;
}

/* Toggle Animation */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* ---------------------- Responsive Mobile Menu ---------------------- */
@media (max-width: 850px) {

  /* Show Hamburger */
  .menu-toggle {
    display: flex !important;
    z-index: 1001;
    position: relative;
  }

  /* Hide desktop nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 90px 30px;
    gap: 25px;
    transition: 0.4s ease;
    z-index: 1000;
  }

  /* When active show menu */
  .nav-links.active {
    right: 0;
  }

  /* Mobile text styling */
  .nav-links li a {
    font-size: 18px;
    color: #084E8A;
  }

  /* Dropdown inside mobile */
  .dropdown-menu {
    position: relative;
    background: none;
    box-shadow: none;
    padding: 0;
    margin-left: 18px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .dropdown-menu a {
    padding: 10px 0;
  }
}



/* --------------------------------------------------
   HERO SECTION
-------------------------------------------------- */
.hero {
  height: 100vh;
  background: url("images/banner.png") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 0px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
}

.hero-content p {
  margin: 20px 0 30px;
  font-size: 18px;
}

.cta-btn {
  padding: 12px 25px;
  background: #1a73e8;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #0f57b3;
}


/* --------------------------------------------------
   ABOUT SECTION
-------------------------------------------------- */
.about-section {
  padding: 80px 5%;
  font-family: "Inter", sans-serif;
  background: #f8fbff;
}

/* CONTAINER */
.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: nowrap; /* 🔥 Prevents content dropping */
}

/* LEFT IMAGES */
.about-images {
  position: relative;
  flex: 1;
  min-width: 0; /* 🔥 Critical for laptops */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.about-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
}

/* EXPERIENCE BADGE */
.experience-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #1a73e8;
  color: #fff;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(26, 115, 232, 0.4);
}

.experience-badge h3 {
  margin: 0;
  font-size: 32px;
}

.experience-badge p {
  margin: 0;
  font-size: 14px;
}

/* RIGHT CONTENT */
.about-content {
  flex: 1;
  min-width: 0; /* 🔥 Critical for laptops */
}

.about-content h2 {
  font-size: 36px;
  color: #0b2b5c;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

/* ===============================
   TABLET & MOBILE
================================ */
@media (max-width: 991px) {
  .about-container {
    flex-direction: column;
    gap: 40px;
  }

  .about-images {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .about-section {
    padding: 60px 4%;
  }

  .about-images {
    grid-template-columns: 1fr;
  }

  .about-images img {
    height: 180px;
  }

  .experience-badge {
    width: 90px;
    height: 90px;
  }

  .experience-badge h3 {
    font-size: 22px;
  }

  .experience-badge p {
    font-size: 13px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-content p {
    font-size: 15px;
  }
}



/* --------------------------------------------------
   SERVICES
-------------------------------------------------- */
/* -----------------------------------------
   Our Services Section
----------------------------------------- */
/* -----------------------------------------
   Our Services Section
----------------------------------------- */
.content {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.content h2 {
  font-size: 34px;
  font-weight: 800;
  color: #0A6ED1;  /* dark sky blue */
  margin-bottom: 10px;
}

.content p {
  font-size: 18px;
  color: #444;
  margin-bottom: 40px;
}

/* -----------------------------------------
   Services Grid (✔ Fully responsive grid)
----------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

/* -----------------------------------------
   Service Card (✔ Beautiful card layout)
   ✔ Rounded modern card design
   ✔ Dark sky-blue brand colors
   ✔ Smooth hover lift effect
----------------------------------------- */
.service-card {
  background: #ffffff;
  border-radius: 18px;  /* rounded */
  padding: 20px;
  text-decoration: none;
  color: #1A1A1A;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);  /* beautiful soft shadow */
  transition: all 0.35s ease;  /* smooth animation */
  border: 1px solid transparent;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-12px);   /* smooth hover lift effect */
  border-color: #0A6ED1;
  box-shadow: 0 18px 40px rgba(10, 110, 209, 0.20);  
}

/* -----------------------------------------
   Image (✔ Image zoom animation)
----------------------------------------- */
.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  transition: 0.35s ease;
}

.service-card:hover .service-img {
  transform: scale(1.08);   /* image zoom animation */
}

/* -----------------------------------------
   Title & Description
----------------------------------------- */
.service-title {
  font-size: 20px;
  font-weight: 700;
  color: #084E8A; /* deep sky blue */
  text-align: center;
  margin-top: 8px;
}

.service-desc {
  font-size: 15px;
  color: #666;
  text-align: center;
  line-height: 1.55;
}

/* -----------------------------------------
   Responsive Tweaks
----------------------------------------- */
@media (max-width: 450px) {
  .service-img {
    height: 150px;
  }

  .content h2 {
    font-size: 28px;
  }
}



/* --------------------------------------------------
   IT STAFFING & INDUSTRIES
-------------------------------------------------- */
/* ---------------------------------------------------
   PAGE HEADER (Hero Section)
--------------------------------------------------- */
.page-header {
  background: linear-gradient(135deg, #0A6ED1, #084E8A);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.page-header h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.page-header .subtitle {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
}

/* ---------------------------------------------------
   STAFFING INTRO SECTION
--------------------------------------------------- */
.staffing-intro {
  display: flex;
  gap: 40px;
  margin: 70px auto;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.staffing-intro .text {
  flex: 1;
}

.staffing-intro .text h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0A6ED1;
  margin-bottom: 15px;
}

.staffing-intro .text p {
  font-size: 17px;
  color: #444;
  line-height: 1.65;
  margin-bottom: 18px;
}

/* ---------------------------------------------------
   IMAGE BOX STYLING
--------------------------------------------------- */
.staffing-intro .image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.img-box {
  width: 100%;
  max-width: 480px;
  height: 300px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden; /* IMPORTANT for rounded image corners */
  box-shadow: 0 8px 25px rgba(10,110,209,0.15);
  transition: all .35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Make the image cover the box */
.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}


/* Hover effect: lift + glow */
.img-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(10,110,209,0.25);
}

/* ---------------------------------------------------
   RESPONSIVE DESIGN
--------------------------------------------------- */
@media(max-width: 900px) {
  .staffing-intro {
    flex-direction: column;
    text-align: center;
  }

  .img-box {
    height: 260px;
  }

  .staffing-intro .text h2 {
    font-size: 28px;
  }
}

@media(max-width: 500px) {
  .page-header h1 {
    font-size: 32px;
  }

  .img-box {
    height: 220px;
  }
}
/* -----------------------------------------
   INDUSTRIES SECTION
----------------------------------------- */
.industries {
  margin: 70px auto;
  text-align: center;
}

.industries h2 {
  font-size: 34px;
  font-weight: 800;
  color: #0A6ED1;
  margin-bottom: 10px;
}

.section-sub {
  font-size: 17px;
  color: #555;
  margin-bottom: 40px;
}

/* -----------------------------------------
   INDUSTRY GRID
----------------------------------------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 cards per row */
  gap: 25px;
  padding: 0 10px;
}

/* -----------------------------------------
   INDUSTRY CARD (Image + Title)
----------------------------------------- */
.industry-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.industry-card:hover {
  transform: translateY(-10px);
  border-color: #0A6ED1;
  box-shadow: 0 12px 35px rgba(10,110,209,0.20);
}

/* IMAGE STYLING */
.industry-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: 0.35s ease;
}

.industry-card:hover img {
  transform: scale(1.07); /* Zoom animation */
}

/* TITLE */
.industry-card span {
  display: block;
  padding: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #084E8A;
}

/* Responsive */
@media (max-width: 1200px) {
  .industry-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 430px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   OUR PROCESS SECTION
================================== */
.process-section {
  text-align: center;
  padding: 80px 0;
  background: #f8fafc;
  font-family: "Inter", sans-serif;
  
}

.process-section .section-title {
  font-size: 38px;
  font-weight: 700;
  color: #0b245b;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.process-section .process-subline {
  font-size: 18px;
  font-weight: 500;
  color: #444;
  max-width: 650px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* Horizontal timeline */
.horizontal-timeline {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 0 20px;
}

.process-step {
  flex: 1;
  background: white;
  padding: 25px 18px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Step circle */
.process-step .circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 15px;
}

/* Step title */
.process-step h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0b245b;
  margin-bottom: 10px;
}

/* Step description */
.process-step p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  font-weight: 400;
}


/* --------------------------------------------------
   WHY CHOOSE US
-------------------------------------------------- */
.why-section {
  padding: 80px 5%;
  text-align: center;
}

.why-cards {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 25px;
}

.why-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.why-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

/* --------------------------------------------------
   CTA SECTION
-------------------------------------------------- */
/* ===========================
   FUTURE SECTION
=========================== */
.future-section {
  text-align: center;
  padding: 90px 20px;
  background: linear-gradient(135deg, #eef4ff, #f8fbff);
  border-radius: 20px;
  margin: 60px auto;
  max-width: 1000px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  animation: fadeUp 0.8s ease-out;
}

/* Section Heading */
.future-section h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0b245b;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
}

/* Paragraph */
.future-section p {
  font-size: 18px;
  color: #444;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

/* Highlight "Enquire Now" */
.enquire-highlight {
  color: #1a4fff;
  font-weight: 700;
  cursor: pointer;
  padding-bottom: 2px;
  border-bottom: 2px solid #1a4fff;
  transition: 0.3s ease;
}

.enquire-highlight:hover {
  color: #0b245b;
  border-color: #0b245b;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
/* ===========================
   FOOTER SECTION
=========================== */
.footer {
  background: linear-gradient(135deg, #0a1a3b, #00132a);
  color: #ffffff;
  padding: 70px 20px 30px;
  margin-top: 60px;
  font-family: "Inter", sans-serif;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
}

/* Top Layout */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

/* Brand Section */
.footer-brand h3 {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #d4d7e5;
  max-width: 330px;
  line-height: 1.7;
}

/* Headings */
.footer h4 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Footer Links */
.footer-links ul,
.footer-services ul {
  list-style: none;
}

.footer-links li,
.footer-services li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-services a {
  color: #cdd4e9;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover,
.footer-services a:hover {
  color: #4ea2ff;
  padding-left: 4px;
}

/* Social Icons */
/* Social Icons */
.footer-social .social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social .social-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: 0.3s;
  filter: none; /* FIX: no more inversion */
}

.footer-social .social-icon:hover img {
  transform: scale(1.15);
  opacity: 0.8;
}


/* Bottom Footer */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  padding-top: 20px;
  margin-top: 20px;
}

.footer-bottom p {
  color: #c4c8d8;
  font-size: 14px;
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand p {
    margin: auto;
  }

  .footer-social .social-icons {
    justify-content: center;
  }
}


/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }
  .about-images, .about-content {
    width: 100%;
  }

  .staffing-intro {
    flex-direction: column;
  }

  .staffing-intro .text,
  .staffing-intro .image {
    width: 100%;
  }

  .horizontal-timeline {
    flex-direction: column;
    align-items: center;
  }

  .process-step {
    width: 100%;
    text-align: center;
  }
}
