* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #06172f;
  color: #ffffff;
  overflow-x: hidden;
}

.navbar {
  width: 100%;
  padding: 18px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(6, 23, 47, 0.92);
  backdrop-filter: blur(16px);
  position: fixed;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand h2 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 26px;
  font-weight: 600;
}

nav a:hover,
nav a.active {
  color: #7ec8ff;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  padding: 150px 8% 90px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 60px;
  background:
    radial-gradient(circle at top right, #1455a8, transparent 35%),
    linear-gradient(135deg, #06172f, #081d3b);
}

.hero h1 {
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero p {
  color: #d7e8ff;
  font-size: 18px;
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 35px;
}

.tagline {
  color: #7ec8ff !important;
  font-weight: 800;
  margin-bottom: 14px !important;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}

.hero-badges span {
  padding: 10px 16px;
  border-radius: 30px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #d7e8ff;
  font-size: 14px;
  font-weight: 700;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 800;
  border: none;
  cursor: pointer;
}

.primary {
  background: linear-gradient(135deg, #4da3ff, #00d4ff);
  color: #06172f;
  box-shadow: 0 18px 40px rgba(0, 212, 255, 0.35);
}

.secondary {
  border: 1px solid #7ec8ff;
  color: #ffffff;
  margin-left: 12px;
}

.globe-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.globe {
  width: 330px;
  height: 330px;
  border-radius: 50%;
  position: relative;
  background:
    radial-gradient(circle at 30% 30%, #ffffff, #4da3ff 18%, #0b3d78 55%, #06172f 75%);
  box-shadow:
    inset -35px -35px 70px rgba(0,0,0,0.45),
    0 40px 90px rgba(0, 212, 255, 0.35);
  animation: spinGlow 6s ease-in-out infinite;
}

.globe span {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  inset: 25px;
}

.globe span:nth-child(2) {
  inset: 70px;
}

.globe span:nth-child(3) {
  inset: 115px;
}

.orbit {
  position: absolute;
  border: 2px solid rgba(126, 200, 255, 0.45);
  border-radius: 50%;
  inset: -25px;
}

.orbit-one {
  transform: rotateX(65deg);
}

.orbit-two {
  transform: rotateY(65deg);
}

.orbit-three {
  transform: rotate(45deg);
}

@keyframes spinGlow {
  0%, 100% {
    transform: rotateY(0deg) translateY(0);
  }

  50% {
    transform: rotateY(20deg) translateY(-18px);
  }
}

.trusted {
  padding: 35px 8%;
  text-align: center;
  background: #041126;
}

.trusted p {
  color: #b8dfff;
  font-weight: 800;
  margin-bottom: 22px;
}

.trusted-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trusted-logos span {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
  font-weight: 700;
}

.section {
  padding: 90px 8%;
  background: #081d3b;
}

.section.dark {
  background: #06172f;
}

.section-title {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 55px;
}

.section-title p {
  color: #7ec8ff;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: 38px;
  line-height: 1.3;
}

.cards {
  display: grid;
  gap: 25px;
}

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.counter-card,
.service-item,
.contact-form,
.contact-info,
.about-image-card,
.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 26px;
  padding: 32px;
  box-shadow: 0 25px 55px rgba(0,0,0,0.28);
  backdrop-filter: blur(16px);
  transition: 0.4s ease;
}

.card:hover,
.counter-card:hover,
.service-item:hover,
.testimonial-card:hover {
  transform: translateY(-10px) scale(1.01);
  background: rgba(77, 163, 255, 0.16);
}

.icon-3d {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,0.22), rgba(77,163,255,0.18));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  box-shadow:
    0 14px 30px rgba(0,0,0,0.28),
    inset 0 2px 6px rgba(255,255,255,0.18);
}

.card h3,
.testimonial-card h4,
.ceo-section h4 {
  color: #7ec8ff;
  margin-bottom: 15px;
}

.card p,
.about-layout p,
.service-item p,
.contact-info p,
.testimonial-card p {
  color: #d7e8ff;
  line-height: 1.8;
}

.step span {
  font-size: 34px;
  color: #7ec8ff;
  font-weight: 900;
}

.counter-section {
  padding: 70px 8%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  background: linear-gradient(135deg, #06172f, #0c2d58);
}

.counter-card {
  text-align: center;
}

.counter-card h3 {
  color: #7ec8ff;
  font-size: 44px;
}

.counter-card p {
  color: #d7e8ff;
  margin-top: 8px;
}

.ceo-section {
  background:
    radial-gradient(circle at left, rgba(77,163,255,0.25), transparent 35%),
    #06172f;
}

.testimonial-slider{
overflow:hidden;
position:relative;
width:100%;
}

.testimonial-track{
display:flex;
gap:25px;
width:max-content;
animation:scrollTestimonials 35s linear infinite;
}

.testimonial-slider:hover .testimonial-track{
animation-play-state:paused;
}

.testimonial-card{
width:380px;
min-height:260px;
flex-shrink:0;
padding:35px;
border-radius:25px;
background:rgba(255,255,255,.08);
border:1px solid rgba(255,255,255,.15);
backdrop-filter:blur(16px);
box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.testimonial-card p{
line-height:1.9;
color:#d7e8ff;
margin-bottom:20px;
}

.testimonial-card h4{
color:#7ec8ff;
margin-bottom:5px;
}

.testimonial-card span{
font-size:14px;
opacity:.8;
}

@keyframes scrollTestimonials{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

.cta {
  padding: 90px 8%;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(77,163,255,0.3), transparent 35%),
    #06172f;
}

.cta h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.cta p {
  color: #d7e8ff;
  margin-bottom: 28px;
}

.page-hero {
  padding: 150px 8% 80px;
  text-align: center;
  background:
    radial-gradient(circle at top, #1455a8, transparent 35%),
    linear-gradient(135deg, #06172f, #081d3b);
}

.page-hero h1 {
  font-size: 52px;
  margin-bottom: 16px;
}

.page-hero p {
  color: #d7e8ff;
  font-size: 18px;
}

.service-list {
  display: grid;
  gap: 35px;
}

.service-item {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 35px;
  align-items: center;
}

.service-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
}

.service-item h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.service-item h4 {
  color: #7ec8ff;
  margin: 20px 0;
  font-size: 20px;
}

.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
}

.about-layout h2,
.contact-info h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.about-image-card img {
  width: 100%;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
}

.contact-layout {
  align-items: start;
}

.info-box {
  margin: 22px 0;
  padding: 20px;
  border-radius: 18px;
  background: rgba(77, 163, 255, 0.13);
}

.info-box h3 {
  color: #7ec8ff;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  margin-bottom: 16px;
  border: none;
  outline: none;
  border-radius: 14px;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #c8d9ee;
}

.faq-box {
  max-width: 850px;
  margin: auto;
}

.faq-question {
  width: 100%;
  background: rgba(77, 163, 255, 0.15);
  color: white;
  border: none;
  margin-top: 14px;
  padding: 18px;
  border-radius: 14px;
  font-size: 16px;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-answer {
  display: none;
  color: #d7e8ff;
  padding: 18px;
  line-height: 1.7;
}

.faq-answer.show {
  display: block;
}

.map-section {
  padding: 0 8% 90px;
  background: #081d3b;
}

.map-section iframe {
  width: 100%;
  height: 420px;
  border: none;
  border-radius: 28px;
  box-shadow: 0 25px 55px rgba(0,0,0,0.28);
}

.whatsapp-widget {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 300px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #ffffff;
  color: #06172f;
  padding: 16px;
  border-radius: 22px;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

.whatsapp-icon {
  width: 45px;
  height: 45px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.whatsapp-widget h4 {
  margin-bottom: 5px;
}

.whatsapp-widget p {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 4px;
}

.whatsapp-widget strong {
  color: #0b7a35;
  font-size: 13px;
}

.footer {
  background: #041126;
  padding: 70px 8% 25px;
  color: #d7e8ff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 35px;
}

.footer h3,
.footer h4 {
  color: #ffffff;
  margin-bottom: 18px;
}

.footer p {
  line-height: 1.8;
}

.footer a {
  display: block;
  color: #d7e8ff;
  text-decoration: none;
  margin-bottom: 12px;
}

.footer a:hover {
  color: #7ec8ff;
}

.footer-brand {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 18px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 22px;
}

.social-icons a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  box-shadow:
    0 10px 25px rgba(0,0,0,0.25),
    inset 0 2px 5px rgba(255,255,255,0.15);
  font-size: 20px;
  transition: 0.4s;
}

.social-icons a:hover {
  transform: translateY(-5px);
  background: #4da3ff;
  color: white;
}

.contact-icon {
  color: #7ec8ff;
  font-weight: 900;
}

.footer-whatsapp {
  display: inline-block !important;
  width: fit-content;
  margin-top: 15px;
  padding: 12px 20px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: 30px;
  color: #bfffd6 !important;
}

.footer-bottom {
  margin-top: 45px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}

@media (max-width: 950px) {
  .hero,
  .service-item,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 40px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .section-title h2,
  .about-layout h2,
  .contact-info h2,
  .cta h2 {
    font-size: 30px;
  }

  .cards.four,
  .cards.three,
  .counter-section,
  .trusted-logos,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  nav {
    display: none;
    position: absolute;
    top: 78px;
    right: 8%;
    background: #081d3b;
    padding: 25px;
    border-radius: 18px;
  }

  nav a {
    display: block;
    margin: 16px 0;
  }

  nav.active {
    display: block;
  }

  .menu-btn {
    display: block;
  }

  .brand h2 {
    font-size: 17px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .globe {
    width: 240px;
    height: 240px;
  }

  .secondary {
    margin-left: 0;
    margin-top: 12px;
  }

  .whatsapp-widget {
    width: 260px;
    right: 15px;
    bottom: 15px;
  }
}.premium-hero {
  position: relative;
  overflow: hidden;
}

.premium-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(77, 163, 255, 0.18);
  filter: blur(40px);
  right: -120px;
  top: 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.pricing-card {
  position: relative;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 25px 55px rgba(0,0,0,0.28);
  backdrop-filter: blur(18px);
  transition: 0.4s ease;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(77, 163, 255, 0.20);
  border-radius: 50%;
  top: -40px;
  right: -40px;
}

.pricing-card:hover {
  transform: translateY(-12px);
  background: rgba(77, 163, 255, 0.16);
}

.pricing-card.featured {
  border: 1px solid rgba(0, 212, 255, 0.55);
  box-shadow:
    0 30px 80px rgba(0, 212, 255, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

.pricing-badge {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 30px;
  background: rgba(126, 200, 255, 0.16);
  color: #7ec8ff;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 18px;
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.price {
  font-size: 28px;
  color: #7ec8ff;
  font-weight: 900;
  margin-bottom: 12px;
}

.pricing-note {
  color: #d7e8ff;
  line-height: 1.7;
  margin-bottom: 22px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 25px;
}

.pricing-card li {
  color: #d7e8ff;
  margin-bottom: 12px;
  line-height: 1.5;
}

.pricing-card li::before {
  content: "✓";
  color: #7ec8ff;
  margin-right: 8px;
  font-weight: 900;
}

@media (max-width: 950px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(0, 212, 255, 0.14);
  border-radius: 50%;
  filter: blur(45px);
  top: 80px;
  right: -150px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(77, 163, 255, 0.10);
  border-radius: 50%;
  filter: blur(55px);
  bottom: -80px;
  left: -70px;
}

.hero-content,
.globe-wrapper {
  position: relative;
  z-index: 2;
}

.card,
.counter-card,
.testimonial-card,
.pricing-card {
  position: relative;
  overflow: hidden;
}

.card::after,
.counter-card::after,
.testimonial-card::after,
.pricing-card::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  right: -25px;
  bottom: -25px;
}

.trusted-logos span {
  box-shadow:
    0 12px 30px rgba(0,0,0,0.25),
    inset 0 1px 4px rgba(255,255,255,0.12);
  transition: 0.4s ease;
}

.trusted-logos span:hover {
  transform: translateY(-6px);
  background: rgba(77, 163, 255, 0.16);
}


.ceo-section .about-image-card {
  transform: perspective(1000px) rotateY(6deg);
}

.ceo-section .about-image-card:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-8px);
}

.testimonial-card {
  min-height: 220px;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 5px;
  right: 28px;
  font-size: 90px;
  color: rgba(126, 200, 255, 0.15);
  font-family: serif;
}

.footer {
  background:
    radial-gradient(circle at top left, rgba(77,163,255,0.18), transparent 30%),
    #041126;
}