/* Hero Section */
body {
  font-family: -apple-system, "system-ui", Segoe UI, roboto, helvetica, arial,
    sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
}
.hero-section {
  background: url("pp/gray1.jpg") no-repeat center center / cover;
  min-height: 100vh;
  position: relative;
  border-bottom-left-radius: 150px;
  border-bottom-right-radius: 150px;
  overflow: hidden;
}

/* Navbar */
.navbar {
  background-color: #8a8076 !important;
  border-radius: 50px;
  margin: 15px auto;
  padding: 10px 15px;
  max-width: 90%;
}

.navbar-brand img {
  height: 50px;
}

.nav-link {
  color: #000 !important;
  font-weight: 500;
  margin: 0 10px;
}

.btn-job {
  background-color: #ffbe59;
  color: #fff;
  border-radius: 8px;
  font-weight: 500;
}

.btn-hiring {
  background-color: #fff;
  color: #000;
  border: 1px solid #fff;
  border-radius: 8px;
  font-weight: 500;
}

/* ✅ Responsive for mobile */
@media (max-width: 991px) {
  .navbar {
    max-width: 95%;
    border-radius: 15px;
  }

  .navbar-collapse {
    background-color: #8a8076;
    border-radius: 15px;
    padding: 10px 0;
  }

  .nav-link,
  .btn-job,
  .btn-hiring {
    display: block;
    margin: 10px 0;
    text-align: center;
  }
}

/* Hero Content */
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: nowrap;
  margin-top: 70px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.4rem;
  margin-top: 25px;
  color: #a7a4a4;
}

.hero-buttons .btn {
  margin-right: 10px;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 6px;
}

.btn-orange {
  background-color: #ffbe59;
  color: #000;
  border: none;
}
.btn-orange:hover {
  background-color: #ffbe59;
  color: #fff;
  border: none;
}
.btn-light {
  background-color: #f5f5f5;
  color: #000;
  border: none;
}

/* Hero Image */
.hero-images {
  flex: 1;
  text-align: right;
}

.hero-images img {
  max-width: 480px;
  width: 100%;
  height: auto;
}

/* ===========================
   Responsive (Tablet + Mobile)
   =========================== */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }

  .hero-text p {
    font-size: 1.2rem;
  }

  .hero-images {
    text-align: center;
    margin-top: 25px;
  }

  .hero-images img {
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-buttons .btn {
    padding: 10px 10px;
    margin-bottom: 10px;
  }

  .hero-images img {
    max-width: 290px;
  }
  .hero-content {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media (max-width: 767px) {
  .hero-section {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}

.logo-slider {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.logo-track {
  display: flex;
  animation: scroll 25s linear infinite;
  width: max-content;
}

.logo-img {
  height: 95px;
  width: 150px;
  object-fit: contain;
  padding: 10px;
  opacity: 1;
  transition: all 0.3s ease;
}

.logo-img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ✅ Responsive adjustments */
@media (max-width: 992px) {
  .logo-img {
    height: 80px;
    width: 120px;
    padding: 8px;
  }
}

@media (max-width: 768px) {
  .logo-img {
    height: 70px;
    width: 100px;
    padding: 6px;
  }

  .logo-track {
    animation: scroll 20s linear infinite; /* Slightly faster for smaller screens */
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 60px;
    width: 80px;
    padding: 5px;
  }

  .logo-track {
    animation: scroll 18s linear infinite;
  }
}

.aboutus {
  background: #fff;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.about-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #222;
  white-space: nowrap; /* ✅ Prevents text from breaking into multiple lines */
}

.about-title span {
  color: #ffbe59; /* elegant gold accent */
}

.about-subtitle {
  font-size: 1.25rem;
  color: #555;
  font-weight: 600;
  margin-bottom: 15px;
  white-space: nowrap;
}

.about-text {
  color: #444;
  line-height: 1.7;
  font-size: 1rem;
  max-width: 600px;
}

/* ✅ Image styling */
.about-image-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 50%;
  padding: 10px;
  background: linear-gradient(135deg, #fff5c3, #fff5c3);
}

.about-image {
  border-radius: 50%;
  width: 320px;
  height: 320px;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ✅ Tablet (medium screens) */
@media (max-width: 991px) {
  .aboutus {
    text-align: center;
    padding: 50px 15px;
  }
  .about-image {
    width: 260px;
    height: 260px;
  }
  .about-title {
    font-size: 1.6rem;
  }
  .about-subtitle {
    font-size: 1rem;
  }
  .about-text {
    font-size: 0.95rem;
  }
}

/* ✅ Mobile (small screens) */
@media (max-width: 768px) {
  .about-image {
    width: 220px;
    height: 220px;
  }
  .about-title {
    font-size: 1.4rem;
  }
  .about-subtitle {
    font-size: 0.8rem;
  }
  .about-text {
    font-size: 0.9rem;
  }
}

/* ✅ Extra Small (very small phones) */
@media (max-width: 480px) {
  .about-image {
    width: 180px;
    height: 180px;
  }
  .about-title {
    font-size: 1.25rem;
  }
  .about-subtitle {
    font-size: 0.8rem;
  }
  .about-text {
    font-size: 0.85rem;
    line-height: 1.6;
  }
  .aboutus {
    padding: 40px 10px;
  }
}

/* cyber-career */
.cyber-career-section {
  background-image: linear-gradient(
    149deg,
    #000 59%,
    #eda63a
  ); /* background-image: linear-gradient(199deg, #fed359 59%, #ff8901); */
  color: #fff;
  padding: 80px 0; /* more breathing space */
}
.cyber-tag {
  display: inline-block;
  background: #fff;
  color: #ffbe59;
  font-weight: 700;
  border-radius: 25px;
  padding: 8px 20px;
  font-size: 20px;
  letter-spacing: 0.6px;
}
.cyber-heading {
  font-weight: 800;
  font-size: 2.4rem; /* increased size */
  color: #fff;
  line-height: 1.4; /* more height for readability */
  margin-top: 20px;
  white-space: nowrap;
}
.cyber-desc {
  font-size: 20px; /* was 18px */
  line-height: 1.9; /* was 1.8 */
  color: #fff;
  margin-top: 15px;
}
.cyber-list {
  list-style: none;
  padding-left: 0;
  margin-top: 25px;
}
.cyber-list li {
  margin-bottom: 18px; /* more spacing between items */
  font-weight: 600;
  position: relative;
  padding-left: 35px; /* adjusted for better layout */
  font-size: 19px; /* larger text */
  line-height: 1.7;
  transition: all 0.3s ease;
}
.cyber-list li i {
  color: #ffbe59;
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 20px;
  animation: iconPulse 1.5s infinite;
}
@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}
.cyber-btn {
  display: inline-block;
  background: #ffbe59;
  color: #fff;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  margin-top: 20px;
}
.cyber-btn:hover {
  background: #ffbe59;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 123, 0, 0.4);
}
.cyber-image {
  max-width: 95%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}
.cyber-image:hover {
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .cyber-heading {
    font-size: 2rem;
    text-align: center;
  }
  .cyber-desc,
  .cyber-list {
    text-align: center;
  }
  .cyber-list li {
    padding-left: 0;
    font-size: 18px;
  }
  .cyber-list li i {
    position: static;
    margin-right: 8px;
  }
}
/* ============================= */
/* 📱 Mobile Responsive Styling  */
/* ============================= */

@media (max-width: 992px) {
  .cyber-career-section {
    padding: 60px 0;
    text-align: center; /* center align content on tablets */
  }

  .cyber-heading {
    font-size: 2rem;
    line-height: 1.3;
  }

  .cyber-desc {
    font-size: 18px;
    line-height: 1.8;
    margin-top: 10px;
  }

  .cyber-list {
    margin-top: 20px;
  }

  .cyber-list li {
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 30px;
  }

  .cyber-list li i {
    font-size: 18px;
    left: 5px;
  }

  .cyber-btn {
    padding: 10px 25px;
    font-size: 17px;
  }

  .cyber-image {
    max-width: 100%;
    margin-top: 30px;
  }
}

/* For mobile phones */
@media (max-width: 576px) {
  .cyber-career-section {
    padding: 50px 0;
    text-align: center;
  }

  .cyber-tag {
    font-size: 16px;
    padding: 6px 16px;
  }

  .cyber-heading {
    font-size: 1.2rem;
    margin-top: 15px;
  }

  .cyber-desc {
    font-size: 16px;
    line-height: 1.7;
    margin-top: 10px;
  }

  .cyber-list li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 28px;
  }

  .cyber-list li i {
    font-size: 16px;
    top: 2px;
  }

  .cyber-btn {
    font-size: 16px;
    padding: 9px 22px;
    border-radius: 8px;
  }

  .cyber-image {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 25px;
  }
}

.cyber-jobs-section {
  background-image: linear-gradient(149deg, #000 59%, #eda63a);
  color: #fff;
}
.cyber-jobs-title {
  font-weight: 700;
  color: #fff;
}
.cyber-dot {
  color: #ffbe59;
}
.cyber-job-card {
  background: #ffbe59;
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
}
.cyber-job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(255, 179, 71, 0.4);
}
.cyber-job-top {
  gap: 15px;
}
.cyber-job-img {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
}
.cyber-job-info {
  flex: 1;
}
.cyber-job-title {
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}
.cyber-job-location {
  font-size: 14px;
  color: #fff;
  margin: 1px;
}
.cyber-job-location i {
  color: #fff;
  margin-right: 6px;
}
.cyber-apply-btn {
  align-self: flex-end;
  background: #fff;
  color: #111;
  font-weight: 600;
  border-radius: 20px;
  padding: 6px 20px;
  font-size: 14px;
  text-decoration: none;
  margin-top: 10px;
  text-align: center;
  transition: all 0.3s ease;
}
.cyber-apply-btn:hover {
  background: #000;
  color: #ffbe59;
}
.cyber-viewall-btn {
  background: #fff;
  color: #000;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cyber-viewall-btn:hover {
  background: #ffbe59;
  color: #000;
}
.companies-section {
  background-image: linear-gradient(149deg, #000 59%, #eda63a);
  color: #fff;
}
.companies-image {
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease;
}
.companies-image:hover {
  transform: scale(1.03);
}
.companies-tag {
  display: inline-block;
  background: #ffbe59;
  color: #000;
  font-weight: 700;
  border-radius: 25px;
  padding: 5px 15px;
  font-size: 20px;
  letter-spacing: 0.5px;
}
.companies-title {
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}
.companies-desc {
  color: #fff;
  line-height: 1.9;
  font-size: 20px;
  margin-top: 15px;
}
.companies-list {
  list-style: none;
  padding-left: 0;
}
.companies-list li {
  margin-bottom: 18px;
  padding-left: 35px;
  position: relative;
  color: #ddd;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 600;
  transition: all 0.3s ease;
}
.companies-list li i {
  color: #ffbe59;
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 20px;
  animation: iconPulse 1.8s infinite;
}
@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}
.companies-buttons .companies-btn-primary {
  background: #ffbe59;
  color: #fff;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.companies-buttons .companies-btn-primary:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(255, 179, 71, 0.5);
}
.companies-buttons .companies-btn-outline {
  background: transparent;
  border: 2px solid #ffbe59;
  color: #ffbe59;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.companies-buttons .companies-btn-outline i {
  margin-right: 8px;
}
.companies-buttons .companies-btn-outline:hover {
  background: #ffbe59;
  color: #000;
}
@media (max-width: 767px) {
  .companies-title {
    font-size: 1.8rem;
    text-align: center;
  }
  .companies-desc,
  .companies-list {
    text-align: center;
  }
  .companies-list li {
    padding-left: 0;
  }
  .companies-list li i {
    position: static;
    margin-right: 8px;
  }
  .companies-buttons {
    justify-content: center;
  }
}

/* ============================= */
/* 📱 Mobile Responsive Styling  companies-section */
/* ============================= */

/* Tablet view (screen ≤ 992px) */
@media (max-width: 992px) {
  .companies-section {
    text-align: center;
    padding: 60px 0;
  }

  .companies-tag {
    font-size: 18px;
    padding: 6px 14px;
  }

  .companies-title {
    font-size: 1.9rem;
    line-height: 1.4;
    margin-top: 15px;
    white-space: nowrap;
  }

  .companies-desc {
    font-size: 18px;
    line-height: 1.8;
    margin-top: 10px;
  }

  .companies-list {
    margin-top: 20px;
  }

  .companies-list li {
    font-size: 18px;
    padding-left: 30px;
    margin-bottom: 14px;
  }

  .companies-list li i {
    font-size: 18px;
    left: 5px;
  }

  .companies-image {
    max-width: 100%;
    margin-top: 25px;
  }

  .companies-buttons {
    margin-top: 20px;
  }

  .companies-buttons .companies-btn-primary,
  .companies-buttons .companies-btn-outline {
    font-size: 17px;
    padding: 9px 22px;
    display: inline-block;
    margin: 5px 8px;
  }
}

/* Mobile view (screen ≤ 576px) */
@media (max-width: 576px) {
  .companies-section {
    text-align: center;
    padding: 50px 0;
  }

  .companies-tag {
    font-size: 16px;
    padding: 5px 12px;
  }

  .companies-title {
    font-size: 0.8rem;
    line-height: 1.3;
    margin-top: 10px;
  }

  .companies-desc {
    font-size: 16px;
    line-height: 1.7;
  }

  .companies-list li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 28px;
  }

  .companies-list li i {
    font-size: 16px;
    top: 2px;
  }

  .companies-image {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 20px;
  }

  .companies-buttons .companies-btn-primary,
  .companies-buttons .companies-btn-outline {
    font-size: 16px;
    padding: 8px 18px;
    margin: 6px 5px;
    display: block;
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}

.mornet-academy-section {
  background-image: linear-gradient(199deg, #000 59%, #000);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.mornet-academy-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(255, 193, 7, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(60px);
}

.mornet-academy-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(80px);
}

.academy-card {
  background: linear-gradient(180deg, #20232a, #14161a);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  color: #fff;
}
.mornet_academy_box_text {
  font-size: 1rem;
  white-space: normal;
}

.academy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.15);
}

.academy-icon {
  filter: brightness(1.1);
  max-width: 90px;
  height: auto;
  margin-bottom: 20px;
}

.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
}

/* ========================= */
/* 📱 Mobile Responsive CSS  */
/* ========================= */

/* For small screens (max 767px) */
@media (max-width: 767px) {
  .mornet-academy-section {
    padding: 50px 15px;
    text-align: center;
  }

  .mornet-academy-section::before {
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    filter: blur(40px);
  }

  .mornet-academy-section::after {
    bottom: -30px;
    left: -30px;
    width: 140px;
    height: 140px;
    filter: blur(50px);
  }

  .academy-card {
    padding: 25px 15px;
    margin-bottom: 20px;
  }

  .academy-icon {
    max-width: 70px;
    margin-bottom: 15px;
  }

  .academy-card h4 {
    font-size: 18px;
  }

  .academy-card p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* For tablets (768px–991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .mornet-academy-section {
    padding: 60px 25px;
  }

  .academy-card {
    padding: 28px 18px;
  }

  .academy-icon {
    max-width: 80px;
  }

  .academy-card h4 {
    font-size: 20px;
  }

  .academy-card p {
    font-size: 0.9rem;
  }
}

/* For larger screens (992px and up) */
@media (min-width: 992px) {
  .mornet-academy-section {
    padding: 90px 0;
  }

  .academy-card {
    padding: 35px 25px;
  }

  .academy-icon {
    max-width: 100px;
  }
}

/* -------------------------------
   Footer Base
--------------------------------*/
.footer {
  position: relative;
  background: url("pp/footer2.png") center center / cover no-repeat;
  color: #000;
  overflow: hidden;
  padding-top: 260px;
  padding-bottom: 80px;

  z-index: 1;
}

/* Light overlay (desktop only) */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  z-index: 0;
}

/* Content positioning */
.footer .container,
.footer .row {
  position: relative;
  z-index: 2;
}

/* Footer logo */
.footer .footer-logo {
  max-width: 150px;
  margin-bottom: 1rem;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links li a {
  color: #000;
  text-decoration: none;
  opacity: 0.85;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-links li a:hover {
  color: #ffbe59;
  opacity: 1;
}

/* Social Icons */
.footer .social-icons a {
  color: #000;
  font-size: 20px;
  margin: 0 8px;
  transition: 0.3s;
}

.footer .social-icons a:hover {
  color: #ffbe59;
}

/* -------------------------------
   Responsive Fixes
--------------------------------*/

/* 📱 Mobile (max 767px) */
@media (max-width: 767px) {
  .footer {
    background: none; /* ❌ remove background image */
    padding-top: 80px;
    padding-bottom: 50px;
  }

  .footer::before {
    background: none; /* remove overlay too */
  }

  .footer .col-md-3,
  .footer .col-md-4,
  .footer .col-md-6 {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  /* ✅ Center align social icons on mobile */
  .footer .social-icons {
    text-align: center !important;
    margin-top: 1rem;
  }

  .footer .footer-logo {
    max-width: 120px;
  }

  .footer-links li a {
    font-size: 14px;
  }
}
.title_h2 span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: 100%;
}
.partners-section h2 {
  font-size: 1.8rem;
  color: #222;
  line-height: 1.5;
  margin-top: 60px;
}

.partner-logo {
  max-height: 100px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  .partner-logo {
    max-height: 80px;
  }
}
.newcyberjob {
  background: #000;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.newcyberjob:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.newcyberjob img {
  height: 150px;
  object-fit: contain;
  width: 100%;
}

.newcyberjob .job-body {
  padding: 15px;
  text-align: center;
}

.newcyberjob .job-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.newcyberjob .job-location {
  color: #777;
  font-size: 14px;
  margin-bottom: 10px;
}

.newcyberjob .apply-btn {
  background-color: #ffbe59;
  color: #fff;
  border-radius: 25px;
  padding: 6px 20px;
  border: none;
  transition: background-color 0.3s;
}

.newcyberjob .apply-btn:hover {
  background-color: #0056b3;
}

/* --------------------- */
/* 📱 MOBILE RESPONSIVE */
/* --------------------- */
@media (max-width: 576px) {
  .newcyberjob {
    border-radius: 10px;
  }

  .newcyberjob img {
    height: 120px; /* smaller image for mobile */
  }

  .newcyberjob .job-body {
    padding: 10px;
  }

  .newcyberjob .job-title {
    font-size: 0.9rem;
  }

  .newcyberjob .job-location {
    font-size: 12px;
  }

  .newcyberjob .apply-btn {
    padding: 5px 15px;
    font-size: 14px;
    border-radius: 20px;
  }
}

/* Tablet view */
@media (min-width: 577px) and (max-width: 768px) {
  .newcyberjob img {
    height: 130px;
  }

  .newcyberjob .job-title {
    font-size: 0.95rem;
  }

  .newcyberjob .apply-btn {
    padding: 6px 18px;
  }
}

.role-section {
  padding: 60px 0;
}
.role-card {
  background: #101626;
  border-radius: 12px;
  padding: 20px;
  transition: 0.4s;
  border: 1px solid #1c2333;
}
.role-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}
.role-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 22px;
  margin-bottom: 10px;
}
.role-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.role-text {
  font-size: 0.9rem;
  color: #a0acc0;
}
.role-cert {
  font-size: 0.8rem;
  color: #a0acc0;
}
.cert-tag {
  display: inline-block;
  background: #1e293b;
  color: #94a3b8;
  padding: 3px 10px;
  border-radius: 15px;
  margin: 3px 3px 0 0;
  font-size: 0.75rem;
}
.role-grid {
  gap: 1.2rem;
}
.social-icons a {
  color: #000 !important;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #ffbe59; /* Bootstrap warning color */
  transform: translateY(-3px);
}
.highlight-gold {
  color: #ffbe59;
  text-shadow: 0 0 8px rgba(255, 193, 7, 0.3);
}

.why-difference-section .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-difference-section .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}
/* ========================
   Base Styles (Your Given)
======================== */
.logocybercompanies-section {
  background: linear-gradient(
    160deg,
    #000000 0%,
    #221f19 50%,
    #5b4a2c 80%,
    #edc776 100%
  );
  color: #fff;
}

.logocybercompanies-desc {
  color: #ccc;
  line-height: 1.6;
}

.logocybercompanies-list li {
  margin-bottom: 10px;
  list-style: none;
  white-space: nowrap;
  font-size: 1rem;
}

.logocybercompanies-list li i {
  color: #ffbe59;
}

.logocybercompanies-btn-primary {
  background-color: #fff5c3;
  color: #000;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.logocybercompanies-btn-outline {
  border: 1px solid #fff5c3;
  color: #fff5c3;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.logocybercompanies-img {
  border-radius: 0 40px 40px 0;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* ========================
   MOBILE RESPONSIVE STYLES
   (Devices ≤ 576px)
======================== */
@media (max-width: 576px) {
  /* Section spacing */
  .logocybercompanies-section,
  .servicescyber-section {
    padding: 30px 0;
  }

  /* Title size adjust */
  .logocybercompanies-title {
    font-size: 1.1rem;
  }

  /* Description spacing */
  .logocybercompanies-desc {
    font-size: 0.9rem;

    line-height: 1.5;
  }
  .logocybercompanies-list li i {
    display: none;
  }
  /* List items responsive */
  .logocybercompanies-list li {
    font-size: 0.8rem;
    white-space: normal; /* wrap allowed */
    list-style: circle;
  }

  /* Buttons full width on mobile */
  .logocybercompanies-btn-primary,
  .logocybercompanies-btn-outline {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    padding: 12px 0;
    font-size: 0.9rem;
  }

  /* Image responsive */
  .logocybercompanies-img {
    width: 100%;
    border-radius: 20px;
    margin-top: 20px;
  }
}

.servicescyber-section {
  background-color: #fff;
  padding: 60px 0;
}

.servicescyber-highlight {
  color: #ffbe59;
}

.servicescyber-card {
  transition: all 0.4s ease;
  border: 2px solid transparent;
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  background-color: #fff;
}

.servicescyber-card:hover {
  border-color: #ffbe59;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

/* Icon box (for images) */
.servicescyber-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background-color: #ffbe59;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.servicescyber-icon img {
  width: 95%;
  height: 95%;
  object-fit: cover;
  border-radius: 50%;
}

/* Buttons */
.servicescyber-btn {
  background-color: #ffbe59;
  color: #000;
  font-weight: 600;
  border-radius: 25px;
  padding: 10px 24px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.servicescyber-btn:hover {
  background-color: #e0a735;
  color: #000;
}

.servicescyber-viewall-btn {
  background-color: #000;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 32px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.servicescyber-viewall-btn:hover {
  background-color: #ffbe59;
  color: #000;
}

/* ========================= */
/* 📱 Mobile Responsive CSS  */
/* ========================= */

/* For small devices (max 767px) */
@media (max-width: 767px) {
  .servicescyber-section {
    padding: 40px 15px;
  }

  .servicescyber-card {
    margin-bottom: 25px;
    padding: 25px 15px;
  }

  .servicescyber-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }

  .servicescyber-btn {
    padding: 8px 18px;
    font-size: 14px;
  }

  .servicescyber-viewall-btn {
    padding: 10px 24px;
    font-size: 15px;
  }

  .servicescyber-card h4 {
    font-size: 16px;
  }

  .servicescyber-card p {
    font-size: 14px;
  }
}

/* For tablets (768px–991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .servicescyber-section {
    padding: 50px 25px;
  }

  .servicescyber-icon {
    width: 90px;
    height: 90px;
  }

  .servicescyber-card {
    padding: 28px 18px;
  }

  .servicescyber-card h4 {
    font-size: 20px;
  }

  .servicescyber-card p {
    font-size: 15px;
  }
}

.training h2 {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #fff;
}

.training .card {
  transition: all 0.3s ease;
}

.training .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(222, 197, 197, 0.15);
}

.training .card img {
  height: 220px;
  object-fit: cover;
}

.training .btn-warning {
  background-color: #ffbe59;
  border: none;
}

.training .btn-warning:hover {
  background-color: #ffc870;
}

.contact {
  color: #fff;
  padding: 80px 0;
}

.contact h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

.contact h2 span {
  color: #ffbe59;
}

.contact p.subtext {
  margin-bottom: 40px;
  color: #b8c2ba;
}

.contact .form-control {
  border-radius: 6px;

  padding: 10px 15px;
}

.contact label {
  font-weight: 600;
  font-size: 15px;
  color: #cfd8d2;
}

.contact .form-control:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(76, 217, 100, 0.25);
}

.contact .btn-success {
  background-color: #ffbe59;
  border: none;
  font-weight: 600;
  border-radius: 6px;
  padding: 10px 25px;
}

.contact .btn-success:hover {
  background-color: #ffbe59;
}

.contact .info-box {
  margin-top: 20px;
  font-size: 15px;
}

.contact .info-box p {
  margin-bottom: 5px;
  color: #ccc;
}

.contact .info-box i {
  color: #ffbe59;
  margin-right: 8px;
}

.contact .social-icons a {
  color: #f5e3e3;
  font-size: 18px;
  margin-right: 15px;
  transition: 0.3s;
}

.contact .social-icons a:hover {
  color: #ffbe59;
}
.service-icon {
  width: 90px;
  height: 90px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cyber-service:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.5);
}

.cyber-service {
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.cyber-service:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cyber-form {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.cyber-form input,
.cyber-form select {
  transition: all 0.3s ease;
}
.cyber-form input:focus,
.cyber-form select:focus {
  border-color: #ffc107;
  box-shadow: 0 0 8px rgba(255, 193, 7, 0.4);
}
.cyber-btn:hover {
  background-color: #fff;
  color: #000;
  box-shadow: 0 0 15px #ffc107;
}
.open-hero {
  text-align: center;
  padding: 4rem 1rem 3rem;
}
.open-hero h1 {
  font-weight: 700;
  color: #ffbe59;
}
.open-hero p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #efe8e8;
}
.open-card {
  background: transparent;
  border: 1px solid #72716f;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.open-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px #ffbe59;
}
.open-card h3 {
  color: #ffbe59;
}
.open-card p {
  color: #efe8e8;
}
.btn-open {
  background: linear-gradient(90deg, #ffbe59, #eab560);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: 0.3s;
}
.btn-open:hover {
  background: linear-gradient(90deg, #eab560, #ffbe59);
}
.open-form {
  background: transparent;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #72716f;
}
.open-form:hover {
  background: transparent;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #ffbe59;
}
.form-control {
  background: transparent;
  border: 1px solid #72716f;
  color: #e0e6ed;
}
.form-control:focus {
  border-color: #72716f;
  box-shadow: 0 0 0 0.2rem #ffbe59;
}
/* =======================
   PREMIUM DARK TESTIMONIAL CSS
   ======================= */

/* -------------------------------
   Testimonial Section Styling
--------------------------------*/
.testimonial {
  background-color: #0d0d0d;
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  margin-bottom: 50px;
}

.section-header__content h2 {
  font-size: 36px;
  font-weight: 700;
  text-transform: capitalize;
  color: #fff;
}

.section-header__content h2 span {
  color: #ffbe59;
}

.section-header__content p {
  color: #c9c9c9;
  font-size: 16px;
  margin-top: 10px;
}

.swiper-nav {
  display: flex;
  gap: 15px;
}

.swiper-nav__btn {
  width: 45px;
  height: 45px;
  background: transparent;
  border: 2px solid #ffbe59;
  color: #ffbe59;
  font-size: 18px;
  border-radius: 50%;
  transition: 0.3s ease;
}

.swiper-nav__btn:hover,
.swiper-nav__btn.active {
  background-color: #ffbe59;
  color: #000;
}

/* -------------------------------
   Testimonial Slider
--------------------------------*/
.testimonial__item {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 40px;
  transition: 0.3s ease;
  border: 1px solid transparent;
  height: 100%;
  margin-top: 30px;
}

.testimonial__item:hover {
  border: 1px solid #ffbe59;
  transform: translateY(-8px);
}

.testimonial__item-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 25px;
}

/* -------------------------------
   Author Section
--------------------------------*/
.testimonial__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial__author {
  display: flex;
  align-items: center;
}

.testimonial__author-thumb {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.testimonial__author-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial__author-designation h6 {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}

.testimonial__author-designation span {
  font-size: 14px;
  color: #ffbe59;
}

/* -------------------------------
   Quote Icon
--------------------------------*/
.testimonial__quote span {
  font-size: 28px;
  color: #ffbe59;
}

/* -------------------------------
   Responsive
--------------------------------*/
@media (max-width: 767px) {
  .section-header__content h2 {
    font-size: 28px;
    text-align: center;
  }

  .testimonial__item {
    padding: 25px;
  }

  .testimonial__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial__quote {
    margin-top: 15px;
  }
  .swiper-nav {
    gap: 220px;
  }
}

/* ========== GLOBAL BODY THEME ========== */
body.red {
  background: #0d0d0d;
  color: #f2f2f2;
  font-family: "Poppins", sans-serif;
  padding-top: 100px;
}

/* ========== HEADER ========== */
.job-header {
  text-align: center;
  padding: 25px 15px;
  background: transparent;
  border-radius: 12px;
  margin-bottom: 40px;
}

.job-header h1 {
  color: #ffbe59;
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
}

.job-header p {
  font-size: 18px;
  opacity: 0.85;
}

/* ========== CONTENT SECTION ========== */
.job-section {
  padding-bottom: 50px;
}

.job-section h5 {
  color: #ffbe59;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
}

.job-section p,
.job-section ul li {
  color: #dcdcdc;
  line-height: 1.7;
  font-size: 15px;
}

/* ========== LIST STYLING ========== */
.job-section ul {
  padding-left: 20px;
}

.job-section ul li {
  margin-bottom: 10px;
}

/* ========== BUTTON ========== */
.btn-resume {
  background: #ffbe59;
  color: #fff;
  border-radius: 30px;
  padding: 12px 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
  transition: 0.3s;
}

.btn-resume:hover {
  background: #ffbe59;
  color: white;
  transform: translateY(-2px);
}

/* ========== IMAGE ========== */
.job-image {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 15px #ffbe59;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 992px) {
  .job-header h1 {
    font-size: 26px;
  }

  .job-header p {
    font-size: 16px;
  }

  .job-section h5 {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .job-header {
    padding: 20px 10px;
  }

  .job-header h1 {
    font-size: 1rem;
    white-space: nowrap;
  }

  .job-header p {
    font-size: 14px;
  }

  .job-section p,
  .job-section ul li {
    font-size: 14px;
  }

  .btn-resume {
    width: 100%;
    text-align: center;
    padding: 12px;
  }
}
a {
  text-decoration: none;
}
/* Page Background */
.newform1-body {
  background: linear-gradient(
    160deg,
    #000000 0%,
    #221f19 50%,
    #5b4a2c 80%,
    #edc776 100%
  );
  color: #fff;
  font-family: Arial, sans-serif;

  padding-top: 100px;
}

/* Wrapper Box */
.newform1-wrapper {
  background: #2f2f2f;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.4);
  max-width: 800px;
  margin: auto;
}

/* Title */
.newform1-title {
  color: #ffbe59;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
}

/* Labels */
.newform1-label {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

/* Inputs */
.newform1-input {
  background: #4a4a4a;
  border: 1px solid #666;
  color: #fff;
  padding: 10px;
  border-radius: 6px;
}

.newform1-input:focus {
  background: #555;
  border-color: #ffbe59;
  color: #fff;
  box-shadow: 0 0 5px #ffbe59;
}

/* Button */
.newform1-btn {
  background: #ffbe59;
  color: #000;
  font-weight: bold;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  transition: 0.3s;
}

.newform1-btn:hover {
  background: #e4a849;
  color: #000;
}

/* Alert Fix for white text */
/* .alert {
  border-radius: 8px;
  font-weight: 600;
} */

/* .alert-success {
  background: #28a745 !important;
  color: #fff !important;
} */

/* .alert-danger {
  background: #dc3545 !important;
  color: #fff !important;
} */

/* Responsive */
@media (max-width: 576px) {
  .newform1-wrapper {
    padding: 20px;
  }
  .newform1-title {
    font-size: 0.8rem;
    white-space: nowrap;
  }
}
/* Prevent line breaks */
.responsive-text p {
  white-space: nowrap; /* keeps all text in one line */
}

/* Mobile view: align left */
@media (max-width: 767px) {
  .responsive-text {
    text-align: start !important;
  }
}

/* Desktop view: align center */
@media (min-width: 768px) {
  .responsive-text {
    text-align: center !important;
  }
}
/* By default icon visible */
.fa-arrow-right {
  display: inline-block;
}

/* 📱 Hide icon on mobile (screen width below 768px) */
@media (max-width: 767px) {
  .fa-arrow-right {
    display: none !important;
  }
}
.success-icon {
  animation: pop 0.6s ease-out forwards;
  transform: scale(0);
}

@keyframes pop {
  to {
    transform: scale(1);
  }
}
input::placeholder,
textarea::placeholder {
  color: #888 !important; /* your color */
}
