/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 50px;
  font-family: 'Google Sans', sans-serif;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Logo */
#logosizing img {
  height: 60px;
}

/* Nav container */
.pages {
  display: flex;
}

/* Nav list */
.pages ul {
  list-style: none;
  display: flex;
  gap: 50px;
  align-items: center;
}

/* Links */
.pages a {
  text-decoration: none;
  color: #000435;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

.pages a:hover {
  color: #007bff;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none !important;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  list-style: none;
  min-width: 220px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-radius: 6px;
  overflow: hidden;
}

.dropdown-menu li {
  padding: 10px 15px;
}

.dropdown-menu li a {
  display: block;
  color: #000;
}

/* Click-based dropdown */
.dropdown.active .dropdown-menu {
  display: block !important;
}

/* Arrow */
.arrow {
  font-size: 12px;
  margin-left: 5px;
}

/* Menu Icons */
.menu-icon,
.menu-icon2 {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ---------------- MOBILE ---------------- */
@media (max-width: 768px) {

  .menu-icon {
    display: block;
  }

  .menu-icon2 {
    display: none;
  }

  .pages {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    padding: 20px;
  }

  .pages.active {
    display: flex;
  }

  .pages ul {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .pages a {
    font-size: 18px;
  }

  /* Mobile dropdown */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding-left: 10px;
  }
}

img#foorterlogo {
    height: 100px;
    width: 100px;
}

#copyright {
    color: white;
}

h1#servicesatshidertech {
    width: 100%;
    text-align: center;
    font-size: 34px;
    font-family: 'Google Sans', sans-serif;
}

#headerwidth {
    width: 97.5%;
}

#givemespace {
    width: 10%;
}

#givemespace {
    width: 50%;
}

#serviceslogoname {
    padding-left: 5px;
}

#servciesLogos {
    width: 400px;
    height: 400px;
}


#servicespagebottumlogo img {
    width: 100px;
    height: 100px;
}

#carrerpageLogo {
    width: 100px;
    height: 100px;
}

.carrerrandom{
    width: 50%;
    display: flex;
    justify-content: center;
}

.CareerWork{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 75px;
}

.CareerPages {
    display: flex;
    flex-direction: row;
    padding: 60px;
    color: white;
    background: linear-gradient(135deg, #000435, #001f7a);
    font-family: 'Google Sans', sans-serif;
}

.careerPageImage{
    width: 50%;
    padding-right: 30px;
}

#carrerimage {
    width: 100%;
}

#careerWorkHeader {
    text-align: center;
    margin-bottom: 30px;
    font-size: 34px;
}

#careerWorkbody1 {
    text-align: justify;
    line-height: 1.8;
    font-weight: bold;
}

#careerbold {
    font-size: 20px;
}
#careerWorkbody2 {
    text-align: left;
}

#openings {
    color: white;
    background: linear-gradient(135deg, #000435, #001f7a);
}

#contactMainImg {
    height: 545px;
    width: 545px;
}

#CareerMaintextlogo {
    padding-left: 5px;
}

#contactMaintextlogo {
    padding-left: 5px;
}

#contactpageLogo {
    height: 100px;
    width: 100px;
}

#footeremailnametocenter {
    text-align: center;
}

#shidertectMainText {
    padding-left: 25px;
}

input#senderTelephone-abd21c32770a-1 {
    width: 100%;
}



#formsubmittick {
    display: flex;
    flex-direction: row;
    justify-content: left;
}

#tickBtn {
    padding: 10px 15px;
    color: rgb(13, 169, 13);
    display: none;
}

#tickBtn .fa-solid {
    font-size: 30px;
}



.pricing-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #000435, #001f7a);
    font-family: 'Google Sans', sans-serif;
    color: white;
    text-align: center;
}

/* HEADER */
.pricing-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.pricing-header p {
    opacity: 0.8;
    margin-bottom: 50px;
}

/* GRID */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* CARD */
.pricing-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* FEATURED PLAN */
.featured {
    background: white;
    color: #000435;
    transform: scale(1.05);
}

.featured .features li {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.featured button {
    background: linear-gradient(135deg, #00c853, #00e676);
}

/* BADGE */
.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ff9800;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 5px;
    color: white;
}

/* TEXT */
.pricing-card h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.price {
    font-size: 28px;
    font-weight: bold;
    margin: 10px 0 20px;
}

/* FEATURES */
.features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* TICK */
.tick {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00c853, #00e676);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tick::after {
    content: "✓";
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* FEATURED TICK COLOR */
.featured .tick {
    background: linear-gradient(135deg, #000435, #001f7a);
}

/* BUTTON */
.pricing-card button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #000435, #001f7a);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.pricing-card button:hover {
    opacity: 0.9;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    background: white;
    color: #000435;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.pricing-btn:hover {
    opacity: 0.9;
}

.pricing-btn1 {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    background: linear-gradient(135deg, #000435, #001f7a);
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.pricing-btn1:hover {
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .pricing-header h1 {
        font-size: 26px;
    }

    .featured {
        transform: scale(1);
    }
}




/* HERO SECTION */
.indexvisionimg {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* VIDEO */
#bgvideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY (important for readability) */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 4, 53, 0.6);
  z-index: 1;
}

/* TEXT CONTAINER */
.indexvisionTitle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  width: 90%;
  font-family: 'Google Sans';
}

/* TEXT STYLE */
.indexvisionPart span {
  font-size: 100px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
}
/* HERO LOGO */
.hero-logo {
  margin-top: 20px;
  width: 200px;   /* adjust size here */
  max-width: 60%;
  height: auto;
  object-fit: contain;
}

.hero1-logo {
  margin-top: 0px;
  width: 150px;   /* adjust size here */
  max-width: 60%;
  height: auto;
  padding: 10px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .hero-logo {
    width: 160px;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    width: 120px;
  }
}

@media (max-width: 768px) {
  .hero1-logo {
    width: 160px;
  }
}

@media (max-width: 480px) {
  .hero1-logo {
    width: 120px;
  }
}

.indexvisionPart p {
  margin-top: 15px;
  font-size: 22px;
  letter-spacing: 3px;
  color: #fbfbfb;
}

/* OPTIONAL ANIMATION */
.indexvisionPart {
  animation: fadeUp 1.5s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .indexvisionPart span {
    font-size: 42px;
  }

  .indexvisionPart p {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .indexvisionPart span {
    font-size: 30px;
  }

  .indexvisionPart p {
    font-size: 14px;
  }
}



form#form{
    font-family: 'Google Sans', sans-serif;
    font-weight: bold;
}

#openings h3 {
    font-family: 'Google Sans', sans-serif;
    font-size: 36px;
}

.CareerPage{
    display: flex;
    flex-direction: row;
}

#careerWorkbody2{
    text-align: center;
    display: none;
}

#careerWorkbody2 #careerbold a{
    text-decoration: none;
    height: 40px;
    width: 145px;
    font-size: 24px;
    padding-top: 10px;
    text-align: center;
    display: inline-grid;
    border-radius: 5px;
    color: #000435;
    background-color: white;
}

#careerWorkbody2 #careerbold a:hover {
    background: linear-gradient(135deg, #000435, #001f7a);
    color: white;
    transition: 0.3s;
}

.ServicesWing h2{
    font-family: 'Google Sans', sans-serif;
}

.contactWantMore h1{
    font-family: 'Google Sans', sans-serif;

}

/* ----------------------Happy Clients---------------------- */
/* ===== Testimonial Section ===== */
.testimonial-slider {
  background: linear-gradient(135deg, #000435, #001f7a);
  color: white;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  font-family: 'Google Sans';
  padding-top: 50px;
}

.testimonial-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.testimonial-header p {
  font-size: 1rem;
  color: white;
  margin-bottom: 40px;
}

.slider-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 30px;
  animation: scroll 20s linear infinite;
}

.testimonial-card {
  background: #f9f9f9;
  border: 1px solid #ddd;
  color: #000435;
  border-radius: 12px;
  padding: 35px;
  min-width: 100px;
  max-width: 250px;
  flex: 0 0 auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 15px;
  color: #333;
}

.testimonial-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.testimonial-card span {
  font-size: 0.9rem;
  color: #666;
}

/* Infinite Scrolling Animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* shift by half since we duplicated testimonials */
}


/* ===== About Section ===== */
/* ===== ABOUT SECTION ===== */
.about-section {
  background: linear-gradient(to right, #f8fbff, #ffffff);
  padding-top: 10px;
  font-family: 'Google Sans';
}

.about-container {
  display: flex;
  align-items: center;
  min-height: 500px;
}

/* IMAGE SIDE */
.about-image {
  width: 50%;
  height: 100%;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  filter: brightness(0.95) contrast(1.1);
  transition: 0.6s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

/* TEXT SIDE */
.about-text {
  width: 50%;
  padding: 80px;
}

.about-text h1 {
  font-size: 75px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #333;
  line-height: 1;
}

.about-text h1 span {
  color: #000435;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, #000436, #001f7a);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.about-btn:hover {
  background: #00c2ff;
  transform: translateY(-2px);
}

/* ===== PROGRESS SECTION ===== */
.company-progress {
  background: linear-gradient(135deg, #000435, #001f7a);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  font-family: 'Google Sans';
}

.progress-header h1 {
  font-size: 3rem;
  font-weight: 800;
}

.progress-header p {
  margin-top: 10px;
  margin-bottom: 60px;
  color: #cfd8ff;
}

/* GRID */
.progress-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* CARD STYLE (GLASS LOOK) */
.stat-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 40px 20px;
  border-radius: 20px;
  transition: 0.4s;
  border: 1px solid rgba(255,255,255,0.1);
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255,255,255,0.15);
}

/* HIGHLIGHT CARD */
.stat-card.highlight {
  background: white;
  color: #000435;
}

/* TEXT */
.stat-card h2 {
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 1rem;
  opacity: 0.9;
}

/* ===== ANIMATIONS ===== */
.reveal-left,
.reveal-right,
.reveal-up {
  opacity: 0;
  transition: all 1s ease;
}

.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal-up { transform: translateY(60px); }

.reveal.show {
  opacity: 1;
  transform: translate(0,0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
  }

  .about-image,
  .about-text {
    width: 100%;
  }

  .about-image img {
    height: 300px;
  }

  .about-text {
    padding: 40px 20px;
    text-align: center;
  }

  .about-text h1 {
    font-size: 3rem;
  }
}
/* what we do section starts */

.services {
  background: white;
  color: #000435;
  padding: 80px 10%;
  font-family: 'Google Sans', sans-serif;
}

.services-title {
  text-align: center;
  margin-bottom: 70px;
}

.services-title h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

.services-title p {
  font-size: 17px;
  margin-top: 10px;
  opacity: 0.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

/* 🔥 PREMIUM CARD */
.service-card {
  position: relative;
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;

  /* background fallback */
  background-size: cover;
  background-position: center;

  transition: all 0.4s ease;
}

/* 🔥 OVERLAY (KEY PART) */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.2)
  );

  backdrop-filter: blur(3px);
  z-index: 1;
  transition: 0.4s ease;
}

/* CONTENT ABOVE OVERLAY */
.service-card * {
  position: relative;
  z-index: 2;
}

/* ICON */
.service-card .icon {
  font-size: 48px;
  margin-bottom: 15px;
  color: white;
  transition: 0.4s;
}

/* TEXT */
.service-card h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: white;
}

.service-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

/* ✨ HOVER EFFECT */
.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.service-card:hover::before {
  background: rgba(0,0,0,0.6);
}

.service-card:hover .icon {
  transform: scale(1.2);
}

/* 🔥 BACKGROUND IMAGES */
.staffing-bg {
  background-image: url('images/staffing.jpg');
}

.verification-bg {
  background-image: url('images/verification.jpg');
}

.augmentation-bg {
  background-image: url('images/augmentation.jpg');
}

.deployment-bg {
  background-image: url('images/deployment.jpg');
}

.training-bg {
  background-image: url('images/training.jpg');
}

.payroll-bg {
  background-image: url('images/payroll.jpg');
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
  .services {
    padding: 60px 20px;
  }

  .services-title h1 {
    font-size: 28px;
  }

  .service-card {
    height: 240px;
  }
}



.consultation-section {
    padding: 60px 20px;
    background: white;
    font-family: 'Google Sans', sans-serif;
}

/* CONTAINER */
.consultation-container {
    max-width: -webkit-fill-available;
    margin: auto;
    background: linear-gradient(135deg, #000435, #001f7a);
    border-radius: 20px;
    padding: 75px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    flex-direction: row-reverse;
}

/* LEFT */
.consultation-content {
    flex: 1;
}

.consultation-content h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 10px;
}

.subtitle {
    color: whitesmoke;
    margin-bottom: 20px;
}

/* LIST */
.consultation-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.consultation-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: whitesmoke;
    font-size: 15px;
}

/* TICK */
.tick {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00c853, #00e676);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.tick::after {
    content: "✓";
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* BUTTON */
.consultation-btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 8px;
    background: white;
    color:#000435;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.consultation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* RIGHT IMAGE */
.consultation-image {
    flex: 1;
    text-align: center;
}

.consultation-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    transition: 0.8s ease;
    transform: scale(0.9);
}

/* ===== SCROLL ANIMATION ===== */

/* hidden state */
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s ease;
}

/* directions */
.reveal-left {
    transform: translateX(-80px);
}

.reveal-right {
    transform: translateX(80px);
}

/* visible */
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* image zoom effect */
.reveal-right.active img {
    transform: scale(1.5);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .consultation-container {
        flex-direction: column;
        text-align: center;
    }

    .consultation-content h1 {
        font-size: 26px;
    }

    .consultation-list li {
        justify-content: center;
    }
}



 

 .footer {
    background: linear-gradient(135deg, #000435, #001f7a);
    color: white;
    font-family: 'Google Sans', sans-serif;
    padding-top: 60px;
}

/* CONTAINER */
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    padding: 0 20px 40px;
    align-items: center;
}

/* BRAND */
.footer-brand img {
    width: 160px;
    margin-bottom: 15px;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-email span {
    display: block;
    font-size: 14px;
    opacity: 0.7;
}

.footer-email a {
    color: #00e676;
    text-decoration: none;
    font-weight: 500;
}

.footer-email a:hover {
    text-decoration: underline;
}

/* SOCIAL */
.footer-social {
    margin-top: 20px;
}

.footer-social a {
    margin-right: 15px;
    font-size: 18px;
    color: white;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #00e676;
    transform: translateY(-3px);
}

/* LINKS */
.footer-links {
    display: flex;
    justify-content: space-between;
}

.footer-links h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    opacity: 0.7;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.footer-bottom a:hover {
    text-decoration: underline;
    color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .footer-social {
        justify-content: center;
    }
}



.contact-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0a0f2c, #1a2b6d);
    font-family: 'Google Sans', sans-serif;
    color: white;
}

/* HEADER */
.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h1 {
    font-size: 40px;
}

.contact-header p {
    opacity: 0.8;
    margin-top: 10px;
}

/* LAYOUT */
.contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
}

/* LEFT */
.contact-info {
    flex: 1;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.icon {
    font-size: 20px;
}

/* FORM */
.contact-form {
    flex: 1;
    background: rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    font-family: 'Google Sans';
}

.form-row {
    display: flex;
    gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: rgb(158, 158, 182);
    font-family: 'Google Sans';
}

.contact-form textarea {
    height: 120px;
    resize: none;
    font-family: 'Google Sans';
}

/* BUTTON */
.contact-form button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: white
    color: #000435;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Google Sans';
}

/* STATUS */
#formStatus {
    margin-top: 10px;
    font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }
}

/* 🔷 SERVICE BACKGROUNDS */

/* 1. Staffing */
.staffing-bg {
  background-image: url('staffing.png');
}

/* 2. Background Verification */
.verification-bg {
  background-image: url('verification.png');
}

/* 3. Augmentation */
.augmentation-bg {
  background-image: url('augmentation.png');
}

/* 4. Deployment */
.deployment-bg {
  background-image: url('deployment.png');
}

/* 5. Training */
.training-bg {
  background-image: url('training.png');
}

/* 6. Payroll */
.payroll-bg {
  background-image: url('payroll.png');
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.4); /* dark layer */
    backdrop-filter: blur(3px);     /* blur effect */

    z-index: 1;
}
