/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0a0a14;
  color: #eee;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Links */
a { text-decoration: none; transition: 0.3s; }

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background: rgba(10,10,20,0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo img {
  width: 55px;
  height: 55px;
  border-radius: 50%; /* circle */
  border: 2px solid #ff6a00;
  box-shadow: 0 0 15px rgba(255,106,0,0.5);
}

.logo span {
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  background: linear-gradient(45deg, #ff6a00, #ee0979, #ffdd00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 15px rgba(255,150,0,0.5);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #eee;
  font-weight: 500;
  padding: 5px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: #ff6a00;
  transition: 0.3s;
}

.nav-links a:hover::after, .nav-links .active::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(10,10,20,0.7), rgba(10,10,20,0.7)), url('../images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 900px;
  z-index: 1;
  animation: fadeInUp 1s ease forwards;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  background: linear-gradient(90deg, #ff6a00, #ffdd00, #ee0979);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s infinite alternate;
}

.hero p {
  font-size: 1.3rem;
  color: #ccc;
  margin: 20px 0;
}

.btn {
  padding: 0.8rem 2.5rem;
  border: none;
  border-radius: 50px;
  background: linear-gradient(90deg,#ff6a00,#ee0979,#ffdd00);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(255,106,0,0.5);
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(255,106,0,0.7);
}
/* About Preview - Centered Version */
.about-preview {
  padding: 100px 2rem;
  display: flex;
  flex-direction: column; /* stack image and text */
  align-items: center; /* horizontal center */
  justify-content: center; /* vertical center */
  gap: 2rem;
  text-align: center; /* center the text */
}

.about-preview img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(255,106,0,0.3);
}

.about-preview .text {
  max-width: 700px;
}

.about-preview h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg,#ff6a00,#ee0979,#ffdd00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-preview p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-preview .btn {
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
}


/* Services Preview */
.services-preview {
  padding: 100px 2rem;
  text-align: center;
}

.services-preview h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  background: linear-gradient(45deg,#ff6a00,#ee0979,#ffdd00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border-radius: 25px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  transition: transform 0.4s, box-shadow 0.4s;
}

.service-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 1rem;
  color: #ccc;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 50px rgba(255,106,0,0.5);
}

/* Footer */
footer {
  background: #0a0a14;
  padding: 2.5rem 0;
  text-align: center;
  color: #aaa;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #aaa;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #ff6a00;
}

/* Animations */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Responsive */
@media(max-width:768px){
  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1rem; }
  .about-preview { flex-direction: column; align-items: center; gap: 2rem; }
  .about-preview img { max-width: 100%; }
}
