* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: 400 !important;
  font-family: "Raleway", sans-serif;
}

body {
  background: #000;
  color: #fff;
}

/* Navigation */
nav {
  /* position: fixed; */
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px;
  z-index: 100;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 32px;
  letter-spacing: -1px;
}

.menu-icon {
  width: 40px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 101;
}

.menu-icon span {
  width: 100%;
  height: 3px;
  background: #fff;
  transition: 0.3s;
}

.menu-icon:hover span {
  background: #2247b1;
}

/* Full Screen Menu */
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(10px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.fullscreen-menu.active {
  opacity: 1;
  visibility: visible;
}

.menu-close {
  position: absolute;
  top: 30px;
  right: 50px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1001;
}

.menu-close span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #fff;
  top: 50%;
  left: 0;
  transition: 0.3s;
}

.menu-close span:first-child {
  transform: translateY(-50%) rotate(45deg);
}

.menu-close span:last-child {
  transform: translateY(-50%) rotate(-45deg);
}

.menu-close:hover span {
  background: #2247b1;
}

.menu-content {
  text-align: center;
}

.menu-items {
  list-style: none;
}

.menu-items li {
  margin: 30px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.fullscreen-menu.active .menu-items li:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.fullscreen-menu.active .menu-items li:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.fullscreen-menu.active .menu-items li:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.fullscreen-menu.active .menu-items li:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.fullscreen-menu.active .menu-items li:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.fullscreen-menu.active .menu-items li:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.menu-items a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: -2px;
  transition: 0.3s;
  display: inline-block;
}

.menu-items a:hover {
  color: #2247b1;
  transform: translateX(20px);
}

/* About Section */
.about-section {
  background: #000;
  color: #fff;
  padding: 70px 50px 120px;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 40px;
}

.about-content p {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

.about-content .highlight {
  font-weight: 600;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.cta-button:hover {
  background: rgba(0, 255, 200, 0.1);
  box-shadow: 0 0 20px rgba(0, 255, 200, 0.3);
  transform: translateY(-3px);
}

.about-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-element {
  width: 400px;
  height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.visual-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}

.visual-element:hover img {
  transform: scale(1.05);
}

.visual-element::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(
    45deg,
    rgba(0, 255, 200, 0.6),
    rgba(138, 43, 226, 0.6),
    rgba(255, 0, 255, 0.6)
  );
  z-index: 1;
  border-radius: 12px;
  animation: rotate 8s linear infinite;
  opacity: 0.7;
}

.visual-element::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background: #000;
  z-index: 1;
  border-radius: 8px;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Our Story Section */
.story-section {
  background: #000;
  color: #fff;
  padding: 100px 50px;
  position: relative;
  overflow: hidden;
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.story-header {
  text-align: center;
  margin-bottom: 80px;
}

.story-header h2 {
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 20px;
  background: #2247b1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-header p {
  font-size: clamp(16px, 1.5vw, 20px);
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.story-timeline {
  position: relative;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  /* background: linear-gradient(
                180deg,
                transparent 0%,
                rgba(0, 255, 200, 0.5) 20%,
                rgba(0, 255, 200, 0.5) 80%,
                transparent 100%
            ); */
  background-color: #2247b1;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 80px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

/* Odd items - content on right */
.timeline-item:nth-child(odd) {
  justify-content: flex-start;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: calc(50% + 50px);
  text-align: left;
}

.timeline-item:nth-child(odd) .timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Even items - content on left */
.timeline-item:nth-child(even) {
  justify-content: flex-end;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-right: calc(50% + 50px);
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-content {
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  width: 45%;
  max-width: 500px;
}

.timeline-content:hover {
  background: rgba(0, 255, 200, 0.05);
  border-color: rgba(0, 255, 200, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 200, 0.1);
}

.timeline-content h3 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  margin-bottom: 15px;
  color: #2247b1;
}

.timeline-content p {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.timeline-dot {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 200, 0.2),
    rgba(138, 43, 226, 0.2)
  );
  border: 3px solid rgba(0, 255, 200, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  z-index: 3;
  transition: all 0.4s ease;
}

.timeline-item:hover .timeline-dot {
  transform: translateX(-50%) scale(1.2);
  background: linear-gradient(
    135deg,
    rgba(0, 255, 200, 0.4),
    rgba(138, 43, 226, 0.4)
  );
  box-shadow: 0 0 30px rgba(0, 255, 200, 0.5);
}

.story-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.3;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 200, 0.1);
}

.bg-circle-1 {
  width: 400px;
  height: 400px;
  top: 10%;
  left: -10%;
  animation: float 20s ease-in-out infinite;
}

.bg-circle-2 {
  width: 300px;
  height: 300px;
  bottom: 20%;
  right: -5%;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

/* Footer Section */
.footer-section {
  position: relative;
  background: #000;
  color: #fff;
  padding: 80px 50px 40px;
  overflow: hidden;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.footer-tagline {
  font-size: clamp(14px, 1.2vw, 16px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 600;
  margin-bottom: 25px;
  color: #2247b1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-list li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: clamp(14px, 1.2vw, 16px);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-list li a:hover {
  color: #2247b1;
  transform: translateX(5px);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding-top: 30px;
}

.footer-copyright {
  text-align: left;
}

.footer-copyright p {
  font-size: clamp(13px, 1.1vw, 14px);
  color: rgba(255, 255, 255, 0.5);
}

.footer-social {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: rgba(0, 255, 200, 0.1);
  color: #2247b1;
  border-color: rgba(0, 255, 200, 0.5);
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-legal {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-end;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: clamp(13px, 1.1vw, 14px);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #2247b1;
}

.footer-legal .separator {
  color: rgba(255, 255, 255, 0.3);
}

.footer-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  pointer-events: none;
  opacity: 0.3;
}

.decoration-circle {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border: 2px solid rgba(0, 255, 200, 0.2);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}

.decoration-line {
  position: absolute;
  top: 100px;
  right: 50px;
  width: 300px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 255, 200, 0.3) 50%,
    transparent 100%
  );
  transform: rotate(-45deg);
}

/* Responsive */
@media (max-width: 1024px) {
  nav {
    padding: 20px 30px;
  }

  .about-container {
    gap: 60px;
  }

  .about-visual {
    height: 400px;
  }

  .visual-element {
    width: 350px;
    height: 260px;
  }

  .story-section {
    padding: 80px 40px;
  }

  .story-header {
    margin-bottom: 60px;
  }

  .timeline-item {
    gap: 30px;
    margin-bottom: 60px;
  }

  .timeline-dot {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .footer-section {
    padding: 60px 40px 30px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-links-grid {
    gap: 40px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-copyright {
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 20px 25px;
  }

  .logo {
    font-size: 24px;
  }

  .menu-close {
    right: 25px;
  }

  .about-section {
    padding: 140px 30px 80px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-visual {
    height: 300px;
    order: -1;
  }

  .visual-element {
    width: 300px;
    height: 225px;
  }

  .story-section {
    padding: 60px 30px;
  }

  .story-header {
    margin-bottom: 50px;
  }

  .timeline-line {
    display: none;
  }

  .timeline-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 50px;
    position: relative;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    justify-content: flex-start;
  }

  .timeline-dot {
    position: static;
    transform: none;
    margin-bottom: 0;
    width: 45px;
    height: 45px;
    font-size: 16px;
    flex-shrink: 0;
  }

  .timeline-content {
    width: calc(100% - 60px);
    max-width: 100%;
    text-align: left;
    padding: 25px;
    margin: 0;
    flex: 1;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    margin: 0;
    width: 100%;
  }

  .timeline-item:hover .timeline-dot {
    transform: scale(1.2);
  }

  .bg-circle-1 {
    width: 300px;
    height: 300px;
  }

  .bg-circle-2 {
    width: 200px;
    height: 200px;
  }

  .footer-section {
    padding: 50px 30px 25px;
  }

  .footer-top {
    gap: 40px;
    padding-bottom: 40px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-heading {
    margin-bottom: 20px;
  }

  .footer-bottom {
    gap: 25px;
  }

  .footer-social {
    gap: 15px;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .social-link svg {
    width: 18px;
    height: 18px;
  }

  .decoration-circle {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 120px 20px 60px;
  }

  .about-content h2 {
    margin-bottom: 30px;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 14px;
  }

  .visual-element {
    width: 280px;
    height: 210px;
  }

  .story-section {
    padding: 50px 20px;
  }

  .story-header {
    margin-bottom: 40px;
  }

  .timeline-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
  }

  .timeline-dot {
    position: static;
    transform: none;
    margin-bottom: 15px;
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .timeline-content {
    width: 100%;
    max-width: 100%;
    text-align: left;
    margin: 0;
    padding: 20px;
  }

  .timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    margin: 0;
  }

  .timeline-item:hover .timeline-dot {
    transform: scale(1.2);
  }

  .timeline-line {
    display: none;
  }

  .bg-circle-1 {
    width: 250px;
    height: 250px;
  }

  .bg-circle-2 {
    width: 180px;
    height: 180px;
  }

  .footer-section {
    padding: 40px 20px 20px;
  }

  .footer-top {
    gap: 30px;
    padding-bottom: 30px;
  }

  .footer-links-grid {
    gap: 30px;
  }

  .footer-logo {
    margin-bottom: 15px;
  }

  .footer-bottom {
    gap: 20px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }

  .footer-legal .separator {
    display: none;
  }

  .decoration-circle {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
  }
}

/* ------------------------------------------------------ */

/* Services/Features Section */
.services-section {
  background: #000;
  padding: 0;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
  min-height: 100vh;
}

.service-card {
  position: relative;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:last-child {
  border-right: none;
}

.service-number {
  font-size: clamp(14px, 1.2vw, 18px);
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 40px;
  letter-spacing: 2px;
  font-weight: 300;
}

.service-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: clamp(24px, 2.5vw, 42px);
  font-weight: 300;
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .services-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .service-card:nth-child(3n) {
    border-right: none;
  }

  .service-card:nth-child(4),
  .service-card:nth-child(5),
  .service-card:nth-child(6) {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    padding: 50px 30px;
  }

  .service-card:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .service-card:nth-child(2n) {
    border-right: none;
  }

  .service-card:nth-child(4),
  .service-card:nth-child(6) {
    border-bottom: none;
  }

  .service-card:nth-child(5) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .service-number {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .services-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-card {
    padding: 40px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
  }

  .service-card:last-child {
    border-bottom: none;
  }

  .service-number {
    margin-bottom: 0;
    font-size: 16px;
  }

  .service-title {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    font-size: clamp(20px, 5vw, 28px);
    text-align: left;
  }
}
