/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #000;
  color: #fff;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  position: fixed;
  top: 0;        
  left: 0;      
  width: 100%;
  z-index: 1000;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(8px);
}

/* LOGO IMAGE FIX */
.logo img {
  height: 55px;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  padding-top: 10px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.nav-links a:hover {
  color: gold;
}

/* CONTACT BUTTON */
.contact-btn {
  background: linear-gradient(to right, #B8962E, #D4AF37, #F6E27A);
  color: black !important;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: bold;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  min-height: 90vh; /* 🔥 height flexible */
  width: 100%;
  overflow: hidden;
  background: black;
  display: flex;
  align-items: center;
}

/* BACKGROUND IMAGE */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* 🔥 KEY FIX */
  object-position: right center; 
  opacity: 0.9;
}
/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, black 40%, rgba(0,0,0,0.8), transparent);
}

/* GLOW EFFECTS */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.glow-right {
  top: -100px;
  right: -100px;
  width: 420px;
  height: 420px;
  background: rgba(212,175,55,0.25);
}

.glow-left {
  left: -100px;
  top: 20%;
  width: 350px;
  height: 350px;
  background: rgba(246,226,122,0.1);
}

/* CONTAINER */
.hero-container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: auto;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 60px;
}

/* CONTENT */
.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.gold-text {
  background: linear-gradient(to right, #B8962E, #D4AF37, #F6E27A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  color: #aaa;
  font-size: 17px;
  margin-top: 10px;
  line-height: 1.6;
}

/* BUTTONS */
.buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap; /* 🔥 FIX */
}

.btn {
  padding: 12px 28px;
  border-radius: 30px;
  cursor: pointer;
  border: none;
  transition: 0.3s;
}

/* PRIMARY */
.primary {
  background: linear-gradient(to right, #B8962E, #D4AF37, #F6E27A);
  color: black;
  font-weight: bold;
}

.primary:hover {
  transform: scale(1.08);
}

/* OUTLINE */
.outline {
  border: 1px solid #D4AF37;
  color: white;
  background: transparent;
}

.outline:hover {
  background: #D4AF37;
  color: black;
}

/* BOTTOM GLOW */
.bottom-glow {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, rgba(212,175,55,0.25), transparent);
}

@media (max-width: 600px) {
  .hero-bg {
    object-position: center; /* 🔥 center for mobile */
  }
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 900px) {

  .hero-container {
    padding: 0 30px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 15px;
  }
}

/* MOBILE */
@media (max-width: 600px) {

  .hero {
    min-height: auto;
    padding: 100px 20px 60px; /* 🔥 spacing fix */
  }

  .hero-container {
    padding: 0;
    justify-content: center;
    text-align: center; /* 🔥 center content */
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 26px;
    line-height: 1.4;
  }

  .hero-content p {
    font-size: 14px;
  }

  /* BUTTON STACK */
  .buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 260px;
  }

  /* GLOW reduce */
  .glow-right,
  .glow-left {
    display: none;
  }
}
/* ================= SERVICES ================= */

.services {
  padding: 100px 60px;
  text-align: center;
}

.section-title {
  font-size: 48px;
  color: rgb(184, 150, 46);
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.card {
  background: #0a0a0a;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 30px 20px;
  transition: 0.3s;
}

.card:hover {
  border: 1px solid gold;
  transform: translateY(-6px);
}

/* .card.active {
  border: 1px solid gold;
  box-shadow: 0 0 20px rgba(212,175,55,0.2);
} */

/* ICON */
.icon svg {
  width: 40px;
  height: 40px;
  fill: url(#goldGradient);
  margin-bottom: 15px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 16px;
}

.card p {
  font-size: 14px;
  color: #aaa;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {

  .navbar {
    padding: 15px 20px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: black;
    flex-direction: column;
    width: 200px;
    display: none;
    padding: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .hero {
    height: auto;
    padding: 100px 20px 60px;
  }

  .hero-container {
    padding: 0 20px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .buttons {
    flex-direction: column;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ABOUT SECTION */
.about {
  background: #000;
}

/* CONTAINER */
.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.about-image {
  flex: 1;
  border: 1px solid gold;
  border-radius: 12px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 48px;
  color: rgb(184, 150, 46);
  margin-bottom: 20px;
}

.about-content p {
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 15px;
}

.second-text {
  margin-bottom: 25px;
}

/* FEATURES GRID */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 40px;
  margin-bottom: 30px;
}

/* FEATURE ITEM */
.feature {
  color: #ddd;
  font-size: 15px;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(to right, #B8962E, #D4AF37, #F6E27A);
  color: black;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.about-btn:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .about-container {
    flex-direction: column;
    gap: 40px;
  }

  .about {
    padding: 60px 20px;
  }

  .about-content h2 {
    font-size: 30px;
    text-align: center;
  }

  .about-content {
    text-align: center;
  }

  .about-features {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .about-btn {
    margin-top: 10px;
  }
}
/* FOOTER */
.sv-footer{
  background:#000;
  color:#fff;
  padding:60px 80px 20px;
  border-top:1px solid #FFD700;
}

/* CONTAINER */
.sv-footer-container{
  display:flex;
  justify-content:space-between;
  gap:40px;
  flex-wrap:wrap;
}

/* COLUMN */
.sv-footer-col{
  flex:1;
  min-width:200px;
}

/* HEADINGS */
.sv-footer-col h2,
.sv-footer-col h3{
  color: rgb(184, 150, 46);
  margin-bottom:15px;
}

/* LINKS */
.sv-footer-col ul{
  list-style:none;
}

.sv-footer-col ul li{
  margin-bottom:10px;
  color:#ccc;
}

.sv-footer-col ul li a{
  text-decoration:none;
  color:#ccc;
}

.sv-footer-col ul li a:hover{
  color: rgb(184, 150, 46);
}

/* CONTACT TEXT */
.sv-footer-col p{
  color:#ccc;
  margin-bottom:10px;
  font-size:14px;
}

.sv-footer-col i{
  color:rgb(184, 150, 46);
  margin-right:6px;
}

/* SOCIAL ICONS */
.sv-social{
  margin-top:20px;
}

.sv-social a{
  display:inline-flex;
  width:35px;
  height:35px;
  align-items:center;
  justify-content:center;
  border:1px solid  rgb(184, 150, 46);
  border-radius:50%;
  margin-right:10px;
  color: rgb(184, 150, 46);
  text-decoration:none;
  transition:0.3s;
}

.sv-social a:hover{
  background: rgb(184, 150, 46);
  color:#000;
}

/* BOTTOM */
.sv-footer-bottom{
  border-top:1px solid #333;
  margin-top:30px;
  padding-top:15px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}

.sv-footer-bottom p{
  color:#aaa;
  font-size:14px;
}

.sv-footer-links a{
  color:#aaa;
  text-decoration:none;
  margin-left:15px;
  font-size:14px;
}

.sv-footer-links a:hover{
  color:#FFD700;
}

/* RESPONSIVE */
@media(max-width:768px){

  .sv-footer{
    padding:40px 20px;
  }

  .sv-footer-container{
    flex-direction:column;
    gap:30px;
  }

  .sv-footer-bottom{
    flex-direction:column;
    gap:10px;
    text-align:center;
  }

  .sv-footer-links a{
    margin:0 10px;
  }

}




