:root {
  --primary: #1A9F9A;
  --secondary: #204A62;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1600px;
  }
}

body {
  font-family: "Inter", sans-serif;
  color: #323638;
}

.header-shadow {
  background-color: #000000;
  transition: all 0.5s ease-in-out;
}

a {
  color: #fff;
  text-decoration: none;
}

ul {
  margin-bottom: 0;
  padding-left: 0;
}

.z-1 {
  z-index: 1;
}

.f-grow {
  flex-grow: 1;
}

.f-shrink {
  flex-shrink: 0;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-22 {
  font-size: 22px;
}

.fs-30 {
  font-size: 28px;
}

.color-primary {
  color: var(--primary);
}

.btn-primary {
  background: #1A9F9A;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  padding: 14px 38px;
  border-radius: 18px;
  border: 2px solid #48EBE5;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.8);
  /* Soft neon shadow */
  font-family: "Inter", sans-serif;
  transition: 0.8s ease-in-out;
}
@media (max-width: 992px) {
  .btn-primary {
    font-size: 20px;
  }
}
@media (max-width: 556px) {
  .btn-primary {
    font-size: 16px;
    border-radius: 8px;
    padding: 10px 22px;
  }
}
.btn-primary:hover {
  background: #10c8ab;
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0px 6px 25px rgba(0, 255, 200, 0.55);
}

.nav-active {
  width: 100%;
  height: 1px;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  /* must be transparent */
}

.section-title {
  font-size: 44px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 36px;
  }
}
@media (max-width: 374px) {
  .section-title {
    font-size: 27px;
  }
}

.section-subtitle {
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.subtitle {
  color: #131415;
  font-size: 20px;
}

.headers {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  font-family: "Inter", sans-serif;
}
.headers .h-navbar {
  background-color: #323232;
}
.headers .h-navbar ul {
  list-style: none;
}
.headers .h-navbar ul li a {
  font-size: 20px;
  border-right: 1px solid #747474;
}
@media (max-width: 1440px) {
  .headers .h-navbar ul li a {
    font-size: 16px;
  }
}
.headers .header-logo img {
  width: 150px;
}

.header-nav {
  list-style: none;
}
.header-nav li {
  padding-right: 60px;
}
@media (max-width: 1600px) {
  .header-nav li {
    padding-right: 24px;
  }
}
.header-nav li a {
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
  font-size: 22px;
}
@media (max-width: 1440px) {
  .header-nav li a {
    font-size: 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .header-nav li a {
    font-size: 18px;
  }
}
.header-nav li a:hover {
  color: var(--primary);
  transition: all 0.5s ease-in-out;
}

.btn-contact {
  background-color: #fff;
  color: var(--primary);
  padding: 11px 28px;
  border-radius: 14px;
  font-size: 16px;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 375px) {
  .btn-contact {
    padding: 8px 10px;
  }
}
.btn-contact:hover {
  background-color: var(--primary);
  color: #fff;
  transition: all 0.5s ease-in-out;
}

.fw-semibold {
  font-weight: 600;
}

.hero-section {
  height: 90vh;
  background-image: url("../img/home/banner-img.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  font-family: "poppins", sans-serif;
}
@media (max-width: 768px) {
  .hero-section {
    height: 80vh;
  }
}
.hero-section .banner-contect {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-section .banner-contect h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.3;
  max-width: 1200px;
}
@media (max-width: 556px) {
  .hero-section .banner-contect h1 {
    font-size: 42px;
  }
}
.hero-section .banner-contect p {
  font-size: 36px;
  color: #D1D1D1;
}
@media (max-width: 556px) {
  .hero-section .banner-contect p {
    font-size: 24px;
  }
}

.ai-card-hover {
  position: relative;
  width: 320px;
  height: 420px;
  background: #0b0f16;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.85s ease-in-out;
  border: 2px solid transparent;
}
.ai-card-hover:hover {
  border: 2px solid #00e1c6;
  /* Border visible on hover */
  box-shadow: 0 0 16px rgba(0, 225, 198, 0.7);
  /* Glow effect */
  transform: translateY(-4px);
}
.ai-card-hover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.85;
}

.ai-section {
  background-image: url("../img/home/in-video.gif");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow-x: hidden;
}
.ai-section:after {
  content: "";
  position: absolute;
  background-color: rgba(30, 30, 30, 0.6980392157);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ai-section .ai-contect {
  position: relative;
  z-index: 1;
}
.ai-section .ai-contect .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.ai-section .ai-contect .content h2 {
  font-size: 30px;
  font-weight: 300;
  line-height: 1.3;
}
.ai-section .ai-contect .content h2 span {
  font-size: 46px;
  font-weight: 600;
}
.ai-section .ai-contect .content p {
  font-size: 24px;
}

.video-2 {
  transform: skew(22deg, -4deg) !important;
}

.video-section {
  padding: 80px 0;
  overflow-x: hidden;
  /* Floating thin outline blobs (behind the video) */
  /* Blob container that clips the video */
  /* Subtle floating effect */
}
@media (max-width: 557px) {
  .video-section {
    padding: 60px 0;
  }
}
.video-section .video-title {
  font-size: 38px;
  font-weight: 600;
  color: var(--secondary);
}
@media (max-width: 768px) {
  .video-section .video-title {
    font-size: 30px;
  }
}
@media (max-width: 557px) {
  .video-section .video-title {
    font-size: 26px;
  }
}
.video-section .blob-video-wrapper {
  position: relative;
  width: 420px;
  height: 320px;
}
@media (max-width: 500px) {
  .video-section .blob-video-wrapper {
    width: 336px;
  }
}
@media (max-width: 375px) {
  .video-section .blob-video-wrapper {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 325px) {
  .video-section .blob-video-wrapper {
    width: 240px;
    height: 280px;
  }
}
.video-section .blob-outline {
  position: absolute;
  inset: 0;
  border: 1.5px solid #1A9F9A;
  background-color: rgba(26, 159, 154, 0.2);
  border-radius: 10% 10% 10% 10%/10% 12% 9% 10%;
  transform: skew(-11deg, -4deg);
  transform: rotate(-15deg);
  opacity: 0.4;
}
.video-section .video-outling {
  transform: skew(-22deg, 0deg) rotate(13deg) scale(0.92);
}
.video-section .blob-video {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10% 10% 10% 10%/10% 12% 9% 10%;
  transform: skew(-11deg, -4deg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}
.video-section .blob-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.video-section .blob-video-wrapper:hover {
  transform: translateY(-6px) scale(1.02);
  transition: transform 0.5s ease;
}

.accordion-item .accordion-button {
  font-size: 28px;
  font-weight: 600;
  color: var(--secondary);
}
@media (max-width: 768px) {
  .accordion-item .accordion-button {
    font-size: 24px;
  }
}
@media (max-width: 557px) {
  .accordion-item .accordion-button {
    font-size: 22px;
  }
}
.accordion-item .accordion-body {
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 557px) {
  .accordion-item .accordion-body {
    font-size: 18px;
  }
}
.accordion-item .accordion-button:not(.collapsed),
.accordion-item .accordion-button:focus {
  background-color: #fff;
  box-shadow: none;
}

.work-section {
  padding: 90px 0;
}
@media (max-width: 557px) {
  .work-section {
    padding: 70px 0;
  }
}
.work-section .work-content h3 {
  font-size: 54px;
  font-weight: 400;
  color: var(--primary);
}
@media (max-width: 768px) {
  .work-section .work-content h3 {
    font-size: 42px;
  }
}
@media (max-width: 557px) {
  .work-section .work-content h3 {
    font-size: 34px;
  }
}
.work-section .work-content h5 {
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .work-section .work-content h5 {
    font-size: 22px;
  }
}
.work-section .work-content p {
  font-size: 18px;
  font-weight: 300;
}

.maintain-section {
  padding: 50px 0;
}
.maintain-section h3 {
  font-size: 38px;
  font-weight: 600;
  color: var(--secondary);
}
@media (max-width: 557px) {
  .maintain-section h3 {
    font-size: 30px;
  }
}
.maintain-section h5 {
  font-size: 24px;
  font-weight: 600;
  color: var(--secondary);
}
@media (max-width: 768px) {
  .maintain-section h5 {
    font-size: 22px;
  }
}
.maintain-section p {
  font-size: 18px;
  font-weight: 300;
}

.monitoring-section {
  padding: 40px 0;
  background-image: url("../img/home/monitoring-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  /* Default arrow white */
  /* Arrow white when open */
}
.monitoring-section .monitoring-title h6 {
  font-size: 24px;
  font-weight: 600;
  color: #1A9F9A;
  text-transform: uppercase;
}
.monitoring-section .monitoring-title h5 {
  font-size: 38px;
  font-weight: 500;
}
.monitoring-section .monitoring-title p {
  font-size: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.monitoring-section .monitori-status {
  border: 2px solid rgba(255, 255, 255, 0.4392156863);
  border-radius: 40px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.monitoring-section .monitori-status::after {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.07) inset;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 0;
}
.monitoring-section .monitori-status .filter-content {
  position: relative;
  z-index: 1;
}
.monitoring-section .monitori-status .filter-content p {
  font-size: 28px;
}
@media (max-width: 557px) {
  .monitoring-section .monitori-status .filter-content p {
    font-size: 24px;
  }
}
.monitoring-section h4 {
  font-size: 32px;
  font-weight: 400;
  color: #1A9F9A;
}
@media (max-width: 557px) {
  .monitoring-section h4 {
    font-size: 32px;
  }
}
@media (max-width: 340px) {
  .monitoring-section h4 {
    font-size: 30px;
  }
}
.monitoring-section .accordion-item,
.monitoring-section .accordion-button {
  background-color: transparent !important;
}
.monitoring-section .accordion-item .accordion-button {
  color: #fff;
}
.monitoring-section .accordion-button {
  font-size: 24px;
  font-weight: 500;
}
.monitoring-section .accordion-body {
  color: #C8C8C8;
  font-weight: 400;
  padding-left: 78px;
}
.monitoring-section .accordion-button:not(.collapsed),
.monitoring-section .accordion-button:focus {
  background-color: #fff;
}
.monitoring-section .accordion-button::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='%23FFFFFF' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}
.monitoring-section .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='%23FFFFFF' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}
.monitoring-section .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg) !important;
}

.security-section {
  padding: 80px 0;
  background-image: url("../img/home/s-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  /* Responsive adjustments */
}
@media (max-width: 557px) {
  .security-section {
    padding: 60px 0;
  }
}
.security-section h3 {
  font-size: 38px;
  font-weight: 600;
  color: var(--secondary);
}
@media (max-width: 768px) {
  .security-section h3 {
    font-size: 30px;
  }
}
@media (max-width: 557px) {
  .security-section h3 {
    font-size: 26px;
  }
}
.security-section .features {
  overflow-x: auto;
  justify-content: center;
}
@media (max-width: 1440px) {
  .security-section .features {
    justify-content: start;
  }
}
.security-section .features .feature {
  position: relative;
  flex-shrink: 0;
  width: 300px;
}
.security-section .features .feature:last-child {
  width: 220px;
}
@media (max-width: 1440px) {
  .security-section .features .feature {
    width: 280px;
  }
}
@media (max-width: 768px) {
  .security-section .features .feature {
    width: 250px;
  }
}
.security-section .features .feature-desc {
  color: #323638;
  font-size: 22px;
  text-align: left;
  max-width: 200px;
}
@media (max-width: 992px) {
  .security-section .feature::after {
    display: none;
  }
  .security-section .feature {
    margin-bottom: 2rem;
  }
}

.power-section {
  padding: 60px 0;
  background-image: url("../img/home/p-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.power-section h3 {
  font-size: 38px;
  font-weight: 400;
  color: #21A49F;
}
@media (max-width: 768px) {
  .power-section h3 {
    font-size: 30px;
  }
}
@media (max-width: 557px) {
  .power-section h3 {
    font-size: 26px;
  }
}
.power-section .sub-text {
  font-size: 28px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .power-section .sub-text {
    font-size: 22px;
  }
}
.power-section h5 {
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .power-section h5 {
    font-size: 18px;
  }
}

.secure-section h3 {
  font-size: 38px;
  font-weight: 500;
  color: var(--secondary);
}
@media (max-width: 768px) {
  .secure-section h3 {
    font-size: 30px;
  }
}
@media (max-width: 557px) {
  .secure-section h3 {
    font-size: 26px;
  }
}
.secure-section .contact-btn {
  font-size: 28px;
  font-weight: 600;
  text-decoration: underline;
  color: var(--primary);
}
.secure-section .labs-contact {
  position: relative;
}
.secure-section .labs-contact .labs-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 557px) {
  .secure-section .labs-contact .labs-bg {
    width: 100%;
  }
}
.secure-section .labs-contact .logo {
  background-color: #fff;
  border-radius: 40px;
  position: relative;
}

.footer {
  background-color: #204A62;
  color: #fff;
}
.footer .footer-logo img {
  width: 220px;
}
.footer .info-item a {
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
}

.footer-nav .footer-title {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
}
.footer-nav ul {
  list-style: none;
  padding-left: 0;
}
.footer-nav ul li {
  margin-bottom: 14px;
}
.footer-nav ul li a {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
  position: relative;
  font-size: 18px;
}
.footer-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--primary);
  transition: all 0.5s ease-in-out;
}
.footer-nav ul li a:hover {
  color: var(--primary);
  transition: all 0.5s ease-in-out;
}
.footer-nav ul li a:hover::after {
  width: 100%;
  transition: all 0.5s ease-in-out;
}

.form-control {
  border-radius: 20px;
}
.form-control::-moz-placeholder {
  color: #C2C2C2;
}
.form-control::placeholder {
  color: #C2C2C2;
}

.footer-border {
  border-right: 2px solid #ddd;
  padding-right: 10px;
  color: #000;
  text-decoration: none;
}

.footer-link {
  display: inline-block;
  position: relative;
  font-weight: bold;
}

.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  border: 1px solid var(--primary);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  font-size: 18px;
  color: #fff;
  margin-right: 10px;
  transition: 0.5s ease-in-out;
}
.social-links a:hover {
  transition: 0.5s ease-in-out;
  margin-top: -4px;
}

.footer-copy {
  border-top: 1px solid #5D5D5D;
  font-size: 14px;
  padding: 16px 0 0 0;
}
.footer-copy p {
  font-size: 16px;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.header-open {
  display: block !important;
  transition: all 0.5s ease-in-out !important;
  left: 0 !important;
}

.res-header {
  position: fixed;
  top: 0;
  background-color: #000000;
  z-index: 99;
  right: 0;
  left: 100%;
  border: 0;
  height: 100%;
  transition: all 0.5s ease-in-out;
}

.gradient-border {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(123deg, #1A9F9A, #1A9F9A, #000, #000);
  /* Dark overlay layer */
  /* Second gradient for hover */
}
.gradient-border::before, .gradient-border::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}
.gradient-border::before {
  background-color: transparent;
  transition: background-color 0.5s ease-in-out;
}
.gradient-border::after {
  padding: 2px;
  background: linear-gradient(236deg, #1A9F9A, #1A9F9A, #000, #000);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.gradient-border:hover::before {
  background-color: rgba(0, 0, 0, 0.5607843137); /* smooth dark overlay */
}
.gradient-border:hover::after {
  opacity: 1; /* fade in border gradient */
}/*# sourceMappingURL=style.css.map */