:root {
  --gold: #e5b769;
  --dark: #1d2733;
  --darker: #1a1a1a;
  --text: #fff;
  --text-muted: rgba(255, 255, 255, 0.7);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
}

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

.gold {
  color: var(--gold);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(29, 39, 51, 0.95);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(229, 183, 105, 0.1);
  z-index: 50;
  transition: all 2s ease; 
  display: flex;
  align-items: center;

}
/* Shrink state when scrolling */
.header.scrolled .header-content {
  padding: 0.4rem 0;            /* Smaller padding */
}
.header.scrolled .nav a {
  font-size: 0.850rem;           /* Smaller padding */
}

.header.scrolled .btn-primary{
  padding: 0.65rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.header.scrolled .logo img {
  height: 2rem;
  width: auto;                       /* Smaller logo */
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 0;
}
.logo {
  height: 3rem;         /* This stays constant */
  display: flex;
  align-items: center;
}
.logo img {
    height: 100%;
  width: auto;
  object-fit: contain;
  transform: scale(2);      /* 🔥 Makes logo bigger */
  transform-origin: left center;  /* keeps alignment */
  transition: transform 0.3s ease;
}

.nav {
  display: none;
  gap: 3rem;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

.nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: var(--gold);
}

/* Buttons */
.btn-primary,
.btn-secondary {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: var(--gold);
  color: #1a1a1a;
  font-weight: 500;
}

.btn-primary:hover {
  background: rgba(229, 183, 105, 0.9);
}

.btn-secondary {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-secondary:hover {
  background: var(--gold);
  color: #1a1a1a;
}

/* Hero */
.hero {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background: var(--dark);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-left h1 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .hero-left h1 {
    font-size: 4.5rem;
  }
}

.hero-left p {
  font-size: 1.25rem;
  color: var(--text-muted);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-right img {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(229, 183, 105, 0.2);
  padding: 2rem;
  background: var(--darker);
}

/* About */
.about {
  background: var(--darker);
  padding: 5rem 1.5rem;
  text-align: center;
}

.about-circle {
  width: 4rem;
  height: 4rem;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 auto 2rem;
  position: relative;
}

.about-circle::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2rem;
  background: var(--darker);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about h2 {
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .about h2 {
    font-size: 3rem;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-grid p {
  color: var(--text-muted);
  font-size: 1.125rem;
}

.about p {
  padding-top: 1rem;
  color: var(--text-muted);
  font-size: 1.125rem;
}

/* Services */
.services {
  background: var(--dark);
  padding: 5rem 1.5rem;
}

.work h2,
.services h2,
.clients h2,
.testimonials h2 {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .work h2,
  .services h2,
  .clients h2,
  .testimonials h2 {
    font-size: 3rem;
  }
}

.subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 auto 4rem;
  font-size: 1.25rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: var(--darker);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(229, 183, 105, 0.1);
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-0.5rem);
  border-color: rgba(229, 183, 105, 0.3);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(229, 183, 105, 0.2);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}


.service-card:hover .service-icon {
  background-color: var(--primary-color);
}

.service-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-color);
}

.service-card:hover .service-icon svg {
  color: #1a1a1a;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: rgba(255, 255, 255, 0.6);
}

/* Why Choose Us */
.why-choose-us {
  background: var(--darker);
  padding: 5rem 1.5rem;
}

.why-choose-us h2 {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .why-choose-us h2 {
    font-size: 3rem;
  }
}


/* Clients */
.clients {
  background: var(--darker);
  padding: 5rem 1.5rem;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .clients-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.client-logo {
  background: var(--dark);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(229, 183, 105, 0.1);
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  max-height: 3rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.client-logo:hover img {
  opacity: 1;
}

/* Testimonials */
.testimonials {
  background: var(--dark);
  padding: 5rem 1.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  background: var(--darker);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(229, 183, 105, 0.1);
}

.testimonial p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.625;
}

.testimonial-author {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* Work Section */
.work {
  background: var(--darker);
  padding: 5rem 1.5rem;
}

.work-link {
  display: block;
  text-decoration: none;
  color: inherit;
  text-align: center;
}

.work-link h2 {
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .work-link h2 {
    font-size: 3rem;
  }
}

.work-box {
  max-width: 42rem;
  margin: 0 auto;
  background: var(--dark);
  border: 2px solid var(--gold);
  border-radius: 0.5rem;
  padding: 3rem;
  transition: all 0.3s;
}

.work-link:hover .work-box {
  box-shadow: 0 10px 30px rgba(229, 183, 105, 0.1);
  transform: scale(1.05);
}

.work-box p {
  font-size: 1.25rem;
  font-weight: 500;
}
.work-cta{
    padding-top: 2rem;   /* adjust value as you like */

   display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center; 

}
/* Contact */
.contact {
  background: var(--darker);
  padding: 5rem 1.5rem;
}

.contact h2 {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .contact h2 {
    font-size: 3rem;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 56rem;
  margin: 4rem auto 0;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--text-white);
}


.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item strong {
  color: var(--text);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(229, 183, 105, 0.2);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-text {
  font-weight: 500;
  color: var(--text-white);
}


.contact-text-w {
  font-weight: 500;
  color: var(--text-white);
  cursor: pointer;
}

.tooltip {
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}




.contact-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}


.contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-color);
}

.contact-form {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(229, 183, 105, 0.2);
  padding: 2rem;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  background: var(--darker);
  border: 1px solid rgba(229, 183, 105, 0.1);
  border-radius: 0.375rem;
  padding: 1rem;
  color: var(--text);
  font-size: 1rem;
  transition: all 0.3s;
  font-family: inherit;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #e5b769;
  --dark-bg: #1d2733;
  --darker-bg: #1a1a1a;
  --text-white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --text-lighter: rgba(255, 255, 255, 0.6);
  --border-color: rgba(229, 183, 105, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-white);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Responsive grid */
.grid {
  display: grid;
}

.grid.lg\:grid-cols-2 {
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .grid.lg\:grid-cols-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.grid.md\:grid-cols-2 {
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid.md\:grid-cols-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.grid.md\:grid-cols-3 {
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid.md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid.lg\:grid-cols-3 {
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .grid.lg\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid.lg\:col-span-2 {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .grid.lg\:col-span-2 {
    grid-column: span 2;
  }
}

.grid.md\:grid-cols-4 {
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid.md\:grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid.md\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid.grid-cols-2 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid.grid-cols-2 {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Spacing utilities */
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.p-8 {
  padding: 2rem;
}
.p-6 {
  padding: 1.5rem;
}
.pb-20 {
  padding-bottom: 5rem;
}
.pt-32 {
  padding-top: 8rem;
}
.pb-16 {
  padding-bottom: 4rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pl-12 {
  padding-left: 3rem;
}
.pr-4 {
  padding-right: 1rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* Margin utilities */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-8 {
  margin-top: 2rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mt-3 {
  margin-top: 0.75rem;
}

/* Flexbox utilities */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-grow {
  flex-grow: 1;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.space-x-4 > * + * {
  margin-left: 1rem;
}
.space-x-8 > * + * {
  margin-left: 2rem;
}
.space-x-12 > * + * {
  margin-left: 3rem;
}
.space-y-4 > * + * {
  margin-top: 1rem;
}
.space-y-6 > * + * {
  margin-top: 1.5rem;
}
.space-y-8 > * + * {
  margin-top: 2rem;
}
.space-y-2 > * + * {
  margin-top: 0.5rem;
}

/* Text utilities */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-white {
  color: var(--text-white);
}
.text-white-70 {
  color: rgba(255, 255, 255, 0.7);
}
.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}
.text-white-60 {
  color: rgba(255, 255, 255, 0.6);
}
.text-white-50 {
  color: rgba(255, 255, 255, 0.5);
}
.text-gold {
  color: #e5b769;
}
.text-sm {
  font-size: 0.875rem;
}
.text-xs {
  font-size: 0.75rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-2xl {
  font-size: 1.5rem;
}
.text-3xl {
  font-size: 1.875rem;
}
.text-4xl {
  font-size: 2.25rem;
}
.text-5xl {
  font-size: 3rem;
}
.text-6xl {
  font-size: 3.75rem;
}
.text-7xl {
  font-size: 4.5rem;
}
.font-light {
  font-weight: 300;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.leading-relaxed {
  line-height: 1.625;
}
.leading-tight {
  line-height: 1.25;
}

/* Background utilities */
.bg-dark {
  background-color: #1d2733;
}
.bg-darker {
  background-color: #1a1a1a;
}
.bg-gold {
  background-color: #e5b769;
}
.bg-gold-20 {
  background-color: rgba(229, 183, 105, 0.2);
}
.bg-gold-10 {
  background-color: rgba(229, 183, 105, 0.1);
}
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.from-gold-20 {
  --tw-gradient-from: rgba(229, 183, 105, 0.2);
}
.to-transparent {
  --tw-gradient-to: transparent;
}

/* Border utilities */
.border {
  border: 1px solid var(--border-color);
}
.border-t {
  border-top: 1px solid var(--border-color);
}
.border-y {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.border-b {
  border-bottom: 1px solid var(--border-color);
}
.border-gold-10 {
  border-color: rgba(229, 183, 105, 0.1);
}
.border-gold-20 {
  border-color: rgba(229, 183, 105, 0.2);
}
.border-gold-30 {
  border-color: rgba(229, 183, 105, 0.3);
}
.border-gold {
  border-color: #e5b769;
}

/* Rounded utilities */
.rounded {
  border-radius: 0.25rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-l-md {
  border-bottom-left-radius: 0.375rem;
  border-top-left-radius: 0.375rem;
}
.rounded-r-md {
  border-bottom-right-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}
.rounded-r-none {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.rounded-l-none {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

/* Position utilities */
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.top-0 {
  top: 0;
}
.inset-0 {
  inset: 0;
}
.bottom-6 {
  bottom: 1.5rem;
}
.left-6 {
  left: 1.5rem;
}
.left-4 {
  left: 1rem;
}
.right-6 {
  right: 1.5rem;
}
.top-4 {
  top: 1rem;
}
.top-6 {
  top: 1.5rem;
}
.bottom-4 {
  bottom: 1rem;
}
.z-50 {
  z-index: 50;
}
.z-10 {
  z-index: 10;
}

/* Width/Height utilities */
.w-full {
  width: 100%;
}
.w-auto {
  width: auto;
}
.w-12 {
  width: 3rem;
}
.w-10 {
  width: 2.5rem;
}
.w-8 {
  width: 2rem;
}
.w-4 {
  width: 1rem;
}
.w-3 {
  width: 0.75rem;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.h-full {
  height: 100%;
}
.h-12 {
  height: 3rem;
}
.h-10 {
  height: 2.5rem;
}
.h-8 {
  height: 2rem;
}
.h-4 {
  height: 1rem;
}
.h-3 {
  height: 0.75rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-auto {
  height: auto;
}
.max-w-xl {
  max-width: 36rem;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-lg {
  max-width: 32rem;
}
.min-h-screen {
  min-height: 100vh;
}

/* Aspect ratio */
.aspect-square {
  aspect-ratio: 1;
}

.aspect-video {
  aspect-ratio: 16 / 9;
}

/* Opacity utilities */
.opacity-20 {
  opacity: 0.2;
}
.opacity-70 {
  opacity: 0.7;
}
.opacity-100 {
  opacity: 1;
}
.opacity-0 {
  opacity: 0;
}

/* Overflow utilities */
.overflow-hidden {
  overflow: hidden;
}

/* Display utilities */
.hidden {
  display: none;
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }
  .md\:block {
    display: block;
  }
  .md\:hidden {
    display: none;
  }
  .md\:grid {
    display: grid;
  }
  .md\:space-y-0 > * + * {
    margin-top: 0;
  }
  .md\:p-10 {
    padding: 2.5rem;
  }
  .md\:p-12 {
    padding: 3rem;
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:text-6xl {
    font-size: 3.75rem;
  }
  .md\:text-5xl {
    font-size: 3rem;
  }
  .md\:text-3xl {
    font-size: 1.875rem;
  }
}

@media (max-width: 767px) {
  .md\:hidden {
    display: none;
  }
}

/* Transform utilities */
.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:-translate-y-2:hover {
  transform: translateY(-0.5rem);
}

.group-hover\:scale-105:hover {
  transform: scale(1.05);
}

.group-hover\:translate-x-1:hover {
  transform: translateX(0.25rem);
}

.group-hover\:-translate-y-2:hover {
  transform: translateY(-0.5rem);
}

.group-hover\:text-gold:hover {
  color: #e5b769;
}

.group-hover\:bg-gold:hover {
  background-color: #e5b769;
}

.group-hover\:text-dark:hover {
  color: #1a1a1a;
}

.group-hover\:border-gold-30:hover {
  border-color: rgba(229, 183, 105, 0.3);
}

.group-hover\:opacity-100:hover {
  opacity: 1;
}

.hover\:text-gold:hover {
  color: #e5b769;
}

.hover\:bg-gold:hover {
  background-color: #e5b769;
}

.hover\:bg-gold-90:hover {
  background-color: rgba(229, 183, 105, 0.9);
}

.hover\:text-dark:hover {
  color: #1a1a1a;
}

.hover\:underline:hover {
  text-decoration: underline;
}

.hover\:border-gold:hover {
  border-color: #e5b769;
}

.hover\:opacity-100:hover {
  opacity: 1;
}

/* Transition utilities */
.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-150 {
  transition-duration: 150ms;
}

/* Input/Form utilities */
input[type="text"],
input[type="email"],
textarea {
  font-family: inherit;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

/* Scroll snap */
html {
  scroll-behavior: smooth;
}

/* Backdrop blur */
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

/* Blur utilities */
.blur-3xl {
  filter: blur(64px);
}

.blur-2xl {
  filter: blur(40px);
}

/* Specific styling */
header {
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

button {
  transition: all 0.2s ease;
}

a {
  text-decoration: none;
}

img {
  display: block;
}

/* Responsive design */
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .pt-32 {
    padding-top: 6rem;
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(229, 183, 105, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(229, 183, 105, 0.5);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  
}

/* Footer */
.footer {
  background: var(--darker);
  border-top: 1px solid rgba(229, 183, 105, 0.1);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer p {
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

/* Blog */
.blog-hero {
  background: var(--darker);
  padding: 8rem 1.5rem 4rem;
  margin-top: 4rem;
  text-align: center;
}

.blog-hero h1 {
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .blog-hero h1 {
    font-size: 3.75rem;
  }
}

.blog-hero p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.25rem;
}

.search-input {
  width: 100%;
  max-width: 32rem;
  background: var(--dark);
  border: 1px solid rgba(229, 183, 105, 0.2);
  color: var(--text);
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: all 0.3s;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.search-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(29, 39, 51, 0.7);
}

/* Blog Categories */
.blog-categories {
  background: var(--dark);
  border-top: 1px solid rgba(229, 183, 105, 0.1);
  border-bottom: 1px solid rgba(229, 183, 105, 0.1);
  padding: 2rem 1.5rem;
}

.category-btn {
  border: 1px solid rgba(229, 183, 105, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s;
  margin-right: 1rem;
}

.category-btn:hover,
.category-btn.active {
  border-color: var(--gold);
  color: var(--gold);
}

/* Featured Article */
.featured-article {
  background: var(--dark);
  padding: 4rem 1.5rem;
}

.featured-article h2 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.featured-post {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: var(--darker);
  border-radius: 1rem;
  border: 1px solid rgba(229, 183, 105, 0.1);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .featured-post {
    grid-template-columns: 1fr 1fr;
  }
}

.featured-post:hover {
  border-color: rgba(229, 183, 105, 0.3);
}

.featured-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.featured-content {
  padding: 2rem;
  position: relative;
}

.badge {
  background: var(--gold);
  color: #1a1a1a;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1rem;
}

.featured-content h3 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

.featured-post:hover h3 {
  color: var(--gold);
}

.featured-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.featured-content .meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.featured-content .author {
  color: rgba(255, 255, 255, 0.8);
}

/* Blog Posts */
.blog-posts {
  background: var(--darker);
  padding: 4rem 1.5rem;
}

.blog-posts h2 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 3rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: var(--dark);
  border-radius: 1rem;
  border: 1px solid rgba(229, 183, 105, 0.1);
  overflow: hidden;
  transition: all 0.3s;
}

.blog-card:hover {
  border-color: rgba(229, 183, 105, 0.3);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-card:hover img {
  transform: scale(1.05);
}

.blog-card .category {
  display: inline-block;
  background: rgba(229, 183, 105, 0.2);
  color: var(--gold);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  margin: 1rem;
  margin-bottom: 0;
}

.blog-card h3 {
  padding: 0 1rem;
  margin-top: 0.5rem;
  font-size: 1.125rem;
  font-weight: 500;
}

.blog-card:hover h3 {
  color: var(--gold);
}

.blog-card p {
  padding: 0 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.blog-card .meta {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(229, 183, 105, 0.1);
}

/* Newsletter */
.newsletter {
  background: var(--dark);
  padding: 4rem 1.5rem;
  text-align: center;
}

.newsletter h2 {
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.newsletter p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 42rem;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  background: var(--darker);
  border: 1px solid rgba(229, 183, 105, 0.1);
  color: var(--text);
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.3s;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
}



.filters {
  background: var(--dark);
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(229, 183, 105, 0.1);
  border-bottom: 1px solid rgba(229, 183, 105, 0.1);
}

.filter-btn {
  border: 1px solid rgba(229, 183, 105, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s;
  margin: 0 0.5rem 1rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: #1a1a1a;
  border-color: var(--gold);
}

.featured-project {
  background: var(--dark);
  padding: 4rem 1.5rem;
}

.featured-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: var(--darker);
  border-radius: 1rem;
  border: 1px solid rgba(229, 183, 105, 0.1);
  overflow: hidden;
}

@media (min-width: 768px) {
  .featured-box {
    grid-template-columns: 1fr 1fr;
  }
}

.featured-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.featured-content {
  padding: 2rem;
}

.featured-content h2 {
  font-size: 1.875rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.featured-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.label {
  background: var(--gold);
  color: #1a1a1a;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  display: inline-block;
}

.services-tags {
  margin-bottom: 1.5rem;
}

.services-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.services-list {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.service-tag {
  background: rgba(229, 183, 105, 0.1);
  color: var(--gold);
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

.view-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.875rem;
  transition: opacity 0.3s;
}

.view-link:hover {
  text-decoration: underline;
}

.projects {
  background: var(--darker);
  padding: 4rem 1.5rem;
}

.projects h2 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 3rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  text-decoration: none;
  color: inherit;
  display: block;
  height: 250px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.project-card:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s;
  text-align: center;
}

.project-card:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.overlay p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Update features-grid to show 3 columns */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--dark);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(229, 183, 105, 0.1);
  text-align: center;
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-0.5rem);
  border-color: rgba(229, 183, 105, 0.3);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1); /* slightly bigger */
  filter: drop-shadow(0 0 15px #e5b769)
        drop-shadow(0 0 20px #e5b769);
  transition: all 1s ease; /* smooth glow */
}

.feature-icon {
  font-size: 3rem;
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1rem;   /* centers block horizontally */
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;        /* avoids text shifting */
  color: #e5b769;
}

.feature-icon svg,
.feature-icon img {
  width: 70%;
  height: 70%;
  display: block;
}

.feature-icon:hover {
 filter: drop-shadow(0 0 8px #e5b769)
          drop-shadow(0 0 12px #e5b769)
          drop-shadow(0 0 16px #e5b769);
  transform: scale(1.1); /* optional: make it slightly bigger */}

.feature-card h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}
/* Our Process */
.our-process {
  background: var(--dark);
  padding: 5rem 1.5rem;
  position: relative;
}

.process-header h2 {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .process-header h2 {
    font-size: 3rem;
  }
}

/* Creative hexagonal process grid layout */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 4rem auto 0;
  position: relative;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Creative process cards with hexagonal feel */
.process-card {
  background: linear-gradient(135deg, rgba(229, 183, 105, 0.05), rgba(26, 26, 26, 0.3));
  border: 2px solid rgba(229, 183, 105, 0.2);
  border-radius: 1.5rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-card:hover {
  border-color: rgba(229, 183, 105, 0.6);
  background: linear-gradient(135deg, rgba(229, 183, 105, 0.15), rgba(26, 26, 26, 0.5));
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(229, 183, 105, 0.15), inset 0 0 20px rgba(229, 183, 105, 0.05);
}

/* Numbered cards for visual flow */
.card-number {
  font-size: 3.5rem;
  font-weight: 200;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: -0.05em;
}

.card-content {
  flex: 1;
}

.process-card h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.process-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Animated connectors between cards */
/* .connector {
  position: absolute;
  background: linear-gradient(90deg, rgba(229, 183, 105, 0), rgba(229, 183, 105, 0.3), rgba(229, 183, 105, 0));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.process-card:hover .connector {
  opacity: 1;
}

.connector-1,
.connector-2,
.connector-3,
.connector-4,
.connector-5 {
  width: 2px;
  height: 40px;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 1024px) {
  .connector-1,
  .connector-3,
  .connector-5 {
    width: 40px;
    height: 2px;
    bottom: 50%;
    left: 100%;
    transform: translateY(50%);
  }

  .connector-2,
  .connector-4 {
    width: 2px;
    height: 40px;
  }
}*/

/* Center focal point highlighting "Your Success" */
.process-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  display: none;
}

@media (min-width: 1024px) {
  .process-center {
    display: block;
  }
}

.center-circle {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(229, 183, 105, 0.2), rgba(229, 183, 105, 0.05));
  border: 2px solid rgba(229, 183, 105, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  color: var(--gold);
  animation: pulse-glow 3s ease-in-out infinite;
  backdrop-filter: blur(4px);
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(229, 183, 105, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(229, 183, 105, 0.4);
  }
}

/* Responsive staggered animation for cards */
.process-card-1 {
  animation: slideIn 0.5s ease-out 0.1s both;
}
.process-card-2 {
  animation: slideIn 0.5s ease-out 0.2s both;
}
.process-card-3 {
  animation: slideIn 0.5s ease-out 0.3s both;
}
.process-card-4 {
  animation: slideIn 0.5s ease-out 0.4s both;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.process-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
  }
}

.timeline-line {
  position: absolute;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

@media (min-width: 1024px) {
  .timeline-line {
    display: block;
  }
}

.process-step {
  background: var(--darker);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(229, 183, 105, 0.1);
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.process-step:hover {
  transform: translateY(-0.5rem);
  border-color: rgba(229, 183, 105, 0.3);
  box-shadow: 0 10px 30px rgba(229, 183, 105, 0.1);
}

.step-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--gold);
  color: #1a1a1a;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.process-step:hover .step-circle {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(229, 183, 105, 0.4);
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.process-step p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.follow-icon {
  width: 2.2rem;
  height: 2.2rem;
  background-color: rgba(229, 183, 105, 0.2);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.follow-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--primary-color);
}


dialog {
  background-color:#1d2733;
  position: fixed; 
  margin: auto;
  border: none;
  border-radius: 12px;
  padding: 1.5rem;
  width: 600px;
  max-width: 90vw;
}


dialog::backdrop {
  background: rgba(0,0,0,.5);
}
.terms{
  display: block;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}
.terms h3 {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-white);
}
.terms h4 {
  font-size: 1rem;
  font-weight: 350;
  color: var(--text-white);
}
.terms h2 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-white);
}
.terms ul {
  list-style: none;
  padding-left: 1.5rem;
  margin-left: 0;
}

.terms a {
  color:#e5b769;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}