/* === Space Inlay Home Page Styles: Luxurious Palette & Animations === */
/* Reset and global styles */
/* ✅ SPACE INLAY HOME CSS */
/* Global Styles */
/* Base Styling */
body {
  font-family: 'Inter', sans-serif;
  color: #1e1e1e;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: #fff;
}

h1, h2, h3 {
  font-weight: 700;
  margin: 0 0 10px;
  color: #111;
}

p {
  margin: 0 0 20px;
}

a.btn {
  display: inline-block;
  padding: 12px 28px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  transition: background 0.3s ease;
}

a.btn:hover {
  background: #444;
}

/* Hero Section */
.hero-section {
  padding: 120px 20px 100px;
  background: linear-gradient(to right, #f7f7f7, #fff);
  text-align: center;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* Why Us Section */
.why-us {
  padding: 80px 20px;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.why-box {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(0,0,0,0.05);
}

/* Projects Preview */
.projects-preview {
  padding: 80px 20px;
  background: #f5f5f5;
  text-align: center;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.project-box {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.center-btn {
  margin-top: 40px;
}

/* Services Preview */
.services-preview {
  padding: 80px 20px;
  text-align: center;
}

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

.service-box {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0,0,0,0.04);
}

/* Connect CTA */
.connect-cta {
  padding: 80px 20px;
  background: #111;
  color: #fff;
  text-align: center;
}

.connect-cta h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

/* Fade Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.2rem;
  }

  .connect-cta h2 {
    font-size: 1.5rem;
  }
}

/* ✅ PROJECTS PAGE CUSTOM CSS ✅ */

.projects-page {
  max-width: 1200px;
  margin: auto;
  padding: 4rem 2rem;
  font-family: 'Segoe UI', sans-serif;
}

.projects-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.projects-hero h1 {
  font-size: 2.8rem;
  color: #111;
  font-weight: 700;
  margin-bottom: 1rem;
  animation: fadeSlideUp 1s ease-out forwards;
}

.projects-hero p {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeSlideUp 1.2s ease-out forwards;
}

.projects-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.project-card {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.project-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.project-card h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.5rem;
}

.project-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* Responsive Layout */
@media (min-width: 768px) {
  .projects-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .projects-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Animations */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* ✅ CONTACTS PAGE CUSTOM CSS ✅ */
.contact-container {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.section-description {
  color: #555;
  margin-bottom: 40px;
  max-width: 600px;
  margin-inline: auto;
}

.contact-info, .contact-form, .social-follow {
  margin-bottom: 40px;
}

.contact-info h3,
.contact-form h3,
.social-follow h3,
.location h3 {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 10px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  max-width: 400px;
  padding: 10px;
  margin: 10px auto;
  border: 1px solid #ccc;
  border-radius: 6px;
  display: block;
}

.contact-form button {
  background-color: #1a1a1a;
  color: #fff;
  padding: 10px 30px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background-color: #333;
}

.form-note {
  font-size: 0.9rem;
  color: #888;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  font-size: 24px;
  margin: 0 10px;
  color: #fff;
  background-color: #25D366;
  padding: 10px;
  border-radius: 50%;
  display: inline-block;
  transition: 0.3s ease;
}

.social-icons a:nth-child(2) {
  background-color: #e4405f;
}

.social-icons a:nth-child(3) {
  background-color: #1877f2;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.location-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.location {
  max-width: 400px;
  text-align: left;
}

@media (max-width: 768px) {
  .location-section {
    flex-direction: column;
    align-items: center;
  }
}