/* G-SHARP Website Styles (SCSS) */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #1e1e1e;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

header {
  background: #3e4c61; 
  padding: 5px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 0 2px #3ea8ff;

}

.logo-icon {
  
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 0 2px #3ea8ff;
}

.nav-links a:hover {
  color: #3ea8ff;
}

.hero {
  margin-top: 80px;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #2d3e50 0%, #1e2933 50%, #27333f 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(62, 168, 255, 0.03) 2px, rgba(62, 168, 255, 0.03) 4px),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(62, 168, 255, 0.03) 2px, rgba(62, 168, 255, 0.03) 4px);
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subtitle {
  font-size: 1.3rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #3ea8ff 0%, #0066cc 100%);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(62, 168, 255, 0.4);
}

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3ea8ff, #0066cc);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #333;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3ea8ff, #0066cc);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  /* border-color: #3ea8ff; */
  /* box-shadow: 0 10px 30px rgba(62, 168, 255, 0.2); */
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #3ea8ff;
}

.service-card p {
  color: #b0b0b0;
  line-height: 1.7;
}

.about {
  background: linear-gradient(135deg, #252525 0%, #1a1a1a 100%);
}

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

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.about-text p {
  color: #b0b0b0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

.expertise-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #e0e0e0;
  font-size: 0.95rem;
}

.expertise-item::before {
  content: "▸";
  color: #3ea8ff;
  font-weight: bold;
  font-size: 1.2rem;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.tech-badge {
  padding: 0.5rem 1rem;
  background: #2a2a2a;
  border: 1px solid #3ea8ff;
  border-radius: 20px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

.contact {
  text-align: center;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #b0b0b0;
}

.contact-item-icon {
  font-size: 2rem;
  color: #3ea8ff;
}

.contact-item a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: #3ea8ff;
}

footer {
  background: #0f0f0f;
  padding: 2rem;
  text-align: center;
  color: #666;
  border-top: 1px solid #222;
}

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

  .hero .subtitle {
    font-size: 1.1rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nav-links {
    display: none;
  }

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

  .contact-info {
    flex-direction: column;
    gap: 1.5rem;
  }
}

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

.fade-in {
  animation: fadeInUp 0.6s ease-out;
}
