:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #ec4899;
  --accent: #8b5cf6;
  --background: #0f172a;
  --text: #f8fafc;
  --text-secondary: #94a3b8;
  --surface: #1e293b;
  --surface-light: #334155;
}

/* ✅ Prevent Overflow Issues */
html, body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
}

/* ✅ Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 1000;
  background: transparent;
  border: none;
  box-shadow: none;
}

.logo img {
  height: 40px;
  width: 100px; /* Adjust size as needed */
  height: auto;
}

.menu-icon {
  opacity: 0.7;
}

.menu-icon:hover,
.logo img:hover {
  opacity: 1;
}

/* ✅ Fix Mobile Layout Issues */
.background-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(3, 2, 7, 0.8), #936ADF);
  z-index: -1;
}

/* ✅ Navigation Menu */
.nav-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, var(--surface), var(--surface-light));
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  z-index: 1000;
}

.menu {
  list-style-type: none;
  text-align: center;
}

.menu__item {
  margin: 2rem 0;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu__link {
  color: var(--text);
  font-size: 3rem;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  padding: 0.5rem 1rem;
}

.menu__link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

.menu__link:hover::after {
  width: 100%;
}

/* ✅ Hamburger Menu */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 2rem;
  height: 0.25rem;
  background: var(--text);
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

/* ✅ Open Menu Animation */
.nav-main.open {
  transform: translateX(0);
}

.nav-main.open .menu__item {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

/* ✅ Hamburger Animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
}

/* ✅ Footer inside Menu */
.menu-footer {
  margin-top: 1rem;
  text-align: center;
}

.menu-tagline {
  font-size: 1rem;
  font-style: italic;
  color: #facc15;
  margin-bottom: 1rem;
  opacity: 1;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}

.menu-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.menu-social a {
  color: var(--text);
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu-social a:hover {
  color: var(--primary);
}

/* ✅ Responsive Fixes */
@media (max-width: 768px) {
  /* ✅ Ensure Content Stacks Properly */
  .nav-main {
      width: 100%;
      height: 100vh;
      transform: translateX(100%);
      position: fixed;
      top: 0;
      left: 0;
  }

  .nav-main.open {
      transform: translateX(0);
  }

  .menu {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .menu__item {
      margin: 1rem 0;
      text-align: center;
  }

  .hamburger {
      position: absolute;
      top: 20px;
      right: 20px;
  }
}
 


/*Hero Section*/

body {
  font-family: "Inter", sans-serif;
  background-color: var(--background);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  /* Removed flex properties */
}


.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Change from min-height to height if you want it fixed */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.shapes-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 9999px;
  opacity: 0.2;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.2), transparent);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.2);
}

.shape::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.4), transparent 70%);
}

.shape1 {
  width: 800px;
  height: 200px;
  left: -15%;
  top: 10%;
  transform: rotate(12deg);
  background-image: linear-gradient(to right, var(--primary), transparent);
}

.shape2 {
  width: 700px;
  height: 180px;
  right: -10%;
  top: 65%;
  transform: rotate(-15deg);
  background-image: linear-gradient(to right, var(--secondary), transparent);
}

.shape3 {
  width: 500px;
  height: 120px;
  left: 0%;
  bottom: 5%;
  transform: rotate(-8deg);
  background-image: linear-gradient(to right, var(--accent), transparent);
}

.shape4 {
  width: 300px;
  height: 80px;
  right: 10%;
  top: 5%;
  transform: rotate(20deg);
  background-image: linear-gradient(to right, var(--primary-dark), transparent);
}

.shape5 {
  width: 250px;
  height: 60px;
  left: 15%;
  top: 0%;
  transform: rotate(-25deg);
  background-image: linear-gradient(to right, var(--surface-light), transparent);
}

.shape6 {
  width: 1000px;
  height: 300px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-5deg);
  background-image: linear-gradient(to right, var(--primary), var(--secondary));
  opacity: 0.1;
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1000px;
  padding: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  margin-bottom: 2rem;
}

.badge span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

h1 {
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
  font-size: 4rem;
}

.accent {
  font-size: 6rem;
  font-family: "Pacifico", cursive;
  background-clip: text;
  color: transparent;
  line-height: 2;  
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

@media (max-width: 768px) {
  h1 {
    font-size: 4rem;
  }

  p {
    font-size: 1.125rem;
  }

  .shape1,
  .shape2 {
    width: 500px;
    height: 120px;
  }

  .shape3,
  .shape4 {
    width: 300px;
    height: 80px;
  }

  .shape5 {
    display: none;
  }

  .shape6 {
    width: 800px;
    height: 240px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 3rem;
  }

  .badge {
    padding: 0.25rem 0.75rem;
  }

  p {
    font-size: 1rem;
  }

  .shape1,
  .shape2,
  .shape3 {
    width: 300px;
    height: 80px;
  }

  .shape4 {
    display: none;
  }

  .shape6 {
    width: 600px;
    height: 180px;
  }
}




/*about us*/
.about-us {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

h1 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.text-content {
    font-size: 1.125rem;
    color: var(--text);
    max-width: 600px;
}

.text-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.values-grid .value-wide {
    grid-column: span 2;
}

.value-card {
    background-color: rgba(30, 41, 59, 0.5);
    border-radius: 0.75rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.value-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

.image-section {
    position: relative;
}

.team-image-container {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    position: relative;
    
    padding: 3px;
    margin-bottom: 2rem;
}

.team-image-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.innovation-box {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--surface-light);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.innovation-box p {
    margin: 0;
}

.innovation-box .highlight {
    color: #8b5cf6;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.innovation-box .subtext {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .image-section {
        order: -1;
    }

    .team-image-container {
        max-width: 300px;
        margin: 0 auto 2rem;
    }

    .innovation-box {
        position: relative;
        max-width: 300px;
        margin: 0 auto;
    }
}

/*service section*/


:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #ec4899;
  --accent: #8b5cf6;
  --background: #0f172a;
  --text: #f8fafc;
  --text-secondary: #94a3b8;
  --surface: #1e293b;
  --surface-light: #334155;
}

body {
  font-family: Arial, sans-serif;
  background-color: var(--background);
  color: var(--text);
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

h1 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 2rem;
}

.services-container {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.services-list {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.service-card {
  background-color: var(--surface);
  border-radius: 8px;
  padding: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.service-card:hover, .service-card.active {
  background-color: var(--surface-light);
}

.service-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  text-align: center;
}

.service-title {
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  text-align: center;
}

.service-content {
  flex: 1;
  background-color: var(--surface);
  border-radius: 8px;
  padding: 2rem;
}

.service-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.view-all-btn {
  display: block;
  width: 200px;
  margin: 0 auto;
  padding: 1rem;
  background-color: var(--primary);
  color: var(--text);
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  margin-bottom: 2%;
}

.view-all-btn:hover {
  background-color: var(--primary-dark);
}

.all-services {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

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

  .services-list {
      grid-template-columns: 1fr;
  }
}

/*team*/

.container-team {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    order: -1; 
}

/* Carousel styles */
.carousel-container {
    position: relative;
    width: 300px;
    height: 400px;
    margin: 0 auto;
    perspective: 2000px;
    margin-bottom: 10rem;
    margin-top: 10rem;
}

.carousel {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s ease-out;
}
.carousel-section {
    margin-bottom: 5rem; /* Adjust this value to create space below the carousel */
}
.team-section {
    margin-top: 5rem; /* Adjust this value to create space above the 'Meet Our Team' section */
    justify-content: space-evenly;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly; /* Ensures even spacing */
    gap: 20px;
}
.team-member {
  width: 100%;
  max-width: 300px; /* Adjust card width */
  text-align: center;
}
/* For spacing between the carousel and other sections */
.other-section {
    margin-top: 5rem; /* Adjust this value for space above this section */
}

/* Cards */
.card {
    position: absolute;
    width: 280px;
    height: 360px;
    background:var(--surface-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotateY(calc(var(--card-index) * 90deg)) translateZ(500px);
    backface-visibility: hidden;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}


.card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    background: radial-gradient(circle, #6366f1 0%, #ec4899 70%, #0f172a 100%);
    clip-path: circle(50%);
}

.card h2 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--text);
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Navigation buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
    transition: color 0.3s;
    padding: 0;
}


#prevBtn {
    left: -500px;
}

#nextBtn {
    right: -500px;
}

@media (max-width: 768px) {
  .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 90%;
    height: 300px;
    margin: 5rem auto;
}

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


  .card {
      width: 220px;                 /* Reduce card width for mobile */
      height: 280px;                /* Reduce card height for mobile */
      padding: 20px;                /* Adjust padding to fit smaller size */
        transform: rotateY(calc(var(--i) * 90deg)) translateZ(200px); /* Reduced depth for mobile */
        margin: 0 auto; /* Center the cards */
    
  }

  .card img {
      width: 80px;                  /* Resize profile images */
      height: 80px;
      margin-bottom: 15px;
  }

  .card h2 {
      font-size: 1.4rem;            /* Adjust heading sizes */
  }

  .card h3 {
      font-size: 1rem;
  }

  .card p {
      font-size: 0.9rem;            /* Adjust paragraph font size */
  }

  /* Adjust navigation buttons for mobile */
  .nav-btn {
      width: 30px;
      height: 30px;
      font-size: 1.2rem;
  }

  #prevBtn {
      left: -100px;                 /* Bring buttons closer for mobile */
  }

  #nextBtn {
      right: -100px;
  }
}

/*contact*/

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.contact-info h1::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--accent), var(--secondary));
}

.contact-details {
  list-style: none;
  margin-top: 2rem;
}

.contact-details li {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.contact-details li i {
  width: 24px;
  height: 24px;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-radius: 50%;
  color: var(--accent);
}

.contact-form {
  background: var(--surface);
  padding: 2rem;
  border-radius: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--surface-light);
  border: none;
  border-radius: 0.5rem;
  color: var(--text);
  font-size: 1rem;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid var(--accent);
}

button {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 0.5rem;
  background: linear-gradient(to right, var(--accent), var(--secondary));
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

button:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .contact-section {
      grid-template-columns: 1fr;
      gap: 2rem;
  }

  .contact-info h1 {
      font-size: 2rem;
  }

  .container {
      padding: 2rem 1rem;
  }
}
/* Responsive Adjustments */
@media (max-width: 768px) 
{
/* 🟢 TEAM SECTION */
.team-section {
  order: 1; /* Moves Team Section to Top */
  position: relative;
  z-index: 1;
  padding: 50px 20px;
  background-color: #111; /* Dark Background */
  text-align: center;
}

/* Team Heading */
.team-section h2 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
}

/* Team Members Grid */
.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Individual Team Member */
.team-member {
  background: #222;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  width: 250px;
  transition: 0.3s;
}

.team-member:hover {
  transform: translateY(-5px);
}

/* Team Member Image */
.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

/* Team Member Name */
.team-member h3 {
  font-size: 18px;
  color: #ff007f;
  margin-bottom: 5px;
}

/* Team Member Role */
.team-member p {
  font-size: 14px;
  color: #ccc;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .team-section {
      padding: 40px 15px;
  }

  .team-container {
      flex-direction: column;
      align-items: center;
  }

  .team-member {
      width: 90%;
  }
}
}


/*footer*/



/* Footer Styles */
:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #936ADF;
  --accent: #8b5cf6;
  --background: #0f172a;
  --text: #f8fafc;
  --text-secondary: #94a3b8;
  --surface: #1e293b;
  --surface-light: #334155;
}

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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--background);
  color: var(--text);
}

.footer {
  background-color: var(--surface);
  padding: 2rem;
}

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

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  flex: 0 0 auto;
  margin-right: 2rem;
}

.footer-logo img {
  max-width: 150px;
  height: auto;
}

.footer-section h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.quick-links ul {
  list-style-type: none;
}

.quick-links ul li {
  margin-bottom: 0.5rem;
}

.quick-links ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.quick-links ul li a:hover {
  color: var(--accent);
}

.newsletter form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.newsletter input[type="email"] {
  width: 200px; /* Adjust the width as needed */
  padding: 0.4rem;
  border: none;
  border-radius: 4px;
  background-color: var(--surface-light);
  color: var(--text);
}

.newsletter button {
  width: 200px; /* Adjust the width as needed */
  padding: 0.4rem 0.8rem;
  border: none;
  border-radius: 4px;
  background-color: var(--primary);
  color: var(--text);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter button:hover {
  background-color: var(--primary-dark);
}

.social-links a {
  color: var(--text-secondary);
  font-size: 1.5rem;
  margin-right: 1rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--accent);
}

@media screen and (max-width: 768px) {
  .footer-content {
      flex-direction: column;
      gap: 2rem;
  }

  .footer-logo {
      margin-right: 0;
      margin-bottom: 1rem;
  }
}



/*background*/ 
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.gradient {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
}

.top-right {
  top: -200px;
  right: -200px;
  background: radial-gradient(circle at center,
      var(--accent) 0%,
      var(--primary) 30%,
      transparent 70%);
  animation: moveTopRight 8s ease-in-out infinite;
}

.bottom-left {
  bottom: -200px;
  left: -200px;
  background: radial-gradient(circle at center,
      var(--primary-dark) 0%,
      var(--secondary) 30%,
      transparent 70%);
  animation: moveBottomLeft 8s ease-in-out infinite;
}


.left {
  left: 0;
  background: linear-gradient(to bottom,
      transparent 0%,
      var(--primary-dark) 25%,
      var(--secondary) 50%,
      var(--primary-dark) 75%,
      transparent 100%);
  animation: moveVertical 12s ease-in-out infinite;
}

.right {
  right: 0;
  background: linear-gradient(to bottom,
      transparent 0%,
      var(--accent) 25%,
      var(--primary) 50%,
      var(--accent) 75%,
      transparent 100%);
  animation: moveVertical 12s ease-in-out infinite reverse;
}

/* About section styles */

/* Animations */
@keyframes moveTopRight {
  0%, 100% {
      transform: translate(0, 0) rotate(0deg);
  }
  50% {
      transform: translate(-50px, 50px) rotate(180deg);
  }
}

@keyframes moveBottomLeft {
  0%, 100% {
      transform: translate(0, 0) rotate(0deg);
  }
  50% {
      transform: translate(50px, -50px) rotate(-180deg);
  }
}

@keyframes moveVertical {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-30%);
  }
}

/* Responsive design */
@media (max-width: 1024px) {
  .about-content {
      gap: 2rem;
  }
}

@media (max-width: 768px) {
  .about-content {
      flex-direction: column;
  }

  .text-content h1 {
      font-size: 2.5rem;
  }

  .circle-video-container {
      max-width: 400px;
      margin: 0 auto;
  }

  .gradient {
      width: 400px;
      height: 400px;
  }

  .gradient-line {
      width: 100px;
  }
}

@media (max-width: 480px) {
  .section {
      padding: 2rem 0;
  }

  .text-content h1 {
      font-size: 2rem;
  }

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