/* Services.css */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #111827;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.logo img {
  width: 200px;
}

/* ================= NAVBAR ================= */

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  /* backdrop-filter: blur(14px); */
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* .logo img {

} */

.nav-links {
  display: flex;
  gap: 30px;
  background: rgba(255, 255, 255, 0.37);
  padding: 14px 30px;
  border-radius: 50px;
  border: 1px solid #FFFFFF;
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-size: 14px;
  font-weight: 400;
}

.nav-links .active {
  color: #ff5b2e;
}

.nav-btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.login-btn {
  text-decoration: none;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
}

.contact-btn {
  background: #FFFFFF;
  text-decoration: none;
  color: #0A0A0A;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.contact-btn span {
  display: flex;
  align-items: center;
}

.mobile-menu {
  display: none;
  font-size: 25px;
}

.hero-buttons {
  display: flex;
  /* justify-content: center; */
  gap: 30px;
  margin-top: 40px;
}

.primary-btn {
  background: rgba(41, 37, 36, 1);
  color: rgba(250, 250, 249, 1);
  text-decoration: none;
  padding: 6px 10px 6px 30px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 16px;
}

.primary-btn span {
  background: rgba(242, 85, 50, 1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.secondary-btn {
  background: rgba(255, 255, 255, 1);
  text-decoration: none;
  color: rgba(87, 83, 78, 1);
  border: 1px solid #ddd;
  padding: 16px 24px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
}

/* ================= CYBER HERO ================= */
.active {
  color: #ff5b2e !important;
}

.cyber-hero {
  min-height: 100vh;
  background-image: url("asset/cyberBg1.svg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.cyber-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.cyber-content {
  max-width: 520px;
  margin-left: 60px;
  margin-top: 40px;
}

.cyber-content h1 {
  font-size: 60px;
  line-height: 1.2;
  font-weight: 500;
  color: #292524;
  margin-bottom: 20px;
}

.cyber-content h1 span {
  font-style: italic;
  font-weight: 700;
}

.cyber-sub {
  margin-bottom: 40px;
  color: #4F4F4F;
  font-size: 16px;
  font-weight: 500;
}

.cyber-image img {
  width: 100%;
  max-width: 520px;
}

/* ================= INFO ================= */

.info-section {
  padding: 0px 0px 80px 0px;
  position: relative;
  z-index: 5;
}

.info-card {
  background: #fff;
  border: 1px solid #E7E5E4;
  border-radius: 16px;

  display: grid;
  grid-template-columns: 380px 1fr;

  overflow: hidden;
}

.info-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-right {
  padding: 40px;
}

.info-right h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #4F4F4F;
}

.info-right h3 span {
  font-style: italic;
}

.info-right p {
  color: #4F4F4F;
  line-height: 1.8;
  font-size: 14px;
  font-weight: 500;
}

/* ================= BUILD ================= */

.build-section {
  padding: 80px 0px;
}

.build-section h2 {
  font-size: 52px;
  margin-bottom: 50px;
  color: #101828;
  font-size: 32px;
  font-weight: 500;
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cyber-card {
  background: #F1F1F1;
  padding: 28px;
  border-radius: 12px;
  position: relative;
}


.cyber-card img {
  margin-bottom: 8px;
}

.cyber-card h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: #101828;
  margin-bottom: 14px;
}

.cyber-card span {
  display: block;
  color: #101828;
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 20px;
}

.cyber-card ul {
  padding-left: 18px;
}

.cyber-card ul li {
  margin-bottom: 4px;
  color: rgba(74, 85, 101, 1);
  line-height: 1.6;
  font-size: 14px;
  font-weight: 400;
}

/* ================= WHY ================= */

.why-section {
  padding: 80px 0;
  background-image: url("asset/securityBg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.why-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.why-left {
  flex: 1;
}

.why-left h2 {
  font-size: 32px;
  font-weight: 600;
  color: #101828;

  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-box p {
  margin-top: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: #888888;
}

.why-image img {
  width: 100%;
  max-width: 320px;
}

/* ================= FUTURE ================= */

.future-section {
  padding: 80px 0;
}

.future-card {
  background: #fff;
  border: 1px solid #E7E5E4;
  border-radius: 16px;
  padding: 25px 0px;
  border: 2px solid #EEEEEE;
}

.future-card h2 {
  font-size: 32px;
  font-weight: 600;
  color: #4F4F4F;
  line-height: 1.1;
  margin-bottom: 20px;
  padding: 0px 50px;
}

.future-card h2 span {
  color: #F25532;
  font-style: italic;
}

.future-card img {
  width: 100%;
  /* margin: 20px 0 30px; */
}

.future-card p {
  /* max-width: 720px; */
  line-height: 1.8;
  color: #4F4F4F;
  font-size: 16px;
  padding: 0px 50px;
}


/* ================= CYBER FINAL SECTION ================= */

.cyber-final-section {
  padding: 0px 0 80px;
  /* background: #FAFAF9; */
}

.cyber-final-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.cyber-final-content {
  max-width: 760px;
}

.cyber-small-text {
  display: block;

  color: #F25532;

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 1px;

  margin-bottom: 20px;
}

.cyber-final-content h2 {
  font-size: 28px;
  line-height: 1.1;

  color: #292524;

  font-weight: 600;

}

.cyber-final-content h2 span {
  font-style: italic;
  font-weight: 600;
}

/* ================= FOOTER ================= */
.footer {
  background: #07142b;
  padding: 30px 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top img {
  width: 180px;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: #b8bcc8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 20px;
}

.footer-bottom p {
  color: #8d93a1;
  font-size: 14px;
  font-weight: 400;
}


/* ================= LARGE LAPTOP ================= */

/* @media screen and (max-width:1200px){

    .container{
        max-width:960px;
    }

    .cyber-wrapper{
        gap:40px;
    }

    .build-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .cyber-content h1{
        font-size:38px;
    }

    .why-grid{
        gap:20px;
    }

} */

/* ================= TABLET ================= */

@media screen and (max-width: 480px) {
  .cyber-small-text {
    margin-top: 10px;
  }
}

@media screen and (max-width:992px) {

  .container {
    max-width: 720px;
  }

  .nav-links,
  .nav-btns {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .cyber-hero {
    min-height: auto;
    padding: 140px 0 80px;
  }

  .cyber-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .cyber-content {
    margin-left: 0;
    max-width: 100%;
  }

  .cyber-content h1 {
    font-size: 42px;
  }

  .hero-buttons {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .info-card {
    grid-template-columns: 1fr;
  }

  .info-left {
    padding: 0px;
  }

  .build-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .future-card {
    padding: 40px;
  }

  .cyber-final-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

}

/* ================= MOBILE LARGE ================= */

@media screen and (max-width:768px) {

  .container {
    width: 92%;
  }

  .navbar {
    padding: 16px 0;
  }


  .cyber-hero {
    padding: 120px 0 0px;
  }

  .cyber-content h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .cyber-sub {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    justify-content: center;
  }

  .info-section {
    padding-top: 50px;
  }

  .info-left img {
    width: 100%;
  }

  .info-right {
    padding: 24px;
  }

  .info-right h3 {
    font-size: 18px;
  }

  .build-section {
    padding: 0px 0;
  }

  .build-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .build-grid {
    grid-template-columns: 1fr;
  }

  .cyber-card {
    padding: 22px;
  }

  .cyber-card h3 {
    font-size: 18px;
  }

  .cyber-card ul li {
    font-size: 13px;
  }

  .why-section {
    padding: 70px 0;
  }

  .why-left h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .why-grid {
    gap: 20px;
  }

  .why-image img {
    max-width: 220px;
  }

  .future-section {
    padding: 0px;
  }

  .future-card {
    padding: 28px 24px;
  }

  .future-card h2 {
    font-size: 28px;
  }

  .future-card p {
    font-size: 14px;
    line-height: 1.7;
  }

  .cyber-final-section {
    padding-bottom: 70px;
  }

  .cyber-final-content h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }

}

/* ================= MOBILE MEDIUM ================= */

@media screen and (max-width:480px) {

  .cyber-content h1 {
    font-size: 30px;
  }

  .cyber-sub {
    font-size: 13px;
  }

  .info-right h3 {
    font-size: 16px;
    line-height: 1.5;
  }

  .info-right p {
    font-size: 13px;
  }

  .build-section h2 {
    font-size: 24px;
  }

  .cyber-card {
    padding: 20px;
  }

  .cyber-card h3 {
    font-size: 16px;
  }

  .cyber-card span {
    font-size: 9px;
  }

  .why-left h2 {
    font-size: 24px;
  }

  .why-box p {
    font-size: 13px;
  }

  .future-card h2 {
    font-size: 24px;
  }

  .future-card p {
    font-size: 13px;
  }

  .cyber-final-content h2 {
    font-size: 24px;
  }

  .primary-btn {
    font-size: 14px;
  }

}

/* ================= SMALL MOBILE ================= */

@media screen and (max-width:360px) {

  .cyber-content h1 {
    font-size: 26px;
  }

  .build-section h2 {
    font-size: 22px;
  }

  .why-left h2 {
    font-size: 22px;
  }

  .future-card h2 {
    font-size: 22px;
  }

  .cyber-final-content h2 {
    font-size: 20px;
  }

  .primary-btn,
  .secondary-btn {
    padding-left: 18px;
    padding-right: 18px;
  }

}










body.popup-open {
  overflow: hidden;
}

.contact-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9999;
}

.contact-popup.show {
  display: flex;
}

.popup-box {
  width: min(100%, 540px);
  background: #ffffff;
  border-radius: 14px;
  padding: 10px 22px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: none;
  background: #f1f1f1;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}

.popup-box h2 {
  font-size: clamp(15px, 4vw, 20px);
  line-height: 1.15;
  color: #111;
  margin-bottom: 8px;
}

.popup-box h2 em {
  color: #ef5b2a;
  font-family: Georgia, serif;
}

.popup-box>p {
  font-size: 12px;
  color: #333;
  margin-bottom: 10px;
}

.popup-box form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.popup-box label {
  font-size: 12px;
  color: #172033;
  margin-top: 4px;
}

.popup-box label span {
  color: #ef3f28;
}

.popup-box input,
.popup-box select,
.popup-box textarea {
  width: 100%;
  border: none;
  outline: none;
  background: #f1f1f3;
  border-radius: 7px;
  padding: 10px 14px;
  font-size: 14px;
  color: #111;
}

.popup-box textarea {
  min-height: 70px;
  resize: none;
}

.popup-box form button {
  margin-top: 10px;
  border: none;
  background: #302824;
  color: #ffffff;
  border-radius: 999px;
  padding: 15px;
  font-size: 15px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .popup-box {
    padding: 18px;
    max-height: 92vh;
    overflow-y: auto;
  }
}












@media (max-width: 768px) {
  .mobile-menu {
    display: block;
    cursor: pointer;
    color: #000000;
    z-index: 1002;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 47px;
    width: 100%;
    left: 0px;
    flex-direction: column;
    gap: 18px;
    padding: 22px;
    border-radius: 18px;
    background: #FFFFFF;
    z-index: 1001;
  }

  .nav-links.active {
    display: flex;
  }
}








.cyber-card {
  position: relative;
  background: #f1f1f1;
  border-radius: 8px;
  padding: 32px 30px 70px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.cyber-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 110px;
  height: 72px;
  background: #ffffff;
  clip-path: polygon(32% 100%, 66% 0, 100% 0, 100% 100%);
  pointer-events: none;
}








.contact-btn span {
  display: inline-flex;
  transition: transform 0.3s ease;
}

.contact-btn:hover span {
  transform: translateX(6px);
}

.contact-btn:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.contact-btn span img {
  display: block;
}

.primary-btn span {
  display: inline-flex;
  transition: transform 0.3s ease;
}

.primary-btn:hover span {
  transform: translateX(6px);
}

.primary-btn:hover {
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.primary-btn span img {
  display: block;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #ffffff;
  padding: 10px 0;
  border-radius: 50px;
  /* margin-top: 10px; */
}

.navbar.scrolled .nav-links {
  border: none;
  background: transparent;
}





.footer-bg-text {
  width: 100%;
  text-align: center;
  font-size: clamp(78px, 13vw, 170px);
  font-weight: 800;
  line-height: 0.72;
  color: rgba(15, 23, 42, 0.06);
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  margin-bottom: -12px;
}

@media (max-width: 767px) {
  .footer-bg-text {
    font-size: clamp(52px, 14vw, 90px);
    line-height: 0.78;
    margin-bottom: -8px;
  }
}

.new_dot2 {
  color: red;

}
