:root {
  --primary: #ff6b00;
  --primary-dark: #d95600;
  --secondary: #2563eb;
  --secondary-dark: #1748b5;
  --bg: #ffffff;
  --soft: #f5f8ff;
  --text: #14213d;
  --muted: #64748b;
  --line: #e7edf7;
  --glass: rgba(255, 255, 255, 0.78);
  --shadow: 0 22px 60px rgba(37, 99, 235, 0.14);
  --orange-shadow: 0 18px 50px rgba(255, 107, 0, 0.22);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.section-pad {
  padding: 96px 0;
  scroll-margin-top: 92px;
}

.soft-bg {
  background:
    linear-gradient(135deg, rgba(255, 107, 0, 0.08), transparent 34%),
    linear-gradient(315deg, rgba(37, 99, 235, 0.08), transparent 36%),
    var(--soft);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  background: #fff;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.loader span {
  width: 54px;
  height: 54px;
  border: 5px solid #dbeafe;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text);
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-menu a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 700;
  color: #475569;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--secondary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 10px;
}

.hamburger span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 107, 0, 0.16), transparent 28%),
    radial-gradient(circle at 84% 22%, rgba(37, 99, 235, 0.16), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(37, 99, 235, 0.09);
  transform: rotate(22deg);
}

.hero::before {
  right: -220px;
  top: 84px;
}

.hero::after {
  left: -260px;
  bottom: -260px;
  border-color: rgba(255, 107, 0, 0.12);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: 54px;
}

.hero-copy h1,
.hero-copy h2,
.section-title h2,
.contact-copy h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.08;
}

.hero-copy h1 {
  font-size: clamp(3rem, 7vw, 5.7rem);
  color: var(--text);
}

.hero-copy h2 {
  margin-top: 12px;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--secondary);
}

.eyebrow,
.section-title p {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 16px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 107, 0, 0.22);
  border-radius: 999px;
  background: rgba(255, 107, 0, 0.08);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.88rem;
}

.typing-line {
  min-height: 40px;
  margin: 24px 0 8px;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 800;
  color: var(--text);
}

#typingText {
  color: var(--primary);
}

.typing-cursor {
  color: var(--secondary);
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero-desc,
.contact-copy > p,
.section-title + p {
  color: var(--muted);
}

.hero-desc {
  max-width: 560px;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 24px;
}

.btn,
.service-card a,
.project-card a,
.template-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.service-card a:hover,
.project-card a:hover,
.template-card a:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ff8a2b);
  color: #fff;
  box-shadow: var(--orange-shadow);
}

.btn-light {
  background: #fff;
  color: var(--secondary);
  border-color: #dbeafe;
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: #cbd5e1;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span,
.role-list span {
  padding: 9px 13px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: #475569;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.profile-card,
.glass-panel,
.counter-grid div,
.skill,
.service-card,
.project-card,
.template-card,
.testimonial-slider,
.contact-form {
  border: 1px solid rgba(226, 232, 240, 0.82);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  border-radius: var(--radius);
}

.profile-card {
  position: relative;
  min-height: 560px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.profile-card::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.11), rgba(37, 99, 235, 0.11));
  z-index: -1;
}

.profile-image-wrap {
  width: min(260px, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 8px;
  background: linear-gradient(135deg, var(--primary), #ffba7a);
  box-shadow: 0 0 0 10px rgba(255, 107, 0, 0.08), 0 28px 80px rgba(37, 99, 235, 0.34);
}

.profile-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8fafc, #e0ecff);
}

.profile-card h3 {
  margin: 28px 0 4px;
  font-size: 1.8rem;
}

.profile-title {
  margin: 0 0 10px;
  color: var(--secondary);
  font-weight: 900;
}

.profile-card > p:last-child {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
}

.tech-badge {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 60px;
  height: 42px;
  padding: 0 12px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  color: var(--secondary);
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(37, 99, 235, 0.16);
  animation: float 4s ease-in-out infinite;
}

.tech-badge.html { top: 60px; left: 46px; color: var(--primary); }
.tech-badge.css { top: 122px; right: 40px; animation-delay: 0.4s; }
.tech-badge.js { bottom: 150px; left: 34px; animation-delay: 0.8s; }
.tech-badge.java { bottom: 76px; right: 54px; color: var(--primary); animation-delay: 1.2s; }

@keyframes float {
  50% { transform: translateY(-12px); }
}

.section-title {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-title h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.glass-panel {
  padding: 34px;
}

.glass-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.role-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.counter-grid div {
  min-height: 150px;
  padding: 24px;
}

.counter-grid strong {
  display: block;
  color: var(--primary);
  font-size: 2.5rem;
  line-height: 1;
}

.counter-grid strong::after {
  content: "+";
}

.counter-grid div:nth-child(4) strong::after {
  content: "%";
}

.counter-grid span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.skill {
  padding: 22px;
}

.skill span {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
  font-weight: 900;
}

.skill b {
  color: var(--secondary);
}

.skill div {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
}

.skill i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 1.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.project-card,
.template-card {
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.project-card:hover,
.template-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 107, 0, 0.32);
  box-shadow: 0 30px 80px rgba(37, 99, 235, 0.2);
}

.service-card b {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-style: normal;
}

.service-card h3,
.project-card h3,
.template-card h3 {
  margin: 18px 0 10px;
  line-height: 1.25;
}

.service-card p,
.service-card li,
.project-card p,
.template-card p {
  color: var(--muted);
}

.service-card ul {
  margin: 14px 0 18px;
  padding-left: 18px;
}

.service-card a,
.template-card a:last-child {
  width: 100%;
  background: var(--secondary);
  color: #fff;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filters button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: #475569;
  padding: 10px 14px;
  font-weight: 800;
}

.filters button.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}

.portfolio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card.hide {
  display: none;
}

.image-placeholder,
.template-img {
  min-height: 170px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  border: 1px dashed rgba(37, 99, 235, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 107, 0, 0.16), rgba(37, 99, 235, 0.13)),
    #f8fbff;
  color: var(--secondary);
  font-weight: 900;
  text-align: center;
}

.project-card span {
  color: var(--primary);
  font-weight: 900;
}

.project-card div:last-child {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.project-card a,
.template-card a:first-of-type {
  flex: 1;
  background: #fff;
  border-color: #dbeafe;
  color: var(--secondary);
}

.project-card a:first-child {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

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

.template-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.template-card h3,
.template-card p {
  margin: 0;
}

.youtube-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.youtube-grid iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #dbeafe;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  padding: 26px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.45s ease;
}

.testimonial-track article {
  flex: 0 0 33.333%;
  padding: 18px;
}

.testimonial-track article > * {
  max-width: 100%;
}

.testimonial-track article {
  border-right: 1px solid var(--line);
}

.client-photo {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 900;
}

.testimonial-track h3 {
  margin: 14px 0 8px;
}

.testimonial-track p {
  color: var(--muted);
}

.testimonial-track span {
  color: var(--primary);
  letter-spacing: 2px;
}

.slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.slider-controls button,
.scroll-top,
.chat-toggle,
.chat-close {
  border: 0;
  border-radius: var(--radius);
  background: var(--secondary);
  color: #fff;
  font-weight: 900;
}

.slider-controls button {
  width: 42px;
  height: 42px;
  font-size: 1.6rem;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(20, 33, 61, 0.94), rgba(37, 99, 235, 0.9)),
    var(--secondary);
  color: #fff;
}

.contact-copy {
  align-self: center;
}

.contact-copy .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.social-links a,
.footer-bottom a {
  padding: 9px 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-weight: 800;
}

.contact-form .full,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dbe3ef;
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.contact-form .invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.contact-form small {
  min-height: 18px;
  color: #dc2626;
  font-size: 0.82rem;
}

.footer {
  background: #0f172a;
  color: #dbeafe;
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 28px;
  padding-bottom: 36px;
}

.footer h3,
.footer h4 {
  margin: 0 0 14px;
  color: #fff;
}

.footer p {
  margin: 0 0 8px;
  color: #a8b6d5;
}

.footer a {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
  color: #cfe0ff;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 900;
  width: 46px;
  height: 46px;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  transform: translateY(-3px);
}

.chatbot {
  position: fixed;
  right: 22px;
  bottom: 84px;
  z-index: 950;
}

.chat-toggle {
  min-width: 72px;
  height: 46px;
  box-shadow: var(--orange-shadow);
  background: var(--primary);
}

.chat-window {
  position: absolute;
  right: 0;
  bottom: 58px;
  width: min(340px, calc(100vw - 36px));
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.26);
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: 0.22s ease;
}

.chatbot.open .chat-window {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.chat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}

.chat-close {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.16);
}

.chat-messages {
  display: grid;
  gap: 8px;
  max-height: 230px;
  overflow-y: auto;
  padding: 14px;
}

.chat-messages p {
  margin: 0;
  padding: 10px 12px;
  border-radius: var(--radius);
}

.chat-messages .bot {
  background: #eff6ff;
}

.chat-messages .user {
  margin-left: 30px;
  background: var(--primary);
  color: #fff;
}

.faq-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 14px 14px;
}

.faq-buttons button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--secondary);
  padding: 8px 10px;
  font-weight: 800;
  font-size: 0.83rem;
}

.success-popup {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.44);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.success-popup.show {
  opacity: 1;
  pointer-events: auto;
}

.success-popup div {
  width: min(420px, 100%);
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.success-popup strong {
  font-size: 1.3rem;
}

.success-popup p {
  color: var(--muted);
}

.success-popup button {
  border: 0;
  border-radius: var(--radius);
  padding: 11px 18px;
  background: var(--secondary);
  color: #fff;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .nav-menu {
    position: fixed;
    inset: 76px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform 0.25s ease;
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 13px 8px;
  }

  .hamburger {
    display: block;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .template-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-grid,
  .youtube-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section-pad {
    padding: 70px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .profile-card {
    min-height: 500px;
    padding: 24px;
  }

  .tech-badge {
    min-width: 52px;
    height: 36px;
    font-size: 0.82rem;
  }

  .counter-grid,
  .skills-grid,
  .card-grid,
  .portfolio-grid,
  .template-grid,
  .youtube-grid,
  .contact-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-track article {
    flex-basis: 100%;
    border-right: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .chatbot {
    right: 16px;
    bottom: 78px;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(100% - 22px, var(--max));
  }

  .nav-wrap {
    height: 70px;
  }

  .nav-menu {
    top: 70px;
  }

  .profile-image-wrap {
    width: 210px;
  }

  .tech-badge.html { left: 18px; }
  .tech-badge.css { right: 18px; }
  .tech-badge.js { left: 18px; }
  .tech-badge.java { right: 18px; }

  .project-card div:last-child,
  .social-links {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.profile-image-wrap {
    width: 250px !important;
    height: 250px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    display: inline-block !important;
    transform: translateY(30px) !important;
}

.profile-image-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transform: scale(1.3) !important; 
}

.template-img {
    height: 250px !important;
    overflow-y: scroll !important;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.template-img img {
    width: 100%;
    display: block;
}
