/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 1000;
  border-bottom: 1px solid #ddd;
}

.logo img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #002A5E;
  font-weight: 500;
}

.nav-links li a.active,
.nav-links li a:hover {
  color: #0d6efd;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  list-style: none;
  padding: 10px 0;
  top: 100%;
  left: 0;
  min-width: 180px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.dropdown-menu li a {
  padding: 8px 15px;
  display: block;
  color: #002A5E;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ------------------------Hero Section ---------------------------*/

.hero-section {
  position: relative;
  height: 100vh;
  margin-top: 70px; /* Navbar space */
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(213, 100%, 18%, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  z-index: 2;
}

.hero-content {
  color: white;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn {
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn.primary {
  background-color: white;
  color: #002A5E;
}

.btn.primary:hover {
  background-color: #f2f2f2;
}

.btn.secondary {
  border: 2px solid white;
  color: white;
}

.btn.secondary:hover {
  background-color: white;
  color: #002A5E;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background: white;
    width: 100%;
    text-align: center;
    transition: 0.3s ease;
    padding: 20px 0;
  }

  .nav-links.active {
    left: 0;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* ------------------------about section ---------------------------*/


.welcome-qss {
  font-family: 'Poppins', sans-serif;
  padding: 50px 20px;
  text-align: center;
}

.welcome-qss-container {
  max-width: 1200px;
  margin: auto;
}

.welcome-qss h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #002a5e;
}

.welcome-qss p {
  color: #374151;
  max-width: 800px;
  margin: 0 auto 40px;
}

.welcome-qss-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  align-items: flex-start;
}

.welcome-qss-image img {
  width: 500px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.welcome-qss-info {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: left;
}

.welcome-qss-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.welcome-qss-item i {
  font-size: 22px;
  color: #1d4ed8;
  background: #ffffff;
  padding: 10px;
  border-radius: 50%;
}

.welcome-qss-item h4 {
  margin: 0 0 5px;
  font-weight: 600;
  color: #1f2937;
}

.welcome-qss-item p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .welcome-qss-content {
    flex-direction: column;
    align-items: center;
  }

  .welcome-qss-info {
    text-align: center;
  }

  .welcome-qss-item {
    flex-direction: column;
    align-items: center;
  }

  .welcome-qss-item i {
    margin-bottom: 10px;
  }
}

     /* ----------------services-section Start ------------- */


   

.services-section {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #555;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.service-card:hover {
    background: #e8f0ff;
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    background: #0d2b6f;
    color: white;
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
}

.service-card a {
    color: #0d2b6f;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.95rem;
}

.service-card a:hover {
    text-decoration: underline;
}


/*  ------------------- core services start ------------> */


.core-services {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #002a5e;
}

.section-subtitle {
  color: #555;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-card {
  background: #f9f9fb;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, #143d8c, #2563eb); /* Blue gradient */
  box-shadow: 0 10px 25px rgba(20, 61, 140, 0.3);
  color: white;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover a {
  color: white;
}

.icon-wrapper {
  width: 50px;
  height: 50px;
  background-color: #143d8c;
  color: white;
  font-size: 1.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.service-card a {
  color: #143d8c;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.service-card:hover a {
  color: white;
  text-decoration: underline;
}



/* <!-- testimonial start------------> */

.testimonial-item {
  transition: all 0.4s ease;
  background: #ffffff;
  border-radius: 15px;
  padding: 20px;
}

.testimonial-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #143d8c, #2563eb);
  color: #ffffff;
}

.testimonial-item:hover .testimonial-text {
  background: #d4af37; /* Golden background */
  color: #000000; /* Black text inside */
}


.testimonial-item img {
  border: 3px solid #0d6efd;
  transition: all 0.4s ease;
}

.testimonial-item:hover img {
  border-color: #ff9800;
  transform: rotate(5deg) scale(1.05);
}

.testimonial-text {
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.6;
}


.owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-dot {
  width: 12px;
  height: 12px;
  margin: 5px;
  background: #d1d1d1 !important;
  display: inline-block;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.owl-dot.active {
  background: #0d6efd !important;
  width: 14px;
  height: 14px;
}

.owl-dot:hover {
  background: #ff9800 !important;
}

/* <!-- testimonial end   ---------------------> */

/* ------------------footer start ----------------- */
.footer {
    background: linear-gradient(135deg, #0a0a0a, #1e1e1e);
    color: #fff;
    padding: 50px 0 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background: #ffb400;
    bottom: -5px;
    left: 0;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin: 8px 0;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ffb400;
    padding-left: 5px;
}

.social-links a {
    display: inline-block;
    margin: 0 8px;
    font-size: 16px;
    color: #bbb;
    transition: 0.3s;
}

.social-links a:hover {
    color: #ffb400;
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #aaa;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}


/* ------------------footer end ----------------- */



/* ----------------------------------------About US page code  start--------------------------------------------------- */


/* ------------------- about section start ------------------------  */


.about-section {
    background-color: #f9fbff;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

.about-container {
    max-width: 1200px;
    margin: auto;
}

.about-heading {
    text-align: center;
    margin-bottom: 40px;
}

.about-heading h2 {
    font-size: 32px;
    color: #0d1b4c;
    margin-bottom: 10px;
}

.about-heading p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 24px;
    color: #0d1b4c;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-quote {
    background: #eaf1ff;
    padding: 15px 20px;
    border-left: 4px solid #0056d2;
    font-size: 15px;
    color: #0d1b4c;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .about-quote {
        text-align: center;
    }
}

/* ------- about section end-------------  */



/* ------------------- our-story start ------------------------  */

.story-section {
    background-color: #ffffff;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

.story-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.story-content {
    flex: 1;
    min-width: 320px;
}

.story-content h2 {
    font-size: 32px;
    color: #0d1b4c;
    margin-bottom: 25px;
}

.story-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.story-icon {
    background: #0056d2;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    text-align: center;
    line-height: 34px;
    margin-right: 15px;
    flex-shrink: 0;
}

.story-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #0d1b4c;
}

.story-text p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

.story-image {
    flex: 1;
    min-width: 320px;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .story-container {
        flex-direction: column;
        text-align: left;
    }
    .story-item {
        flex-direction: row;
    }
}


/* ----------- our-story end --------------  */


/* <!------------------------------mission-vision Start ------------------------->



<!-- mission-vision end ----------------------> */

/* Vision & Mission Section */
.vm-section {
  background: linear-gradient(180deg, #1a3d7c 0%, #12315a 50%, #ffffff 50%);
}

.vm-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.18);
  border: 2px solid #ffb400;
}

.vm-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.vm-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  font-size: 28px;
  color: #1a3d7c;
}

.vm-card:hover .vm-icon {
  background: #ffb400;
  box-shadow: 0 8px 20px rgba(255,180,0,0.5);
  transform: scale(1.1) rotate(5deg);
  color: #ffffff;
}

.vm-title {
  font-size: 22px;
  color: #1a3d7c;
  margin: 0;
  font-weight: 600;
}

.vm-text {
  color: #4b5563;
  text-align: justify;
  font-size: 16px;
}

/* Responsive */
@media(max-width: 600px) {
  .vm-card { padding: 20px; }
  .vm-title { font-size: 20px; }
}

/* certifications start ------------------ */

.cert-section {
    background-color: #f8faff;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

.cert-container {
    max-width: 1200px;
    margin: auto;
}

.cert-container h2 {
    font-size: 32px;
    font-weight: bold;
    color: #0d1b4c;
    margin-bottom: 8px;
}

.cert-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.cert-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.cert-icon {
    background: #1e3a8a;
    color: #fff;
    font-size: 24px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.cert-card h3 {
    font-size: 18px;
    font-weight: bold;
    color: #0d1b4c;
    margin-bottom: 10px;
}

.cert-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/* Hover Effect */
.cert-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #0d1b4c, #143d8c, #2563eb);
    color: #fff;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.15);
}

.cert-card:hover h3,
.cert-card:hover p {
    color: #fff;
}

.cert-card:hover .cert-icon {
    background: #facc15; /* Gold icon background on hover */
    color: #0d1b4c;
}


/* certifications End ------------------ */


/* core-values start ------------------ */

.core-values {
  background: #eaf6ff;
  padding: 60px 20px;
  font-family: "Inter", sans-serif;
}

.core-container {
  max-width: 1200px;
  margin: 0 auto;
}

.core-header {
  text-align: center;
  margin-bottom: 40px;
}

.core-title {
  font-size: 32px;
  font-weight: 800;
  color: #153a80;
  margin: 0;
}

.core-subtitle {
  font-size: 16px;
  color: #687386;
  margin-top: 10px;
}

.core-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.core-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid rgba(21, 58, 128, 0.08);
  box-shadow: 0 6px 18px rgba(21, 58, 128, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.core-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 28px rgba(21, 58, 128, 0.15);
}

.core-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(21, 58, 128, 0.08), rgba(21, 58, 128, 0.03));
  color: #153a80;
  font-size: 28px;
  transition: transform 0.3s ease;
}

.core-card:hover .core-icon {
  transform: scale(1.1);
}

.core-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #153a80;
  margin: 0;
}

.core-card-text {
  margin-top: 12px;
  font-size: 15px;
  color: #687386;
  line-height: 1.6;
}


/* core-values End ------------------ */



/* contact- Page start ------------------ */

.page-body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ff9800, #f8fbff);
    color: rgb(20, 20, 20);
    margin: 0;
    padding: 0;
}

.contact-section {
    padding: 50px 10%;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 1rem;
    color: #1b1a1a;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-card {
    display: flex;
    align-items: center;
    background: white;
    color: #002a5e;
    padding: 15px;
    margin-top: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.info-icon {
    background: #002a5e;
    color: white;
    padding: 15px;
    font-size: 20px;
    border-radius: 50%;
    margin-right: 15px;
    transition: 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transform: translateY(-5px);
}

.info-card:hover .info-icon {
    background: #ff9800;
}

.info-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.info-text {
    font-size: 0.9rem;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-input {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.form-textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    resize: none;
    height: 120px;
}

.form-btn {
    background: #002a5e;
    color: white;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.form-btn:hover {
    background: #ff9800;
}

.contact-map {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.map-frame {
    width: 100%;
    height: 350px;
    border: 0;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
}



/* Security Services  page Start------------------ */

/* Section shell */
.sec-why {
  background: #ffffff;
  padding: 64px 20px;
  font-family: 'Poppins', sans-serif;
  color: #1f2a44;
}

/* Container */
.sec-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 48px;
  align-items: center;
}

/* Left image */
.sec-left { position: relative; }
.sec-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.08));
  border-radius: 12px;
}

/* Heading block */
.sec-head { margin-bottom: 20px; }
.sec-kicker {
  display: inline-block;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0aa2ff;
  background: rgba(10,162,255,.08);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.sec-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.25;
  color: #002a5e;
  margin: 8px 0 10px 0;
}
.sec-intro {
  font-size: 15px;
  color: #4a5568;
}

/* Features grid */
.sec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 26px;
}

/* Card */
.sec-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 14px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #eef2f7;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.sec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,42,94,.12);
  border-color: #d7e3f7;
  background: linear-gradient(180deg,#ffffff 0%, #f7fbff 100%);
}

/* Icon */
.sec-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: radial-gradient(120% 120% at 30% 20%, #21c87a 0%, #13a85f 60%, #0d8e50 100%);
  color: #ffffff;
  font-size: 22px;
  box-shadow: 0 6px 16px rgba(19,168,95,.35);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.sec-card:hover .sec-icon {
  transform: scale(1.05);
  background: radial-gradient(120% 120% at 30% 20%, #00b3ff 0%, #0073ff 55%, #002a5e 100%);
  box-shadow: 0 8px 18px rgba(0,115,255,.35);
}

/* Card text */

.sec-card-title {
  margin: 2px 0 6px 0;
  font-weight: 600;
  color: #0f1f3d;
  font-size: 18px;
}
.sec-card-desc {
  color: #5b6474;
  font-size: 14px;
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 1024px) {
  .sec-wrap { grid-template-columns: 1fr; }
  .sec-left { order: 2; }
  .sec-right { order: 1; }
}
@media (max-width: 640px) {
  .sec-title { font-size: 26px; }
  .sec-grid { grid-template-columns: 1fr; }
}


/* qss-highlight */

.qss-highlight {
  background: #f1f6fa;
  padding: 60px 5%;
  font-family: 'Poppins', sans-serif;
}

.highlight-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  text-align: center;
}

.highlight-card {
  background: #fff;
  border-radius: 10px;
  padding: 40px 20px 60px;
  width: 300px;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.4s ease;
  color: #222;
}

.highlight-icon {
  width: 60px;
  height: 60px;
  background: #eaeaea;
  border-radius: 50%;
  font-size: 24px;
  color: #00c853;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -50px auto 20px auto;
  transition: 0.3s ease;
}

.highlight-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.highlight-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.highlight-btn {
  width: 40px;
  height: 40px;
  background: #00c853;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s ease;
}

/* Hover Effect */
.highlight-card:hover,
.highlight-card.active {
  background: #00c853;
  color: #fff;
  transform: translateY(-8px);
}

.highlight-card:hover .highlight-icon,
.highlight-card.active .highlight-icon {
  background: #fff;
  color: #00c853;
}

.highlight-card:hover .highlight-btn,
.highlight-card.active .highlight-btn {
  background: #fff;
  color: #00c853;
}

.highlight-card:hover h3,
.highlight-card.active h3,
.highlight-card:hover p,
.highlight-card.active p {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .highlight-container {
    flex-direction: column;
    align-items: center;
  }
}




.qss-security-features {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.qss-security-features .qss-heading {
  font-size: 2.2rem;
  color: #111827;
  margin-bottom: 10px;
}

.qss-security-features .qss-subheading {
  color: #4b5563;
  margin-bottom: 40px;
  font-size: 1rem;
}

.qss-security-features .qss-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.qss-security-features .qss-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  padding: 25px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.qss-security-features .qss-card i {
  font-size: 28px;
  color: #2563eb;
  margin-bottom: 12px;
}

.qss-security-features .qss-card h4 {
  font-size: 1rem;
  color: #1f2937;
}

.qss-security-features .qss-card:hover {
  border-color: #2563eb;
  transform: translateY(-5px);
  background: #f0f9ff;
}



/*  staffing page Start------------------ */



.qss-staffing-benefits {
  padding: 60px 20px;
  background: #2c62e6;
  color: #f8fafc;
  text-align: center;
}

.qss-staffing-benefits h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.qss-benefit-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.qss-benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 30px 20px;
  width: 280px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.qss-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.6);
  border-color: #06b6d4;
}

.qss-benefit-card i {
  font-size: 32px;
  color: #06b6d4;
  margin-bottom: 15px;
}

.qss-benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.qss-benefit-card p {
  font-size: 0.95rem;
  color: #cbd5e1;
}

/* Responsive */
@media (max-width: 768px) {
  .qss-benefit-grid {
    flex-direction: column;
    align-items: center;
  }

  .qss-benefit-card {
    width: 100%;
    max-width: 340px;
  }
}

/* --------------.qss-staff-types */

.qss-staff-types {
  padding: 60px 20px;
  background: #2d64ea;
  color: #f1f5f9;
  text-align: center;
}

.qss-staff-types h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-items: center;
}

.staff-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 25px 20px;
  width: 100%;
  max-width: 280px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: 0.3s ease-in-out;
  text-align: center;
}

.staff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  border-color: #38bdf8;
}

.staff-card i {
  font-size: 30px;
  color: #38bdf8;
  margin-bottom: 15px;
}

.staff-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #e2e8f0;
}

.staff-card p {
  font-size: 0.95rem;
  color: #cbd5e1;
}


/* qss-industries-served */

.qss-industries-served {
  background: #632ecb;
  color: #f3f1f9;
  padding: 60px 20px;
  text-align: center;
}

.qss-industries-served h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.industry-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 25px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: 0.3s ease-in-out;
}

.industry-card:hover {
  transform: translateY(-6px);
  border-color: #60a5fa;
  box-shadow: 0 0 15px rgba(56,189,248,0.5);
}

.industry-card i {
  font-size: 30px;
  color: #38bdf8;
  margin-bottom: 15px;
}

.industry-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #e2e8f0;
}

.industry-card p {
  font-size: 0.95rem;
  color: #cbd5e1;
}



.qss-staffing-process {
  background: #073dbe;
  color: #f8fafc;
  padding: 60px 20px;
  text-align: center;
}

.qss-staffing-process h2 {
  font-size: 2rem;
  margin-bottom: 50px;
}

.process-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  counter-reset: step-counter;
}

.step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 25px 20px;
  flex: 1 1 calc(20% - 20px);
  min-width: 230px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
  border-color: #60a5fa;
  box-shadow: 0 0 15px rgba(56,189,248,0.5);
}

.step-circle {
  width: 40px;
  height: 40px;
  background: #38bdf8;
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #e2e8f0;
}

.step p {
  font-size: 0.95rem;
  color: #cbd5e1;
}

@media (max-width: 900px) {
  .process-flow {
    flex-direction: column;
    align-items: center;
  }

  .step {
    width: 100%;
    max-width: 500px;
  }
}
.qss-staffing-process {
  background: #073dbe;
  color: #f8fafc;
  padding: 60px 20px;
  text-align: center;
}

.qss-staffing-process h2 {
  font-size: 2rem;
  margin-bottom: 50px;
}

.process-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  counter-reset: step-counter;
}

.step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 25px 20px;
  flex: 1 1 calc(20% - 20px);
  min-width: 230px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
  border-color: #60a5fa;
  box-shadow: 0 0 15px rgba(56,189,248,0.5);
}

.step-circle {
  width: 40px;
  height: 40px;
  background: #38bdf8;
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #e2e8f0;
}

.step p {
  font-size: 0.95rem;
  color: #cbd5e1;
}

@media (max-width: 900px) {
  .process-flow {
    flex-direction: column;
    align-items: center;
  }

  .step {
    width: 100%;
    max-width: 500px;
  }
}

/* -----------------staffing page  code End----------------- */




/* Specialized Support Services Start page------------------ */


.support-services-page.what-we-offer {
  background-color: #f0f4f8;
  padding: 60px 20px;
  text-align: center;
}

.support-services-page .offer-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #0a1f44;
}

.support-services-page .offer-header p {
  font-size: 1rem;
  color: #333;
  max-width: 720px;
  margin: 0 auto 40px;
}

.support-services-page .offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  justify-items: center;
}

.support-services-page .offer-card {
  background: white;
  border-radius: 18px;
  padding: 30px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  max-width: 300px;
}

.support-services-page .offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.support-services-page .offer-icon {
  font-size: 32px;
  color: #1e90ff;
  margin-bottom: 15px;
}

.support-services-page .offer-card h3 {
  font-size: 1.2rem;
  color: #0a1f44;
  margin-bottom: 10px;
}

.support-services-page .offer-card p {
  font-size: 0.95rem;
  color: #444;
}

/* ------------------------why-choose-support */

.support-services-page.why-choose-support {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.support-services-page .choose-header h2 {
  font-size: 2rem;
  color: #002a5e;
  margin-bottom: 10px;
}

.support-services-page .choose-header p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #333;
  font-size: 1rem;
}

.support-services-page .choose-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  justify-items: center;
}

.support-services-page .choose-card {
  background: #f8fafc;
  padding: 30px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  max-width: 280px;
}

.support-services-page .choose-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.support-services-page .choose-card i {
  font-size: 30px;
  color: #1e90ff;
  margin-bottom: 15px;
}

.support-services-page .choose-card h3 {
  font-size: 1.2rem;
  color: #0a1f44;
  margin-bottom: 8px;
}

.support-services-page .choose-card p {
  font-size: 0.95rem;
  color: #555;
}

/* ---------------FAQ  ------------- */

.support-services-page.faq-enhanced {
  background: linear-gradient(to right, #f5f8fb, #e6ecf3);
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  color: #002244;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0a2b5a;
  margin-bottom: 10px;
}

.faq-header p {
  font-size: 1rem;
  color: #444;
  max-width: 800px;
  margin: 0 auto;
}

.faq-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.faq-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  border: 1px solid #d0e1f9;
  position: relative;
}

.faq-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  border-color: #007bff;
}

.faq-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #0a2b5a;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-card h3 i {
  font-size: 1.3rem;
  color: #007bff;
}

.faq-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-header h2 {
    font-size: 1.8rem;
  }

  .faq-card {
    padding: 25px 20px;
  }
}


/* ------------------Specialized Support Services  code End----------------- */




/* Facility Management Page Start ------------------ */

.facility-services-cards {
  background: #f9fafb;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.facility-services-cards h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #002a5e;
}

.facility-services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.facility-card {
  background: #ffffffcc;
  border-radius: 18px;
  padding: 30px 20px;
  width: 280px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.facility-card:hover {
  transform: translateY(-8px);
  border-color: #1d4ed8;
  box-shadow: 0 12px 28px rgba(0, 42, 94, 0.2);
}

.facility-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.facility-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1d4ed8;
}

.facility-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .facility-services-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* ---------------Why Choose QSS Facility Management */

.facility-why-qss {
  background-color: #f0f4f8;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.facility-why-qss h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #002a5e;
}

.why-qss-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-qss-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.why-qss-card:hover {
  transform: translateY(-6px);
  border-color: #1d4ed8;
  box-shadow: 0 12px 32px rgba(29, 78, 216, 0.15);
}

.why-icon {
  font-size: 36px;
  margin-bottom: 16px;
  color: #1d4ed8;
}

.why-qss-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1d4ed8;
}

.why-qss-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}


/* ---------------Our Facility Process */

.facility-process-qss {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.facility-process-qss h2 {
  font-size: 2rem;
  color: #002a5e;
  margin-bottom: 50px;
}

.process-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  background: #f9fafb;
  border-radius: 14px;
  border: 1px solid #e0e7ff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
  padding: 30px 20px;
  flex: 1 1 220px;
  max-width: 250px;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: #1d4ed8;
  box-shadow: 0 10px 28px rgba(29, 78, 216, 0.1);
}

.step-number {
  width: 44px;
  height: 44px;
  background: #1d4ed8;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h3 {
  font-size: 16px;
  color: #1d4ed8;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .process-flow {
    flex-direction: column;
    align-items: center;
  }

  .process-step {
    width: 100%;
    max-width: 100%;
  }
}


/* ---------------Contact / CTA */

.facility-contact-cta-qss {
  background: linear-gradient(145deg, #e0e7ff, #f3f4f6);
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #002a5e;
}

.cta-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  justify-content: space-between;
}

.cta-text {
  flex: 1 1 45%;
}

.cta-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #1e3a8a;
}

.cta-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.cta-text a {
  color: #1d4ed8;
  text-decoration: none;
}

.cta-form {
  flex: 1 1 45%;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.cta-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
}

.cta-form textarea {
  resize: vertical;
}

.cta-form button {
  background: linear-gradient(90deg, #1e3a8a, #2563eb);
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.cta-form .note {
  font-size: 13px;
  color: #555;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
  }

  .cta-text,
  .cta-form {
    flex: 1 1 100%;
  }
}


/* ---------------F A Q */

.facility-faq-qss {
  background-color: #f8fafc;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #002a5e;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-container h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #1e3a8a;
}

.faq-item {
  border-bottom: 1px solid #cbd5e1;
  padding: 15px 0;
}

.faq-item input[type="checkbox"] {
  display: none;
}

.faq-item label {
  display: block;
  font-weight: bold;
  cursor: pointer;
  font-size: 17px;
  position: relative;
  padding-right: 30px;
  transition: color 0.3s ease;
}

.faq-item label::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  color: #1e3a8a;
  transition: transform 0.3s ease;
}

.faq-item input[type="checkbox"]:checked + label::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 15px;
  line-height: 1.6;
  color: #334155;
}

.faq-item input[type="checkbox"]:checked ~ .faq-answer {
  max-height: 500px;
  margin-top: 10px;
}




/* ------------------Facility Management code End----------------- */

