/* ===== GLOBAL STYLES ===== */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: #f7faff;
  color: #1f2d3d;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

h1, h2, h3 {
  font-weight: bold;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-block;
  background: #1e90ff;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  transition: background 0.3s;
}
.btn:hover {
  background: #0f6ad4;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0f172a;
  padding: 15px 40px;
}
.navbar .logo {
  font-size: 1.5em;
  font-weight: bold;
  color: #fff;
}
.nav-links {
  display: flex;
  list-style: none;
}
.nav-links li {
  margin-left: 25px;
}
.nav-links a {
  color: #fff;
  padding: 8px 15px;
  border-radius: 4px;
  transition: background 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  background: #1e40af;
}

/* ===== HOMEPAGE HERO ===== */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(rgba(0,0,50,0.7), rgba(0,0,50,0.7)),
              url('https://images.unsplash.com/photo-1498050108023-c5249f4df085') center/cover;
  color: white;
  min-height: calc(100vh - 120px); /* navbar + footer space */
}
.hero h1 {
  font-size: 2.8em;
}
.hero p {
  margin-top: 15px;
  font-size: 1.2em;
}

/* ===== PAGE HEADER ===== */
.page-header {
  text-align: center;
  padding: 50px 20px;
  background: #e0f2fe;
}
/* CONTACT PAGE STYLING */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.contact-info, .contact-links {
  flex: 1 1 400px;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.contact-info h2,
.contact-links h2 {
  margin-bottom: 20px;
  color: #1e40af;
}

.info-item {
  display: flex;
  align-items: center;
  font-size: 1em;
  margin-bottom: 10px;
}

.info-item span {
  font-size: 1.5em;
  margin-right: 10px;
}

/* Cards */
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-card {
  background: #f9f9f9;
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card a {
  text-decoration: none;
  color: #1e40af;
  font-size: 1.1em;
  font-weight: 600;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Different accents */
.email-card { border-left: 5px solid #1e90ff; }
.whatsapp-card { border-left: 5px solid #25d366; }
.insta-card { border-left: 5px solid #e4405f; }




/* ===== ABOUT CONTENT ===== */
.about-content {
  max-width: 800px;
  margin: auto;
  padding: 20px;
  line-height: 1.6;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 20px;
  background: #0f172a;
  color: white;
  margin-top: auto;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Portfolio extra section */
.portfolio-extra {
  max-width: 800px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
  line-height: 1.6;
}

.portfolio-extra h2 {
  color: #1e40af;
  margin-bottom: 15px;
}

/* ===== ABOUT CARDS ===== */
.about-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.about-card {
  flex: 1 1 300px;
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card h2 {
  color: #1e40af;
  margin-bottom: 12px;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}


/* ===== SERVICES ===== */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 60px auto;
  padding: 20px;
}

.service-item {
  background: white;
  padding: 30px 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.service-icon {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.service-item h2 {
  color: #1e40af;
  margin-bottom: 12px;
  font-size: 1.3em;
}

.service-item p {
  font-size: 1em;
  line-height: 1.5;
  color: #444;
}
