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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #000;
  color: white;
  overflow-x: hidden;
  width: 100%;
}

.baground {
  background-image: url(3dimg.png);
  width: 100%;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}
.logotext1 {
  margin-right: 0;
}
.logotext2 {
  color: red;
}

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

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.btn {
  padding: 8px 20px;
  border: 2px solid white;
  background: red;
  color: white;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
}

.btnn {
  padding: 8px 20px;
  border: 2px solid white;
  background: transparent;
  color: white;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
}
.btn img {
  align-items: center;
  margin-right: 10px;
}

.main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 60px;
  min-height: 80vh;
}

.left {
  max-width: 50%;
}

.left h1 {
  font-size: 48px;
}

.left h3 {
  font-weight: 400;
  margin-top: 10px;
}

.left p {
  margin-top: 20px;
  line-height: 1.6;
  color: #ccc;
}

.buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}
@keyframes blink {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
}

.btn {
  background: linear-gradient(135deg, #ff3b3b 0%, #d32f2f 100%);
  border: none;
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 59, 59, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 59, 59, 0.4);
}
.btn:hover::before {
  left: 100%;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(255, 59, 59, 0.3);
}

.btnn {
  /* background: linear-gradient(135deg, #ff3b3b 0%, #d32f2f 100%); */
  border: 2px solid white;
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 59, 59, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.btnn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 59, 59, 0.4);
}
.btnn:hover::before {
  left: 100%;
}
.btnn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btnn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(255, 59, 59, 0.3);
}

.grid {
      padding-top: 100px;
      margin: 8%;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 5%;
    }

    .card {
      background: linear-gradient(
      90deg,
      transparent,
      rgb(100, 3, 3),
      transparent
      );
      transition: left 0.5s ease;
      border-radius: 16px;
      padding: 24px;
      border: 2px solid red;
      transition: transform 0.2s ease;
    }

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

    .icon {
      width: 48px;
      height: 48px;
      margin-bottom: 16px;
      background-color: red;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .icon img {
      width: 24px;
      height: 24px;
      filter: invert(1);
    }

    h3 {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    p {
      font-size: 15px;
      color: #c9d1d9;
      margin-bottom: 16px;
    }

    a {
      color: red;
      text-decoration: none;
      font-weight: 500;
    }

    a:hover {
      text-decoration: underline;
    }


.background {
  width: 100vw;
  overflow: hidden;
  position: relative;
}

.background > img {
  position: absolute;
  z-index: -10;
  height: 90%;
  width: 80%;
  right: 0;
  bottom: 0;
  /* object-fit: cover; */
}

.background > video {
  position: absolute;
  z-index: -20;
  height: 100%;
  width: 100%;
  object-fit: cover;
  right: 0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 60px;
  position: relative;
  z-index: 10;
}

#cursor {
  height: 500px;
  width: 500px;
  background-color: red;
  position: fixed;
  z-index: -15;
  border-radius: 50%;
  filter: blur(200px);
  pointer-events: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

.logo img {
  width: 50px;
  height: auto;
}

.logotext1 {
  margin-right: 0;
}

.logotext2 {
  color: red;
}

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

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ff3b3b;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
}

.btn {
  padding: 12px 24px;
  border: none;
  background: linear-gradient(135deg, #ff3b3b 0%, #d32f2f 100%);
  color: white;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 59, 59, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 59, 59, 0.4);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btnn {
  padding: 12px 24px;
  border: 2px solid white;
  background: transparent;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btnn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btnn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btnn:hover::before {
  left: 100%;
}

.main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 60px;
  min-height: 80vh;
  position: relative;
  z-index: 10;
}

.left {
  max-width: 50%;
}

.left h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.left h3 {
  font-weight: 400;
  margin-bottom: 20px;
  font-size: 20px;
}

.left p {
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 30px;
  font-size: 16px;
}

.buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Tablet Styles */
@media screen and (max-width: 1024px) {
  header {
    padding: 25px 40px;
  }

  .main {
    padding: 60px 40px;
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .left {
    max-width: 100%;
  }

  .left h1 {
    font-size: 40px;
  }

  .left h3 {
    font-size: 18px;
  }

  .background > img {
    width: 90%;
    opacity: 0.7;
  }

  #cursor {
    height: 400px;
    width: 400px;
  }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  header {
    padding: 20px 25px;
    position: relative;
  }

  .logo {
    font-size: 16px;
  }

  .logo img {
    width: 40px;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .main {
    padding: 40px 25px;
    min-height: 70vh;
  }

  .left h1 {
    font-size: 32px;
  }

  .left h3 {
    font-size: 16px;
  }

  .left p {
    font-size: 14px;
  }

  .buttons {
    justify-content: center;
    gap: 15px;
  }

  .btn,
  .btnn {
    padding: 10px 20px;
    font-size: 14px;
    min-width: 120px;
  }

  .background > img {
    width: 100%;
    opacity: 0.5;
  }

  .background > video {
    opacity: 0.7;
  }

  #cursor {
    height: 300px;
    width: 300px;
    filter: blur(150px);
  }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
  header {
    padding: 15px 20px;
  }

  .logo {
    font-size: 14px;
  }

  .logo img {
    width: 35px;
  }

  .main {
    padding: 30px 20px;
  }

  .left h1 {
    font-size: 28px;
  }

  .left h3 {
    font-size: 14px;
  }

  .left p {
    font-size: 13px;
    line-height: 1.5;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn,
  .btnn {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
    max-width: 200px;
  }

  #cursor {
    height: 200px;
    width: 200px;
    filter: blur(100px);
  }
}

/* Extra Small Screens */
@media screen and (max-width: 360px) {
  .left h1 {
    font-size: 24px;
  }

  .left h3 {
    font-size: 13px;
  }

  .left p {
    font-size: 12px;
  }

  .btn,
  .btnn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* Landscape Mobile */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .main {
    min-height: 60vh;
    padding: 20px 25px;
  }

  .left h1 {
    font-size: 28px;
  }

  .left h3 {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .left p {
    font-size: 13px;
    margin-bottom: 20px;
  }

  #cursor {
    height: 200px;
    width: 200px;
  }
}

.scroll-container {
  height: 120vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px;
}

.animation-wrapper {
  width: 100%;
  position: relative;
  perspective: 1000px;
  padding: 40px 0;
}

.header {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 3rem;
  transition: transform 0.1s ease-out;
}

.header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.header p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.card-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 650px;
  width: 100%;
  border: 4px solid #6c6c6c;
  padding: 24px;
  background: #222222;
  border-radius: 30px;
  transition: transform 0.1s ease-out;
  box-shadow: 0 0 transparent, 0 9px 20px rgba(0, 0, 0, 0.29),
    0 37px 37px rgba(0, 0, 0, 0.26), 0 84px 50px rgba(0, 0, 0, 0.15),
    0 149px 60px rgba(0, 0, 0, 0.04), 0 233px 65px rgba(0, 0, 0, 0.01);
}

.card-inner {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}



/* .spacer:nth-child(even) {
          background: rgba(0,0,0,0.1);
        } */

.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.demo-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .scroll-container {
    padding: 10px;
  }

  .animation-wrapper {
    padding: 20px 0;
  }

  .card-container {
    height: 400px;
    padding: 12px;
    border-radius: 20px;
  }

  .header h1 {
    font-size: 2.5rem;
  }

  .demo-content h2 {
    font-size: 2rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

 .icon {
            width: 48px;
            height: 48px;
            margin-bottom: 16px;
            background-color: red;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .icon img {
            width: 24px;
            height: 24px;
            filter: invert(1);
        }

        h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #ffffff;
        }

        p {
            font-size: 15px;
            color: #c9d1d9;
            margin-bottom: 16px;
            line-height: 1.5;
        }

        a {
            color: red;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        a:hover {
            text-decoration: underline;
            color: #ff3333;
        }

        .spacer {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem 1rem;
        }

        .spacer h2 {
            text-align: center;
            color: white;
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            opacity: 0.9;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            margin-bottom: 3rem;
            margin-top: 3rem;
            font-weight: 700;
        }

        .cards {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 1400px;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 1000px;
            padding: 0 1rem;
        }

        .feature-item:nth-child(5) {
            grid-column: 1 / -1;
            max-width: 500px;
            justify-self: center;
        }

        .feature-item {
            background: linear-gradient(135deg, rgba(100, 3, 3, 0.1), rgba(100, 3, 3, 0.3), rgba(100, 3, 3, 0.1));
            border-radius: 16px;
            padding: 24px;
            border: 2px solid #6c6c6c;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 24px;
            min-height: 120px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .feature-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 0 0.5rem;
            }

            .feature-item:nth-child(5) {
                grid-column: 1;
                max-width: none;
            }

            .feature-item {
                padding: 20px;
                gap: 16px;
                min-height: 100px;
            }

            .spacer {
                padding: 1rem 0.5rem;
            }

            .spacer h2 {
                margin-bottom: 2rem;
                margin-top: 2rem;
            }
        }

        @media (max-width: 480px) {
            .feature-item {
                flex-direction: column;
                text-align: center;
                gap: 12px;
                padding: 16px;
                min-height: auto;
            }

            .icon {
                width: 50px;
                height: 50px;
            }

            .feature-content {
                align-items: center;
            }

            .feature-item a {
                align-self: center;
            }

            .feature-grid {
                gap: 1rem;
            }

            .flex.items-center.gap-0\.5 {
                justify-content: center;
                flex-wrap: wrap;
                gap: 0.25rem;
            }
        }

        .feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .feature-item:hover::before {
            left: 100%;
        }

        .feature-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(255, 0, 0, 0.2);
            border-color: #ff3333;
        }

        .icon {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
        }

        .icon img {
            max-width: 100%;
            max-height: 100%;
        }

        .feature-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .feature-item h3 {
            margin: 0;
            font-size: 1.25rem;
            font-weight: 600;
            color: white;
        }

        .feature-item p {
            font-size: 0.9rem;
            opacity: 0.8;
            margin: 0;
            line-height: 1.4;
        }

        .feature-item a {
            color: #ff6666;
            text-decoration: none;
            font-weight: 500;
            margin-top: 8px;
            align-self: flex-start;
        }

        .feature-item a:hover {
            color: #ff3333;
        }

        .flex {
            display: flex;
        }

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

        .gap-0\.5 {
            gap: 0.125rem;
        }

        .ml-2 {
            margin-left: 0.5rem;
        }

        .flex-1 {
            flex: 1;
        }

        .w-8 {
            width: 2rem;
        }

        .h-8 {
            height: 2rem;
        }

        .w-7 {
            width: 1.75rem;
        }

        .h-7 {
            height: 1.75rem;
        }

        .font-body {
            font-family: inherit;
        }

        .text-sm {
            font-size: 0.875rem;
        }

        .text-gray-300 {
            color: #d1d5db;
        }
        .footer {
            border-top: 1px solid #333;
            background: linear-gradient(180deg, #000000 0%, #7d0303 100%);
            color: #ffffff;
            padding: 40px 20px 20px;
            font-family: 'Segoe UI', sans-serif;
        }

        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: auto;
            gap: 2rem;
        }

        .footer-about, 
        .footer-links, 
        .footer-contact {
            flex: 1 1 250px;
            min-width: 250px;
        }

        .footer h3, 
        .footer h4 {
            color: #ffffff;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .footer p {
            font-size: 0.95em;
            line-height: 1.6;
            color: #c9d1d9;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: #ffffff;
        }

        .social-icons a:hover {
            color: #ffffff;
        }

        .footer-bottom {
            text-align: center;
            border-top: 1px solid #333;
            padding-top: 20px;
            margin-top: 30px;
            font-size: 0.9em;
            color: #aaa;
        }
        
        @media (max-width: 480px) {
            .feature-item {
                padding: 16px;
            }

            .icon {
                width: 40px;
                height: 40px;
            }

            .icon img {
                width: 20px;
                height: 20px;
            }

            h3 {
                font-size: 18px;
            }

            p {
                font-size: 14px;
            }

            .footer {
                padding: 20px 10px 10px;
            }
        }




.title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .subtitle {
            font-size: 1.1rem;
            color: #888;
            margin-bottom: 3rem;
        }

        .tooltip-container {
            position: relative;
            display: inline-flex;
            gap: -0.5rem;
        }

        .tooltip-item {
            position: relative;
            display: inline-block;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
        }

        .tooltip-item:hover {
            z-index: 10;
            transform: translateY(-2px) scale(1.05);
        }

        .tooltip-item:not(:first-child) {
            margin-left: -0.5rem;
        }

        .avatar {
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 50%;
            border: 3px solid #333;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            object-fit: cover;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .tooltip-item:hover .avatar {
            border-color: red;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
        }

        .tooltip {
            position: absolute;
            bottom: calc(100% + 1rem);
            left: 50%;
            transform: translateX(-50%);
            background: rgba(20, 20, 20, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 0.75rem;
            padding: 0.75rem 1rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
            z-index: 100;
        }

        .tooltip::before {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 6px solid transparent;
            border-top-color: rgba(20, 20, 20, 0.95);
        }

        .tooltip-item:hover .tooltip {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(-4px);
        }

        .tooltip-name {
            font-weight: 600;
            font-size: 0.9rem;
            color: white;
            margin-bottom: 0.25rem;
        }

        .tooltip-role {
            font-size: 0.8rem;
            color: #888;
        }

        .demo-section {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid #333;
        }

        .demo-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 2rem;
            color: #ccc;
        }

        .usage-code {
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid #333;
            border-radius: 0.5rem;
            padding: 1.5rem;
            text-align: left;
            font-family: 'Monaco', 'Menlo', monospace;
            font-size: 0.9rem;
            color: #e2e8f0;
            overflow-x: auto;
            margin-top: 1rem;
        }

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


.lastPage{
  display: flex;
  align-items: center;
  justify-content: center;
}
        .carousel-container {
            display: flex;
            max-width: 1200px;
            width: 100%;
            /* background: white; */
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            min-height: 600px;
        }

        .photo-section {
            flex: 1;
            position: relative;
            /* background: #f8f9fa; */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px;
        }

        .main-photo {
            width: 100%;
            max-width: 400px;
            height: 300px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
            cursor: pointer;
            border-radius: 16px;
            border: 2px solid #6c6c6c;
        }
        
        .main-photo:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 35px rgba(255, 0, 0, 0.2);
            border-radius: 16px;
            box-shadow: #ff3333;
            border: 2px solid #ff3333;
            left: 100%;
        }

        .thumbnail-container {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .thumbnail {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 3px solid transparent;
            opacity: 0.7;
            border: 2px solid #6c6c6c;
        }

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

        .thumbnail.active {
            border-color: #e60023;
            opacity: 1;
            transform: scale(1.1);
        }

        .details-section {
            flex: 1;
            padding: 60px 50px;
            /* background: white; */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .details-content {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
            text-align: center;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            padding: 0 20px;

        }

        .details-content.active {
            opacity: 1;
            transform: translate(-50%, -50%);
        }

        .category {
            color: #e60023;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .title {
            font-size: 3rem;
            font-weight: 800;
            color: #333;
            margin-bottom: 20px;
            line-height: 1.1;
            background: linear-gradient(45deg, #e60023, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .description {
            font-size: 1.2rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .explore-btn {
            background: linear-gradient(45deg, #e60023, #ff6b6b);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 0 auto;
            box-shadow: 0 5px 15px rgba(230, 0, 35, 0.3);
        }

        .explore-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(230, 0, 35, 0.4);
        }



        /* Responsive Design */
        @media (max-width: 768px) {
            .carousel-container {
                flex-direction: column;
                margin: 10px;
                /* min-height: auto; */
                height: auto;
            }

            .photo-section {
                padding: 30px 20px;
            }

            .main-photo {
                max-width: 100%;
                height: 250px;
            }

            .thumbnail {
                width: 60px;
                height: 60px;
            }

            .details-section {
              /* margin-top: 80px; */
                padding: 40px 30px;
            }

            .title {
                font-size: 2rem;
            }

            .description {
                font-size: 1rem;
            }


        }

        @media (max-width: 480px) {
            .photo-section {
                padding: 20px 15px;
            }

            .details-section {
                padding: 30px 20px;
            }

            .title {
                font-size: 1.5rem;
            }

            .thumbnail-container {
                gap: 10px;
            }

            .thumbnail {
                width: 50px;
                height: 50px;
            }
        }