/* ================= ROOT ================= */
:root {
--pink: #e9d1ca;
--dark: #1a1a1a;
--white: #ffffff;
--gray: #f5f5f5;
--text: #444;
}

/* ================= RESET ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

body {
font-family: 'Segoe UI', sans-serif;
color: var(--dark);
background: var(--white);
line-height: 1.6;
}

/* ================= NAVBAR ================= */
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 2rem 5%;
background: var(--white);
position: sticky;
top: 0;
}

.logo {
font-weight: bold;
letter-spacing: 2px;
}

nav ul {
display: flex;
list-style: none;
}

nav ul li a {
text-decoration: none;
color: var(--dark);
margin-left: 2rem;
font-size: 0.9rem;
font-weight: 600;
transition: 0.3s;
}

nav ul li a:hover {
color: #888;
}

/* ================= HERO ================= */
.hero {
display: flex;
justify-content: space-between;
align-items: center;
padding: 5%;
background: var(--pink);
min-height: 80vh;
}

.hero-content h1 {
font-size: 3rem;
font-weight: 300;
}

.subtitle {
display: inline-block;
margin-top: 1rem;
padding: 10px 20px;
background: var(--dark);
color: white;
font-weight: bold;
}

.hero-image img {
max-width: 350px;
border-radius: 200px 200px 0 0;
}

/* ================= SECTIONS ================= */
section {
padding: 5rem 10%;
}

h2 {
text-align: center;
margin-bottom: 2rem;
font-size: 2.2rem;
}

/* ================= ABOUT ================= */
.about-text {
max-width: 750px;
margin: 0 auto;
text-align: center;
color: var(--text);
}

/* ================= SKILLS ================= */
.skills-section {
background: var(--white);
}

.skills-container {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 40px;
}

.skill-column h3 {
font-size: 1rem;
margin-bottom: 15px;
border-bottom: 2px solid var(--pink);
display: inline-block;
padding-bottom: 5px;
}

.skill-column ul {
padding-left: 20px;
}

.skill-column li {
margin-bottom: 10px;
font-size: 0.9rem;
color: var(--text);
}


/* ================= SERVICES ================= */
.services-section {
  background: #f5efe9;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 30px;
}

.service-column {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: left;
  transition: 0.3s;
}

.service-column:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.service-column h3 {
  font-size: 1rem;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--pink);
  display: inline-block;
  padding-bottom: 5px;
}

.service-column ul {
  list-style: none;
  padding: 0;
}

.service-column ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text);
}

/* Responsive for Skills & Services */
@media (max-width: 900px) {
  .skills-container,
  .services-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .skills-container,
  .services-container {
    grid-template-columns: 1fr;
  }
}
/* ================= TOOLS ================= */
.tools h2{
margin-bottom:25px;
text-align:center;
}

.tools-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.tool{
background:#f5efe9;
padding:15px;
border-radius:12px;
text-align:center;
box-shadow:0 4px 10px rgba(0,0,0,0.15);
transition:0.3s;
}

.tool:hover{
transform:translateY(-6px);
box-shadow:0 10px 20px rgba(0,0,0,0.3);
}

.tool img{
width:50px;
height:50px;
object-fit:contain;
margin-bottom:10px;
}

/* ================= WORK ================= */
.work-section {
background: #f5efe9;
}

.work-category {
margin-bottom: 4rem;
}

.work-category h3 {
margin-bottom: 1rem;
}

/* BEFORE / AFTER */
.comparison {
display: flex;
gap: 20px;
margin-top: 1rem;
}

.comparison div {
width: 50%;
text-align: center;
}

.comparison p {
font-weight: bold;
margin-bottom: 8px;
}

.comparison img {
width: 100%;
border-radius: 8px;
border: 1px solid #ddd;
transition: 0.3s;
}

.comparison img:hover {
transform: scale(1.03);
}

.work-desc {
margin-top: 15px;
font-size: 0.95rem;
color: var(--text);
}



/* ================= CONTACT ================= */
/* ================= CONTACT ================= */

.contact {
    background: #f5efe9;
    padding: 5rem 10%;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* LAYOUT */
.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* LEFT SIDE */
.contact-left {
    flex: 1;
}

.discovery-link {
    display: inline-block;
    color: #3b6ef5;
    margin-bottom: 20px;
    text-decoration: underline;
    font-weight: 500;
}

.contact-btn {
    display: inline-block;
    background: var(--pink);
    border: none;
    padding: 12px 25px;
    margin-bottom: 20px;
    cursor: pointer;
    font-weight: 600;
    border-radius: 6px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 0.95rem;
}

/* RIGHT SIDE */
.contact-right img {
    width: 280px;
    border-radius: 50% / 35%;
    object-fit: cover;
}

/* ================= FOOTER ================= */
footer {
text-align: center;
padding: 2rem;
background: #111;
color: white;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
.skills-container {
grid-template-columns: 1fr 1fr;
}
}

@media (max-width: 768px) {
.hero {
flex-direction: column;
text-align: center;
}
}
.hero-image {
    margin-top: 2rem;
}

.comparison {
    flex-direction: column;
}

.comparison div {
    width: 100%;
}

@media (max-width: 500px) {
.skills-container {
grid-template-columns: 1fr;
}
}

/* ================= TESTIMONIAL ================= */

.testimonial-section {
    background: var(--white);
}

.testimonial-container {
    display: flex;
    justify-content: center;
}

.testimonial-card {
    display: flex;
    gap: 30px;
    max-width: 900px;
    align-items: center;
    background: #f9f6f2;
    padding: 30px;
    border-radius: 12px;
}

.testimonial-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-text p {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 15px;
}

.testimonial-text h4 {
    margin-bottom: 5px;
}

.testimonial-text span {
    font-size: 0.85rem;
    color: #777;
}


/* ================= INTERESTS ================= */

.interests-section {
    background: var(--white);
    text-align: center;
}

.interests-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.interest img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    transition: 0.3s;
}

.interest img:hover {
    transform: scale(1.05);
}

.interest p {
    margin-top: 10px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {

    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }

    .interests-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .interests-container {
        grid-template-columns: 1fr;
    }
}