:root {
  --primary: #01a0e1;
  --gray: #f6f6f6;
}

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

.body {
  font-family: "Montserrat", sans-serif;
}

.common-padding {
  padding: 70px 0;
}
@media (max-width: 374px) {
  .common-padding {
    padding: 50px 0;
  }
}

.color-primary {
  color: #01a0e1;
}

.sec-gray {
  background-color: var(--gray);
}

.font-ubuntu {
  font-family: "Ubuntu", sans-serif;
}

.btn {
  position: relative;
  z-index: 0;
  color: #fff;
  border-radius: 4px;
  overflow: hidden;
  font-size: 17px;
  border: 1px solid var(--primary);
  transition: all 0.5s ease-in-out;
}
.btn::before {
  content: "";
  width: 51%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: var(--primary);
  z-index: -1;
  transition: all 0.5s ease-in-out;
}
.btn::after {
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary);
  z-index: -1;
  transition: all 0.5s ease-in-out;
}
.btn:hover {
  color: var(--primary);
  border-color: var(--primary);
  transition: all 0.5s ease-in-out;
}
.btn:hover::before {
  left: -100%;
  transition: all 0.5s ease-in-out;
}
.btn:hover::after {
  right: -100%;
  transition: all 0.5s ease-in-out;
}

.nav-active {
  border-bottom: 2px solid var(--primary);
  color: var(--primary) !important;
}

.section-title {
  font-size: 32px;
  font-weight: 400;
  font-family: "Ubuntu", sans-serif;
}
@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: #737373;
  font-size: 18px;
}

.headers {
  background-color: #f6f6f6;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}
.headers .header-logo img {
  max-width: 124px;
}

.header-shadow {
  box-shadow: 2px 2px 10px 0 #e9e9e9;
  background-color: #fff;
  transition: all 0.5s ease-in-out;
}

.header-nav {
  list-style: none;
}
.header-nav li {
  padding: 0 16px;
}
@media (max-width: 767px) {
  .header-nav li {
    padding: 0 0 14px 0;
  }
}
.header-nav li a {
  font-weight: 500;
  text-decoration: none;
  color: #5c5c5c;
  position: relative;
  font-size: 14px;
}
@media (max-width: 767px) {
  .header-nav li a {
    font-size: 15px;
  }
}
.header-nav li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary);
  transition: all 0.5s ease-in-out;
}
.header-nav li a:hover {
  color: var(--primary);
  transition: all 0.5s ease-in-out;
}
.header-nav li a:hover::after {
  width: 100%;
  transition: all 0.5s ease-in-out;
}

.banner-title {
  font-size: 74px;
  font-weight: 700;
}
.banner-title span {
  font-size: 60px;
  font-weight: 300;
}
@media (max-width: 1024px) {
  .banner-title span {
    font-size: 50px;
  }
}
@media (max-width: 374px) {
  .banner-title span {
    font-size: 40px;
  }
}
@media (max-width: 1024px) {
  .banner-title {
    font-size: 64px;
  }
}
@media (max-width: 374px) {
  .banner-title {
    font-size: 54px;
  }
}

.banner-plan {
  position: absolute;
  width: 100px;
  top: 12%;
  right: 9%;
  animation: rocketFly 3s ease-in-out infinite;
}

@keyframes rocketFly {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: translate(64px, -100px);
    /* Right and up */
    opacity: 0.1;
  }
}
.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin: 0 auto;
}
.expertise-grid .expertise-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #e7e7e7;
  transition: all 0.3s ease;
  padding: 0px 32px;
}
.expertise-grid .expertise-item .expertise-label {
  font-size: 18px;
  font-weight: 500;
}
.expertise-grid .expertise-item:hover {
  border: 1px solid var(--primary);
}
.expertise-grid .expertise-item:hover .icon-circle {
  border: 1px solid var(--primary);
  background-color: #fff;
}
.expertise-grid .expertise-item:hover .icon-circle::before {
  left: 100%;
}
.expertise-grid .expertise-item:hover .icon-circle svg {
  stroke: white;
}
.expertise-grid .expertise-item:hover .expertise-label {
  color: var(--primary);
}
.expertise-grid .expertise-item .icon-circle {
  width: 60px;
  height: 60px;
  background-color: var(--gray);
  border: 1px solid var(--gray);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: -40px;
  margin-bottom: 10px;
}
.expertise-grid .expertise-item .icon-circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transition: left 0.6s ease;
}
.expertise-grid .expertise-item .icon-svg {
  width: 36px;
  height: 36px;
  stroke: #6c757d;
  fill: none;
  stroke-width: 1;
  transition: stroke 0.3s ease;
}

.locket {
  position: absolute;
  top: 56%;
  left: 19%;
  width: 18px;
  animation: locket-zoom 0.8s ease-out infinite;
}

@keyframes locket-zoom {
  0% {
    transform: scale(1, 1);
    rotate: 0deg;
  }
  50% {
    transform: scale(1.5, 154);
    rotate: 40deg;
  }
  100% {
    transform: scale(1, 1);
    rotate: 80deg;
  }
}
.border-animation {
  position: absolute;
  bottom: 15%;
  left: 53%;
  width: 17%;
  height: 12%;
}

/* Bottom dashed line */
.border-animation::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(to right, orange 0 7px, transparent 7px 14px);
  animation: dashBottom 1s linear infinite;
}

/* Right dashed line */
.border-animation::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: repeating-linear-gradient(to top, orange 0 7px, transparent 7px 14px);
  animation: dashRight 1s linear infinite;
}

/* Animations */
@keyframes dashBottom {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 14px 0;
  }
}
@keyframes dashRight {
  from {
    background-position: 0 14px;
  }
  to {
    background-position: 0 0;
  }
}
.power-sec .power-1 {
  position: absolute;
  bottom: 2px;
  left: 0;
  animation: floatPulse 1.5s ease-in-out infinite;
}
.power-sec .power-icon {
  position: absolute;
  top: 17%;
  left: 35%;
  width: 27%;
  z-index: 9;
}
.power-sec .power-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: #ebebeb;
  border: 14px solid #000;
  position: absolute;
  top: 42%;
  left: 49%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.5;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes floatPulse {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-6px);
    opacity: 0.82;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.work-list {
  height: 360px;
  background-color: #f9f9f9;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  border-radius: 20px;
}
.work-list:hover img {
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}
.work-list img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: 100%;
}

.connected-product .services-section {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 60px 40px;
  margin: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1s ease-out;
}
.connected-product .section-header p {
  max-width: 800px;
}
.connected-product .product-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  height: 100%;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(50px);
  animation: slideInUp 0.8s ease-out forwards;
  position: relative;
  overflow: hidden;
}
.connected-product .product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #12bafc, #78d8ff);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.connected-product .product-card:hover::before {
  transform: scaleX(1);
}
.connected-product .product-card .product-icon {
  width: 62px;
  height: 62px;
  border: 1px solid var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  position: relative;
  animation: float 3s ease-in-out infinite;
  font-size: 24px;
  color: var(--primary);
}
.connected-product .product-card .product-title {
  font-size: 1.4rem;
  font-weight: 400;
  color: #2c3e50;
  margin-bottom: 14px;
  text-align: center;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.about-border-animation {
  position: absolute;
  bottom: 33%;
  left: 79%;
  width: 7%;
  height: 49%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .about-border-animation {
    left: 75%;
  }
}

.about-border-animation::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(to right, #ffc71b 0 7px, transparent 7px 14px);
  animation: dashBottom 1s linear infinite;
}

/* about-border-animation */
.about-border-animation::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: repeating-linear-gradient(to top, #ffc71b 0 7px, transparent 7px 14px);
  animation: dashRight 1s linear infinite;
}

@keyframes dashBottom {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 14px 0;
  }
}
@keyframes dashRight {
  from {
    background-position: 0 14px;
  }
  to {
    background-position: 0 0;
  }
}
.wifi-icon {
  position: absolute;
  top: 11%;
  left: 82%;
  width: 7%;
  animation: locket-zoom 1s ease-out infinite;
}
@media (min-width: 768px) and (max-width: 991px) {
  .wifi-icon {
    left: 78%;
  }
}

@keyframes locket-zoom {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1.2);
  }
  100% {
    transform: scale(1, 1);
  }
}
.power-icon {
  width: 15%;
  position: absolute;
  top: 61%;
  left: 3%;
}

@keyframes skew-y-shaking {
  0% {
    transform: skewY(-10deg);
  }
  5% {
    transform: skewY(10deg);
  }
  10% {
    transform: skewY(-10deg);
  }
  15% {
    transform: skewY(10deg);
  }
  20% {
    transform: skewY(0deg);
  }
  100% {
    transform: skewY(0deg);
  }
}
.content-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.section-badge {
  color: #17a2b8;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.primary-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.primary-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 4rem;
  text-align: center;
}

.feature-badge {
  color: #17a2b8;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.feature-description {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.7;
}

.connectivity-diagram {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device {
  position: absolute;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.device:hover {
  transform: translateY(-5px);
}

.wearable {
  width: 80px;
  height: 120px;
  left: 50px;
  top: 150px;
  border: 3px solid #e9ecef;
}

.wearable::before {
  content: "";
  width: 30px;
  height: 30px;
  background: #28a745;
  border-radius: 50%;
  display: block;
  margin-bottom: 10px;
}

.wearable::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #17a2b8;
  display: block;
}

.mobile {
  width: 100px;
  height: 160px;
  left: 200px;
  top: 80px;
  border: 3px solid #495057;
}

.mobile-screen {
  width: 70px;
  height: 100px;
  background: #f8f9fa;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mobile-avatar {
  width: 20px;
  height: 20px;
  background: #28a745;
  border-radius: 50%;
  margin-bottom: 5px;
}

.mobile-lines {
  width: 50px;
  height: 2px;
  background: #17a2b8;
  margin: 2px 0;
}

.mobile-chart {
  width: 40px;
  height: 20px;
  background: linear-gradient(45deg, #28a745, #17a2b8);
  margin-top: 5px;
  border-radius: 2px;
}

.laptop {
  width: 140px;
  height: 100px;
  right: 80px;
  top: 120px;
  border: 3px solid #495057;
}

.laptop-screen {
  width: 110px;
  height: 70px;
  background: #f8f9fa;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

.laptop-avatar {
  width: 25px;
  height: 25px;
  background: #17a2b8;
  border-radius: 50%;
  margin-bottom: 5px;
}

.laptop-chart {
  width: 60px;
  height: 30px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 30"><path d="M5,25 Q15,5 25,15 T45,10 T55,20" stroke="%2317a2b8" stroke-width="2" fill="none"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

.cloud {
  position: absolute;
  top: 20px;
  left: 150px;
  width: 60px;
  height: 35px;
  background: #e9ecef;
  border-radius: 35px;
}

.cloud2 {
  position: absolute;
  top: 190px;
  left: 100px;
  width: 401px;
  height: 200px;
  background: rgba(233, 236, 239, 0.368627451);
  border-radius: 35px;
  transform: rotate(347deg);
}

.cloud::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 10px;
  width: 25px;
  height: 25px;
  background: #e9ecef;
  border-radius: 50%;
}

.cloud::after {
  content: "";
  position: absolute;
  top: -10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background: #e9ecef;
  border-radius: 50%;
}

.connection-line {
  position: absolute;
  height: 2px;
  background: #17a2b8;
  z-index: 1;
}

.line1 {
  width: 80px;
  top: 200px;
  left: 130px;
  transform: rotate(15deg);
}

.line2 {
  width: 100px;
  top: 160px;
  left: 300px;
  transform: rotate(-20deg);
}

.line3 {
  width: 60px;
  top: 80px;
  left: 180px;
  transform: rotate(45deg);
}

.connection-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #17a2b8;
  border-radius: 50%;
  z-index: 2;
}

.dot1 {
  top: 190px;
  left: 125px;
}

.dot2 {
  top: 150px;
  left: 300px;
}

.dot3 {
  top: 70px;
  left: 175px;
}

.dot4 {
  top: 250px;
  left: 200px;
}

.dot5 {
  top: 300px;
  left: 350px;
}

.wifi-signal {
  position: absolute;
  color: #ffc107;
  font-size: 1.2rem;
  animation: pulse 2s infinite;
}

.wifi1 {
  top: 120px;
  right: 150px;
}

.wifi2 {
  top: 180px;
  left: 80px;
}

.wifi3 {
  top: 90px;
  left: 230px;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
.status-indicator {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #dc3545;
  border-radius: 50%;
  top: 10px;
  right: 10px;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .primary-title {
    font-size: 2rem;
  }
  .connectivity-diagram {
    height: 300px;
    transform: scale(0.8);
  }
  .feature-title {
    font-size: 1.5rem;
  }
}
.service-item.active {
  background-color: #f0f0f0;
  font-weight: bold;
}

.right-panel {
  display: none;
}

.right-panel.active {
  display: block;
}

.info-item {
  color: #000;
}
.info-item a {
  color: #000;
  text-decoration: none;
}

.footer-nav .footer-title {
  font-size: 20px;
  font-weight: 500;
}
.footer-nav ul {
  list-style: none;
  padding-left: 0;
}
.footer-nav ul li {
  margin-bottom: 6px;
}
.footer-nav ul li a {
  text-decoration: none;
  color: #000;
  transition: all 0.5s ease-in-out;
  position: relative;
}
.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;
}

.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 #dfdfdf;
  font-size: 14px;
}

.modal-backdrop {
  background-color: rgba(162, 212, 234, 0.6);
  -webkit-backdrop-filter: blur(13px);
          backdrop-filter: blur(13px);
  position: fixed;
}

@media (min-width: 1400px) {
  .modal-lg {
    min-width: 1100px;
  }
}

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

.res-header {
  position: fixed;
  top: 0;
  background-color: #ffffff;
  z-index: 99;
  right: 0;
  left: 100%;
  border: 0;
  height: 100%;
  color: #002253;
  transition: all 0.5s ease-in-out;
}/*# sourceMappingURL=style.css.map */

.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}