ADITYA.INAMDAR
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #ffffff;
  color: #2b2b2b;
  line-height: 1.8;
}

/* Header */
header {
  background: #f5f5f5;
  color: #1f1f1f;
  text-align: center;
  padding: 26px 20px;
  border-bottom: 1px solid #ddd;
}

header h1 {
  font-size: 36px;
  letter-spacing: 1px;
}

header p {
  color: #6b6b6b;
  font-size: 15px;
}

/* Hero */
.hero {
  background: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.hero h2 {
  font-size: 40px;
  color: #1c1c1c;
}

.hero p {
  margin-top: 10px;
  color: #555;
}

/* Accent Button */
.btn {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 32px;
  background: #4da3d9; /* Sky Blue */
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
}

/* Sections */
section {
  padding: 70px 20px;
  max-width: 1150px;
  margin: auto;
}

h2 {
  margin-bottom: 22px;
  font-size: 30px;
  color: #1f1f1f;
}

/* About */
.about {
  background: #ffffff;
}

/* Services */
.services {
  background: #f7f7f7;
}

.services ul {
  list-style: none;
}

.services li {
  background: #ffffff;
  margin: 14px 0;
  padding: 18px;
  border-left: 4px solid #4da3d9;
  box-shadow: 0 3px 8px rgba(0,0,0,0.04);
}

/* Portfolio */
.portfolio {
  background: #ffffff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
}

.box {
  background: #f2f2f2;
  padding: 55px 20px;
  text-align: center;
  font-weight: 600;
  color: #333;
  border-radius: 6px;
}

/* Contact */
.contact {
  background: #f7f7f7;
  text-align: center;
}

.whatsapp {
  display: inline-block;
  margin-top: 22px;
  padding: 14px 28px;
  background: #2f2f2f; /* Charcoal */
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

/* Footer */
footer {
  background: #eeeeee;
  color: #555;
  text-align: center;
  padding: 26px;
  font-size: 14px;
  border-top: 1px solid #ddd;
}
.instagram {
  display: inline-block;
  margin-top: 15px;
  padding: 14px 28px;
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}
.site-header {
  text-align: center;
  padding: 30px 0;
  background-color: #f5f5f5; /* light neutral background */
}

.logo {
  max-width: 220px;
  height: auto;
}
.site-header {
  background-color: #f5f5f5;
  border-bottom: 1px solid #ddd;
}

.header-inner {
  max-width: 1150px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
}

.logo {
  max-width: 180px;
  height: auto;
}
.site-header {
  padding: 15px 30px;
  background: #fff;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #000;
  font-size: 15px;
}
.headline {
    background-color: #f5f5f5; /* same light grey as first page */
    text-align: center;        /* center the text */
    padding: 50px 20px;        /* some spacing around the text */
}
.headline h1 {
    margin: 0;
    font-size: 2.5rem;         /* adjust size if needed */
}
.headline p {
    margin: 10px 0 0 0;
    color: #555;               /* optional: similar text color as first page */
}

