/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', monospace;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  overflow-x: hidden;
  color: white;
}


/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  height: 80px; /* Set your desired navbar height */
  background-color: rgba(0, 0, 0, 0.85);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: #00f5ff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #7a00ff;
}

.logo {
  height: 220px;
  width: auto;
  transition: transform 0.3s ease;
}

.hero-logo + h1 {
  margin-top: -150px
  ;
}


/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0 2rem;
}

.hero-content {
  color: white;
  z-index: 10;
  max-width: 800px;
}

.hero-logo {
  width: 500px;
  height: 500px;
  margin: 0 auto 0;
  border-radius: 50%;
  display: block;
  transition: transform 0.3s ease;
  
}



.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #00f5ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.cta-btn {
  background: linear-gradient(45deg, #00f5ff, #0080ff);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 245, 255, 0.3);
  font-family: 'Orbitron', monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 245, 255, 0.5);
  background: linear-gradient(45deg, #0080ff, #00f5ff);
}

.cta-btn:active {
  transform: translateY(0);
}

.scroll-down {
  position: absolute;
  bottom: -5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  color: #00f5ff;
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* Optional hero animation */
.hero-content {
  animation: fadeInUp 1s ease-out;
}


/* About Section */
.about-section {
  padding: 80px 40px;
  color: #fff;
  background: linear-gradient(to bottom, rgba(15, 15, 15, 1), rgba(26, 26, 26, 0.85));
  text-align: center;
}

.about-page .about-section {
  background: transparent;
}


.about-section .container {
  max-width: 900px;
  margin: auto;
}

.about-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #00ffe1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-section p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Services Section */
.services-section {
  padding: 4rem 2rem;
  background-color: #0d0d0d;
  color: #e0e0e0;
  text-align: center;
}

.services-section h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #00ffe1;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.service-card {
  background: #121212;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  padding: 2rem;
  width: 300px;
  transition: transform 0.3s ease;
  box-shadow: 0 0 20px rgba(122, 0, 255, 0.2);
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  color: #7a00ff;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Portfolio Section */
.portfolio-section {
  padding: 4rem 2rem;
  background-color: #0a0a0a;
  text-align: center;
}

.portfolio-section h1 {
  color: #00ffe1;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.portfolio-item {
  background: #121212;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.15);
}

.portfolio-item img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}



/* Contact Page */

.contact-section {
  padding: 4rem 2rem;
  background: #0a0a0a;
  text-align: center;
}

.contact-section h1 {
  color: #00ffe1;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-section form {
  background: linear-gradient(145deg, #1a1a1a, #101010);
  padding: 2.5rem;
  border: 1px solid #222;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(122, 0, 255, 0.3);
  transition: all 0.3s ease-in-out;
}

.contact-section input,
.contact-section textarea,
.contact-section select {
  background-color: #151515;
  border: 1px solid #333;
  transition: border-color 0.3s ease;
}

.contact-section button {
  background: #00f5ff;
  color: #000;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-section button:hover {
  background: #7a00ff;
  color: white;
}

.contact-section input:focus,
.contact-section textarea:focus,
.contact-section select:focus {
  outline: none;
  border-color: #00f5ff;
  box-shadow: 0 0 10px #00f5ff;
}

/* Animate form elements on hover */
.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover {
  border-color: #7a00ff;
}

/* Footer (Optional if added later) */
footer {
  text-align: center;
  padding: 1rem;
  background: #000;
  color: #888;
  font-size: 0.9rem;
}

.footer {
  background: linear-gradient(to right, #0d0d0d, #121212);
  color: #999;
  padding: 2rem;
  text-align: center;
  font-size: 0.95rem;
  border-top: 1px solid #222;
  box-shadow: 0 -5px 20px rgba(0, 245, 255, 0.1);
}

.footer p {
  margin-bottom: 0.5rem;
  color: #aaa;
}

.footer p:last-child {
  color: #00f5ff;
  font-weight: 500;
}

/* Neon glow button effect */
.neon-btn {
  color: #0ff;
  background: transparent;
  border: 2px solid #0ff;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  border-radius: 8px;
  box-shadow: 0 0 5px #0ff;
}

.neon-btn:hover {
  background: #0ff;
  color: #000;
  box-shadow: 0 0 20px #0ff, 0 0 40px #0ff;
  transform: scale(1.05);
}

/* Optional: Neon card effect */
.neon-card {
  border: 1px solid #0ff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 5px #0ff;
  transition: 0.3s ease-in-out;
}

.neon-card:hover {
  box-shadow: 0 0 20px #0ff, 0 0 40px #0ff;
  transform: translateY(-5px);
}

section {
  transition: all 0.4s ease-in-out;
}

.about-section {
  padding: 80px 40px;
  color: #fff;
  background: linear-gradient(to bottom, #0f0f0f, #1a1a1a);
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-family: 'Orbitron', sans-serif;
  color: #00fff7;
}

.about-text {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ccc;
}

.team-intro {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.team-member {
  text-align: center;
  max-width: 250px;
}

.team-photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #00fff7;
  box-shadow: 0 0 15px #00fff7;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.team-photo:hover {
  transform: scale(1.05);
}

.team-member h3 {
  margin: 10px 0 5px;
  font-size: 1.3rem;
  color: #00fff7;
}

.team-member p {
  color: #aaa;
  font-size: 0.95rem;
}

footer {
  padding: 30px;
  text-align: center;
  background: #111;
  color: #777;
  font-size: 0.9rem;
  border-top: 1px solid #222;
}

body {
  font-family: 'Orbitron', sans-serif;
  background-color: #0d0d0d;
  color: #fff;
  margin: 0;
  padding: 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #0ff;
  margin-top: 2rem;
  text-shadow: 0 0 10px #0ff;
}

.services {
  padding: 4rem 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: #121212;
  border: 1px solid #0ff4;
  border-radius: 16px;
  padding: 2rem;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 12px #0ff2;
}

.service-card h2 {
  color: #0ff;
  margin-bottom: 0.75rem;
}

.service-card p {
  line-height: 1.6;
  color: #ccc;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px #0ff, 0 0 40px #0ff4;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #111;
  color: #aaa;
  font-size: 0.9rem;
  border-top: 1px solid #0ff2;
}

/* ===== Portfolio Section ===== */
.portfolio {
  padding: 80px 20px;
  background-color: #0a0a0a;
  color: #f5f5f5;
  text-align: center;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-item {
  background: linear-gradient(135deg, #1a1a1a, #111);
  border: 1px solid #222;
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
}

.portfolio-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid #333;
}

.portfolio-item h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  color: #00ffff;
  margin: 10px 0;
}

.portfolio-item p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
}

/* === Contact Page Styles === */
.contact-section {
  padding: 60px 20px;
  background-color: #111;
  color: #fff;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #00f0ff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 0 20px #00f0ff88;
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #00f0ff;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #333;
  background: #222;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .cta-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg, #00f0ff, #7700ff);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.contact-form .cta-btn:hover {
  transform: scale(1.05);
}

/* Footer styles */
.footer {
  padding: 30px 20px;
  background-color: #000;
  color: #aaa;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid #222;
}

.footer p {
  margin: 6px 0;
}

/* Product Section Enhancements */
.products {
  padding: 4rem 2rem;
  background-color: #0d0d0d;
  color: #fff;
}

.product-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.product-card {
  background: linear-gradient(145deg, #1e1e1e, #121212);
  border: 1px solid #3b3b3b;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
}

.product-card img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  margin-bottom: 1.2rem;
  border-radius: 10px;
}

.product-card h2 {
  font-family: 'Orbitron', sans-serif;
  color: #00ffff;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.product-card p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 1rem;
}

.cta-btn.small {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  background-color: #00ffff;
  color: #000;
  border: none;
  border-radius: 8px;
  transition: background 0.3s;
}

.cta-btn.small:hover {
  background-color: #00bfbf;
}

.cta-btn.small.disabled {
  background-color: #333;
  cursor: not-allowed;
  color: #777;
}

/* === Portfolio Section Enhancements === */
.portfolio {
  padding: 60px 20px;
  background-color: #0d0d0d;
  color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.portfolio-item {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 12px #00ffff33;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 18px #00ffff88;
}

.portfolio-item h2 {
  margin-top: 15px;
  font-size: 1.5rem;
  color: #0ff;
  font-family: 'Orbitron', sans-serif;
}

.portfolio-item p {
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ccc;
}

/* === Slideshow Container === */
.slideshow {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid #00ffff44;
  background-color: #000;
  box-shadow: 0 0 10px #00ffff22;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: opacity 0.5s ease-in-out;
}

/* Click-to-enlarge modal styles */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 15, 15, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.image-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.image-modal-content img {
  width: 100%;
  height: auto;
  border: 3px solid #0ff;
  border-radius: 12px;
  box-shadow: 0 0 20px #0ff;
}

.close-modal {
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: 2.5rem;
  color: #0ff;
  cursor: pointer;
  transition: 0.3s ease;
}

.close-modal:hover {
  color: #f0f;
}

/* Optional styling for slideshow images */
.slideshow-image {
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.slideshow-image:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px #0ff;
}

/* Animated Starfield Background */
.starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle 2s infinite alternate;
}

.star:nth-child(odd) {
  animation-duration: 3s;
}

.star:nth-child(3n) {
  animation-duration: 1.5s;
}

@keyframes twinkle {
  0% { opacity: 0.3; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.2); }
}

.shooting-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: linear-gradient(45deg, #fff, #00f5ff);
  border-radius: 50%;
  animation: shoot 3s linear infinite;
}

@keyframes shoot {
  0% {
    transform: translateX(-100px) translateY(100px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(100vw) translateY(-100px);
    opacity: 0;
  }
}

.footer {
  padding: 40px 0;
  background-color: #0a0a0a;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.icon {
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all 0.4s ease;
  color: #000;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.icon:hover {
  transform: scale(1.15);
  color: #fff;
}

/* Specific platform hover colors */
.icon.linkedin:hover {
  background-color: #0077b5;
  box-shadow: 0 0 15px #0077b5;
}

.icon.instagram:hover {
  background: radial-gradient(circle at 30% 107%, 
    #fdf497 0%, #fdf497 5%, 
    #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0 0 15px #d6249f;
}

.icon.whatsapp:hover {
  background-color: #25D366;
  box-shadow: 0 0 15px #25D366;
}

.icon.gmail:hover {
  background-color: #D44638;
  box-shadow: 0 0 15px #D44638;
}

.container ul {
  list-style: none;
  padding: 0;
}

.container ul li {
  position: relative;
  margin-bottom: 1rem;
}

.container ul li::before {
  content: "";
  position: absolute;
  left: 0; /* Will adjust with padding-left */
  color: #00f5ff;
  font-size: 1rem;
}

/* Example custom indents: */
.container ul li:nth-child(1) {
  padding-left: 1.5rem;
}

.container ul li:nth-child(1)::before {
  left: 18.5rem;
}

.container ul li:nth-child(2) {
  padding-left: 2rem;
}

.container ul li:nth-child(2)::before {
  left: 20rem; /* adjust so bullet stays tight to text */
}

.container ul li:nth-child(3) {
  padding-left: 2.5rem;
}

.container ul li:nth-child(3)::before {
  left: 15.8rem;
}

.container ul li:nth-child(4) {
  padding-left: 3rem;
}

.container ul li:nth-child(4)::before {
  left: 19rem;
}

.container ul li:nth-child(5) {
  padding-left: 1.8rem;
}

.container ul li:nth-child(5)::before {
  left: 18.6rem;
}

/* Popup Styling */
.popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #111;
  border: 2px solid #00f0ff;
  padding: 30px 40px;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 20px #00f0ff;
}

.popup-content button {
  margin-top: 15px;
  background-color: #00f0ff;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
}

