/* General Styles */
:root {
  --primary-color: #8a2be2;
  --secondary-color: #6a11cb;
  --dark-bg: #0b0116;
  --darker-bg: black;
  --text-light: #f9f9f9;
  --overlay-color: rgba(0, 0, 0, 0.5);
  --transition: 0.4s ease-in-out;
  --border-glow: rgba(184, 99, 241, 0.5);
  --card-bg: rgba(25, 25, 25, 0.8);
  --text-muted: #dbddde;
  --success: #4ecca3;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  background-color: white;
}

/* Navbar Styles */
.navbar {
  transition: transform 0.3s ease-in-out;
  padding: 0.75rem 1rem;
  z-index: 50;
}

.navbar-hidden {
  transform: translateY(-100%);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-light);
}

.navbar-brand span {
  color: var(--primary-color);
}

.navbar-nav .nav-item {
  margin: 0 0.5rem;
}

.navbar-nav .nav-link {
  color: var(--text-light);
  position: relative;
  padding: 0.5rem 0.25rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.login-btn {
  padding: 0.5rem 1.25rem;
  color: var(--text-light);
  background-color: transparent;
  border: 2px solid var(--primary-color);
  border-radius: 25px;
  transition: all 0.3s ease;
  margin-right: 0.75rem;
}

.login-btn:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.icon-color {
  color: var(--primary-color);
}

.contact-btn {
  padding: 0.5rem 1.5rem;
  color: white;
  background-color: var(--primary-color);
  border: none;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: #5a52e0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(108, 99, 255, 0.4);
}

/* Mobile Navbar */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: black;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1050; /* Higher z-index to ensure it's clickable */
  padding: 10px; /* Larger hit area for better touch target */
}

.mobile-nav-close:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

.mobile-nav-links .nav-link {
  color: white;
  font-size: 1.25rem;
  margin: 0.75rem 0;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-nav-links .nav-link:hover {
  color: var(--primary-color);
}

/* login sign up section */
/* Firebase Auth Modal Styles */
.dm-auth-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1050;
  overflow: auto;
  justify-content: center;
  align-items: center;
  animation: dmFadeIn 0.3s ease;
}

@keyframes dmFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes dmSlideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.dm-modal-content {
  background-color: #121212;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  margin: 1.75rem auto;
  animation: dmSlideIn 0.3s ease;
  border: 1px solid #333;
}

.dm-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #333;
}

.dm-modal-title {
  margin: 0;
  color: #fff;
  font-weight: 600;
  font-size: 1.25rem;
}

.dm-close-btn {
  background: transparent;
  border: none;
  font-size: 1.25rem;
  color: #999;
  cursor: pointer;
  transition: color 0.2s ease;
}

.dm-close-btn:hover {
  color: #fff;
}

.dm-modal-body {
  padding: 1.5rem;
}

/* Form Styles */
.dm-auth-form {
  margin-bottom: 1rem;
}

.dm-form-group {
  position: relative;
  margin-bottom: 1.25rem;
}

.dm-input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  z-index: 10;
}

.dm-form-control {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border-radius: 4px;
  border: 1px solid #333;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.dm-form-control:focus {
  outline: none;
  border-color: #5645ff;
  box-shadow: 0 0 0 2px rgba(86, 69, 255, 0.2);
}

.dm-form-control::placeholder {
  color: #666;
}

.dm-text-center {
  text-align: center;
}

.dm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  position: relative;
  width: 100%;
}

.dm-login-btn,
.dm-signup-btn {
  background: linear-gradient(135deg, #5645ff, #9747ff);
  color: #fff;
}

.dm-login-btn:hover,
.dm-signup-btn:hover {
  background: linear-gradient(135deg, #4535ef, #8637ef);
  transform: translateY(-2px);
}

.dm-spinner {
  margin-left: 8px;
}

/* Toggle Links */
.dm-form-toggle {
  text-align: center;
  margin-top: 1rem;
}

.dm-toggle-text {
  color: #999;
  font-size: 0.9rem;
  margin: 0;
}

.dm-toggle-link {
  color: #5645ff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.dm-toggle-link:hover {
  color: #9747ff;
  text-decoration: underline;
}

/* Auth Message */
.dm-auth-message {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 4px;
  font-size: 0.9rem;
  text-align: center;
}

.dm-auth-message.dm-error {
  background-color: rgba(241, 70, 104, 0.15);
  color: #f14668;
  border: 1px solid rgba(241, 70, 104, 0.3);
}

.dm-auth-message.dm-success {
  background-color: rgba(72, 199, 142, 0.15);
  color: #48c78e;
  border: 1px solid rgba(72, 199, 142, 0.3);
}

/* Utility Classes */
.dm-d-none {
  display: none !important;
}

.dm-d-flex {
  display: flex !important;
}

/* User Profile Styles */
.dm-user-profile {
  position: relative;
}

.dm-profile-trigger {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 50px;
  background-color: rgba(30, 30, 30, 0.5);
  transition: background-color 0.2s ease;
}

.dm-profile-trigger:hover {
  background-color: rgba(50, 50, 50, 0.8);
}

.dm-profile-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #5645ff;
}

.dm-profile-name {
  margin: 0 0.5rem;
  color: #fff;
  font-weight: 500;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dm-profile-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 280px;
  background-color: #1e1e1e;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1000;
  margin-top: 0.5rem;
  border: 1px solid #333;
  animation: dmSlideIn 0.2s ease;
}

.dm-dropdown-header {
  padding: 1rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #333;
}

.dm-dropdown-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #5645ff;
}

.dm-dropdown-info {
  margin-left: 0.75rem;
}

.dm-dropdown-name {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

.dm-dropdown-email {
  display: block;
  color: #999;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.dm-dropdown-menu {
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
}

.dm-dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: #ccc;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.dm-dropdown-item:hover {
  background-color: #2a2a2a;
  color: #fff;
}

.dm-dropdown-item i {
  margin-right: 0.75rem;
  width: 18px;
  text-align: center;
}

.dm-dropdown-divider {
  height: 1px;
  background-color: #333;
  margin: 0.5rem 0;
  border: none;
}

/* Responsive Styles */
@media (max-width: 576px) {
  .dm-modal-content {
    max-width: 320px;
    margin: 1rem;
  }

  .dm-profile-name {
    max-width: 60px;
  }

  .dm-dropdown-menu {
    width: 250px;
  }
}

/* Show dropdown when active */
.dm-user-profile.dm-active .dm-profile-dropdown {
  display: block;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  color: white;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-small {
  display: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-color);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 1rem 0rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title .hero-video2 {
  width: 100px;
  height: 60px;
  border: 4px solid var(--primary-color);
  border-radius: 20px;
}

.small-text {
  font-size: 1.3rem;
}

.hero-title span {
  color: white;
  font-weight: 500;
  background-color: var(--primary-color);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: 5px 20px;
}
.hero-popup {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-popup i {
  color: rgb(252, 212, 32);
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 35px;
  border-radius: 20px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  font-size: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.hero-btn:hover {
  background-color: var(--secondary-color);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .small-text {
    font-size: 1.2rem;
  }

  .login-btn,
  .contact-btn {
    padding: 0.4rem 1rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .small-text {
    font-size: 1rem;
  }

  .hero-content {
    padding: 0rem 0.9rem;
  }

  .hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
  }

  .hero-video-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-video {
    display: none;
  }

  .hero-title .hero-video2 {
    margin-top: 1.5rem;
    width: 100px;
    height: 60px;
  }
}

/* Portfolio Section */
.portfolio-section {
  padding: 100px 0;
  background: black;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.section-heading1 {
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
}

.main-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.main-heading:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 25%;
}

.section-heading1 p {
  font-size: 1.1rem;
  color: inherit;
  opacity: 0.9;
}

/* Categories */
.category-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

.category-container .btn {
  margin: 5px;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 500;
  transition: var(--transition);
}

.category-container .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-container .btn.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.category-select {
  display: none;
  margin: 0 auto 2rem;
  max-width: 300px;
}

/* Portfolio Grid */
.portfolio-grid {
  margin-bottom: 3rem;
}

.portfolio-item {
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
}

.portfolio-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  height: 600px;
  cursor: pointer;
  transition: var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.05);
}

.cat-btn {
  border: 2px solid white;
  color: white;
}

.cta-btn:hover {
  background-color: var(--primary-color);
  border: 2px solid white;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(154, 99, 255, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  color: white;
  text-align: center;
  transition: 0.6s ease-in-out;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.portfolio-desc {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 15px;
  gap: 5px;
}

.tech-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  color: white;
}

.preview-btn {
  padding: 8px 20px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.preview-btn:hover {
  transform: translateY(-2px);
}

/* View All Button */
.view-all-container {
  text-align: center;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
}

.view-all-btn {
  padding: 10px 25px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.view-all-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  position: relative;
  max-width: 80%;
  max-height: 80%;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  width: 100%;
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 5px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  object-fit: contain;
  width: 100%;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--secondary-color);
  transform: rotate(90deg);
}

.lightbox-details {
  background-color: black;
  color: white;
  padding: 20px;
  border-radius: 0 0 5px 5px;
}

.lightbox-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: white;
}

.lightbox-desc {
  color: #fff;
  margin-bottom: 15px;
}

.lightbox-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}

.lightbox-tech .tech-badge {
  background-color: #eaeaea;
  color: var(--dark-bg);
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .portfolio-card {
    height: 600px;
  }
}

@media (max-width: 991px) {
  .section-heading h2 {
    font-size: 2.2rem;
  }

  .portfolio-card {
    height: 350px;
  }

  .portfolio-title {
    font-size: 1.4rem;
  }

  .portfolio-desc {
    font-size: 0.9rem;
  }

  .tech-badge {
    font-size: 0.7rem;
    padding: 2px 8px;
  }
}

@media (max-width: 767px) {
  .portfolio-section {
    padding: 60px 0;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .section-heading h2 {
    font-size: 1.8rem;
  }

  .section-heading p {
    font-size: 1rem;
  }

  .category-container {
    display: none;
  }

  .category-select {
    display: block;
    margin-bottom: 1.5rem;
  }

  .portfolio-card {
    height: 350px;
  }

  .portfolio-title {
    font-size: 1.2rem;
  }

  .portfolio-desc {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  .tech-stack {
    margin-bottom: 10px;
  }

  .preview-btn {
    padding: 6px 16px;
    font-size: 0.9rem;
  }

  .view-all-btn {
    padding: 8px 20px;
    font-size: 0.95rem;
  }

  .main-heading {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .portfolio-section {
    padding: 50px 0;
  }

  .section-heading h2 {
    font-size: 1.6rem;
  }

  .section-heading h2:after {
    height: 2px;
    bottom: -8px;
  }

  .portfolio-card {
    height: 600px;
  }

  .portfolio-item {
    margin-bottom: 20px;
  }

  .portfolio-title {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }

  .portfolio-desc {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }

  .tech-badge {
    font-size: 0.65rem;
    padding: 2px 6px;
  }

  .preview-btn {
    padding: 5px 14px;
    font-size: 0.8rem;
  }

  .lightbox-content {
    max-width: 90%;
  }

  .lightbox-title {
    font-size: 1.3rem;
  }

  .lightbox-desc {
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  .portfolio-card {
    height: 350px;
  }

  .portfolio-overlay {
    padding: 12px;
  }
}

/* services section */
.services-section-unique {
  background-color: black;
  padding: 80px 0;
  overflow: hidden;
}

.section-title-unique {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  position: relative;
}

.section-title-unique::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  margin-top: 0.5rem;
}

.section-intro-unique {
  color: #fff;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.service-carousel-unique {
  min-height: 300px;
  position: relative;
}

.service-item-unique {
  display: none;
  opacity: 0;
  position: absolute;
  width: 100%;
  padding: 1.5rem;
  background-color: #352643;
  border-radius: 10px;
  box-shadow: 6px 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-item-unique.active {
  display: block;
  opacity: 1;
}

.service-icon-unique {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-title-unique {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #ffff;
}

.service-caption-unique {
  margin-bottom: 1.5rem;
  color: #ffff;
}

.service-cta-unique {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-cta-unique:hover {
  background-color: var(--secondary-color);
  transform: translateX(5px);
  color: #fff;
}

.service-cta-unique i {
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.service-cta-unique:hover i {
  transform: translateX(3px);
}

.image-carousel-unique {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  height: 350px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.carousel-image-unique {
  display: none;
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.carousel-image-unique.active {
  display: block;
  opacity: 1;
}

.carousel-controls-unique {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.carousel-dot-unique {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #dee2e6;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot-unique.active {
  background-color: var(--primary-color);
  transform: scale(1.3);
}

@media (max-width: 767.98px) {
  .services-section-unique {
    padding: 50px 0;
  }

  .image-carousel-unique {
    margin-top: 2rem;
    height: 250px;
  }

  .section-title-unique {
    text-align: center;
  }

  .section-title-unique::after {
    margin: 0.5rem auto 0;
  }

  .section-intro-unique {
    text-align: center;
  }
  .section-title-unique {
    text-align: center; /* Center on smaller screens */
  }
}

/* testimonials section */
/* Testimonials Section */
#testimonials-section {
  background-color: black;
  color: #fff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section-heading {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.section-heading:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 60px;
  background: #fff;
}

/* Testimonial Card */
.testimonial-card {
  border-radius: 10px;
  padding: 2.5rem;
  margin: 0 auto;
  max-width: 800px;
  min-height: 300px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
}

.quote-icon {
  font-size: 2rem;
  color: #fff;
  opacity: 0.7;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 2rem;
}

.client-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
}

.client-image {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffff;
  box-shadow: 0 0 15px var(--primary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-image:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--primary-color);
}

.client-info {
  text-align: center;
  margin-top: 1rem;
}

.client-name {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.client-title {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.star-rating {
  color: #ffc107;
  margin: 0.5rem 0;
}

/* Custom Carousel Controls */
.carousel-indicators {
  bottom: -50px;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary-color);
  opacity: 0.4;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.carousel-indicators .active {
  opacity: 1;
  transform: scale(1.2);
}

/* Background Elements */
.bg-quote-left,
.bg-quote-right {
  position: absolute;
  font-size: 15rem;
  opacity: 0.2;
  color: #fff;
  z-index: 0;
}

.bg-quote-left {
  top: 10%;
  left: 5%;
}

.bg-quote-right {
  bottom: 10%;
  right: 5%;
}

/* View More Button */
.view-more-btn {
  margin-top: 4rem;
  background-color: var(--primary-color);
  border: 2px solid var(--accent-color);
  color: #ffff;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.view-more-btn:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 1.5rem;
    min-height: 350px;
  }

  .testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .bg-quote-left,
  .bg-quote-right {
    font-size: 8rem;
  }

  .client-image {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 576px) {
  #testimonials-section {
    padding: 3rem 0;
  }

  .quote-icon {
    font-size: 1.5rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .bg-quote-left,
  .bg-quote-right {
    font-size: 5rem;
  }
}

/* contact section */

body {
  background-color: var(--darker-bg);
  color: var(--text-light);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.section-ct7842 {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  overflow: hidden;
}

.heading-ct7842 {
  position: relative;
  margin-bottom: 3rem;
  opacity: 0;
}

.heading-ct7842 h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.heading-ct7842 p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  font-style: italic;
}

.image-container-ct7842 {
  position: relative;
  height: 100%;
  min-height: 450px;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
}

.contact-image-ct7842 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  filter: brightness(0.9);
}

.info-card-ct7842 {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background-color: #352643;
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  width: 80%;
  max-width: 320px;
  transform: translateX(50px);
  opacity: 0;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.info-item-ct7842 {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.info-item-ct7842:last-child {
  margin-bottom: 0;
}

.info-icon-ct7842 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-right: 1rem;
  width: 24px;
  text-align: center;
}

.info-content-ct7842 h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.info-content-ct7842 p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.form-container-ct7842 {
  background: rgb(15, 0, 19);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
}

.form-floating-ct7842 {
  margin-bottom: 1.5rem;
}

.form-floating-ct7842 > label {
  color: var(--text-muted);
}

.form-control-ct7842 {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-control-ct7842:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.25);
}

.btn-primary-ct7842 {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary-ct7842:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
}

.btn-whatsapp-ct7842 {
  background-color: #25d366;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-whatsapp-ct7842:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.success-message-ct7842 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-bg);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  z-index: 10;
}

.success-message-ct7842.active {
  opacity: 1;
  visibility: visible;
}

.success-icon-ct7842 {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.error-shake {
  animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes shake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }
  30%,
  50%,
  70% {
    transform: translate3d(-3px, 0, 0);
  }
  40%,
  60% {
    transform: translate3d(3px, 0, 0);
  }
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .image-container-ct7842 {
    margin-bottom: 2rem;
  }

  .info-card-ct7842 {
    position: relative;
    top: -12rem;
    right: auto;
    width: 100%;
    max-width: 100%;
    margin-top: -4rem;
    margin-bottom: 2rem;
    z-index: 2;
  }
}

@media (max-width: 767.98px) {
  .section-ct7842 {
    padding: 2rem 0;
  }

  .form-container-ct7842 {
    padding: 0.8rem;
  }

  .btn-container-ct7842 {
    flex-direction: column;
  }

  .btn-whatsapp-ct7842 {
    margin-top: 1rem;
    margin-left: 0 !important;
    width: 100%;
  }

  .btn-primary-ct7842 {
    width: 100%;
  }
}

/* faqs section */
body {
  background-color: var(--darker-bg);
  color: var(--text-light);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.section-fq48291 {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  overflow: hidden;
}

.heading-fq48291 {
  position: relative;
  margin-bottom: 3rem;
  opacity: 0;
}

.heading-fq48291 h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.heading-fq48291 p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  font-style: italic;
}

.accordion-fq48291 {
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
}

.accordion-item-fq48291 {
  background-color: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item-fq48291:hover {
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.2);
  transform: translateY(-2px);
}

.accordion-header-fq48291 {
  margin-bottom: 0;
}

.accordion-button-fq48291 {
  padding: 1.25rem;
  background-color: rgba(25, 25, 25, 0.9);
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  width: 100%;
  text-align: left;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.accordion-button-fq48291:not(.collapsed) {
  background: linear-gradient(
    90deg,
    rgba(138, 43, 226, 0.2),
    rgba(106, 17, 203, 0.2)
  );
  color: var(--text-light);
  box-shadow: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.accordion-button-fq48291:focus {
  box-shadow: none;
  outline: none;
}

.accordion-icon-fq48291 {
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  margin-left: 15px;
}

.accordion-button-fq48291:not(.collapsed) .accordion-icon-fq48291 {
  transform: rotate(45deg);
}

.accordion-body-fq48291 {
  padding: 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
  background-color: rgba(20, 20, 20, 0.8);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.image-container-fq48291 {
  position: relative;
  height: 100%;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}

.faq-image-fq48291 {
  width: 90%;
  max-width: 1000px;
  filter: drop-shadow(0 10px 15px rgba(138, 43, 226, 0.3));
  border-radius: 20px;
}

.cta-container-fq48291 {
  margin-top: 3rem;
  text-align: center;
  opacity: 0;
}

.cta-text-fq48291 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.btn-cta-fq48291 {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border: none;
  border-radius: 30px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-cta-fq48291:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
  color: white;
}

.popular-badge-fq48291 {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 30px;
  margin-right: 10px;
}

.particles-fq48291 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle-fq48291 {
  position: absolute;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  opacity: 0.3;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .section-fq48291 {
    padding: 4rem 0;
  }

  .image-container-fq48291 {
    margin-top: 3rem;
    min-height: 300px;
  }
}

@media (max-width: 767.98px) {
  .section-fq48291 {
    padding: 3rem 0;
  }

  .accordion-button-fq48291 {
    font-size: 1rem;
    padding: 1rem;
  }

  .accordion-body-fq48291 {
    padding: 1.25rem;
  }

  .cta-container-fq48291 {
    margin-top: 2rem;
  }
}

/* footer section */
/* Footer styling */
.footer-section-9071 {
  background: linear-gradient(
    to bottom,
    var(--secondary-dark),
    var(--primary-dark)
  );
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

/* CTA Section */
.footer-cta-9071 {
  background: linear-gradient(45deg, #6c5ce7, #8e44ad);
  padding: 3rem 0;
  border-radius: 12px 12px 0 0;
  position: relative;
}

.footer-cta-9071::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.cta-btn-9071 {
  background-color: white;
  color: var(--primary-color);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-btn-9071:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  background-color: #f8f9fa;
}

.footer-heading-9071 {
  font-size: 1.5rem;
  font-weight: 600;

  position: relative;
}

.footer-brand-9071 .desc-9071 {
  margin: 1.5rem 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.social-icons-9071 {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon-9071 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--primary-color);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon-9071:hover {
  transform: scale(1.15);
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 0 15px var(--accent-color);
}

.footer-links-9071 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-9071 li {
  margin-bottom: 10px;
}

.footer-links-9071 a {
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links-9071 a .icon-9071 {
  margin-right: 8px;
  transition: all 0.3s ease;
  color: var(--primary-color);
}

.footer-links-9071 a:hover {
  color: var(--text-light);
  padding-left: 5px;
}

.footer-links-9071 a:hover .icon-9071 {
  opacity: 1;
  transform: translateX(3px);
}

.contact-info-9071 {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.contact-info-9071 .icon-9071 {
  margin-right: 12px;
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 4px;
}

.contact-info-9071 .text-9071 {
  color: var(--text-muted);
}

.whatsapp-btn-9071 {
  display: inline-flex;
  align-items: center;
  background: #25d366;
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.whatsapp-btn-9071:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  color: white;
}

/* Newsletter */
.newsletter-form-9071 {
  position: relative;
  margin-top: 1.5rem;
}

.newsletter-input-9071 {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 100px 12px 15px;
  border-radius: 50px;
  width: 100%;
  color: var(--text-light);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.newsletter-input-9071:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-color);
}

.newsletter-btn-9071 {
  position: absolute;
  right: 5px;
  top: 5px;
  background: var(--accent-color);
  border: none;
  border-radius: 50px;
  padding: 7px 20px;
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn-9071:hover {
  background: #5649c0;
  transform: translateX(3px);
}

/* Footer Bottom Bar */
.footer-bottom-9071 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.footer-bottom-9071 a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-9071 a:hover {
  color: var(--text-light);
}

/* Scroll to top button */
.scroll-top-9071 {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-top-9071.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top-9071:hover {
  background: #5649c0;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3);
}

/* Divider Lines */
.divider-line-9071 {
  height: 3px;
  width: 0;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-color),
    transparent
  );
  margin: 20px 0;
  opacity: 0.3;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
  .footer-col-9071 {
    margin-bottom: 2rem;
  }

  .footer-bottom-9071 .text-end {
    text-align: left !important;
    margin-top: 1rem;
  }

  .footer-bottom-9071 .text-start {
    text-align: left !important;
  }

  .social-icons-9071 {
    justify-content: left;
  }

  .footer-heading-9071::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-heading-9071,
  .desc-9071 {
    text-align: left;
  }

  .footer-links-9071 {
    display: flex;
    flex-direction: column;
    align-items: left;
  }

  .contact-info-9071 {
    justify-content: left;
    text-align: left;
  }
}

/* Logo styling */
.footer-logo-9071 {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(45deg, #915ce7, #c49bfe);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
}

.main-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.main-heading:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 25%;
}

/* contact massage */
.prefooter-8473 {
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.contact-heading-9321 {
  font-size: 6.5rem;
  font-weight: 1000;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  background-color: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: all 0.4s ease;
  opacity: 0.3;
}

@media (max-width: 768px) {
  .prefooter-8473 {
    padding: 0rem 0;
  }
}
