:root {
  --primary: #7474c1;
  --primary-rgb: 116, 116, 193;
  --seconday: #001e46;
  --seconday-rgb: 0, 30, 70;
  --text-color: #000;
  --black: #000;
  --black-rgb: 0, 0, 0;
  --white: #fff;
  --white-rgb: 255, 255, 255;
  --danger: #b90a0a;
  --danger-rgb: 185, 10, 10;
  --scaleFactor: 1.1713030746705710102489019033675;
  --footer-bg: #e6e6e6;
  --checked-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

html {
  font-size: 16px;
}

body {
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-color);
}

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

a {
  cursor: pointer;
}

a.default {
  color: var(--primary);
  text-decoration: underline;
}

input {
  color: inherit;
}

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

li::marker {
  color: var(--primary);
}

ul.default {
  list-style: disc;
  padding-left: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.g-0 {
  gap: 0 !important;
}

.rowGap {
  row-gap: calc(var(--bs-gutter-x) * 0.5);
}

.rowGap1 {
  row-gap: 1rem;
}

.rowGap2 {
  row-gap: var(--bs-gutter-x);
}

.rowGap3 {
  row-gap: calc(var(--bs-gutter-x) * 1.5);
}

.rowGap4 {
  row-gap: calc(var(--bs-gutter-x) * 2);
}

.rowGap5 {
  row-gap: calc(var(--bs-gutter-x) * 2.5);
}

.rowGap6 {
  row-gap: calc(var(--bs-gutter-x) * 3);
}

.row-reverse {
  flex-direction: row-reverse;
}

.color-primary {
  color: var(--primary) !important;
}

.color-danger {
  color: var(--danger) !important;
}

.wave-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

/* Header */

.header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--primary);
  padding: 1rem 0;
  z-index: 100;
}

.header > .container {
  max-width: 79rem;
}

.logo > a {
  display: inline-block;
}

.logo > a > img {
  height: 3rem;
}

.menu {
  display: flex;
  justify-content: flex-end;
  color: var(--primary);
  font-size: 1.25rem;
  gap: 1.75rem;
}

.menu > li > a {
  display: inline-flex;
  padding: 0.25rem 0.5rem;
}

/* Intro Sections style */

.intro-section {
  display: flex;
  position: relative;
  background: var(--primary);
  min-height: 100vh;
  padding: 12rem 0;
  color: var(--white);
}

.introLogo {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  height: 8.5rem;
}

.intro-section > .container {
  margin: auto;
}

.intro-section .bannerHeading > :is(h4, p) {
  max-width: 39rem;
}

/* Home Banner */

.home-banner {
  position: relative;
  background: var(--primary);
  color: var(--white);
  padding: 4rem 0 0;
  z-index: 1;
}

.banner-video-area {
  position: relative;
  width: 100%;
  height: 33rem; /* Reduced from 35rem to 33rem */
  background: var(--white);
  margin-top: 3rem;
}


.banner-video-area > i {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 3em;
  transform: translate(-50%, -50%);
}

.home-banner > .banner-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 12.5rem;
  background: var(--white);
}

.home-banner > .banner-bottom > img {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 100%;
}

/* Banner Heading */

.bannerHeading {
  text-align: center;
}

.bannerHeading > h1 {
  font-size: 2.375rem;
  font-weight: 700;
  max-width: 50rem;
  margin: 0 auto 1.5rem;
}

.bannerHeading > h1 > sup {
  font-weight: 500;
}

.bannerHeading > :is(h4, p) {
  margin: 0 auto;
}

.bannerHeading > :is(h4, p):not(:last-child) {
  margin-bottom: 2rem;
}

.bannerHeading > h4 {
  font-size: 1.375rem;
  font-weight: 700;
}

/* Link area */

.link-area > :is(a, button) {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  background: var(--primary);
  padding: 1rem 2.5rem;
  border: 0;
  outline: 0;
  gap: 0.5rem;
  box-shadow: 0.25rem 0.25rem 0.625rem rgba(var(--black-rgb), 0.2);
  transition: box-shadow 0.3s;
}

.link-area > :is(a, button).secondary {
  background: var(--seconday);
}

.link-area > :is(a, button):hover {
  box-shadow: 0.25rem 0.25rem 0.625rem rgba(var(--black-rgb), 0.25);
}

.link-area > :is(a, button).transparent {
  background: transparent;
  color: currentColor;
  box-shadow: none;
}

/* Section */

.section-padding {
  padding: 4.5rem 0;
}

/* Section Heading */

.section-heading.text-center {
  margin-bottom: 2.5rem;
}

.section-heading > h2 {
  font-size: 2.5rem;
  font-weight: 700;
  max-width: 55rem;
  margin: 0 auto 0.75rem;
}

.section-heading > h2:last-child {
  margin-bottom: 0;
}

/* Process Steps */

.single-process-steps {
  display: flex;
  /*background: var(--primary);*/
    background: #9A9BD4;
  color: var(--white);
  align-items: center;
  padding: 1rem 2.5rem 1rem 1rem;
  gap: 1rem;
  height: 100%;
  font-size: 1rem;
  transition: box-shadow 0.3s;
}

.single-process-steps:hover {
  box-shadow: 0 0 0.9375rem rgba(var(--black-rgb), 0.25);
}

.single-process-steps > .imageArea > img {
  width: 5rem;
  max-height: 5rem;
}

.single-process-steps > .detailArea > h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0;
}

.single-process-steps > .detailArea > h3 > strong {
  color: var(--seconday);
  font-weight: 800;
}

/* Download App */

.single-download-app {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1rem;
  border: 2px solid var(--primary);
  box-shadow: 0 0 0.625rem rgba(var(--black-rgb), 0.25);
  gap: 1rem;
  transition: box-shadow 0.3s;
}

.single-download-app:hover {
  box-shadow: 0 0 0.9375rem rgba(var(--black-rgb), 0.3);
}

.single-download-app > h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  max-width: 8rem;
  text-align: center;
}

.single-download-app > img {
  height: 8.5rem;
}

.single-download-app > .link-area > :is(a, button) {
  padding: 0.5rem 2rem;
}

/* Disclaimer Area */

.disclaimer-area {
  border: 1px solid var(--primary);
  padding: 1rem 2rem;
}

.disclaimer-area .noteArea,
.disclaimer-area .link-area {
  display: flex;
  align-items: center;
}

.disclaimer-area .noteArea {
  gap: 1rem;
}

.disclaimer-area .link-area {
  justify-content: flex-end;
}

.disclaimer-area .noteArea > input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid var(--seconday);
  width: 2rem;
  height: 2rem;
  transition: background-color 0.3s;
  cursor: pointer;
}

.disclaimer-area .noteArea > input:checked {
  background-image: var(--checked-icon);
  background-color: var(--primary);
  border-color: var(--primary);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 75%;
}

.disclaimer-area .link-area > :is(a, button) {
  padding: 0.5rem 1.5rem;
}

/* Footer */

.footer {
  background: var(--footer-bg);
  font-size: 0.875rem;
}

.footer .top {
  padding: 4rem 0;
}

.footer-details > h3 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.footer-details > ul > li > a {
  display: inline-flex;
  padding: 0.25rem 0;
  align-items: center;
  gap: 0.5rem;
}

.footer-details > ul > li > a > i {
  font-size: 1.25rem;
}

.footer .bottom {
  border-top: 1px solid rgba(var(--black-rgb), 0.5);
  padding: 1.5rem 0;
  font-size: 0.8125rem;
}

.footer .bottom > ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.footer .bottom > ul > li > p {
  font-weight: 500;
}

/* Brief */

.brief-section {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 5.625rem);
}

.brief-back > a {
  display: inline-flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--primary);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.5rem;
}

.brief-head {
  padding: 2rem 0;
}

.brief-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding-bottom: 4.5rem;
}

.brief-body > .container {
  margin: auto;
}

.brief-body .section-heading > p {
  font-size: 1.5rem;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

/* Brief Select Item */

.single-brief-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  background: rgba(var(--primary-rgb), 0.15);
  padding: 2rem;
  text-align: center;
  color: var(--primary);
  cursor: pointer;
  transition: color 0.3s, background 0.3s, box-shadow 0.3s;
  height: 100%;
}

.single-brief-item.v-big {
  padding: 3rem 2rem;
}

.single-brief-item > input {
  display: none;
}

.single-brief-item > img {
  height: 5rem;
  object-fit: contain;
  transition: filter 0.3s;
}

.single-brief-item > h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.2;
}

.single-brief-item:has(> input:checked) {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0.3125rem 0.3125rem 1rem rgba(var(--black-rgb), 0.25);
}

.single-brief-item > input:checked ~ img:not(.dont-invert) {
  filter: grayscale(1) brightness(0) invert(1);
}

.link-area > :is(a, button).brief-btn {
  padding: 1rem 6.25rem;
}

.single-brief-item > .info-area {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}

.single-brief-item > .info-area > .info {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  border: 1px solid currentColor;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
}

.single-brief-item > .info-area:not(:hover) > .info-detail {
  display: none;
}

.single-brief-item > .info-area > .info-detail {
  position: absolute;
  background: var(--primary);
  color: var(--white);
  width: 15rem;
  text-align: left;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-weight: 300;
  font-size: 0.875rem;
  bottom: calc(100% + 1rem);
  left: 50%;
  transform: translate(-50%, 0%);
}

.single-brief-item > .info-area > .info-detail::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 0.75rem solid transparent;
  border-right: 0.75rem solid transparent;
  border-top: 0.75rem solid var(--primary);
  transform: translateX(-50%);
}

/* Brief Tabs */

.brief-tabs {
  border: 1px solid var(--primary);
  margin: 0 auto 1.5rem;
  padding: 0.5rem;
  gap: 0.5rem;
}

.brief-tabs.search-tabs {
  max-width: 47rem;
}

.brief-tabs > .nav-item {
  transition: flex 0.3s;
}

.brief-tabs > .nav-item > .nav-link {
  border-radius: 0;
  background: rgba(var(--primary-rgb), 0.15);
  color: var(--primary);
  padding: 1rem 3rem;
  text-align: center;
  transition: background 0.3s, color 0.3s;
}

.brief-tabs > .nav-item:has(> .nav-link.active) {
  flex: 1 1 auto;
}

.brief-tabs > .nav-item > .nav-link.active {
  background: rgba(var(--primary-rgb), 1);
  color: var(--white);
}

.brief-tabs-form,
.brief-input-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.brief-tabs-form > input,
.brief-input-area > input {
  width: 100%;
  border: 1px solid var(--primary);
  padding: 1.25rem 2rem;
  text-align: center;
  outline: 0;
  color: var(--primary);
  max-width: 30rem;
  box-shadow: 0.25rem 0.25rem 0.625rem rgba(var(--black-rgb), 0.1);
}

/* Products Card */

.single-product-card {
  box-shadow: 0.25rem 0.25rem 0.625rem rgba(var(--black-rgb), 0.1);
  height: 100%;
}

.single-product-card,
.single-product-card > .detailArea {
  display: flex;
  flex-direction: column;
}

.single-product-card > .imageArea {
  width: 100%;
  height: 19rem;
}

.single-product-card > .imageArea > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-product-card > .detailArea {
  padding: 1rem;
  flex: 1 1 auto;
}

.single-product-card > .detailArea > p {
  font-size: 0.75rem;
  line-height: 1.35;
}

.single-product-card > .detailArea > p.detail {
  color: rgba(var(--black-rgb), 0.5);
  flex: 1 1 auto;
}

.single-product-card > .detailArea > p.category {
  margin: 0 0 0.25rem;
}

.single-product-card > .detailArea > .colors,
.single-product-card > .detailArea > .sizes {
  display: flex;
  gap: 0.25rem;
}

.single-product-card > .detailArea > .colors {
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
}

.single-product-card > .detailArea > .colors > li {
  height: 1.125rem;
  aspect-ratio: 1;
}

.single-product-card > .detailArea > h3,
.single-product-card > .detailArea > a > h3 {
  font-size: 1.0625rem;
  margin: 0 0 0.25rem;
}

.single-product-card > .detailArea > .sizes > li {
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.15);
  padding: 0.125rem 0.75rem;
  font-size: 0.875rem;
}

.single-product-card > .detailArea > .sizes:not(:last-child) {
  margin-bottom: 0.5rem;
}

.single-product-card > .detailArea > .link-area > :is(a, button) {
  padding: 0.25rem 1.875rem;
}

/* Product Detail Card */

.product-detail-area {
  display: flex;
  gap: 1.5rem;
  box-shadow: 0 0 1rem rgba(var(--black-rgb), 0.15);
}

.product-detail-area > .imageArea {
  width: 45%;
}

.product-detail-area > .detailArea {
  width: 55%;
  padding: 1.5rem 3rem;
}

.product-detail-area > .imageArea > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-area > .detailArea > p.category {
  margin: 0 0 0.125rem;
  font-size: 0.875rem;
}

.product-detail-area > .detailArea > h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

.product-detail-area > .detailArea > p.detail {
  color: rgba(var(--black-rgb), 0.5);
}

.product-detail-area > .detailArea > p.detail:not(:last-child) {
  margin-bottom: 0.5rem;
}

.product-options {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.product-options + .product-options {
  margin-top: 0.75rem;
}

.product-options > label {
  font-weight: 600;
}

.product-options ul.colors {
  display: flex;
  gap: 0.25rem;
}

.product-options ul.colors > li {
  display: inline-flex;
}

.product-options ul.colors > li > label {
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  position: relative;
}

.product-options ul.colors > li > label > input {
  display: none;
}

.product-options ul.colors > li > label:has(> input:checked)::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: var(--checked-icon);
  background-color: rgba(var(--black-rgb), 0.2);
  background-size: 2rem;
  background-position: center center;
  box-shadow: 0 0 0 0.1875rem var(--primary) inset;
}

select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0;
  border: 1px solid var(--text-color);
  color: var(--text-color);
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M16.9,9.2c-0.4-0.4-1-0.4-1.4,0L12,12.7L8.5,9.2c-0.4-0.4-1-0.4-1.4,0s-0.4,1,0,1.4l4.2,4.2c0.2,0.2,0.4,0.3,0.7,0.3c0.3,0,0.5-0.1,0.7-0.3l4.2-4.2C17.3,10.2,17.3,9.6,16.9,9.2z'/></svg>");
  background-repeat: no-repeat;
  background-position: calc(100% - 0.875rem) center;
  background-size: 1.5rem;
}

.product-detail-area > .detailArea > .link-area {
  margin-top: 1rem;
}

.addOns-area {
  margin-top: 3rem;
}

/* Product Info Area */

.product-info-area {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.product-info-area > .imageArea {
  width: 100%;
  height: 25rem;
}

.product-info-area > .imageArea > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-info > h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.product-info > p {
  margin-bottom: 0;
}

/* Popup */

.popup-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  transition: opacity 0.3s, visibility 0.3s;
}

.popup-area:not(.show) {
  opacity: 0;
  visibility: hidden;
}

.popup-area > .popup-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--black-rgb), 0.7);
  z-index: -1;
}

.popup-body {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 2rem);
  max-width: 50rem;
  max-height: calc(100% - 2rem);
  background-color: var(--white);
  transform: translate(-50%, -50%);
  padding: 2rem;
  z-index: 1;
}

.measure-popup > .popup-body {
  padding: 4rem;
  font-size: 1.25rem;
  max-width: 55rem;
}

.download-gp-not-found {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.download-gp-not-found > img {
  object-fit: contain;
  height: 9rem;
}

.product-info-addOns {
  margin-top: 2rem;
  border-top: 1px solid rgba(var(--black-rgb), 0.1);
  padding-top: 3rem;
}

/* Input Area */

.input-area {
  display: flex;
  flex-direction: column;
}

.input-area > label {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.input-area > .input {
  display: flex;
  border: 1px solid var(--primary);
  color: var(--primary);
  align-items: center;
  padding: 0 1rem;
  gap: 0.5rem;
}

.input-area > .input > input {
  flex: 1 1 auto;
  padding: 0.75rem 0rem;
  border-radius: 0;
  border: 0;
  outline: 0;
  -moz-appearance: textfield;
  -webkit-appearance: none;
  appearance: none;
}

.input-area > .input > input::-webkit-outer-spin-button,
.input-area > .input > input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Measurement Area */

.measurementsImg {
  background: #f7f7f7;
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--primary);
  box-shadow: 0.25rem 0.25rem 0.5rem rgba(var(--black-rgb), 0.2);
}

.measurementsImg > img {
  height: 20rem;
}

.measurement-detailArea > h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.meassageArea {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.mob-menu-area {
    display: none;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    position: fixed;
    visibility: hidden;
    opacity: 0;
    z-index: 1000;
    transition: all 0.3s;
}

.mob-menu-area.show {
    opacity: 1;
    visibility: visible;
}

.mob-menu-area > .bg {
    position: absolute;
    left: 0;
    height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.mob-menu {
    position: absolute;
    display: flex;
    background: var(--white);
    width: 100%;
    max-width: 20rem;
    height: 100vh;
    top: 0;
    right: 0;
    padding: 2rem;
    flex-direction: column;
    gap: 2rem;
    box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
    z-index: 1;
}

.mob-menu-area:not(.show) > .mob-menu {
    transform: translateX(100%);
}

.mob-menu > ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mob-menu-btn {
    display: none;
    margin-left: auto;
    border: 0;
    background: none;
    outline: 0;
    font-size: 1.5rem;
    color: var(--primary);
}

/* Media queries */

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 67.5rem;
  }
}

@media (max-width: 576px) {
  :root {
    --scaleFactor: 3;
  }
  
  html {
    font-size: 14px;
  }

  body {
    font-size: 1.125rem;
  }
  
  .disclaimer-area > .row {
      gap: 1rem;
  }
  
  .disclaimer-area .link-area {
    justify-content: center;
  }
  
  .footer .bottom > ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .product-detail-area {
    flex-direction: column;
  }
  
  .product-detail-area > .imageArea,
  .product-detail-area > .detailArea {
    width: 100%;
  }
  
  .product-detail-area > .detailArea {
    padding: 1.5rem 2rem;
  }
  
  .brief-tabs > .nav-item > .nav-link {
    padding: 0.75rem 2rem;
  }
  
  .menu {
      display: none;
  }
  
  .mob-menu-btn {
      display: block;
  }
  
  .mob-menu-area {
      display: block;
  }
}
.btn-primary:hover {
    background-color: #7474c1 !important;
    border-color: #7474c1 !important;
}
.size-label{
    font-weight: 600;
}
/* contact us popup */

/* Main Widget Container */
.contact-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Floating Button */
.contact-toggle {
    background-color: #4e4ebc;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
}

.contact-toggle:hover {
    background-color: #4e4ebc;
}

/* Bigger Contact Box */
.contact-box {
    display: none;
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 20px;
    animation: fadeInUp 0.3s ease;
}

/* Header */
.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.contact-header span {
    font-size: 18px;
    font-weight: 600;
    color: #007bff;
}

.close-btn {
    background: transparent;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #000;
}

/* Contact Info */
.contact-info p {
    margin: 12px 0;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
    word-break: break-all;
}

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

/* Fade-in Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* end popup */


