@charset "UTF-8";
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  color: #f8fafc;
  font-family: "DM Sans", sans-serif;
  background: #06061e;
  line-height: 1.6;
}

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, #050816, #06061e);
  border-bottom: 1px solid rgba(14, 165, 233, 0.15);
  transition: 0.3s ease;
}

.header.scrolled {
  background: rgba(6, 6, 30, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.header .nav-container {
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  max-width: 1300px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  transition: 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.4));
}

.logo:hover img {
  transform: scale(1.05);
}

.nav ul {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav a {
  position: relative;
  color: #94a3b8;
  font-size: 20px;
  text-decoration: none;
  transition: 0.3s ease;
}

.nav a::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, #0ea5e9, #2563eb);
  transition: 0.3s ease;
}

.nav a:hover {
  color: #f8fafc;
}

.nav a:hover::after {
  width: 100%;
}

.hamburger {
  position: relative;
  z-index: 11000;
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #0ea5e9, #2563eb);
  transition: 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 850px) {
  .hamburger {
    display: flex;
  }
  .nav {
    position: fixed;
    z-index: 9998;
    top: 0;
    right: -280px;
    width: 260px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 25px;
    background: #06061e;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.35s ease;
  }
  .nav.active {
    right: 0;
  }
  .nav ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .nav a {
    color: #94a3b8;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s;
  }
  .nav a:hover {
    padding-left: 10px;
    color: #fff;
  }
}
.footer {
  margin-top: 0;
  background: linear-gradient(180deg, #050816, #06061e);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.container {
  margin: 0 auto;
  padding: 0 28px;
  max-width: 1300px;
}

.footer-grid {
  display: grid;
  padding: 35px 0;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-col h4 {
  margin-bottom: 10px;
  border: none !important;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none !important;
}

.footer-col p {
  margin: 6px 0 14px;
  color: #94a3b8;
  font-size: 19px;
  line-height: 1.6;
}

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

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

.footer-col ul li a {
  color: #94a3b8;
  font-size: 19px;
  text-decoration: none;
  transition: 0.25s;
}

.footer-col ul li a:hover {
  color: #0ea5e9;
}

.footer-brand .logo1 {
  text-decoration: none !important;
}

.footer-brand .logo1 h1 {
  margin-bottom: 4px;
  border: none !important;
  display: inline-block;
  font-weight: 700;
  font-size: 28px;
  text-decoration: none !important;
}

.social-icons {
  margin-top: 6px;
  display: flex;
  gap: 8px;
}

.social-icons a {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #94a3b8;
  font-size: 25px;
  transition: 0.25s;
}

.social-icons a:hover {
  border-color: #0ea5e9;
  color: #fff;
  background: rgba(14, 165, 233, 0.12);
}

.footer-contact-list li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-list li i {
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f6f7f8;
  font-size: 20px;
  min-width: 34px;
  background: rgba(14, 165, 233, 0.08);
  transition: 0.3s ease;
}

.footer-contact-list li a, .footer-contact-list li span {
  color: #94a3b8;
  font-size: 19px;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-bottom {
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
}

.footer-bottom p {
  color: #94a3b8;
  font-size: 15px;
}

.footer-bottom p strong {
  color: #fff;
}

.footer-bottom .tripledots {
  color: #0ea5e9;
  font-weight: 700;
  text-decoration: none;
}

.footer-bottom .tripledots:hover {
  text-decoration: underline;
}

@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }
  .footer-grid {
    padding: 28px 0;
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .footer-bottom p {
    font-size: 15px;
  }
}
.whatsapp-float {
  position: fixed;
  z-index: 1000;
  right: 29px;
  bottom: 154px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 26px;
  background: #25d366;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.whatsapp-float i, .whatsapp-float svg {
  color: inherit;
  text-decoration: none;
  line-height: 1;
}

.hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 60px 60px;
  min-height: 70vh;
}

.hero-bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.2;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.orb-1 {
  top: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: #00d4b4;
}

.orb-2 {
  right: 5%;
  bottom: 10%;
  width: 250px;
  height: 250px;
  background: #0ea5e9;
}

.orb-3 {
  top: 50%;
  left: 60%;
  width: 200px;
  height: 200px;
  background: #8b5cf6;
}

.orb-4 {
  top: 20%;
  right: 20%;
  width: 180px;
  height: 180px;
  background: #f59e0b;
}

.orb-5 {
  bottom: 20%;
  left: 30%;
  width: 220px;
  height: 220px;
  background: #ef4444;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
}

.hero-content {
  flex: 1;
}

.hero-badge {
  margin-bottom: 20px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  font-size: 13px;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.badge-dot {
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #00d4b4;
}

.hero-eyebrow {
  margin-bottom: 12px;
  font-size: 14px;
  opacity: 0.7;
}

.hero-headline {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 52px;
  line-height: 1.1;
}

.hero-headline .text-gradient {
  background: linear-gradient(90deg, #00d4b4, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  background-clip: text;
}

.hero-headline .outline-text {
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 1px #fff;
}

.hero-sub {
  margin-bottom: 30px;
  font-size: 16px;
  opacity: 0.75;
  max-width: 500px;
}

.hero-actions {
  margin-bottom: 40px;
  display: flex;
  gap: 15px;
}

.btn-primary {
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: #f7f2f2;
  font-weight: 600;
  gap: 8px;
  background: linear-gradient(90deg, #00d4b4, #0ea5e9);
  transition: 0.3s;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 12px 20px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 25px;
}

.stat {
  text-align: center;
}

.stat-num {
  font-weight: 700;
  font-size: 24px;
}

.stat-label {
  font-size: 15px;
  opacity: 0.6;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-card {
  position: relative;
  margin: auto;
  width: 320px;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

.profile-placeholder {
  position: relative;
  z-index: 2;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.ai-profile-img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.profile-ring, .profile-ring-2 {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: spinBorder 20s linear infinite;
}

.profile-ring {
  width: 240px;
  height: 240px;
}

.profile-ring-2 {
  width: 280px;
  height: 280px;
  animation-direction: reverse;
}

.floating-tag {
  position: absolute;
  border-radius: 20px;
  padding: 6px 12px;
  color: #fff;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.tag-1 {
  top: 11%;
  left: 33%;
}

.tag-2 {
  top: 25%;
  left: 98%;
}

.tag-3 {
  top: 50%;
  left: 100%;
}

.tag-4 {
  top: 80%;
  left: 85%;
}

.tag-5 {
  top: 91%;
  left: 50%;
}

.tag-6 {
  top: 80%;
  left: 15%;
}

.tag-7 {
  top: 50%;
  left: 0%;
}

.tag-8 {
  top: 28%;
  left: 8%;
}

.tag-9 {
  top: 10%;
  left: 75%;
}

@media (max-width: 768px) {
  .profile-card {
    width: 260px;
    height: 260px;
  }
  .profile-placeholder {
    width: 160px;
    height: 160px;
  }
  .profile-ring {
    width: 200px;
    height: 200px;
  }
  .profile-ring-2 {
    width: 230px;
    height: 230px;
  }
  .floating-tag {
    padding: 4px 8px;
    font-size: 10px;
  }
  .tag-1 {
    top: 2%;
    left: 50%;
  }
  .tag-2 {
    top: 18%;
    left: 82%;
  }
  .tag-3 {
    top: 50%;
    left: 95%;
  }
  .tag-4 {
    top: 80%;
    left: 82%;
  }
  .tag-5 {
    top: 95%;
    left: 50%;
  }
  .tag-6 {
    top: 80%;
    left: 18%;
  }
  .tag-7 {
    top: 50%;
    left: 5%;
  }
  .tag-8 {
    top: 20%;
    left: 18%;
  }
  .tag-9 {
    top: 5%;
    left: 72%;
  }
}
@media (max-width: 480px) {
  .profile-card {
    width: 220px;
    height: 220px;
  }
  .profile-placeholder {
    width: 140px;
    height: 140px;
  }
  .profile-ring {
    width: 170px;
    height: 170px;
  }
  .profile-ring-2 {
    width: 200px;
    height: 200px;
  }
  .floating-tag {
    padding: 3px 6px;
    font-size: 12px;
  }
  .tag-1 {
    top: 4%;
    left: 43%;
  }
  .tag-2 {
    top: 17%;
    left: 93%;
  }
  .tag-3 {
    top: 69%;
    left: 100%;
  }
  .tag-4 {
    top: 84%;
    left: 87%;
  }
  .tag-5 {
    top: 96%;
    left: 50%;
  }
  .tag-6 {
    top: 83%;
    left: 4%;
  }
  .tag-7 {
    top: 41%;
    left: -3%;
  }
  .tag-8 {
    top: 20%;
    left: 6%;
  }
  .tag-9 {
    top: 40%;
    left: 100%;
  }
}
.featured {
  padding: 100px 60px;
  background: #0b0b0f;
}

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

.featured-header {
  margin-bottom: 50px;
  text-align: center;
}

.section-label {
  margin-bottom: 10px;
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.6;
}

.section-title {
  margin-bottom: 10px;
  font-size: 36px;
}

.section-sub {
  font-size: 19px;
  opacity: 0.6;
  text-align: justify;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.featured-item {
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  transition: 0.3s;
}

.featured-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 992px) {
  .hero-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    text-align: left;
  }
  .hero-headline {
    font-size: 42px;
  }
  .hero-sub {
    max-width: 100%;
  }
  .hero-actions {
    justify-content: flex-start;
  }
  .hero-stats {
    justify-content: flex-start;
  }
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 100px 30px 60px;
    min-height: auto;
  }
  .orb {
    display: block;
  }
  .grid-overlay {
    opacity: 0.2;
  }
  .hero-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    text-align: left;
  }
  .hero-content {
    flex: 1 1 55%;
    text-align: left;
  }
  .hero-eyebrow {
    font-size: 13px;
  }
  .hero-headline {
    font-size: 36px;
    line-height: 1.15;
  }
  .hero-sub {
    font-size: 15px;
    max-width: 100%;
    opacity: 0.75;
  }
  .hero-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
  }
  .btn-primary, .btn-ghost {
    justify-content: center;
    flex: 1 1 auto;
    text-align: center;
    min-width: 130px;
  }
  .hero-stats {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
  }
  .stat-divider {
    display: block;
  }
  .profile-card {
    width: 260px;
    height: 260px;
  }
  .profile-placeholder {
    width: 170px;
    height: 170px;
  }
  .profile-ring {
    top: 20px;
    left: 20px;
    width: 200px;
    height: 200px;
  }
  .profile-ring-2 {
    top: 5px;
    left: 5px;
    width: 240px;
    height: 240px;
  }
}
.about {
  position: relative;
  padding: 100px 60px;
  overflow: hidden;
  background: linear-gradient(135deg, #050816 0%, #06061e 40%, rgba(14, 165, 233, 0.08) 70%, rgba(37, 99, 235, 0.08) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about::before, .about::after {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  content: "";
  filter: blur(100px);
  opacity: 0.25;
}

.about::before {
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: #0ea5e9;
}

.about::after {
  right: -60px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  background: #2563eb;
}

.about .about-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.section-label {
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05), inset 0 0 10px rgba(255, 255, 255, 0.05);
  transition: 0.3s ease;
}

.section-label:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
}

.about-content {
  padding-right: 10px;
  flex: 1;
}

.section-sub {
  margin-top: 16px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.about-heading {
  margin-bottom: 14px;
  color: #f8fafc;
  font-weight: 600;
  font-size: 20px;
}

.about-cards {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-block {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: 0.3s ease;
}

.about-block:hover {
  border-color: rgba(14, 165, 233, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.1);
}

.about-list {
  list-style: none;
}

.about-list li {
  margin-bottom: 12px;
  display: grid;
  align-items: start;
  color: #94a3b8;
  font-size: 19px;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  line-height: 1.5;
}

.about-list li::before {
  color: #0ea5e9;
  font-weight: 600;
  content: "✓";
}

.about-visual {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex: 0 0 320px;
}

.about-image-wrapper {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  width: 320px;
  height: 400px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.about-img {
  position: relative;
  z-index: 2;
  border-radius: 14px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.about-glow {
  position: absolute;
  z-index: 1;
  border-radius: 20px;
  inset: 0;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  filter: blur(80px);
  opacity: 0.25;
}

@media (max-width: 992px) {
  .about {
    padding: 80px 40px;
  }
  .about .about-container {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
  .about-content {
    padding-right: 0;
    text-align: center;
  }
  .about-cards {
    grid-template-columns: 1fr;
  }
  .about-visual {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .about {
    padding: 70px 20px;
  }
  .about-image-wrapper {
    width: 260px;
    height: 320px;
  }
  .about-heading {
    font-size: 20px;
  }
  .about-list li {
    font-size: 19px;
    text-align: left;
  }
}
@media (max-width: 480px) {
  .about {
    padding: 60px 15px;
  }
  .about-image-wrapper {
    width: 220px;
    height: 280px;
  }
}
.certification {
  position: relative;
  padding: 100px 60px;
  background: linear-gradient(135deg, #050816 0%, #0b1124 50%, #06061e 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cert-header {
  margin-bottom: 50px;
  text-align: center;
}

.cert-wrapper {
  position: relative;
  padding: 0 30px;
}

.cert-scroll {
  display: flex;
  padding-bottom: 10px;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.cert-scroll::-webkit-scrollbar {
  display: none;
}

.cert-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  width: 260px;
  height: 170px;
  flex: 0 0 auto;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  transition: 0.25s ease;
}

.cert-card:hover {
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-4px);
}

.cert-card img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cert-card:hover img {
  transform: scale(1.08);
}

.cert-btn {
  position: absolute;
  z-index: 5;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transform: translateY(-50%);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
  transition: 0.25s ease;
}

.cert-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.cert-prev {
  left: 0;
}

.cert-next {
  right: 0;
}

@media (max-width: 992px) {
  .certification {
    padding: 80px 40px;
  }
  .cert-card {
    width: 220px;
    height: 150px;
  }
}
@media (max-width: 768px) {
  .certification {
    padding: 70px 20px;
  }
  .cert-wrapper {
    padding: 0 20px;
  }
  .cert-card {
    width: 190px;
    height: 130px;
  }
  .cert-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
  }
  .cert-prev {
    left: 5px;
  }
  .cert-next {
    right: 5px;
  }
}
@media (max-width: 480px) {
  .cert-card {
    width: 160px;
    height: 110px;
  }
}
.services {
  position: relative;
  padding: 100px 60px;
  overflow: hidden;
  background: radial-gradient(circle at 15% 40%, rgba(14, 165, 233, 0.12), transparent 40%), radial-gradient(circle at 85% 50%, rgba(245, 158, 11, 0.15), transparent 45%), radial-gradient(circle at 70% 80%, rgba(37, 99, 235, 0.12), transparent 50%), linear-gradient(135deg, #020617 0%, #06061e 50%, #030712 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.services::before {
  position: absolute;
  z-index: 0;
  content: "";
  inset: 0;
  background: radial-gradient(circle at 30% 60%, rgba(14, 165, 233, 0.08), transparent 50%);
  animation: floatGlow 14s ease-in-out infinite;
}

@keyframes floatGlow {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
.section-container {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 1200px;
}

.services-header {
  margin-bottom: 60px;
  text-align: center;
}

.services-header .section-label {
  margin-bottom: 10px;
  color: #94a3b8;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.services-header .section-title {
  color: #f8fafc;
  font-weight: 700;
  font-size: 40px;
}

.services-header .section-subheading {
  margin-top: 12px;
  color: #94a3b8;
  font-size: 18px;
  max-width: 700px;
  margin-inline: auto;
  line-height: 1.6;
}

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

.service-card {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 26px 22px;
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: 0.3s ease;
}

.service-card::before {
  position: absolute;
  border-radius: 16px;
  padding: 1px;
  content: "";
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(14, 165, 233, 0.25), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s ease;
}

.service-card h3 {
  margin-bottom: 10px;
  color: #f8fafc;
  font-weight: 600;
  font-size: 20px;
}

.service-card p {
  color: #94a3b8;
  font-size: 16px;
  line-height: 1.6;
}

.service-card:hover {
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(14, 165, 233, 0.12);
}

.service-card:hover::before {
  opacity: 1;
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-header .section-title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .services {
    padding: 70px 20px;
  }
  .services-header {
    margin-bottom: 40px;
    text-align: center;
  }
  .services-header .section-subheading {
    margin-inline: 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .service-card {
    padding: 22px 18px;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .service-card p {
    font-size: 18px;
  }
  .services::before {
    opacity: 0.5;
  }
}
@media (max-width: 480px) {
  .service-card {
    border-radius: 14px;
  }
  .services-header .section-title {
    font-size: 28px;
  }
  .services-header .section-subheading {
    font-size: 18px;
    text-align: justify;
  }
}
.contact {
  position: relative;
  padding: 100px 60px;
  overflow: hidden;
  background: radial-gradient(circle at 20% 30%, rgba(14, 200, 233, 0.15), transparent 40%), radial-gradient(circle at 80% 60%, rgba(99, 102, 241, 0.12), transparent 45%), linear-gradient(135deg, #050816 0%, #06061e 50%, #053c4d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-container {
  margin: 0 auto;
  max-width: 1200px;
}

.contact-header {
  margin-bottom: 60px;
  text-align: center;
}

.contact-header .section-label {
  margin-bottom: 10px;
  color: #94a3b8;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-header .section-title {
  color: #f8fafc;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
}

.contact-header .section-title .text-gradient {
  background: linear-gradient(90deg, #0ea5e9, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

.contact-header .section-subheading {
  margin-top: 12px;
  color: #94a3b8;
  font-size: 18px;
  max-width: 650px;
  margin-inline: auto;
  line-height: 1.6;
}

.contact-wrapper {
  display: flex;
  align-items: stretch;
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 20px;
}

.info-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: rgba(14, 165, 233, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.info-card h3 {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  color: #f8fafc;
  font-size: 16px;
  gap: 10px;
}

.info-card h3 i {
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0ea5e9;
  font-size: 18px;
  background: rgba(14, 165, 233, 0.12);
}

.info-card p {
  margin-left: 46px;
  color: #94a3b8;
  font-size: 18px;
  line-height: 1.5;
}

.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
  position: relative;
  margin-bottom: 15px;
}

.form-group input, .form-group textarea {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  width: 100%;
  padding: 12px 14px 12px 56px;
  color: #f8fafc;
  font-size: 18px;
  background: rgba(0, 0, 0, 0);
  outline: none;
  transition: 0.3s ease;
}

.form-group input::-moz-placeholder, .form-group textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input::placeholder, .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus, .form-group textarea:focus {
  border-color: rgba(14, 165, 233, 0.5);
  box-shadow: 0 0 12px rgba(14, 165, 233, 0.2);
}

.form-group textarea {
  height: 130px;
  padding-top: 14px;
  resize: none;
}

.form-group i {
  position: absolute;
  top: 50%;
  left: 12px;
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0ea5e9;
  font-size: 18px;
  transform: translateY(-50%);
  background: rgba(14, 165, 233, 0.12);
}

.form-group.textarea i {
  top: 16px;
  transform: none;
}

.contact-form button {
  border: none;
  border-radius: 10px;
  width: 100%;
  padding: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  background: linear-gradient(90deg, #0ea5e9, #2563eb);
  transition: all 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(14, 165, 233, 0.25);
}

@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
  }
  .section-title {
    font-size: 32px;
  }
}
@media (max-width: 600px) {
  .contact {
    padding: 70px 20px;
  }
  .contact-form {
    padding: 20px;
  }
  .section-title {
    font-size: 28px;
  }
}
.work-history {
  position: relative;
  padding: 100px 60px;
  overflow: hidden;
  background: radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.12), transparent 40%), radial-gradient(circle at 80% 60%, rgba(37, 99, 235, 0.1), transparent 45%), linear-gradient(135deg, #050816 0%, #06061e 50%, #030712 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-header {
  margin-bottom: 60px;
  text-align: center;
}

.section-header .section-label {
  margin-bottom: 10px;
  color: #94a3b8;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-header .section-title {
  color: #f8fafc;
  font-weight: 700;
  font-size: 40px;
}

.section-header .section-sub {
  margin-top: 12px;
  color: #94a3b8;
  font-size: 18px;
  max-width: 700px;
  margin-inline: auto;
}

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

.work-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: 0.3s ease;
}

.work-card::before {
  position: absolute;
  border-radius: 16px;
  padding: 1px;
  content: "";
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(14, 165, 233, 0.25), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s ease;
}

.work-card:hover {
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(14, 165, 233, 0.12);
}

.work-card:hover::before {
  opacity: 1;
}

.company-name {
  margin-bottom: 10px;
  color: #f8fafc;
  font-weight: 600;
  font-size: 20px;
}

.company-desc {
  margin-bottom: 15px;
  color: #94a3b8;
  font-size: 17px;
  line-height: 1.6;
}

.work-points {
  list-style: none;
}

.work-points li {
  margin-bottom: 10px;
  display: grid;
  color: #94a3b8;
  font-size: 16px;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  line-height: 1.5;
}

.work-points li::before {
  color: #0ea5e9;
  font-weight: 600;
  content: "✓";
}

@media (max-width: 992px) {
  .work-history {
    padding: 80px 40px;
  }
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .work-history {
    padding: 70px 20px;
  }
  .section-header {
    text-align: center;
  }
  .section-sub {
    margin-inline: 0;
  }
  .work-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .work-card {
    padding: 20px;
  }
  .company-name {
    font-size: 18px;
  }
  .company-desc {
    font-size: 16px;
  }
  .work-points li {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .company-name {
    font-size: 20px;
  }
  .company-desc {
    font-size: 18px;
  }
  .work-points li {
    font-size: 17px;
  }
}

/*# sourceMappingURL=main.css.map */
