/* FOOTER SECTION */
.tc-footer-section {
  background: linear-gradient(135deg, #061a33, #0a3a78);
  color: #fff;
  padding: 60px 20px;
}

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

.tc-footer-brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.tc-footer-logo {
  max-width: 160px;
  height: 110px;
}

.tc-footer-buttons {
  display: flex;
  gap: 15px;
}

.tc-btn {
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.tc-btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.tc-btn-primary {
  background: #7c4dff;
  color: #fff;
}

/* LINKS GRID */
.tc-footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.tc-footer-col h4 {
  margin-bottom: 15px;
  font-size: 26px;
  color: white !important;
}

.tc-footer-col ul {
  list-style: none;
  padding: 0;
}

.tc-footer-col ul li {
  margin-bottom: 10px;
}

.tc-footer-col ul li a {
  color: #cfd8ff;
  text-decoration: none;
  font-size: 14px;
}

.tc-footer-col ul li a:hover {
  color: #fff;
}

/* FOOTER BOTTOM */
.tc-footer-bottom {
  background: #041327;
  padding: 20px;
}

.tc-footer-bottom-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.tc-footer-bottom-links a {
  color: #cfd8ff;
  margin-left: 15px;
  font-size: 14px;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .tc-footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .tc-footer-brand {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .tc-footer-links {
    grid-template-columns: 1fr;
  }

  .tc-footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }

  .tc-footer-bottom-links a {
    margin: 0 8px;
  }
}

/* SECTION */
.nx-hero{
  padding: 80px 20px;
  background:#ffffff;
}

/* CONTAINER */
.nx-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

/* LEFT */
.nx-content{
  max-width:520px;
}

.nx-tag{
  font-size:13px;
  font-weight:700;
  color:#0a4fcf;
  letter-spacing:1px;
}

.nx-title{
  font-size:44px;
  line-height:1.2;
  color:#0a2540;
  margin:16px 0;
}

.nx-text{
  font-size:16px;
  color:#4a5568;
  line-height:1.7;
  margin-bottom:30px;
}

/* BUTTON */
.nx-btn{
  display:inline-block;
  background:#2f6fed;
  color:#fff;
  padding:14px 26px;
  font-weight:600;
  text-decoration:none;
  border-radius:4px;
  transition:0.3s;
}

.nx-btn:hover{
  background:#1e54c8;
}

/* RIGHT IMAGE */
.nx-image-box{
  max-width:520px;
}

.nx-main-img{
  width:100%;
  height:auto;
  border-radius:6px;
}

/* =====================
   RESPONSIVE
===================== */
@media(max-width:991px){
  .nx-container{
    flex-direction:column;
    text-align:center;
  }

  .nx-title{
    font-size:36px;
  }

  .nx-content{
    max-width:100%;
  }
}

@media(max-width:576px){
  .nx-title{
    font-size:30px;
  }

  .nx-text{
    font-size:15px;
  }

  .nx-btn{
    width:100%;
    text-align:center;
  }
}





/* SECTION */
.rs-sec{
  /*background:#062f5b;*/
  padding:80px 20px;
  color:#fff;
  background-image: url("../images/image_1 (3).png");
	background-size: cover;
	background-color: #f3f7f9;
	/*background-position: right top;*/
	background-repeat: no-repeat;
}

/* WRAPPER */
.rs-wrap{
  max-width:1200px;
  margin:auto;
}

/* TOP */
.rs-label{
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  color:#9ec5ff;
}

.rs-heading{
  font-size:46px;
  line-height:1.2;
  margin:14px 0 50px;
  color:white;
}

/* GRID */
.rs-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

/* CARD */
.rs-card{
  background:#91919145;
  border-radius:12px;
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:260px;
}

.rs-card-lg{
  grid-column:span 1;
}

/* TAG */
.rs-tag{
  align-self:flex-start;
  background:#7c3aed;
  color:#fff;
  font-size:12px;
  padding:6px 14px;
  border-radius:6px;
  font-weight:600;
  margin-bottom:20px;
}

.rs-tag-alt{
  background:#8b5cf6;
}

/* MEDIA */
.rs-media img{
  width:100%;
  border-radius:8px;
  margin-bottom:22px;
}

/* TEXT */
.rs-title{
  font-size:22px;
  line-height:1.3;
  margin-bottom:14px;
  color:white;
}

.rs-text{
  font-size:15px;
  color:#cbd5e1;
  line-height:1.6;
  margin-bottom:22px;
}

/* LINK */
.rs-link{
  margin-top:auto;
  font-weight:600;
  text-decoration:none;
  color:#fff;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:0.3s;
}

.rs-link:hover{
  gap:14px;
  color:#93c5fd;
}

/* =====================
   RESPONSIVE
===================== */
@media(max-width:1024px){
  .rs-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .rs-heading{
    font-size:38px;
  }
}

@media(max-width:640px){
  .rs-grid{
    grid-template-columns:1fr;
  }

  .rs-heading{
    font-size:30px;
  }

  .rs-card{
    padding:24px;
  }
}



.network-pentest-section {
  font-family: 'Inter', sans-serif;
  padding: 80px 0;
  background: #ffffff;
}

.np-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT */
.np-content {
  flex: 1;
}

.np-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #0b4edb;
  margin-bottom: 15px;
}

.np-content h1 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 800;   /* 👈 same heavy weight */
  color: #0b1f44;
  margin-bottom: 20px;
}

.np-content p {
  font-size: 16px;
  font-weight: 400;
  color: #5a6b85;
  max-width: 520px;
  margin-bottom: 30px;
}

.np-buttons {
  display: flex;
  gap: 15px;
}

.btn-outline {
  padding: 12px 22px;
  border: 2px solid #2563eb;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
}

.btn-primary {
  padding: 12px 22px;
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
}

/* RIGHT */
.np-image {
  flex: 1;
}

.np-image img {
  width: 100%;
  border-radius: 16px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .np-container {
    flex-direction: column;
    text-align: center;
  }

  .np-content h1 {
    font-size: 42px;
  }

  .np-content p {
    margin: auto;
  }

  .np-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .np-content h1 {
    font-size: 34px;
  }

  .btn-outline,
  .btn-primary {
    width: 100%;
    text-align: center;
  }
}









