@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --sn-font-family: "Inter", sans-serif;
  --sn-primary: #ff4b33;
  --sn-background: #0e0e30;
  --sn-background-1: #2e1c40;
  --sn-background-3: #1d1326;
  --sn-text-1: #a290b5;
  --sn-text-2: #fff;
  --sn-text-3: #bfa9d6;
  --sn-text-4: #fbf8ff;
  --sn-text-5: #c9bfd8;
  --sn-gradient-1: linear-gradient(180deg, #f0e0ff 45.83%, #7300e7 100%);
  --sn-gradient-2: #ff4b33;
  --sn-bg-gradient: linear-gradient(
      90deg,
      rgba(11, 2, 18, 1) 0%,
      /* Darker left */ rgba(30, 16, 44, 1) 20%,
      rgba(30, 16, 44, 1) 80%,
      rgba(11, 2, 18, 1) 100% /* Darker right */
    ),
    linear-gradient(
      180deg,
      rgba(30, 16, 44, 1) 0%,
      /* Light top */ rgba(40, 20, 60, 1) 50%,
      /* Slight darkening in the middle */ rgba(45, 25, 65, 1) 85%,
      /* Darker towards the bottom */ rgba(50, 30, 70, 1) 100%
        /* More darkness at the very bottom */
    );
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

p {
    line-height: 1.7;
}

body {
  font-family: var(--sn-font-family), serif;
  color: var(--sn-text-1);
  font-weight: normal;
  font-size: 16px;
  background-color: #050109;
}

.button {
  border: none;
  outline: none;
  padding: 10px;
}

.main-wrapper {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
}

.home-wrapper {
  background: var(--sn-bg-gradient);
}

.home-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: 100px;
  gap: 30px;
}

.home-section h1 {
  color: var(--sn-text-2);
  font-size: 38px;
  width: 580px;
}

.home-section p {
  width: 550px;
  font-size: 18px;
}

#services, #news {
    padding: 80px 0;
}

#projects,
#blogs, #clients, #contact, #process {
  background: var(--sn-bg-gradient);
  padding: 80px 0;
}

#footer {
  background: var(--sn-bg-gradient);
  padding: 30px 0;
}

.custom-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.custom-header.scrolled {
  background-color: var(--sn-background);
}

/* Mobile Menu */
#mobileMenu {
  background-color: var(--sn-background);
  padding: 10px;
}

#mobileMenu .nav-link {
  font-size: 18px;
  font-weight: 500;
  padding: 10px 0;
}

.nav-link {
  color: var(--sn-text-1);
  font-weight: 500;
  font-size: 14px;
  text-transform: capitalize;
  transition: color 0.3s ease-in-out;
}

.nav-link:hover {
  color: var(--sn-text-3);
}

.btn-danger {
  outline: none;
  border: none;
  background: var(--sn-gradient-2);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 20px;
  transition: all 500ms ease;
  position: relative;
  overflow: hidden;
  color: var(--sn-text-2);
}

.btn-danger:hover {
  background: linear-gradient(180deg, #000080 0%, #00004d 100%);
  color: var(--sn-text-2);
}

.btn-danger:hover::after {
  content: "";
  background: #f1f1f1;
  display: block;
  position: absolute;
  padding-top: 300%;
  padding-left: 350%;
  margin-left: -20px !important;
  margin-top: -120%;
  opacity: 0;
  transition: all 0.8s;
}

.btn-danger:active::after {
  padding: 0;
  margin: 0;
  opacity: 1;
  transition: 0s;
}

.brand-logo {
  width: 170px;
}

.brand-logo img {
  width: 100%;
  height: auto;
}

.group-photo {
  width: 100%;
  position: relative;
}

.group-photo img {
  width: 100%;
  height: auto;
}

.group-photo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%; /* Adjust this to control how much of the shadow is visible */
  background: linear-gradient(
    transparent,
    rgba(0, 0, 0, 0.9)
  ); /* Gradient shadow */
  z-index: 1; /* Ensure it appears above the image */
  pointer-events: none; /* Makes sure it doesn't interfere with user interactions */
}

.sn-gradient-text-1 {
  background: var(--sn-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.grid-container-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.title-text {
  color: var(--sn-primary);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.sub-title-text {
  color: var(--sn-text-4);
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
}

.design-title,
.design-title2 {
  background: linear-gradient(
    180deg,
    rgba(234, 221, 249, 0.1) -135.34%,
    /* Softer lighter tone */ rgba(234, 221, 249, 0) 93.53%
      /* Fully transparent at the bottom */
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: center;
  font-weight: 300;
  font-size: 80px;
  text-transform: capitalize;
  margin-top: 20px;
  margin-bottom: 10px;
}

.design-title2,
.design-title-about {
  background: linear-gradient(
    180deg,
    rgba(234, 221, 249, 0.3) -135.34%,
    /* Softer lighter tone */ rgba(234, 221, 249, 0) 93.53%
      /* Fully transparent at the bottom */
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: center;
  font-weight: 300;
  font-size: 80px;
  text-transform: capitalize;
  margin-top: 10px;
  margin-bottom: -20px;
  text-wrap: nowrap;
  text-overflow: ellipsis;
}

.design-title-about {
  text-align: start;
  text-wrap: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-top: -20px;
  font-size: 10px;
}

.video-container {
    width: 100%;
    height: 100%;
    padding: 20px;
    border-radius: 10px;
    background-color: #ffffff0f;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.grid-container-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-link:hover {
    text-decoration: none;
    color: inherit;
}

.service {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(
    180deg,
    rgba(30, 16, 44, 1) 0%,
    rgba(12, 2, 21, 1) 100%
  );
  transition: all 0.3s ease;
}

.service img {
  width: 100%;
  height: auto;
    border-radius: 10px 10px 0 0;
}

.service .content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.service:hover {
  transform: scale(1.05);
}

.content h6 {
  color: var(--sn-text-2);
  font-size: 16px;
}

.service-button {
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
  color: var(--sn-text-2);
  background-color: var(--sn-background-1);
  text-align: center;
}

.service-button:hover {
  background-color: var(--sn-primary);
  color: var(--sn-text-2);
}

/* General container styles */
.process-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.process-step {
  display: flex;
  flex-direction: row;
  background: transparent;
  color: #fff;
  border-radius: 20px;
  transition: flex 0.3s ease, background 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.process-header {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    padding-bottom: 20px;
    background-color: #170528; /* Dark Purple */
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    border-radius: 20px 20px 0 20px;
    color: var(--sn-text-5);
}

.process-header h1 {
    background-color: #1e0733; /* Slightly Lighter Purple */
    padding: 20px 30px;
    border-radius: 20px 0 0 0;
    color: var(--sn-text-5);
    font-size: 24px;
}

.process-content {
    max-width: 320px;
    transition: all 0.3s ease;
    background: linear-gradient(
        180deg,
        #1c0334 0%,  /* Rich Purple */ #0e011e 100% /* Deep Indigo */
    );
    padding: 20px;
    border-radius: 0 20px 20px 0;
    display: flex;
    flex-direction: column;
}

.process-content svg {
    align-self: center;
}


.process-step.collapsed .process-content {
  max-width: 0;
  overflow: hidden;
  height: 0;
  padding: 0;
}

.process-content h3 {
  color: var(--sn-text-4);
  font-weight: 500;
  font-size: 24px;
}

.process-content p {
  color: var(--sn-text-3);
}

.process-step.collapsed .process-header h1 {
  border-radius: 20px 20px 0 0;
}

.process-step.collapsed .process-header {
  border-radius: 20px;
}

.vertical-text {
  writing-mode: vertical-lr;
  font-size: 20px;
  padding: 10px;
  text-transform: uppercase;
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.carousel-row {
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.carousel {
    display: flex;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
    min-width: 100%;
}

.carousel.reverse {
    animation: scroll-reverse 30s linear infinite;
}

.carousel-item {
    flex: 0 0 auto;
    margin: 0 15px;
}

.carousel-item img {
    max-width: 100px;
    max-height: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Infinite Scroll Animations */
@keyframes scroll {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes scroll-reverse {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0%);
    }
}

.carousel-btn {
    background: transparent;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    color: #e6cdff;
    transition: all 0.3s ease;
    border: 1px solid #e6cdff;
}

.carousel-btn:hover {
    background: var(--sn-primary);
    color: var(--sn-text-2);
    border: none;
}


.case-card {
  border-radius: 10px;
  width: 100%;
  text-align: left;
  flex: 0 0 auto;
  transition: transform 0.3s ease;
  cursor: pointer;
  color: var(--sn-text-3);
}

.case-card:hover {
  transform: scale(1.05);
}

.case-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.case-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--sn-text-4);
}

.case-card p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
}

.details-link {
  color: #a4a4c1;
  font-weight: bold;
  text-decoration: none;
}

.details-link:hover {
  color: var(--sn-primary);
}

.products-container {
  padding: 20px;
  text-align: center;
}

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

.sub-title {
  font-size: 16px;
  color: #aaa;
  margin-bottom: 20px;
}

.filter-options {
  margin-bottom: 20px;
}

.filter-btn {
  background-color: transparent;
  border: 1px solid #9d89b0;
  color: #9d89b0;
  padding: 10px 20px;
  border-radius: 20px;
  margin: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--sn-primary);
  border: none;
  color: #fbf8ff;
}

.project-card {
  background: linear-gradient(
    180deg,
    rgba(30, 16, 44, 1) 0%,
    rgba(12, 2, 21, 1) 100%
  );
  border-radius: 10px;
  padding: 25px 30px;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 100%;
}

.project-card svg {
  width: 50px;
  height: 50px;
  color: var(--sn-primary) !important;
}

.project-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fbf8ff;
  margin-top: 10px;
}

.project-card p {
  font-size: 14px;
  color: #bfa9d6;
}

.project-card:hover {
  transform: scale(1.05);
}

.feedback-container {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 20px;
  overflow: hidden;
}

.feedback-content {
  display: flex;
  flex-direction: column;
  max-width: 320px;
  padding-top: 10px;
  color: #f0e3ff;
  font-size: 22px;
}

.feedback-content p {
  margin-top: 20px;
}

.feedback-content span {
  color: #b29dc7;
  font-size: 16px;
}

.main-video-container {
  position: relative;
  width: 280px;
  height: 340px;
  border-radius: 10px;
  overflow: hidden;
}

.main-video-container video {
  width: 280px;
  height: 340px;
  object-fit: cover;
  object-position: center;
}

.thumbnail-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  max-width: 100%;
}

.thumbnails-container {
  flex: 1;
  overflow-x: auto;
  display: flex;
  justify-content: start;
  gap: 20px;
  overflow-y: hidden;
  max-width: 640px;
}

.thumbnail {
  position: relative;
  width: 200px;
  height: 250px;
  cursor: pointer;
}

.thumbnail img {
  width: 200px;
  height: 250px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.thumbnail:hover img {
  transform: scale(1.1);
}

.custom-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #e63946;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%; /* Circular button */
  cursor: pointer;
  opacity: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

.custom-button:hover {
  opacity: 1;
}

.blog {
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog:hover {
  transform: scale(1.05);
}

.blog img {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
}

.blog span {
  color: #786888;
  font-weight: 500;
}

.blog h6 {
  color: #fbf8ff;
  font-weight: 600;
  font-size: 20px;
}

.blog p {
  color: var(--sn-text-3);
}

/* Map container */
#map {
  width: 100%;
  height: 500px;
  margin: 20px auto;
  border-radius: 10px;
}

/* Custom flag pointer style */
.flag-marker {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}

.flag-marker img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flag-marker::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 5px 0 5px;
    border-color: #fff transparent transparent transparent;
}

.leaflet-tile {
  -webkit-filter: hue-rotate(180deg) invert(100%);
}

.leaflet-popup-content-wrapper {
  background-color: rgba(36, 34, 65, 0.75);
  color: #fbf8ff;
}

.leaflet-popup-content-wrapper .span {
  color: #bfa9d6;
}

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  background-color: rgba(36, 34, 65, 0.75) !important;
  color: white !important;
}

.leaflet-control-zoom-out:hover,
.leaflet-control-zoom-in:hover {
  color: var(--sn-primary) !important;
}

.leaflet-popup-tip {
  background-color: rgba(36, 34, 65, 0.75) !important;
}

#footer {
  color: #bfa9d6;
}

.social-button {
  border-radius: 100%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2a1e44;
  color: white;
  transition: all 0.3s ease;
}

.social-button:hover {
  background-color: var(--sn-primary);
}


/* Left Section (Contact Info) */
.contact-info {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 30px;
}

.contact-info .info-item {
    margin-bottom: 15px;
    text-decoration: none;
}

.info-item h6 {
    font-weight: 600;
}

.info-item a {
    text-decoration: none;
    font-weight: 600;
    color: var(--sn-text-3);
}

.info-item .contact-circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: rgba(63, 13, 105, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
}

/* Right Section (Form) */
.contact-form {
    width: 100%;
    background: rgba(15, 5, 25, 0.9);
    border-radius: 20px;
}

.contact-form p {
    margin-bottom: 15px;
}

/* Form Styling */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #e0d0ff;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    background: rgba(25, 15, 40, 1); /* Dark input background */
    border: 1px solid rgba(80, 60, 120, 0.7); /* Subtle border */
    border-radius: 5px;
    font-size: 14px;
    color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(200, 180, 250, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Submit Button */
.submit-btn {
    background: var(--sn-primary);
    color: white;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s;
    border: none;
    outline: none;
}

#footer .title {
  color: #eaddf9;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
}

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

#footer .input-container {
  display: flex;
  padding: 8px 12px;
  border: 1px solid #382845;
  border-radius: 5px;
}

.input-container input {
  border: none;
  outline: none;
  background-color: transparent;
  color: #bfa9d6;
  width: 100%;
}

.input-container button {
  border: none;
  outline: none;
  padding: 8px 12px;
  background-color: var(--sn-primary);
  border-radius: 6px;
}

#footer .copyright {
  text-align: center;
  border-top: 1px solid #8d8dae;
  padding-top: 20px;
}

@keyframes custom-shakeX {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px); /* Smaller movements for smoothness */
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

.custom-shake svg {
  display: inline-block; /* Optional: Ensures text doesn't break */
  animation-duration: 1s; /* Increased duration for a smoother effect */
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

.custom-shake:hover svg {
  animation-name: custom-shakeX;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3; /* Limits to 3 lines */
}

.text-justify {
  text-align: justify;
}

ul.pagination {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    gap: 5px;
    list-style: none;
    padding-left: 0;
}

.pagination .page-item .page-link {
    color: var(--sn-primary);
    background-color: transparent;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
    border: none;
    font-size: 14px;
}

.pagination .page-item .page-link:hover {
    background-color: var(--sn-primary);
    color: #fff;
    text-decoration: none;
}

.pagination .page-item.active .page-link {
    background-color: var(--sn-primary);
    color: #fff;
    font-weight: bold;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: transparent;
    opacity: 0.7;
}

.pagination .page-item .page-link:focus {
    box-shadow: none;
    outline: none;
}

/*scrollbar styling*/
::-webkit-scrollbar {
  width: 10px;
  z-index: 31;
}

/* Track */
::-webkit-scrollbar-track {
  background: #eee;
  z-index: 31;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 5px;
  z-index: 31;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* horizontal */
::-webkit-scrollbar:horizontal {
  display: none;
  height: 8px;
}

::-webkit-scrollbar-track:horizontal {
  background-color: #eee;
}

::-webkit-scrollbar-thumb:horizontal {
  background-color: #aaa;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:horizontal:hover {
  background-color: #999;
}

.showHScrollbar::-webkit-scrollbar:horizontal {
  display: inline-block;
}

.flex-1 {
  flex: 1;
}

@media (max-width: 991px) {
    .process-container {
        flex-direction: column;
    }

    .process-step {
        flex-direction: column;
    }

    .process-header {
        flex-direction: row;
        padding-bottom: 0;
        border-radius: 20px 20px 0 0;
    }

    .process-header h1 {
        border-radius: 20px 0 0 0;
    }

    .process-content {
        max-width: 100%;
        border-radius: 0 0 20px 20px;
    }

    .process-step.collapsed .process-header {
        border-radius: 20px;
    }

    .process-step.collapsed .process-header h1 {
        border-radius: 20px 0 0 20px;
    }

    .process-step.collapsed .process-content {
        max-width: 100%;
        overflow: hidden;
        height: 0;
        padding: 0;
    }

    .vertical-text {
        writing-mode: horizontal-tb;
    }

  .grid-container-3 {
    grid-template-columns: 1fr 1fr;
  }

  .feedback-container {
    flex-direction: column;
  }

  .feedback {
    width: 100%;
  }
}

@media (max-width: 767px) {
    .video-container {
        height: 400px;
    }
  .process-header h1 {
      font-size: 18px;
  }

  .vertical-text {
      font-size: 18px;
  }

  .process-content h3 {
      font-size: 18px;
  }

  .feedback-content {
    max-width: 200px;
  }

  .main-video-container {
      width: 100%;
      height: auto;
  }

  .main-video-container video {
      width: 100%;
      height: auto;
  }

  #map {
    height: 350px;
  }
}

@media (max-width: 600px) {
  #home h1 {
    width: auto;
  }

  #home p {
    width: auto;
  }

  .carousel {
    max-width: 300px;
  }
}

@media (max-width: 575px) {
    .process-header h1 {
        font-size: 11px;
    }

    .vertical-text {
        font-size: 11px;
    }

    .process-content h3 {
        font-size: 11px;
    }

  .feedback-content {
      max-width: 100%;
  }

  .grid-container-3 {
    grid-template-columns: 1fr;
  }

  .design-title, .design-title2 {
     font-size: 40px;
  }
}

@media (max-width: 440px) {
  .carousel {
    max-width: 200px;
  }

  .card {
    width: 200px;
  }

    #map {
        height: 200px;
    }
}
