/*
 * Global Styles
 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Roboto, system-ui, -apple-system, "Segoe UI", sans-serif;
  background-color: #121212;
  color: white;
  /* Prevent horizontal overflow on smaller screens */
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/*
 * Sticky Header Stylesheet
 */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #280137;
  color: white;
  padding: 9px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 25px;
  padding: auto;
  border-radius: 12px;
  cursor: pointer;
  background-size: contain;
  filter: brightness(0) invert(1);
  background-repeat: no-repeat;
  background-position: center;
  font-size: 1rem;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  transition: transform 0.2s;
  margin-left: 20px;
}

.logo-text {
  display: inline-block;
  margin-left: 6px;
  width: auto;
  white-space: nowrap;
}

.logo:hover {
  filter: brightness(0) invert(1) sepia(1) saturate(500%) hue-rotate(270deg);
  transform: scale(0.8);
}

nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

nav a:hover {
  color: #878C93;
  transform: scale(1.05);
}

nav a:hover::after {
  width: 100%;
}

nav a.contact-btn {
  background: linear-gradient(135deg, #650989, #650989);
  color: white !important;
  text-decoration: none;
  border-radius: 25px;
  padding: 10px 25px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

nav a.contact-btn:hover {
  background: linear-gradient(135deg, #650989, #650989);
  text-decoration: none;
  transform: scale(1.05);
  color: white;
}

nav a.contact-btn::after {
  background: linear-gradient(135deg, #280137, #280137);
  text-decoration: none;
  transform: scale(1.05);
  color: white;
}

nav a.contact-btn:active {
  background: linear-gradient(135deg, #280137, #280137);
  text-decoration: none;
  transform: scale(1.05);
  color: white;
}

/* Hamburger Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: white;
  border-radius: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  header {
    /* Add padding here to prevent content from touching the edges */
    padding: 9px 20px;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  nav {
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 250px;
    background-color: #280137;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px;
    transition: right 0.4s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
  }

  nav.active {
    right: 0;
  }

  nav a {
    width: 100%;
    padding: 15px 10px;
    opacity: 0;
    transform: translateX(30px);
    animation: slideIn 0.4s forwards;
    animation-delay: calc(var(--i) * 0.1s);
  }

  nav a.contact-btn {
    width: 100%;
    padding: 15px 10px;
    opacity: 0;
    text-decoration: none;
    transform: translateX(30px);
    animation: slideIn 0.4s forwards;
    animation-delay: calc(var(--i) * 0.1s);
  }

  .contact-btn {
    text-align: left;
    margin-top: 10px;
  }

  nav a.contact-btn:hover {
    text-decoration: none;
  }

  nav a.contact-btn:active {
    text-decoration: none;
  }

  @keyframes slideIn {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}

/*
 * Hero Section Style
 */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  text-align: left;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6);
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(48, 37, 54, 0.496);
  pointer-events: none;
  z-index: -1;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  z-index: 1;
  animation: fadeIn 1s ease-out forwards;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content h1 {
  width: 50%;
  font-size: 4.3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #ffffff;
}

.highlight {
  color: #ffffff;
}

.hero-content p {
  width: 42%;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #FAF9FA;
}

.hero-content strong {
  color: #ffffff;
  font-weight: 600;
}

.cta-button {
  display: inline-block;
  max-width: 250px;
  width: 100%;
  padding: 12px 24px;
  font-size: 1rem;
  background-color: #ffffff;
  color: #000;
  text-align: center;
  border-radius: 12px;
  border: 2px solid #280137;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  background-color: #f0f0f0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*  mobile hero section  */
@media (max-width: 768px) {
  .hero {
    justify-content: center;
    height: 60vh;
    padding: 0 20px;
    text-align: center;
  }

  .testimonial-media::after {
    width: 100%;
    height: 50%;
  }

  .hero-content h1 {
    width: 100%;
    font-size: 2.5rem;
  }

  .hero-content p {
    width: 100%;
    font-size: 1rem;
  }

  .cta-button {
    font-size: 0.95rem;
    padding: 14px;
    margin: 0 auto;
  }
}

/*
 * Section Heading
 */

.sticky-slider-intro h1 {
  font-family: monospace;
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff;
  -webkit-text-stroke: 0.6px #8b09be;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  padding: 0 15px;
}

/* Tablet */
@media (max-width: 960px) {
  .sticky-slider-intro h1 {
    max-width: 90%;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .sticky-slider-intro h1 {
    max-width: 100%;
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
}

/*
 * Sticky Complete Slider Stylesheet
 */
.slides-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4em 1em;
  display: flex;
  flex-direction: column;
  gap: 4vh;
}

.slide-card {
  position: sticky;
  top: max(14vh, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
  padding: 2em;
  background: linear-gradient(to bottom right, rgba(29, 28, 28, 0.429), rgba(29, 28, 28, 0.429));
  backdrop-filter: blur(30px) saturate(200%);
  border-top: 1px solid rgba(149, 16, 215, 0.14);
  border-left: 3px solid rgba(149, 16, 215, 0.2);
  border-bottom: 1px solid rgba(149, 16, 215, 0.116);
  border-right: 3px solid rgba(149, 16, 215, 0.2);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(40, 1, 55, 0.256);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
  z-index: 1;
}

.slide-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.left,
.right {
  flex: 1;
  min-width: 0;
}

/* Landscape video styling (Slides 1 & 2) */
.left video {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  display: block;
}

/* Portrait video container (Slides 3 & 4) */
.left.portrait-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* Portrait video itself */
.left video.portrait-video {
  width: 40%;
  height: 400px;
  max-height: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  display: block;
  margin: auto;
}

.slide-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.slide-desc {
  font-size: 1rem;
  font-weight: 300;
  color: #d6dce1;
  line-height: 1.6;
}

/* Mobile Styles */
@media (max-width: 900px) {
  .slide-card {
    flex-direction: column;
    padding: 2em 1.5em;
    text-align: left;
  }

  .left {
    order: 1;
  }

  .right {
    order: 2;
    text-align: left;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
  }

  .slide-title {
    font-size: 1.6rem;
  }

  .slide-desc {
    font-size: 1rem;
  }

  /* Landscape videos on mobile */
  .left video {
    max-height: 300px;
  }

  /* Portrait videos on mobile */
  .left video.portrait-video {
    height: 300px;
    width: 60%;
  }
}

@media (max-width: 480px) {
  .slide-title {
    font-size: 1.4rem;
  }

  .slide-desc {
    font-size: 0.95rem;
  }
}

/*
 * Infinite Brands Logo Styles
 */
.logo-heading {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  -webkit-text-stroke: 0.3px #8b09be;
  margin: 2em 0 1em;
  font-size: 20px;
  font-weight: 400;
}

.display-logocenter {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-container {
  position: relative;
  /* Use a max-width to prevent overflow */
  max-width: 100%;
  overflow: hidden;
  padding: 40px 0;
}

.shadow-left,
.shadow-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 5;
  pointer-events: none;
}

.shadow-left {
  left: 0;
  background: linear-gradient(to right, #121212, transparent);
}

.shadow-right {
  right: 0;
  background: linear-gradient(to left, #121212, transparent);
}

.logo-slider {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.logo-slider img {
  height: 60px;
  margin: 0 30px;
  filter: grayscale(1%) brightness(1.2);
  opacity: 0.85;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.logo-slider img:hover {
  transform: scale(1.05);
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Tweaks */
@media (max-width: 1024px) {
  .logo-slider img {
    height: 50px;
    margin: 0 20px;
  }
}

@media (max-width: 768px) {
  .logo-slider img {
    height: 40px;
    margin: 0 16px;
  }
}

@media (max-width: 480px) {
  .logo-slider img {
    height: 30px;
    margin: 0 12px;
  }
}

/*
 * Motivation Craft Section Styles
 */
.separator {
  width: 90%;
  max-width: 800px;
  height: 2px;
  margin: 40px auto;
  background: radial-gradient(
    ellipse at center,
    rgba(147, 11, 200, 0.993) 0%,
    rgba(142, 10, 194, 0.8) 50%,
    rgba(40, 1, 55, 0) 100%
  );
  filter: blur(1px);
  border: none;
  display: block;
}

/* tweak margin for smaller screens */
@media (max-width: 480px) {
  .separator {
    margin: 20px auto;
  }
}

.motivation-head {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 2.2em;
  max-width: 900px;
  margin-bottom: 1em;
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.1;
  padding-bottom: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.motivation-desc {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.1em;
  color: #ccc;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
  font-weight: 400;
  margin-bottom: 30px;
}

/*
 * Motivation Craft Slide Section Styles
 */

.work-container {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 40px;
  box-sizing: border-box;
}

.video-section {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.video-frame {
  position: sticky;
  top: 40px;
  width: 100%;
  height: 590px;
  object-fit: fill;
  border-radius: 20px;
  border: 4px solid #280137;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  box-sizing: border-box;
}

.content-section {
  flex: 0 0 60%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 50px;
  max-width: 100%;
  word-wrap: break-word;
  box-sizing: border-box;
}

.vision-text {
  font-size: 1.7rem;
  color: #d6dce1;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 10px;
}

/* ===== WORK SLIDE ===== */
.work-slide {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(40, 1, 55, 0.236) 0%, rgba(60, 12, 80, 0.088) 100%);
  border-radius: 20px;
  border-left: 3px solid #280137;
  border-right: 3px solid #280137;
  box-shadow: 0 4px 30px rgba(55, 26, 71, 0.7), ;
  padding: 32px 40px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
  /* allow wrapping for content below */
}

.work-slide.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-icon {
  background: #280137;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ab52ef;
  font-size: 28px;
  border: 1px solid rgba(187, 110, 246, 0.6);
  flex-shrink: 0;
  margin-bottom: 0;
}

.slide-heading {
  flex: 1 1 auto;
  font-size: 1.5rem;
  font-weight: 700;
  color: #e8e9fb;
  margin: 0;
  line-height: 1.2;
}

/* Container for paragraph / extra content below icon + heading */
.slide-content {
  width: 100%;
  margin-top: 16px;
  color: #bab9b9;
  font-size: 1.1rem;
  line-height: 1.5;
}

.slide-content p {
  margin: 0;
}

.slide-content ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
  color: #bab9b9;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.slide-content ul li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-icon {
  background: #280137;
  padding: 4px;
  border-radius: 50%;
  color: white;
  font-size: 0.9rem;
  box-shadow: 0 0 8px #280137;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ====== TABLET ====== */
@media (max-width: 1024px) {
  .work-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    /* Add padding to prevent overflow from the horizontal scrollbar */
    padding: 0 20px;
  }

  .video-section {
    flex: 0 0 auto;
    width: 90%;
  }

  .video-frame {
    position: relative;
    height: auto;
  }

  .content-section {
    width: 90%;
    padding-top: 20px;
    align-items: center;
  }
}

/* ====== MOBILE ====== */
@media (max-width: 600px) {
  .work-slide {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .slide-icon {
    margin-bottom: 12px;
  }

  .slide-heading {
    margin-bottom: 12px;
    text-align: left;
  }

  .slide-content {
    text-align: left;
    margin-top: 0;
  }
}


/*
 * Video Section of projects and Creativity Style Sheet
 */
.vbox-heading {
  text-align: center;
  padding: 0;
  margin: 0 auto;
}

.vbox-heading h3 {
  font-family: sans-serif;
  font-size: 45px;
  font-weight: 400;
  padding-top: 40px;
  margin: auto;
}

.vbox-heading h2 {
  font-family: sans-serif;
  font-size: 60px;
  margin: 5px auto;
}

.vbox-heading p {
  font-size: 1.1rem;
  color: #bbb;
  max-width: 600px;
  margin: 6px auto;
  padding-bottom: 20px;
}

/* FIX: Refactored video section for better mobile responsiveness and consistency */
/*
 * Video Section of projects and Creativity Style Sheet
 */
.vbox-heading {
  text-align: center;
  max-width: 800px;
  margin: 80px auto 40px;
  padding: 0 10px;
  color: #fff;
}

.vbox-heading h3 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #aaa;
  margin: 0;
}

.vbox-heading h2 {
  font-size: 3rem;
  font-weight: bold;
  margin: 10px 0 20px;
}

.vbox-heading p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

.vbox-container {
  display: flex;
  max-width: 1152px;
  margin: 20px auto 4px;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 10px;
}

.center-column {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-grow: 1;
  flex-basis: 370px;
}

.vbox-container-2 {
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  gap: 4px;
  padding: 0 10px;
  flex-wrap: wrap;
}

/* ====== Boxes initial style (hidden until in view) ====== */
.vbox-container > *,
.vbox-container-2 > * {
  flex-grow: 1;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.8) translateY(30px);
  box-sizing: border-box;
}

/* Sizes */
.box1,
.box4 {
  flex-basis: 370px;
  height: 600px;
}

.box2 {
  flex-basis: 300px;
  height: 298px;
}

.box3 {
  flex-basis: 300px;
  background: linear-gradient(145deg, #1b1b1b, #2a2a2a);
  color: #fff;
  padding: 24px;
  border: 1px solid #444;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 298px;
}

.box3 .icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #888;
}

.box3 h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
}

.box3 p {
  margin-top: 10px;
  font-size: 1rem;
  color: #aaa;
  line-height: 1.4;
}

.box5,
.box6 {
  flex-basis: 278.16px;
  height: 278.16px;
}

video.video-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* ====== When visible in viewport ====== */
.vbox-container > *.visible,
.vbox-container-2 > *.visible {
  animation: popUp 0.6s ease forwards;
}

/* ====== Pop-up animation ====== */
@keyframes popUp {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ====== Responsive adjustments ====== */
@media (max-width: 768px) {
  .vbox-heading h2 {
    font-size: 2.5rem;
  }

  .box1,
  .box4,
  .box5,
  .box6 {
    flex-basis: 100%;
    height: 400px;
  }

  .box2,
  .box3 {
    flex-basis: 100%;
    height: 250px;
  }

  .center-column {
    flex-basis: 100%;
  }

  .vbox-container,
  .vbox-container-2 {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .vbox-heading h3 {
    font-size: 35px;
  }

  .vbox-heading h2 {
    font-size: 45px;
  }

  .vbox-container {
    flex-direction: column;
    gap: 20px;
  }

  .vbox-container-2 {
    flex-direction: column;
    gap: 20px;
  }

  .box1,
  .box4 {
    width: 100% !important;
    height: 500px !important;
    flex-basis: auto;
  }

  .box2,
  .box3,
  .box5,
  .box6 {
    width: 100% !important;
    height: 300px !important;
    flex-basis: auto;
  }

  .center-column {
    gap: 20px;
  }

  .box2,
  .box3 {
    height: 300px !important;
  }

  .box3 {
    padding: 16px;
  }
}

/*
 * 3d carousel full responsive styles
 */
.heading-3d {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 20px;
  margin: 20px 0;
}

.heading-3d h1 {
  font-size: 3.3rem;
  font-weight: bold;
  color: #fff;
  max-width: 80%;
}

.heading-3d p {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 80%;
}

/* Responsive styles */
@media (max-width: 768px) {
  .heading-3d h1 {
    font-size: 2.5rem;
    max-width: 90%;
  }

  .heading-3d p {
    font-size: 1rem;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .heading-3d h1 {
    font-size: 2rem;
    max-width: 95%;
  }

  .heading-3d p {
    font-size: 0.9rem;
    max-width: 95%;
  }
}

/* Global box-sizing fix */

.carousel-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px 140px;
  max-width: 100vw;
  /* Use overflow: hidden; to hide the horizontal overflow */
  overflow: hidden;
}

.carousel {
  position: relative;
  width: 320px;
  aspect-ratio: 4 / 3;
  perspective: 1400px;
  z-index: 10;
  transition: width 0.3s ease;
}

.carousel__container {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  animation: rotate 25s infinite linear;
}

.carousel__slide {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  background: #111;
  border: 1px solid #ffffff22;
  transition: box-shadow 0.3s ease;
}

.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
}

.carousel__slide:nth-child(1) {
  transform: rotateY(0deg) translateZ(380px);
}
.carousel__slide:nth-child(2) {
  transform: rotateY(60deg) translateZ(380px);
}
.carousel__slide:nth-child(3) {
  transform: rotateY(120deg) translateZ(380px);
}
.carousel__slide:nth-child(4) {
  transform: rotateY(180deg) translateZ(380px);
}
.carousel__slide:nth-child(5) {
  transform: rotateY(240deg) translateZ(380px);
}
.carousel__slide:nth-child(6) {
  transform: rotateY(300deg) translateZ(380px);
}

@keyframes rotate {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

/* Tablet */
@media (max-width: 768px) {
  .carousel {
    width: 240px;
  }

  .carousel__slide:nth-child(1) {
    transform: rotateY(0deg) translateZ(280px);
  }
  .carousel__slide:nth-child(2) {
    transform: rotateY(60deg) translateZ(280px);
  }
  .carousel__slide:nth-child(3) {
    transform: rotateY(120deg) translateZ(280px);
  }
  .carousel__slide:nth-child(4) {
    transform: rotateY(180deg) translateZ(280px);
  }
  .carousel__slide:nth-child(5) {
    transform: rotateY(240deg) translateZ(280px);
  }
  .carousel__slide:nth-child(6) {
    transform: rotateY(300deg) translateZ(280px);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .carousel {
    width: 200px;
  }

  .carousel__slide:nth-child(1) {
    transform: rotateY(0deg) translateZ(230px);
  }
  .carousel__slide:nth-child(2) {
    transform: rotateY(60deg) translateZ(230px);
  }
  .carousel__slide:nth-child(3) {
    transform: rotateY(120deg) translateZ(230px);
  }
  .carousel__slide:nth-child(4) {
    transform: rotateY(180deg) translateZ(230px);
  }
  .carousel__slide:nth-child(5) {
    transform: rotateY(240deg) translateZ(230px);
  }
  .carousel__slide:nth-child(6) {
    transform: rotateY(300deg) translateZ(230px);
  }
}

/*
 * About us responsive Styles
 */
.section-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 40px 16px;
}

.heading {
  text-align: center;
  margin-bottom: 40px;
}

.heading h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.heading p {
  font-size: 1.1rem;
  color: var(--subtext-color);
  max-width: 700px;
  margin: 0 auto;
}

.team-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 60px 0;
}

.member {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  border: 1.3px solid #280137;
  border-left: 3px solid #2d013e;
  border-right: 3px solid #2d013e;
  padding: 16px;
  width: 260px;
  box-shadow: 0 8px 20px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  filter: drop-shadow(0 14px 18px rgba(164, 94, 234, 0.284));
}

.member.center {
  transform: scale(1.15);
  z-index: 1;
}

.member:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 25px rgba(165, 94, 234, 0.4);
}

.member img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.member h3 {
  margin: 8px 0 4px;
  font-size: 1.15rem;
  text-align: center;
}

.member span {
  font-size: 0.9rem;
  color: var(--subtext-color);
  text-align: center;
  display: block;
}

/* Redesigned "What Makes Us Special" Section */
.about-text {
  background: #1a1a1a;
  border-left: 2px solid rgba(75, 2, 97, 0.776);
  border-right: 2px solid rgba(75, 2, 97, 0.776);
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  margin: 80px auto;
  max-width: 900px;
  box-shadow: 0.1px 0.1px 0.1px rgba(165, 94, 234, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.4s ease-in-out;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, #ffffff, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--subtext-color);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.stats-section {
  margin-top: 50px;
}

.stats-title {
  text-align: center;
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 24px;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stat {
  background: rgba(42, 11, 62, 0.3);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  width: 180px;
  box-shadow: 0 6px 18px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #280137;
}

.stat:hover {
  transform: translateY(-5px) scale(1.05);
  background: rgba(42, 11, 62, 0.3);
  box-shadow: 0 10px 30px rgba(165, 94, 234, 0.45);
}

.stat h3 {
  font-size: 1.6rem;
  margin: 0;
  color: #ffffff;
}

.stat span {
  display: block;
  margin-top: 8px;
  font-size: 0.95rem;
  color: var(--subtext-color);
}

@media (max-width: 900px) {
  .member.center {
    transform: scale(1.1);
  }
}

@media (max-width: 600px) {
  .member,
  .member.center {
    width: 90%;
    transform: scale(1);
  }

  .stat {
    width: 100%;
  }

  .heading h1 {
    font-size: 2rem;
  }

  .about-text {
    padding: 32px 20px;
    margin: 60px 16px;
  }

  .about-text h2 {
    font-size: 1.6rem;
  }

  .about-text p {
    font-size: 1rem;
  }
}


/*
 * what you will get "style Section
 */
:root {
  --bg: #000;
  --accent: #a020f09d;
  --box-bg: rgba(255, 255, 255, 0.06);
  --box-border: rgba(255, 255, 255, 0.12);
  --shadow: 0 2px 10px rgba(40, 1, 55, 0.45);
  --anim-duration: 700ms;
  --anim-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* basic section */
.what-you-get-section {
  padding: 60px 20px;
  text-align: center;
  backdrop-filter: blur(12px);
  width: 100%;
  overflow-x: hidden;
  color: #fff;
}

.what-you-get-section h2 {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 10px;
}

.what-you-get-section p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #ddd;
  line-height: 1.6;
  padding: 0 10px;
}

/* grid */
.get-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  width: 100%;
}

/* box base */
.get-box {
  background: var(--box-bg);
  border: 1px solid var(--box-border);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 25px;
  text-align: left;
  box-shadow: var(--shadow);
  transition: transform 260ms var(--anim-ease), box-shadow 260ms var(--anim-ease);
  overflow-wrap: break-word;
  word-break: break-word;
  will-change: transform, opacity;
  opacity: 1;
  transform: translateY(0);
}

html.js .get-box {
  opacity: 0;
  transform: translateY(26px);
}

/* reveal animation (slightly bouncy) */
.get-box.animate {
  animation: revealUp var(--anim-duration) var(--anim-ease) both;
  animation-delay: var(--delay, 0ms);
}

@keyframes revealUp {
  0% {
    opacity: 0;
    transform: translateY(26px);
  }
  60% {
    opacity: 1;
    transform: translateY(-6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.get-box i {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--accent);
  display: inline-block;
}

.get-box h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}

.get-box p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.get-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 20px rgba(160, 32, 240, 0.28);
}

/* accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .get-box,
  .get-box.animate {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* responsive tweaks */
@media (max-width: 992px) {
  .what-you-get-section h2 {
    font-size: 2.4rem;
  }

  .what-you-get-section p {
    font-size: 1rem;
  }

  .get-box {
    padding: 20px;
  }

  .get-box h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .what-you-get-section {
    padding: 40px 15px;
  }

  .what-you-get-section h2 {
    font-size: 2rem;
  }

  .what-you-get-section p {
    font-size: 0.95rem;
  }

  .get-boxes {
    grid-template-columns: 1fr;
  }

  .get-box {
    padding: 18px;
  }

  .get-box i {
    font-size: 1.6rem;
  }

  .get-box h3 {
    font-size: 1rem;
  }

  .get-box p {
    font-size: 0.9rem;
  }
}

/* Contact us STyle full responsive */

.form-wrapper {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  /* Prevent overflow from box-shadow */
  overflow: hidden;
}

.form-box {
  background: linear-gradient(135deg, #280137, #15001f);
  border-radius: 24px;
  border: 2px solid #3f0157;
  padding: 60px 50px;
  width: 100%;
  max-width: 900px;
  box-shadow: 0 0 20px rgba(160, 32, 240, 0.4);
  text-align: center;
  box-sizing: border-box;
}

.form-box h2 {
  font-size: 2.6rem;
  margin-bottom: 14px;
  font-weight: 700;
  color: #fff;
}

.form-box p {
  font-size: 1rem;
  margin-bottom: 40px;
  color: #e3d6f1;
}

.form-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.form-inner input,
.form-inner textarea {
  padding: 14px 16px;
  border: none;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 1rem;
  outline: none;
  resize: vertical;
}

.form-inner button {
  padding: 14px;
  border: none;
  border-radius: 6px;
  background-color: #a020f0c4;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

.form-message {
  margin-top: 15px;
  font-size: 1rem;
  color: #00ffae;
  display: none;
}

.form-send-again {
  display: none;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid #a020f0;
  border-radius: 6px;
  color: #a020f0;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-send-again:hover {
  background-color: rgba(160, 32, 240, 0.2);
}

@media (max-width: 768px) {
  .form-box {
    padding: 50px 30px;
  }
  .form-box h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .form-box {
    padding: 40px 20px;
  }
  .form-box h2 {
    font-size: 2rem;
  }
  .form-box p {
    font-size: 0.9rem;
  }
}
/* Testimonial of our clients responsive style*/
        .testimonial-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.testimonial-wrapper h2 {
  font-size: 2.8rem;
  background: linear-gradient(90deg, #e2e2e3, #e2e2e3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
  text-align: center;
}

.testimonial-wrapper p {
  font-size: 1rem;
  color: #c2c1c4;
  margin-bottom: 50px;
  text-align: center;
}

/* Grid layout */
.testimonial-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 30px;
  justify-content: center;
  align-items: start; /* align tops together */
}

/* Left portrait */
.testimonial-box.portrait {
  width: 360px;
  height: 640px;
  max-width: 100%;
}

/* Right side container */
.testimonial-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 510px; /* match portrait width */
  max-width: 100%;
}

/* Right landscape videos */
.testimonial-box.landscape {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 100%;
  height: 50%;
}

.testimonial-box {
  background: linear-gradient(145deg, #1a082b, #0e0018);
  border: 1px solid rgba(160, 32, 240, 0.2);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 0 20px rgba(160, 32, 240, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 35px rgba(160, 32, 240, 0.3);
}

.testimonial-media {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.testimonial-media video,
.testimonial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}


/* Responsive */
@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-box.portrait,
  .testimonial-right {
    width: 100%;
    height: auto;
  }
}
        /* What our clients say about us full responsive */
        .what-client-says {
            padding: 60px 20px;
            text-align: center;
        }

        .what-client-says h2 {
            font-size: clamp(2rem, 5vw, 2.5rem); /* Use clamp for fluid typography */
            margin-bottom: 40px;
            font-weight: bold;
            color: white;
        }

        .what-client-says-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: auto;
        }

        .what-client-says-box {
            background: #1e122777;
            border-radius: 15px;
            border-left: 1px solid #4f0786ac;
            border-right: 1px solid #4f0786ac;
            padding: 25px;
            color: #ccc;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
            box-shadow: 0 0 10px rgba(128, 0, 255, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .what-client-says-box:hover {
            transform: translateY(-5px);
        }

        .client-header {
            display: flex;
            align-items: center;
            width: 100%;
            justify-content: flex-start;
            gap: 12px;
            position: relative;
            margin-bottom: 15px;
        }

        .client-img {
            border-radius: 50%;
            width: 50px;
            height: 50px;
            object-fit: cover;
        }

        .client-header div {
            flex-grow: 1;
        }

        .client-name {
            font-weight: bold;
            font-size: 1.1rem;
            color: white;
        }

        .stars {
            color: gold;
            font-size: 1.2rem;
            margin-top: 3px;
        }

        .quote {
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* What makes us special full responsive */
        .features-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 70px 20px;
            text-align: center;
        }

        .features-section h2 {
            font-size: clamp(2rem, 5vw, 2.8rem); /* Use clamp for fluid typography */
            background: linear-gradient(90deg, #e7e7e7, #e7e7e7);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 16px;
        }

        .features-section p {
            font-size: 1.05rem;
            color: #bcbcbc;
            margin-bottom: 60px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .feature-card {
            background: linear-gradient(to bottom right, rgba(255,255,255,0.06), rgba(255,255,255,0.06));
            border-left: 1px solid rgba(160, 32, 240, 0.2);
            border-right: 1px solid rgba(160, 32, 240, 0.2);
            border-radius: 16px;
            padding: 30px 24px;
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 0 5px rgba(160, 32, 240, 0.084);
        }

        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 0 10px rgba(160, 32, 240, 0.3);
        }

        .feature-icon {
            font-size: 2rem;
            color: #a020f0;
            margin-bottom: 18px;
        }

        .feature-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .feature-desc {
            font-size: 0.95rem;
            color: #d6dce1;
            line-height: 1.6;
        }

        @media (max-width: 992px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .features-grid {
                grid-template-columns: 1fr;
            }

            .features-section h2 {
                font-size: 2.2rem;
            }

            .features-section p {
                font-size: 0.95rem;
            }
        }

        /* cursor animation follow */
        #custom-cursor {
            position: fixed;
            top: 0;
            left: 0;
            width: 20px;
            height: 20px;
            background: rgba(40, 1, 55, 0.8);
            pointer-events: none;
            border-radius: 50%;
            border: 0.2px dotted #8a2be2;
            transform: translate(-50%, -50%);
            transition: background-color 0.2s ease, transform 0.1s ease;
            mix-blend-mode: screen;
            z-index: 9999;
            filter: drop-shadow(0 0 5px #8a2be2);
        }


    /* Floating Container */
.floating-icon-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 9999;
}

/* Main Floating Icon Style */
.floating-icon {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 30px;
  border-radius: 50%;
  background: rgba(20, 20, 40, 0.85);
  backdrop-filter: blur(12px) saturate(180%);
  border: 2px solid rgba(106, 13, 173, 0.4);
  box-shadow:
    0 0 12px rgba(106, 13, 173, 0.4),
    inset 0 0 10px rgba(106, 13, 173, 0.3);
  color: #fff;
  position: relative;
  overflow: hidden;
  animation: breathe 4s ease-in-out infinite, float 3s ease-in-out infinite;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Light Sweep Animation */
.floating-icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    115deg,
    transparent 20%,
    rgba(255, 255, 255, 0.08) 40%,
    transparent 60%
  );
  transform: rotate(25deg);
  animation: sweep 4s infinite;
}

/* Outer Ring */
.floating-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, rgba(106, 13, 173, 0.7), rgba(106, 13, 173, 0.4));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: neonPulse 2s infinite alternate;
}

/* WhatsApp & Email Icons - now both purple theme */
.whatsapp {
  color: #09e134;
}

.email {
  color: #dd281b;
}
.whatsapp i, .email i {
  text-shadow: 0 0 8px rgba(106, 13, 173, 0.4);
}

/* Hover Effects */
.floating-icon:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow:
    0 0 18px rgba(106, 13, 173, 0.5),
    inset 0 0 14px rgba(106, 13, 173, 0.35);
}


/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes breathe {
  0%, 100% { box-shadow: 0 0 12px rgba(106, 13, 173, 0.4); }
  50% { box-shadow: 0 0 16px rgba(106, 13, 173, 0.5); }
}

@keyframes neonPulse {
  0% { opacity: 0.6; filter: blur(1px); }
  100% { opacity: 1; filter: blur(2px); }
}

@keyframes sweep {
  0% { transform: translate(-100%, -100%) rotate(25deg); }
  100% { transform: translate(100%, 100%) rotate(25deg); }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .floating-icon-container {
    flex-direction: column;
    right:9%;
    bottom: 16px;
    transform: translateX(50%);
    gap: 14px;
  }
  .floating-icon {
    width: 58px;
    height: 58px;
    font-size: 26px;
  }
}
 
        

        /* Website Footer fully responsive */
        .footer {
            font-family: monospace;
            background: linear-gradient(135deg, #21002e, #21002e);
            padding: 40px 20px 20px;
            border-top: 1px solid rgba(160, 32, 240, 0.2);
        }

        .footer-container {
            max-width: 1200px;
            margin: auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            gap: 30px;
        }

        /* Brand Section Fixed */
        .footer-brand {
            flex: 1 1 280px;
            min-width: 220px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .footer-brand img {
            width: 80px;
            filter: brightness(0) invert(1);
            transition: transform 0.3s ease, filter 0.3s ease;
        }

        .footer-brand img:hover {
            transform: scale(1.08) rotate(1deg);
            filter: brightness(0) invert(1) drop-shadow(0 0 8px #a020f0);
        }

        /* Text in three rows beside logo */
        .footer-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .footer-logo-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #fff;
            margin: 0;
        }

        .footer-slogan {
            font-size: 0.95rem;
            font-style: italic;
            color: #a020f0;
            -webkit-text-stroke: 0.2px #fcfcfc;
            margin: 3px 0;
        }

        .footer-text p:last-child {
            font-size: 0.95rem;
            color: #cccccc;
            margin-top: 3px;
            line-height: 1.4;
        }

        /* Links & Contact */
        .footer-links,
        .footer-contact {
            flex: 1 1 180px;
            min-width: 180px;
        }

        .footer-links h4,
        .footer-contact h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .footer-links a {
            display: block;
            color: #cccccc;
            text-decoration: none;
            margin-bottom: 8px;
            font-size: 0.92rem;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: #a020f0;
            transform: translateX(5px);
        }

        .footer-contact p {
            text-decoration: none;
            font-size: 0.92rem;
            color: #cccccc;
            margin-bottom: 8px;
        }
        .footer-contact p a{
            text-decoration: none;
            font-size: 0.92rem;
            color: #cccccc;
            margin-bottom: 8px;
        }


        .footer-contact i {
            color: #a020f0;
            margin-right: 6px;
        }

        /* Social Icons */
        .footer-social {
            margin-top: 10px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
        }

        .footer-social a {
            color: #a020f0;
            font-size: 1.3rem;
            margin-right: 12px;
            transition: transform 0.3s ease, color 0.3s ease;
            text-decoration: none;
        }


        .footer-social a:hover {
          text-decoration: none;
            color: #ffffff;
            transform: scale(1.4);
        }


        /* Bottom Bar */
        .footer-bottom {
            margin-top: 25px;
            text-align: center;
            font-size: 0.85rem;
            color: #bbbbbb;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 15px;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .footer-container {
                flex-direction: column;
                align-items: center;
                gap: 20px;
                text-align: center;
            }

            .footer-brand {
                flex-direction: column;
                align-items: center;
            }

            .footer-text {
                align-items: center;
            }
        }


        @media (max-width: 576px) {
            .footer {
                padding: 30px 15px 15px;
            }

            .footer-brand img {
                width: 70px;
            }

            .footer-links a,
            .footer-contact p {
                font-size: 0.9rem;
            }

        }