body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #ffffff;
  color: #000000;
  line-height: 1.85;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

.logo-img {
  height: 48px;
  padding-right: 30px;
}

.nav-link {
  position: relative;
  color: #0f172a;
  font-weight: 500;
  margin-right: 24px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.nav-link.active {
  color: #0d3b66;
  font-weight: 600;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #ff7f23;
  transition: width 0.25s ease;  
}

.nav-link.active::after {
  width: 100%;
}

.nav-link:hover::after {
  width: 100%;
}

.elite-toggler {
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.elite-toggler:hover {
  background-color:rgba(0, 0, 0, 0.05);
}

.elite-toggler:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.25);
}

.elite-toggler span,
.elite-toggler span::before,
.elite-toggler span::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background-color: #111;
  border-radius: 2px;
  position: absolute;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.elite-toggler span::before {
  transform: translateY(-7px);
}

.elite-toggler span::after {
  transform: translateY(7px);
}

.elite-toggler:not(.collapsed) span {
  background-color: transparent;
}

.elite-toggler:not(.collapsed) span::before {
  transform: rotate(45deg);
}

.elite-toggler:not(.collapsed) span::after {
  transform: rotate(-45deg);
}

.hero {
  min-height: 80vh;
  background: url('images/pexels-divinetechygirl-1181244.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}
 
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.55)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeInUp 1.2s ease-out forwards;
}
 
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
 
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ddd;
}
 
.btn-custom {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #ff5900;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
 
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
 
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn-custom {
    padding: 0.7rem 1.5rem;
  }
}
 
.about {
  background: #f9f9f9;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  height: 44vh;
}

.about-content {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 1s ease forwards;
}
 
.lead-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333333;
  font-style: bold;
}
 
.lead-text strong {
  color: #4facfe;
}
 
@media (max-width: 768px) {
  .about-content {
    padding: 2rem 1.5rem;
  }

  .lead-text {
    font-size: 1rem;
  }
}
 
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
 
.custom-software {
  background: #ffffff;
  padding: 6rem 0;
  position: relative;
}
 
.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 0.5rem;
}

.section-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #4facfe;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
}
 
.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
  height: 48vh;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}
 
.service-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #4facfe;
}
 
.service-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #1e1e1e;
}
 
.service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}
 
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
 
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}
 
.development-process {
  background: #f8f9fa;
}

.process-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  height: 100%;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.process-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  background: #0d6efd;
  color: #fff;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.industries {
  background: #ffffff;
}

.industry-card {
  position: relative;
  background: #f8f9fa;
  padding: 30px 20px;
  border-radius: 12px;
  transition: all 0.4s ease;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(13, 110, 253, 0.08);
}

.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
   
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.industry-card > * {
  position: relative;
  z-index: 1;
}

.industry-card i {
  font-size: 28px;
  color: #0d6efd;
  margin-bottom: 15px;
  transition: all 0.4s ease;
}

.industry-card h3 {
  transition: all 0.3s ease;
}
 
.industry-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(13, 110, 253, 0.25);
  border-color: rgba(13, 110, 253, 0.3);
}

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

.industry-card:hover i {
  transform: scale(1.2) rotate(5deg);
  color: #0d6efd;
}

.industry-card:hover h3 {
  color: #0d6efd;
  letter-spacing: 0.5px;
}

.why-choose-us {
  background: #f8f9fa;
}

.why-card {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.why-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #6366f1;
}

.app-development {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
 
.decorative-bg,
.decorative-bg-2,
.decorative-bg-3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  animation: float 20s infinite ease-in-out alternate;
}

.decorative-bg {
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(79, 172, 254, 0.2);
}

.decorative-bg-2 {
  bottom: -80px;
  left: -60px;
  width: 250px;
  height: 250px;
  background: rgba(79, 172, 254, 0.15);
}

.decorative-bg-3 {
  top: 20%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: rgba(79, 172, 254, 0.1);
  transform: translateX(-50%);
}
 
@keyframes float {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(20px) translateX(10px); }
  100% { transform: translateY(0) translateX(0); }
}
 
.app-development .container {
  position: relative;
  z-index: 1;
}
 
.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  display: inline-block;
  position: relative;
  transition: color 0.3s ease;
}

.section-title::after {
  content: "";
  width: 0;
  height: 4px;
  background: #4facfe;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
  transition: width 0.5s ease;
}

.section-title:hover::after {
  width: 70px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.lead-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}

.lead-text:nth-child(1) { animation-delay: 0.2s; }
.lead-text:nth-child(2) { animation-delay: 0.5s; }
 
.lead-text strong {
  color: #4facfe;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
 
@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .lead-text {
    font-size: 1rem;
  }

  .decorative-bg {
    width: 150px;
    height: 150px;
    top: -30px;
    right: -30px;
    filter: blur(80px);
  }

  .decorative-bg-2 {
    width: 180px;
    height: 180px;
    bottom: -40px;
    left: -30px;
    filter: blur(70px);
  }

  .decorative-bg-3 {
    width: 200px;
    height: 200px;
  }
}
 
.technology-expertise {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  padding: 6.5rem 0;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
 
.decorative-bg,
.decorative-bg-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  z-index: 0;
  animation: floatSlow 22s infinite alternate ease-in-out;
}

.decorative-bg {
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: rgba(79, 172, 254, 0.22);
}

.decorative-bg-2 {
  bottom: -120px;
  left: -90px;
  width: 340px;
  height: 340px;
  background: rgba(79, 172, 254, 0.14);
}

@keyframes floatSlow {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(25px, 15px); }
  100% { transform: translate(0, 0); }
}
 
.section-title {
  font-size: 2.9rem;
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 0.6rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #4facfe, #00c6ff);
  display: block;
  margin: 12px auto 0;
  border-radius: 4px;
  transition: width 0.45s ease;
}

.section-title:hover::after {
  width: 90px;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: #555;
  margin-bottom: 3.5rem;
  line-height: 1.6;
}

.tech-card {
  position: relative;
  background: #ffffff;
  padding: 2.2rem 1.8rem;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  opacity: 0;
  transform: translateY(35px);
  animation: fadeInUp 0.9s forwards;
  width: 100%;
  height: 100%;
}
 
.tech-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4facfe, #00c6ff);
  border-radius: 18px 18px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.tech-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.14);
}
 
.tech-card h4 {
  font-size: 1.45rem;
  margin-bottom: 1.2rem;
  color: #1a1a1a;
  font-weight: 600;
}
 
.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tech-list span {
  background: #f1f6ff;
  color: #1a1a1a;
  padding: 0.45rem 0.9rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid #e3ebff;
  transition: all 0.25s ease;
}

.tech-list span:hover {
  background: #4facfe;
  color: #ffffff;
  border-color: #4facfe;
  transform: translateY(-2px);
}
 
@keyframes fadeInUp {
  0%   { opacity: 0; transform: translateY(35px); }
  100% { opacity: 1; transform: translateY(0); }
}
 
.tech-card:nth-child(1) { animation-delay: 0.15s; }
.tech-card:nth-child(2) { animation-delay: 0.3s; }
.tech-card:nth-child(3) { animation-delay: 0.45s; }
.tech-card:nth-child(4) { animation-delay: 0.6s; }
.tech-card:nth-child(5) { animation-delay: 0.75s; }
.tech-card:nth-child(6) { animation-delay: 0.9s; }
 
@media (max-width: 768px) {
  .section-title { font-size: 2.1rem; }
  .section-subtitle { font-size: 1rem; }

  .tech-card {
    padding: 1.7rem 1.3rem;
  }

  .tech-card h4 {
    font-size: 1.25rem;
  }

  .tech-list span {
    font-size: 0.82rem;
    padding: 0.35rem 0.7rem;
  }

  .decorative-bg,
  .decorative-bg-2 {
    filter: blur(90px);
  }
}
 
.branding-solutions {
  position: relative;
  padding: 90px 16px;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  font-family: 'Inter', system-ui, sans-serif;
  overflow: hidden;
}
 
.branding-solutions::before,
.branding-solutions::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
}

.branding-solutions::before {
  top: -80px;
  left: -80px;
  background: rgba(37, 99, 235, 0.18);
}

.branding-solutions::after {
  bottom: -80px;
  right: -80px;
  background: rgba(13, 59, 102, 0.18);
}

.branding-solutions .container {
  position: relative;
  z-index: 1;
}
 
.branding-header {
  text-align: center;
  margin-bottom: 55px;
}

.branding-title {
  font-size: 36px;
  font-weight: 800;
  color: #0d3b66;
  position: relative;
}

.branding-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, #2563eb, #0d3b66);
  border-radius: 4px;
  transition: width 0.4s ease;
}

.branding-header:hover .branding-title::after {
  width: 120px;
}

.branding-subtitle {
  margin-top: 14px;
  font-size: 16px;
  color: #475569;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
 
.branding-card {
  max-width: 900px;
  margin: auto;
  padding: 45px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-radius: 26px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
  animation: fadeUp 0.8s ease forwards;
}

.branding-text {
  font-size: 16px;
  line-height: 1.9;
  color: #334155;
  margin-bottom: 22px;
}
 
.branding-highlights {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}
 
.highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #0d3b66, #2563eb);
  color: #ffffff;
  border-radius: 18px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  transition: all 0.35s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: highlightFade 0.6s ease forwards;
}

.highlight i {
  font-size: 18px;
  transition: transform 0.3s ease;
}
 
.highlight:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.3);
}

.highlight:hover i {
  transform: scale(1.25) rotate(-8deg);
}

.highlight:nth-child(1) { animation-delay: 0.1s; }
.highlight:nth-child(2) { animation-delay: 0.2s; }
.highlight:nth-child(3) { animation-delay: 0.3s; }
.highlight:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes highlightFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 
@media (max-width: 768px) {
  .branding-title {
    font-size: 28px;
  }

  .branding-card {
    padding: 30px 22px;
  }

  .branding-text {
    font-size: 15px;
  }
}
 
.maintenance-support {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #4facfe;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
  transition: width 0.4s ease;
}

.section-title:hover::after {
  width: 100px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}
 
.lead-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInUp 0.9s forwards;
}

.lead-text:nth-of-type(1) { animation-delay: 0.2s; }
.lead-text:nth-of-type(2) { animation-delay: 0.6s; }
 
.support-list {
  list-style: none;
  padding-left: 0;
  margin: 2.5rem 0;
}

.support-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.support-list li:nth-child(1) { animation-delay: 0.3s; }
.support-list li:nth-child(2) { animation-delay: 0.4s; }
.support-list li:nth-child(3) { animation-delay: 0.5s; }
.support-list li:nth-child(4) { animation-delay: 0.6s; }
.support-list li:nth-child(5) { animation-delay: 0.7s; }

 
.support-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #4facfe;
  font-weight: bold;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 
@media (max-width: 768px) {
  .section-title {
    font-size: 2.1rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .lead-text {
    font-size: 1rem;
  }

  .support-list li {
    font-size: 0.95rem;
  }
}

.quality-commitment {
  position: relative;
  padding: 80px 16px;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  font-family: 'Inter', system-ui, sans-serif;
  overflow: hidden;
}
 
.quality-commitment::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(37,99,235,0.12), transparent 45%),
    radial-gradient(circle at bottom left, rgba(13,59,102,0.12), transparent 45%);
  z-index: 0;
}

.quality-commitment .container {
  position: relative;
  z-index: 1;
}
 
.qc-header {
  margin-bottom: 50px;
  text-align: center;
}

.qc-title {
  font-size: 36px;
  font-weight: 800;
  color: #0d3b66;
  display: inline-block;
  position: relative;
  transition: letter-spacing 0.4s ease;
}

.qc-header:hover .qc-title {
  letter-spacing: 0.5px;
}

.qc-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #0d3b66);
  margin: 12px auto 0;
  border-radius: 2px;
}

.qc-subtitle {
  margin-top: 14px;
  font-size: 16px;
  color: #475569;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
 
.qc-content {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 45px;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  animation: fadeUp 0.8s ease forwards;
}

.qc-text {
  font-size: 16px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 22px;
}

.qc-text strong {
  color: #0d3b66;
  background: linear-gradient(120deg, rgba(37,99,235,.15), rgba(13,59,102,.15));
  padding: 2px 6px;
  border-radius: 6px;
}
 
.qc-points {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
 
.qc-point {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #0d3b66, #2563eb);
  color: #ffffff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(20px);
  animation: qcFade 0.6s ease forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qc-point i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.qc-point:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.25);
}

.qc-point:hover i {
  transform: scale(1.25) rotate(-6deg);
}
 
.qc-point:nth-child(1) { animation-delay: 0.1s; }
.qc-point:nth-child(2) { animation-delay: 0.2s; }
.qc-point:nth-child(3) { animation-delay: 0.3s; }
.qc-point:nth-child(4) { animation-delay: 0.4s; }
.qc-point:nth-child(5) { animation-delay: 0.5s; }

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes qcFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .qc-title {
    font-size: 28px;
  }

  .qc-content {
    padding: 30px 22px;
  }

  .qc-text {
    font-size: 15px;
  }

  .qc-points {
    justify-content: center;
  }

  .qc-point {
    font-size: 13px;
    padding: 10px 14px;
  }
}
 
#scrollTopBtn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;

  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.6rem;
  cursor: pointer;

  box-shadow:
    0 8px 20px rgba(37, 99, 235, 0.35),
    inset 0 -2px 6px rgba(255, 255, 255, 0.25);

  opacity: 0;
  pointer-events: none;

  transition:
  opacity 0.3s ease,
  transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}
 
#scrollTopBtn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#scrollTopBtn:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow:0 14px 32px rgba(37, 99, 235, 0.45),inset 0 -2px 8px rgba(255, 255, 255, 0.35);
}

#scrollTopBtn:active {
  transform: scale(0.94);
}

#scrollTopBtn:focus-visible {
  outline: none;
  box-shadow:0 0 0 3px rgba(255, 127, 35, 0.9),0 12px 28px rgba(37, 99, 235, 0.5);
}
 
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

#scrollTopBtn.show {
 animation: float 2.5s ease-in-out infinite;
}

.social-wrap {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1000;
}
 
.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  cursor: pointer;
  background-size: 200% 200%;
  box-shadow:
    0 6px 15px rgba(0, 0, 0, 0.25),
    inset 0 0 0 rgba(255, 255, 255, 0.2);
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s ease,
    filter 0.35s ease;
}
 
.social-btn:hover {
  transform: translateX(-6px) scale(1.12);
  box-shadow:
    0 12px 25px rgba(0, 0, 0, 0.35),
    0 0 18px rgba(255, 255, 255, 0.25);
  filter: brightness(1.15);
}
 
.social-btn {
  animation: float 4s ease-in-out infinite;
}

.social-btn:nth-child(2) {
  animation-delay: 0.5s;
}

.social-btn:nth-child(3) {
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-3px);
  }
}

 
.facebook {
  background: linear-gradient(135deg, #1877F2, #0f5bd8);
}

.instagram {
  background: radial-gradient(
    circle at 30% 110%,
    #fdf497 0%,
    #fd5949 45%,
    #d6249f 60%,
    #285AEB 90%
  );
}
 
.social-btn::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-btn:hover::after {
  opacity: 1;
}

.footer {
  position: relative;
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #cbd5f5;
  padding: 5.5rem 0 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
}

.footer-overlay {
  position: absolute;
  top: -200px;
  right: -180px;
  width: 420px;
  height: 420px;
  background: rgba(79, 172, 254, 0.25);
  border-radius: 50%;
  filter: blur(180px);
  z-index: 0;
}
 
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-brand h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  padding-top: 27px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #b6c2e2;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.95rem;
  color: #cbd5f5;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
  color: #4facfe;
  padding-left: 6px;
}

.footer-contact p {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  color: #cbd5f5;
}

.footer-contact a {
  color: #4facfe;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-social .social-text {
  font-size: 0.85rem;
  color: #b7c6dc;
  margin-bottom: 1.4rem;
  letter-spacing: 0.4px;
  opacity: 0.9;
}
 
.social-icons {
  display: flex;
  gap: 14px;
}
 
.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1rem;
  color: #f6f9fd;
  text-decoration: none;
  position: relative;
  overflow: hidden;

  box-shadow:
    0 10px 26px rgba(8, 16, 36, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);

  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s ease,
    filter 0.35s ease;
}
 
.social-icons a:hover {
  transform: translateY(-4px) scale(1.05);
  filter: brightness(1.15);
  box-shadow:
    0 18px 44px rgba(8, 16, 36, 0.85),
    0 0 20px rgba(255, 255, 255, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}
 
.social-icons a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35),
    transparent 70%
  );
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 0.3s ease, transform 0.6s ease;
}

.social-icons a:hover::before {
  opacity: 1;
  transform: translateX(120%);
}
 
.facebook {
  background: linear-gradient(145deg, #1a6de0, #1358b8);
}

.instagram {
  background: radial-gradient(
    circle at 30% 110%,
    #fdf497 0%,
    #fd5949 38%,
    #d6249f 60%,
    #285AEB 90%
  );
}

.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.9rem;
  color: #94a3b8;
}
 
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 4rem 0 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-brand h3 {
    font-size: 1.6rem;
  }
}