* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}
html{
    scroll-behavior: smooth;
}
body {
  color: #111;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* NAVBAR */
.navbar {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  width: 150px;
  height: 50px;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

nav a:hover {
  color: #0077b6;
}

.banner-carousel {
  position: relative;
  overflow: hidden;
  min-height: 50vh;
}

.slides {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.banner-content {
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  padding: 40px 50px;
  border-radius: 8px;
}
.banner {
  background-image: url('images/banner1.jpeg');
  color: #fff;
  background-size: contain;
  background-repeat: no-repeat;
  min-height: 60vh;
  max-width: 100%;
  display: flex;
  align-items: center;
  text-align: center;
}
.banner2 {
  background-image: url('images/banner2\ .jpeg');
  color: #fff;
  background-size: contain;
  background-repeat: no-repeat;
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  max-width: 100%;
}

.banner-content h2 {
  font-size: 42px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.banner-content p {
  font-size: 18px;
}
/* =========================
   Default safety (all screens)
   ========================= */
.banner-content {
  max-width: 640px;
  margin: auto;
}

/* =========================
   Tablets & small laptops
   ========================= */
@media (max-width: 992px) {
  .banner-content {
    padding: 28px 32px;
    max-width: 560px;
  }

  .banner-content h2 {
    font-size: 32px;
  }

  .banner-content p {
    font-size: 16px;
  }
}

/* =========================
   Large phones / small tablets
   ========================= */
@media (max-width: 768px) {
  .banner-content {
    padding: 22px 26px;
    max-width: 480px;
  }

  .banner-content h2 {
    font-size: 26px;
    line-height: 1.25;
  }

  .banner-content p {
    font-size: 15px;
  }
}

/* =========================
   Phones ≤ 600px
   ========================= */
@media (max-width: 600px) {
  .banner-content {
    padding: 18px 22px;
    max-width: 420px;
  }

  .banner-content h2 {
    font-size: 22px;
  }

  .banner-content p {
    font-size: 14px;
  }
}

/* =========================
   Phones ≤ 480px
   ========================= */
@media (max-width: 480px) {
  .banner-content {
    padding: 14px 18px;
    max-width: 360px;
  }

  .banner-content h2 {
    font-size: 20px;
  }

  .banner-content p {
    font-size: 13px;
  }
}

/* =========================
   Small phones ≤ 400px
   ========================= */
@media (max-width: 400px) {
  .banner-content {
    padding: 10px 14px;
    max-width: 300px;
  }

  .banner-content h2 {
    font-size: 18px;
  }

  .banner-content p {
    font-size: 12px;
  }
}
/* =========================
   Large screens / desktops
   ========================= */
@media (min-width: 1200px) {
  .banner-carousel,
  .slide {
    min-height: 60vh;
  }
}
@media (min-width:992px) and (max-width:1150px) {
   .banner-carousel,
  .slide {
    min-height: 30vh;
  } 
}

/* =========================
   Laptops & tablets
   ========================= */
@media (max-width: 992px) {
  .banner-carousel,
  .slide {
    min-height: 60vh;
  }

  .banner,
  .banner2 {
    background-size: cover;
  }
}

/* =========================
   Tablets / large phones
   ========================= */
@media (max-width: 768px) {
  .banner-carousel,
  .slide {
    min-height: 55vh;
  }

  .banner,
  .banner2 {
    background-size: cover;
    background-position: center top;
  }
}

/* =========================
   Phones ≤ 600px
   ========================= */
@media (max-width: 600px) {
  .banner-carousel,
  .slide {
    min-height: 50vh;
  }

  .banner,
  .banner2 {
    background-size: cover;
    background-position: center;
  }
}

/* =========================
   Phones ≤ 480px
   ========================= */
@media (max-width: 480px) {
  .banner-carousel,
  .slide {
    min-height: 45vh;
  }
}

/* =========================
   Small phones ≤ 400px
   ========================= */
@media (max-width: 400px) {
  .banner-carousel,
  .slide {
    min-height: 40vh;
  }
}


.links a{ 
    text-decoration: none;
    color: white;
}
/* SERVICES */
.jewellery-portfolio {
  padding: 80px 20px;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

.tabs {
  text-align: center;
  margin-bottom: 30px;
}

.tab {
  padding: 12px 30px;
  margin: 0 8px;
  border: none;
  background: #ddd;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.tab.active,
.tab:hover {
  background: rgb(193, 144, 9);
  color: #000000;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.portfolio-item {
  background: #fff;
  padding: 15px;
  text-align: center;
  border-radius: 6px;
  display: none;
}

.portfolio-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
}

.portfolio-item h4 {
  margin-top: 15px;
  font-size: 18px;
}

/* Show default category */
.portfolio-item.gold {
  display: block;
}

/* FOOTER */
.site-footer {
  background: #0b132b;
  color: #ffffff;
  padding-top: 70px;
  font-size: 15px;
}

.footer-container {
  max-width: 1200px;
  justify-items: center;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  align-items: start;
}

/* Brand */
.footer-brand h3 {
  font-size: 22px;
  margin: 15px 0 5px;
}

.footer-brand p {
  color: #cbd5e1;
}

.footer-logo {
  width: 140px;
  margin-bottom: 10px;
}

/* Info */
.footer-info h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
}

.footer-info h4::after,
.footer-contact h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #ffb703;
  display: block;
  margin-top: 6px;
}
.footer-brand,
.footer-info,
.footer-contact {
  max-width: 280px;        /* equal content width */
}
.footer-info p {
  color: #e5e7eb;
  line-height: 1.7;
}

/* Contact */
.footer-contact p {
  margin-bottom: 10px;
  color: #e5e7eb;
}

.footer-contact i {
  color: #ffb703;
  margin-right: 10px;
}

/* Bottom bar */
.footer-bottom {
  margin-top: 60px;
  padding: 15px;
  text-align: center;
  background: #050a1a;
  font-size: 14px;
  color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-info h4::after,
  .footer-contact h4::after {
    margin-left: auto;
    margin-right: auto;
  }
}
.footer-info a {
  color: #e5e7eb;
  text-decoration: none;
}

.footer-info a:hover {
  color: #ffb703;
  text-decoration: underline;
}
/* POLICY PAGE BOX */
.policy-box {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 50px 45px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

/* Headings inside policy */
.policy-box h4 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 18px;
  color: #111;
}

/* Paragraph spacing */
.policy-box p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #444;
}

/* Mobile adjustment */
@media (max-width: 575px) {
  .policy-box {
    padding: 35px 25px;
  }
}
.home-btn{
  background-color: #0b132b;
  color: white;
  padding: 10px;
}
.home-btn:hover{
  background-color: white;
  color: #0b132b;
  border: 1px solid gray;
}
.policy-box {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 50px 45px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

/* Headings inside policy */
.policy-box h4 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 18px;
  color: #111;
}

/* Paragraph spacing */
.policy-box p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #444;
}

/* Mobile adjustment */
@media (max-width: 575px) {
  .policy-box {
    padding: 35px 25px;
  }
}
.home-btn{
  background-color: #0b132b;
  color: white;
  padding: 10px;
}
.home-btn:hover{
  background-color: white;
  color: #0b132b;
  border: 1px solid gray;
}

.services {
  padding: 80px 0;
  background: #f8fafc;
}
