* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #140018;
  color: #fff;
}
html, body {
  overflow-x: hidden;
}

/* HEADER */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(20,0,24,0.7);
  backdrop-filter: blur(8px);
  z-index: 100;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  color: #ff3cac;
}
.logo span {
  color: #fff;
}

.nav a {
  margin: 0 18px;
  text-decoration: none;
  color: #ddd;
}
.nav a:hover {
  color: #ff3cac;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.call {
  color: #ff7a18;
}
.menu-btn {
  display: none;
  font-size: 22px;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding-top: 120px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  /* IMAGE + DARK GRADIENT */
  background:
    radial-gradient(
      circle at center,
      rgba(236, 72, 153, 0.75) 0%,
      rgba(88, 28, 135, 0.65) 35%,
      rgba(20, 0, 24, 0.95) 70%
    ),
    url("./images/hero-bg.png");

  background-size: 120%;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 1;
}

.hero-content,
.socials {
  position: relative;
  z-index: 3;
}



.hero-content {
  text-align: center;
  z-index: 2;
}

.hero-content h1 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 2px;
}

.hero-content p {
  margin: 20px 0;
  font-size: 18px;
  opacity: 0.9;
}

.hero-buttons {
  margin-top: 30px;
}

.btn {
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  margin: 10px;
  display: inline-block;
  transition: 0.3s;
}

.btn.primary {
  background: linear-gradient(45deg, #ff3cac, #784ba0);
  color: #fff;
}

.btn.primary:hover {
  transform: scale(1.05);
}

.btn.outline {
  border: 2px solid #ff3cac;
  color: #fff;
}
.btn.outline:hover {
  background: #ff3cac;
}

/* SOCIALS */
.socials {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 3;
}

.socials i {
  background: #ff7a18;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}

/* BLOB */
.blob {
  position: absolute;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle at top, #ff3cac, #2b0035);
  border-radius: 50%;
  filter: blur(60px);
  animation: float 8s infinite ease-in-out;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-40px); }
  100% { transform: translateY(0); }
}

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
  padding: 80px;
}

.service-card {
  background: #1d0024;
  padding: 40px;
  text-align: center;
  border-radius: 15px;
  transition: 0.3s;
}
.service-card:hover {
  transform: translateY(-10px);
  background: #2a0033;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .hero-content h1 {
    font-size: 42px;
  }
  .socials {
    left: 15px;
  }
}
.hero-glow {
  position: absolute;
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle,
    rgba(236, 72, 153, 0.9),
    rgba(88, 28, 135, 0.4),
    transparent 70%
  );
  filter: blur(120px);
  z-index: 2;
}

/* =========================
   HAMBURGER ICON
========================= */
.menu-btn {
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  margin-left: 20px;
}

/* =========================
   OVERLAY
========================= */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 998;
}

#overlay.active {
  opacity: 1;
  visibility: visible;
}

/* =========================
   SIDE MENU
========================= */
#sideMenu {
  position: fixed;
  top: 0;
  right: -380px;
  width: 360px;
  height: 100vh;
  background: #e6dfd8;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  transition: 0.4s ease;
  z-index: 999;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

#sideMenu.active {
  right: 0;
}

/* =========================
   CLOSE BUTTON
========================= */
#closeBtn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #9b1fe9;
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 6px;
  font-size: 22px;
  cursor: pointer;
}

/* =========================
   MENU CONTENT
========================= */
.menu-content {
  margin-top: 80px;
  color: #222;
}

.menu-content h3 {
  font-size: 25px;
  margin-bottom: 10px;
}

.menu-content p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 12px;
  font-weight: 500px;
  font-family: emoji;
}

/* =========================
   BUTTON
========================= */
.menu-action {
  background: linear-gradient(135deg, #9b1fe9, #ff4d8d);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 30px;
  cursor: pointer;
  margin: 15px 0;
  font-size: 14px;
}

.menu-action:hover {
  opacity: 0.9;
}

/* =========================
   SOCIAL ICONS
========================= */
.menu-socials {
  margin-top: 20px;
}

.menu-socials i {
  font-size: 18px;
  margin-right: 12px;
  color: #ff4d8d;
  cursor: pointer;
}

/* =========================
   MOBILE FIX
========================= */
@media (max-width: 480px) {
  #sideMenu {
    width: 100%;
  }
}

/* =====================================
   MOBILE & TABLET RESPONSIVE (GLOBAL)
===================================== */

/* ---------- TABLET (<= 992px) ---------- */
@media (max-width: 992px) {

  .header {
    padding: 16px 30px;
  }

  .logo {
    font-size: 22px;
  }

  .call {
    display: none;
  }

  .hero-content h1 {
    font-size: 34px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 16px;
  }

  .services {
    padding: 60px 40px;
  }
}

/* ---------- MOBILE (<= 768px) ---------- */
@media (max-width: 768px) {

  /* HEADER */
  .nav {
    display: none;
  }

  .menu-btn {
    display: block;
    font-size: 28px;
  }

  .header {
    padding: 14px 20px;
  }

  .logo {
    font-size: 20px;
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    padding-top: 100px;
    background-size: cover;
  }

  .hero-content h1 {
    font-size: 30px;
    letter-spacing: 1px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    max-width: 260px;
    margin: auto;
  }

  /* SOCIAL ICONS */
  .socials {
    left: 12px;
    gap: 14px;
  }

  .socials i {
    padding: 8px;
    font-size: 14px;
  }

  /* BLOB & GLOW */
  .blob {
    width: 420px;
    height: 420px;
    filter: blur(80px);
  }

  .hero-glow {
    width: 600px;
    height: 600px;
  }

  /* SERVICES */
  .services {
    padding: 50px 20px;
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 30px;
  }
}

/* ---------- SMALL MOBILE (<= 480px) ---------- */
@media (max-width: 480px) {

  .header {
    padding: 12px 16px;
  }

  .logo {
    font-size: 18px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .socials {
    display: none; /* hide side socials on very small phones */
  }

  #sideMenu {
    width: 100%;
  }

  .menu-content h3 {
    font-size: 26px;
  }

  .menu-content p {
    font-size: 16px;
  }
}

/* ===============================
   FLOATING FEATURES SECTION
================================ */

.features {
  position: relative;
  margin-top: -120px; /* half inside hero */
  z-index: 20;
}

.features-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* FEATURE CARD */
.feature-card {
  background: #1d0024;
  border-radius: 18px;
  padding: 30px 22px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
  transition: all 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-12px);
  background: #2a0033;
}

/* ICON / IMAGE */
.feature-card img {
  width: 64px;
  height: auto;
  margin-bottom: 18px;
}

/* TITLE */
.feature-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}

/* TEXT */
.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

/* ===============================
   RESPONSIVE
================================ */

/* Tablet */
@media (max-width: 992px) {
  .features {
    margin-top: -100px;
  }

  .features-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .features {
    margin-top: -70px;
  }

  .features-wrap {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 26px 20px;
  }
}

/* MOBILE NAV LINKS */
.mobile-nav {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav a {
  font-size: 17px;
  color: #222;
  text-decoration: none;
  font-weight: 600;
}

.mobile-nav a:hover {
  color: #9b1fe9;
}



/* ===============================
   OUR TEAM
================================ */
.team-section {
  padding: 100px 20px;
  background: radial-gradient(
    circle at top,
    #2b0035,
    #140018 70%
  );
}

.team-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 80px;
}

.team-title span {
  color: #ff3cac;
}

/* ROW */
.team-row {
  max-width: 1100px;
  margin: 0 auto 80px;
  display: flex;
  align-items: center;
  gap: 60px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* LEFT & RIGHT ANIMATION */
.team-row.left {
  flex-direction: row;
  transform: translateX(-80px);
}

.team-row.right {
  flex-direction: row;
  transform: translateX(80px);
}

.team-row.show {
  opacity: 1;
  transform: translateX(0);
}

/* IMAGE */
.team-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.team-image img {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(255, 60, 172, 0.35);
}

/* CONTENT */
.team-content {
  flex: 1;
  background: #1d0024;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.team-content h3 {
  font-size: 26px;
  margin-bottom: 6px;
}

.team-content span {
  color: #ff7a18;
  font-size: 15px;
  font-weight: 600;
}

.team-content p {
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.7;
  color: #ddd;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .team-row {
    flex-direction: column !important;
    text-align: center;
  }

  .team-image img {
    width: 220px;
    height: 220px;
  }
}


/* ===============================
   OUR CLIENTS
================================ */
.clients-section {
  padding: 100px 20px;
  background: radial-gradient(circle at top, #2b0035, #140018 70%);
}

.clients-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 70px;
}

.clients-title span {
  color: #ff3cac;
}

/* GRID */
.clients-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.client-card {
  background: #1d0024;
  padding: 30px 22px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0,0,0,0.45);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}

.client-card.show {
  opacity: 1;
  transform: translateY(0);
}

.client-card:hover {
  transform: translateY(-12px);
  background: #2a0033;
}

/* LOGO */
.client-card img {
  width: 150px;
  height: 80px;
  margin-bottom: 18px;
}

/* TEXT */
.client-card h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.client-card span {
  font-size: 14px;
  color: #ff7a18;
}

.client-card p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }
}
.client-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.about-section {
  padding: 80px 10%;
}

.about-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.section-tag {
  color: #c77dff;
  letter-spacing: 2px;
  font-size: 14px;
}

.about-content h1 {
  font-size: 42px;
  margin: 20px 0;
  line-height: 1.3;
}

.about-content p {
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 25px;
}

.about-list {
  list-style: none;
  margin-bottom: 30px;
}

.about-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}

.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff9f1c;
}

/* BUTTONS */
.about-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn.primary {
   background: linear-gradient(45deg, #ff3cac, #784ba0);
  color: #fff;
}
.btn.primary:hover {
  transform: translateY(-3px);
}

.btn.outline {
  border: 2px solid #a855f7;
  color: #fff;
}

.btn.outline:hover {
  background: #a855f7;
}

/* RIGHT IMAGE */
.about-image {
   position: relative;
  width: 520px;      /* ⬅️ increase size */
  height: 520px;
  margin-left: auto;
  animation: float 4s ease-in-out infinite;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 10px solid #a855f7; /* thicker border */
}


/* EXPERIENCE BADGE */
.experience-badge {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: linear-gradient(45deg, #ff9f1c, #ff7a18);
  color: #fff;
  padding: 22px 26px;
  border-radius: 50%;
  text-align: center;
}


.experience-badge h2 {
  font-size: 28px;
}

/* ANIMATION */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-buttons {
    justify-content: center;
  }

  .experience-badge {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ===============================
   MOBILE RESPONSIVE – ABOUT
================================ */

/* TABLET */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 6%;
  }

  .about-content h1 {
    font-size: 34px;
  }

  .about-image {
    width: 380px;
    height: 380px;
    margin: 40px auto 0;
  }

  .experience-badge {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 18px 22px;
  }

  .experience-badge h2 {
    font-size: 22px;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .about-section {
    padding: 50px 5%;
  }

  .about-content h1 {
    font-size: 26px;
  }

  .about-content p {
    font-size: 14px;
  }

  .about-list li {
    font-size: 14px;
    padding-left: 24px;
  }

  .about-buttons {
    flex-direction: column;
    gap: 14px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .about-image {
    width: 260px;
    height: 260px;
  }

  .about-image img {
    border-width: 6px;
  }

  .experience-badge {
    width: 90px;
    height: 90px;
    padding: 12px;
    bottom: 10px;
  }

  .experience-badge h2 {
    font-size: 18px;
  }
}



.portfolio-section {
  padding: 90px 10%;
  background: #2a0534;
  color: #fff;
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.section-tag {
  color: #c77dff;
  letter-spacing: 2px;
  font-size: 14px;
}

.portfolio-header h2 {
  font-size: 42px;
  margin-top: 10px;
}

.view-all-btn {
  padding: 12px 26px;
  border-radius: 30px;
  border: 1px solid #ff9f1c;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.view-all-btn:hover {
  background: #ff9f1c;
  color: #000;
}

/* FILTERS */
.portfolio-filters {
  display: flex;
  gap: 15px;
  margin: 30px 0 50px;
}

.portfolio-filters button {
  background: transparent;
  border: 1px solid #a855f7;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.portfolio-filters button.active,
.portfolio-filters button:hover {
  background: linear-gradient(45deg, #a855f7, #ec4899);
}

/* GRID */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.portfolio-card {
  background: #3b0a45;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.portfolio-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-content {
  padding: 22px;
}

.card-content h3 {
  margin-bottom: 10px;
  color: #ff9f1c;
}

.card-content p {
  opacity: 0.85;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.project-btn {
  display: inline-block;
  padding: 10px 22px;
  background: linear-gradient(45deg, #ff9f1c, #ff7a18);
  color: #000;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.project-btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .portfolio-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}
/* DESIGN CARD CONTENT */
.design-content {
  padding: 18px;
  text-align: center;
}

.design-content h4 {
  color: #ff9f1c; /* GOLD */
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Hide design text spacing like dev cards */
.portfolio-card.design .card-content {
  display: none;
}

/* VIEW BUTTON */
.view-btn {
  margin-top: 10px;
  padding: 8px 18px;
  border-radius: 20px;
  border: none;
  background: linear-gradient(135deg, #ff3cac, #784ba0);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.view-btn:hover {
  transform: scale(1.05);
}

/* MODAL BACKGROUND */
#posterModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* MODAL IMAGE */
#posterModal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

/* CLOSE BUTTON */
#posterModal .close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}


.services-section {
  background: #3a0c3f;
  padding: 80px 0;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.services-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.services-header .left {
  max-width: 650px;
}

.tag {
  display: inline-block;
  margin-bottom: 10px;
  color: #ff4fd8;
  letter-spacing: 2px;
  font-size: 14px;
}

.services-header h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.services-header p {
  font-size: 16px;
  color: #ddd;
  line-height: 1.6;
}

.btn-outline {
  border: 1px solid #ff4fd8;
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #ff4fd8;
}

/* DIVIDER */
.divider {
  margin: 40px 0;
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* CARD */
.service-card {
  background: linear-gradient(135deg, #b832b8, #7a2dbd);
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card .icon {
  background: #fff;
  color: #7a2dbd;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 28px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: #f1f1f1;
  line-height: 1.5;
}

.service-card a {
  display: inline-block;
  margin-top: 15px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
/* ===============================
   MOBILE RESPONSIVE – BUTTON
================================ */

/* Tablet */
@media (max-width: 768px) {
  .btn-outline {
    padding: 10px 22px;
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .btn-outline {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    text-align: center;
  }
}



/* =====================
   EXPERIENCE SECTION
===================== */
.experience-section {
  padding: 80px 0;
  position: relative;
  background: #14051f;
}

.experience-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.exp-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* =====================
   HEADER
===================== */
.exp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.exp-tag {
  color: #ff4fd8;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 500;
}

.exp-header h2 {
  font-size: 44px;
  font-weight: 700;
  margin-top: 10px;
}

.exp-btn {
  background: linear-gradient(135deg, #ff4fd8, #7a2dbd);
  padding: 14px 32px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.exp-btn:hover {
  transform: translateY(-2px);
}

/* =====================
   CONTENT LAYOUT
===================== */
.exp-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* =====================
   IMAGE
===================== */
.exp-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #a53dbb;
}

.exp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =====================
   CARDS
===================== */
.exp-cards {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.exp-card {
  background: #fff;
  color: #333;
  padding: 26px 30px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 22px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* =====================
   PERCENTAGE CIRCLE (MATCH IMAGE 2)
===================== */
.progress {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 1000;
  color: black;
  background: #e6e6e6;
  position: relative;
  overflow: hidden;
}

/* purple fill slice */
.progress::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #a53dbb;
  clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 100%, 50% 100%);
}

/* text stays above */
.progress span {
  position: relative;
  z-index: 2;
}

/* =====================
   CARD TEXT
===================== */
.exp-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #222;
}

.exp-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

/* =====================
   SIMPLE FADE ANIMATION
===================== */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .exp-content {
    grid-template-columns: 1fr;
  }

  .exp-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .exp-header h2 {
    font-size: 36px;
  }
}








.process-section {
  position: relative;
  min-height: 100vh;
  background: url("images/work-bg.jpg") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(40, 0, 60, 0.85);
}

.content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 60px;
  text-align: center;
}

h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 80px;
}

.timeline {
  position: relative;
  width: 100%;
  height: 300px;
}

.step {
  position: absolute;
  width: 160px;
  height: 160px;
  background: #a734c7;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.step .number {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 16px;
  line-height: 1.3;
}

/* Positioning circles */
.step-1 { left: 3%;  top: 90px; }
.step-2 { left: 28%; top: 170px; }
.step-3 { left: 55%; top: 90px; }
.step-4 { left: 80%; top: 170px; }

/* Dashed path */
.path {
  position: absolute;
  inset: 0;
}

.path path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-dasharray: 7 7;
}

/* Button */
.btn {
  display: inline-block;
  margin-top: 60px;
  padding: 14px 34px;
  border-radius: 30px;
  border: 2px solid #ff8a00;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn:hover {
  background: #ff8a00;
}

/* Vertical text */
.vertical-text {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: rotate(90deg) translateY(-50%);
  transform-origin: right center;
  font-size: 14px;
  letter-spacing: 4px;
  opacity: 0.7;
}

@media (max-width: 768px) {

  .content {
    padding: 40px 20px;
  }

  h2 {
    font-size: 32px;
    margin-bottom: 50px;
  }

  .timeline {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  /* Hide curved SVG path on mobile */
  .path {
    display: none;
  }

  .step {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
  }

  /* Reset absolute positions */
  .step-1,
  .step-2,
  .step-3,
  .step-4 {
    left: auto;
    top: auto;
  }

  .step .number {
    font-size: 22px;
  }

  .step p {
    font-size: 14px;
  }

  .btn {
    margin-top: 40px;
    padding: 12px 30px;
    font-size: 14px;
  }

  /* Hide vertical text on mobile */
  .vertical-text {
    display: none;
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.pricing-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #120018, #2b0038);
  color: #fff;
  padding: 80px 0;
}

.overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at right, rgba(255,255,255,0.05), transparent);
}

.container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.small-title {
  letter-spacing: 4px;
  font-size: 14px;
  opacity: 0.8;
}

h2 {
  font-size: 44px;
  margin: 10px 0 15px;
}

.subtitle {
  max-width: 700px;
  margin: 0 auto 70px;
  font-size: 15px;
  opacity: 0.85;
}

/* Cards */
.pricing-cards {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 30px;
}

.card {
  width: 320px;
  padding: 40px 30px;
  background: #3b0b4d;
  text-align: center;
}

.card h3 {
  color: #ff9b3d;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.price {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
}

.card ul {
  list-style: none;
  margin-bottom: 35px;
}

.card ul li {
  font-size: 14px;
  margin-bottom: 14px;
  opacity: 0.9;
}

.card button {
  padding: 12px 34px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #a63ac9, #ff5fa2);
  color: #fff;
  cursor: pointer;
}

/* Featured (Standard) */
.featured {
  background: linear-gradient(180deg, #b12bb6, #7a36c3);
  transform: translateY(-30px);
}

.featured h3 {
  color: #ff9b3d;
}

.featured .price {
  font-size: 48px;
}

.featured button.white {
  background: #fff;
  color: #a12bb6;
  font-weight: 600;
}

/* Vertical text */
.vertical-text {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: rotate(90deg) translateY(-50%);
  letter-spacing: 4px;
  opacity: 0.5;
  font-size: 14px;
}

/* ===================================== */
/* 🔥 BEST MOBILE RESPONSIVE VERSION */
/* ===================================== */

/* Tablet */
@media (max-width: 1024px) {

  .pricing-section {
    padding: 70px 30px;
  }

  .pricing-cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }

  .card {
    width: 280px;
  }

  .featured {
    transform: none; /* Remove lift on tablet */
  }

  .vertical-text {
    display: none;
  }
}


/* Mobile */
@media (max-width: 768px) {

  .pricing-section {
    padding: 60px 20px;
  }

  .container {
    width: 100%;
  }

  h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .subtitle {
    font-size: 14px;
    margin-bottom: 40px;
    padding: 0 10px;
  }

  .pricing-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .card {
    width: 100%;
    max-width: 360px;
    padding: 30px 25px;
    border-radius: 16px;
  }

  .price {
    font-size: 34px;
  }

  .featured {
    transform: none;
  }

  .featured .price {
    font-size: 38px;
  }

  .card button {
    width: 100%;
    padding: 14px;
    font-size: 14px;
  }
}


/* Small Mobile */
@media (max-width: 480px) {

  .pricing-section {
    padding: 50px 15px;
  }

  .small-title {
    font-size: 12px;
    letter-spacing: 2px;
  }

  h2 {
    font-size: 22px;
  }

  .subtitle {
    font-size: 13px;
  }

  .card {
    padding: 25px 20px;
  }

  .price {
    font-size: 30px;
  }

  .card ul li {
    font-size: 13px;
  }

}




.faq {
  display: flex;
  justify-content: space-between;
  padding: 80px 100px;
  gap: 60px;
}

.faq-left {
  max-width: 40%;
}

.faq-label {
  color: #d946ef;
  letter-spacing: 2px;
  font-size: 14px;
}

.faq-left h2 {
  font-size: 48px;
  line-height: 1.2;
  margin-top: 15px;
}

.faq-right {
  width: 100%;
}

.faq-item {
  background: #fff;
  color: #000;
  margin-bottom: 20px;
  padding: 20px 25px;
  border-radius: 6px;
  cursor: pointer;
}

.faq-item summary {
  list-style: none;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 24px;
  color: #d946ef;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}


/* ================================= */
/* 📱 FAQ Mobile Responsive */
/* ================================= */

/* Tablet */
@media (max-width: 1024px) {

  .faq {
    padding: 60px 50px;
    gap: 40px;
  }

  .faq-left h2 {
    font-size: 38px;
  }

  .faq-left {
    max-width: 45%;
  }
}


/* Mobile */
@media (max-width: 768px) {

  .faq {
    flex-direction: column;
    padding: 50px 25px;
    gap: 30px;
  }

  .faq-left {
    max-width: 100%;
  }

  .faq-left h2 {
    font-size: 28px;
  }

  .faq-label {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .faq-right {
    width: 100%;
  }

  .faq-item {
    padding: 18px 20px;
    border-radius: 10px;
  }

  .faq-item summary {
    font-size: 15px;
  }

  .faq-item summary::after {
    font-size: 20px;
  }

  .faq-item p {
    font-size: 13px;
  }
}


/* Small Mobile */
@media (max-width: 480px) {

  .faq {
    padding: 40px 15px;
  }

  .faq-left h2 {
    font-size: 22px;
    line-height: 1.3;
  }

  .faq-item {
    padding: 15px 18px;
  }

  .faq-item summary {
    font-size: 14px;
  }

  .faq-item p {
    font-size: 12px;
  }

}




.promotions {
  padding: 80px 100px;
  background: #0b0613;
}

.promotions h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 50px;
  color: #fff;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.promo-item {
  border-radius: 10px;
  overflow: hidden;
  background: #1a1025;
  transition: transform 0.3s ease;
}

.promo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.promo-item:hover {
  transform: translateY(-8px);
}

/* =========================
   PROMOTIONS SECTION
========================= */

.promotions {
  padding: 80px 100px;
  background: #0b0613;
}

.promotions h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 50px;
  color: #fff;
  font-weight: 700;
}

/* GRID */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.promo-item {
  border-radius: 16px;
  overflow: hidden;
  background: #1a1025;
  transition: transform 0.3s ease;
}

.promo-item:hover {
  transform: translateY(-8px);
}

/* IMAGE (IMPORTANT FIX) */
.promo-item img {
  width: 100%;
  height: auto;              /* 🔥 keeps original size */
  display: block;
  border-radius: 16px;
}



/* =========================
   TABLET (<=1024px)
========================= */

@media (max-width: 1024px) {

  .promotions {
    padding: 60px 50px;
  }

  .promotions h2 {
    font-size: 34px;
    margin-bottom: 40px;
  }

  .promo-grid {
    gap: 25px;
  }
}



/* =========================
   MOBILE (<=768px)
========================= */

@media (max-width: 768px) {

  .promotions {
    padding: 50px 20px;
  }

  .promotions h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .promo-grid {
    grid-template-columns: 1fr;   /* 🔥 2 columns → 1 column */
    gap: 20px;
  }

  .promo-item {
    border-radius: 14px;
  }

  .promo-item img {
    width: 100%;
    height: auto;   /* 🔥 no fixed height */
  }
}



/* =========================
   SMALL MOBILE (<=480px)
========================= */

@media (max-width: 480px) {

  .promotions {
    padding: 40px 15px;
  }

  .promotions h2 {
    font-size: 22px;
  }

  .promo-grid {
    gap: 18px;
  }

}






.contact {
  padding: 100px 20px;
  background: linear-gradient(180deg, #b12bb6, #7a36c3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-box {
  width: 100%;
  max-width: 520px;
  padding: 50px 40px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-box h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 35px;
  color: #e6b7ff;
  position: relative;
}

.contact-box h2::after {
  content: "";
  width: 90px;
  height: 4px;
  background: #e6b7ff;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.contact-box form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-box input,
.contact-box textarea {
  padding: 16px 22px;
  border-radius: 35px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.contact-box textarea {
  border-radius: 18px;
  min-height: 130px;
  resize: none;
}

.contact-box input::placeholder,
.contact-box textarea::placeholder {
  color: #f4eaff;
}

.contact-box button {
  margin-top: 10px;
  align-self: center;
  padding: 15px 40px;
  border-radius: 35px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(90deg, #ff8a5c, #ff4d9d);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-box button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* ================================= */
/* 📱 Contact Section Responsive */
/* ================================= */

/* Tablet */
@media (max-width: 1024px) {

  .contact {
    padding: 80px 30px;
  }

  .contact-box {
    padding: 40px 30px;
  }

  .contact-box h2 {
    font-size: 30px;
  }
}


/* Mobile */
@media (max-width: 768px) {

  .contact {
    padding: 60px 20px;
  }

  .contact-box {
    padding: 35px 25px;
    border-radius: 18px;
  }

  .contact-box h2 {
    font-size: 26px;
  }

  .contact-box h2::after {
    width: 60px;
    height: 3px;
  }

  .contact-box input,
  .contact-box textarea {
    padding: 14px 18px;
    font-size: 13px;
  }

  .contact-box textarea {
    min-height: 110px;
  }

  .contact-box button {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 14px;
  }
}


/* Small Mobile */
@media (max-width: 480px) {

  .contact {
    padding: 50px 15px;
  }

  .contact-box {
    padding: 28px 20px;
  }

  .contact-box h2 {
    font-size: 22px;
  }

  .contact-box input,
  .contact-box textarea {
    padding: 12px 16px;
    font-size: 12px;
  }

  .contact-box textarea {
    min-height: 100px;
  }

}


.brochures {
  padding: 90px 100px;
  background: #0b0613;
}

.brochures h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  color: #fff;
}

.brochure-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.brochure-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brochure-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
}

.brochure-card p {
  font-size: 14px;
  margin-bottom: 25px;
  color: #d6c8ff;
}

.brochure-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.download-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  background: linear-gradient(90deg, #ff8a5c, #ff4d9d);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.download-btn:hover {
  transform: scale(1.05);
}

/* ================================= */
/* 📱 Brochures Responsive */
/* ================================= */

/* Tablet */
@media (max-width: 1024px) {

  .brochures {
    padding: 70px 50px;
  }

  .brochures h2 {
    font-size: 34px;
    margin-bottom: 45px;
  }

  .brochure-grid {
    grid-template-columns: repeat(2, 1fr); /* 4 → 2 */
    gap: 25px;
  }
}


/* Mobile */
@media (max-width: 768px) {

  .brochures {
    padding: 60px 25px;
  }

  .brochures h2 {
    font-size: 26px;
    margin-bottom: 35px;
  }

  .brochure-grid {
    grid-template-columns: 1fr; /* 2 → 1 */
    gap: 20px;
  }

  .brochure-card {
    padding: 30px 20px;
    border-radius: 16px;
  }

  .brochure-card h3 {
    font-size: 18px;
  }

  .brochure-card p {
    font-size: 13px;
  }

  .download-btn {
    width: 100%;
    padding: 14px;
    font-size: 14px;
  }
}


/* Small Mobile */
@media (max-width: 480px) {

  .brochures {
    padding: 50px 15px;
  }

  .brochures h2 {
    font-size: 22px;
  }

  .brochure-card {
    padding: 25px 18px;
  }

  .brochure-card h3 {
    font-size: 16px;
  }

  .brochure-card p {
    font-size: 12px;
  }

}


/* ================= FOOTER ================= */

.footer {
  background: linear-gradient(180deg, #20002c, #3b0a30);
  color: #fff;
  padding: 80px 10% 0;
  position: relative;
}

.footer-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 28px;
  font-weight: 600;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}

.footer-col h3 {
  margin-bottom: 20px;
  color: #ff7b4f;
}

.footer-logo {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-col p {
  margin-bottom: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

.footer-social i {
  margin-right: 15px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-social i:hover {
  color: #ff7b4f;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 40px;
}

.footer-links a {
  text-decoration: none;
  color: #fff;
  opacity: 0.9;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ff7b4f;
}

.footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  opacity: 0.8;
}

/* Scroll Button */
.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #fff;
  color: #8a2be2;
  border: none;
  padding: 15px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.scroll-top:hover {
  transform: translateY(-5px);
}
.footer-social a {
  color: #fff;
  margin-right: 15px;
  font-size: 20px;
  transition: 0.3s;
  display: inline-block;
}

.footer-social a:hover {
  color: #ff7b4f;
  transform: translateY(-3px);
}

/* ================================= */
/* 📱 Footer Responsive */
/* ================================= */

/* Tablet */
@media (max-width: 1024px) {

  .footer {
    padding: 60px 5% 0;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr; /* 3 → 2 */
    gap: 40px;
  }

  .footer-logo {
    font-size: 48px;
  }

  .footer-title {
    font-size: 24px;
    margin-bottom: 40px;
  }
}


/* Mobile */
@media (max-width: 768px) {

  .footer {
    padding: 50px 20px 0;
  }

  .footer-container {
    grid-template-columns: 1fr; /* 2 → 1 */
    gap: 35px;
  }

  .footer-col h3 {
    font-size: 18px;
  }

  .footer-logo {
    font-size: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr; /* links stacked */
    gap: 8px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    font-size: 13px;
  }

  .scroll-top {
    right: 20px;
    bottom: 20px;
    padding: 12px;
    font-size: 14px;
  }
}


/* Small Mobile */
@media (max-width: 480px) {

  .footer {
    padding: 40px 15px 0;
  }

  .footer-title {
    font-size: 20px;
  }

  .footer-logo {
    font-size: 34px;
  }

  .footer-col p {
    font-size: 13px;
  }

  .footer-social a {
    font-size: 18px;
    margin-right: 12px;
  }

  .scroll-top {
    padding: 10px;
    border-radius: 10px;
  }

}
















