/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0d0d0d;
    color: #fff;
}

.gallery {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.gallery img {
  width: 200px;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}
html {
    scroll-behavior: smooth;
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: gold;
}

/* LOGO */
.logo {
    height: 50px;
    width: auto;
    max-width: 150px;
}

/* HERO */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

/* BRAND TEXT */
.top-text {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 65px;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 8px;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    text-shadow: 0px 0px 20px rgba(212, 175, 55, 0.5);
}

/* HERO TEXT */
.hero h1 {
    font-size: 50px;
    font-family: 'Playfair Display', serif;
}

.hero p {
    margin: 20px 0;
}

/* BUTTONS */
.btn {
    padding: 12px 25px;
    margin: 10px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
}

.gold {
    background: gold;
    color: black;
}

.outline {
    border: 2px solid gold;
    color: gold;
    background: transparent;
}

.btn:hover {
    transform: translateY(-5px);
}

/* SECTIONS */
section {
    padding: 70px 40px;
    text-align: center;
}

/* ✅ SERVICES (FIXED PRO VERSION) */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 15px;
    max-width: 900px;
    margin: auto;
    padding: 10px;
}

.service-card {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
}

/* 🔥 IMAGE SIZE CONTROL (MAIN FIX) */
.service-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    transition: 0.3s;
}

.service-card span {
    position: absolute;
    bottom: 8px;
    left: 8px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    background: rgba(0,0,0,0.6);
    padding: 4px 8px;
    border-radius: 6px;
}

.service-card:hover img {
    transform: scale(1.08);
}

/* PORTFOLIO */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 15px;
}

.gallery img {
    width: 100%;
    border-radius: 12px;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* TESTIMONIALS */
.testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.testimonial {
    background: #1a1a1a;
    padding: 20px;
    width: 300px;
    border-radius: 10px;
}

/* SOCIAL */
.social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social .btn {
    font-size: 18px;
    padding: 10px 20px;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    padding: 15px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
}

/* FOOTER */
footer {
    padding: 20px;
    background: #000;
    text-align: center;
}

/* SCROLL ANIMATION */
.fade {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s ease;
}

.fade.show {
    opacity: 1;
    transform: translateY(0);
}
/* HIGHLIGHTS SECTION (3 BUTTON CARDS) */
.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    max-width: 900px;
    margin: auto;
    padding: 10px;
}

.highlight-card {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
}

/* IMAGE SIZE CONTROL */
.highlight-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    transition: 0.3s;
}

/* TEXT */
.highlight-card span {
    position: absolute;
    bottom: 8px;
    left: 8px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    background: rgba(0,0,0,0.6);
    padding: 4px 8px;
    border-radius: 6px;
}

/* HOVER EFFECT */
.highlight-card:hover img {
    transform: scale(1.08);
}
body {
    font-family: 'Poppins', sans-serif;
    background: #fff7f8;   /* soft pink-white */
    color: #222;
}
nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav a {
    color: #222;
}

nav a:hover {
    color: #ff4d6d;
}
.service-card,
.highlight-card {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
header {
  display: flex;
  align-items: center;   /* vertical center */
  height: 100px;         /* adjust height */
  padding: 0 20px;
}
footer {
    margin-bottom: 0;
}

section:last-of-type {
    padding-bottom: 20px;
}