/* Modify navbar */
.navbar {
    top: 0px;
}

.reset-navbar {
    height: 80px;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.btn-primary {
  background: #C29A4B;
  color: #1C1E21;
  border: 1px solid #C29A4B;
}

.btn-primary:hover {
  background: #A87D36;
  border-color: #A87D36;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(194,154,75,0.2);
}

.btn-outline {
  border: 1px solid #C29A4B;
  color: #C29A4B;
  background: transparent;
}

.btn-outline:hover {
  background: #C29A4B;
  color: #1C1E21;
  transform: translateY(-2px);
}

section {
  padding : 25px 0;
  border-bottom: 1px solid rgba(58, 58, 58, 0.05);
}

.section-title {
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 10px 0 25px 0;
  font-weight: bold;
  color: var(--text-color);
}

.section-subtitle {
  font-size: 1.1rem;
  color: #5B6F82;
  max-width: 700px;
  margin: 2rem auto;
  margin-bottom: 2rem;
  border-left: 3px solid var(--text-orange);
  padding-left: 5px;
  text-align: center;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 20px;
  color: var(--text-color);
}

.service-card {
  /* background: white; */
  border-radius: 28px;
  padding: 32px 28px;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.02);
  border: 1px solid #EDE8DF;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 35px -12px rgba(0,0,0,0.08);
  border-color: #C29A4B40;
}

.service-icon {
  font-size: 2.6rem;
  color: #C29A4B;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 600;
}

/* Projects with real images */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.project-card {
  border-radius: 10px;
  overflow: hidden;
  /* background: white; */
  transition: 0.25s ease;
  box-shadow: 0 12px 28px -8px rgba(0,0,0,0.05);
}

.project-img {
  height: 250px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

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

.project-content {
  padding: 24px 20px 28px;
}

.project-content h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.project-tag {
  color: #C29A4B;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: inline-block;
}

/* Philosophy section with image */
.philosophy-inner {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.philosophy-text {
  flex: 1.2;
}

.philosophy-text h2 {
  font-size: 2.4rem;
  margin-bottom: 24px;
}

.philosophy-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.philosophy-image {
  flex: 0.9;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
}

.philosophy-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s;
}

.philosophy-image:hover img {
  transform: scale(1.02);
}

.philosophy-quote {
  flex: 1;
  background: #ffffffaf;
  backdrop-filter: blur(4px);
  padding: 32px;
  border-radius: 40px;
  color: var(--background-color);
  border-left: 4px solid #C29A4B;
}

.philosophy-quote i {
  font-size: 2rem;
  color: #C29A4B;
  opacity: 0.6;
  margin-bottom: 16px;
  display: block;
}

.philosophy-quote p {
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 450;
}

