/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

/* Animation Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-in.animate {
  opacity: 1;
  transform: scale(1);
}

.stagger-delay-1 { transition-delay: 0.1s; }
.stagger-delay-2 { transition-delay: 0.2s; }
.stagger-delay-3 { transition-delay: 0.3s; }
.stagger-delay-4 { transition-delay: 0.4s; }
.stagger-delay-5 { transition-delay: 0.5s; }
.stagger-delay-6 { transition-delay: 0.6s; }
/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.logo:hover .logo-img {
  transform: rotate(5deg);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  background: linear-gradient(135deg, #333, #C8860D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: #C8860D;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #C8860D, #E6A623);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.contact-btn {
  background: linear-gradient(135deg, #C8860D, #E6A623);
  color: white;
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.contact-btn:hover {
  background: linear-gradient(135deg, #E6A623, #C8860D);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 134, 13, 0.4);
}

.contact-btn:hover::before {
  left: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Apply the animation here */
  animation: zoomIn 8s ease-out forwards;
}

/* Define the animation steps */
@keyframes zoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

/* You no longer need the :hover rule */
/*
.hero:hover .hero-image {
  transform: scale(1.05);
}
*/

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  z-index: -1;
}

.hero-content {
  max-width: 600px;
  color: white;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-btn {
  background: linear-gradient(135deg, #C8860D, #E6A623);
  color: white;
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.hero-btn:hover {
  background: linear-gradient(135deg, #E6A623, #C8860D);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(200, 134, 13, 0.5);
}

.hero-btn:hover::before {
  left: 100%;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f3f0ef, #ffffff);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #C8860D, #E6A623);

  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}



.feature-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
  color: #C8860D;
}

.feature-desc {
  color: #666;
  line-height: 1.7;
}

/* About Section */
.about {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ffffff, #f3f0ef);
}

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

.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.about-img:hover {
  transform: scale(1.02) rotate(1deg);
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, #C8860D, #E6A623);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  position: relative;
}

.section-tag::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #C8860D, #E6A623);
  border-radius: 1px;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: #333;
  background: linear-gradient(135deg, #333, #555);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-desc {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-stats {
  margin: 2rem 0;
}

.stat-card {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  padding: 1.5rem;
  border-radius: 15px;
  border-left: 4px solid #C8860D;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateX(10px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #C8860D, #E6A623);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  line-height: 1.2;
}

.about-btn {
  background: linear-gradient(135deg, #C8860D, #E6A623);
  color: white;
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.about-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.about-btn:hover {
  background: linear-gradient(135deg, #E6A623, #C8860D);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 134, 13, 0.4);
}

.about-btn:hover::before {
  left: 100%;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f3f0ef, #ffffff);
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 1rem;
  color: #333;
  line-height: 1.3;
  background: linear-gradient(135deg, #333, #555);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #C8860D, #E6A623);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: #C8860D;
}

.service-desc {
  color: #666;
  line-height: 1.7;
}

/* Why Choose Us Section */
.why-choose {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ffffff, #f3f0ef);
}

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

.why-choose-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: #333;
  background: linear-gradient(135deg, #333, #555);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-choose-desc {
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.why-choose-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.choose-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.choose-feature:hover {
  background: rgba(200, 134, 13, 0.05);
  transform: translateX(10px);
}

.choose-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #C8860D;
  transition: all 0.3s ease;
}

.choose-feature:hover .choose-icon {
  background: linear-gradient(135deg, #C8860D, #E6A623);
  transform: scale(1.1);
}

.choose-feature:hover .choose-icon svg {
  stroke: white;
}

.choose-text h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
  transition: color 0.3s ease;
}

.choose-feature:hover .choose-text h4 {
  color: #C8860D;
}

.choose-text p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.why-choose-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.why-choose-image img:hover {
  transform: scale(1.02) rotate(-1deg);
}

/* Projects Section */
.projects {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f3f0ef, #ffffff);
}

.projects-header {
  text-align: center;
  margin-bottom: 1rem;
}

.projects-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 1rem;
  color: #333;
  line-height: 1.3;
  background: linear-gradient(135deg, #333, #555);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.projects-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
}

.projects-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.projects-nav-link {
  display: block;
  padding: 1rem 1.5rem;
  background: white;
  color: #333;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.projects-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #C8860D, #E6A623);
  transition: left 0.3s ease;
  z-index: -1;
}

.projects-nav-link:hover,
.projects-nav-link.active {
  background: linear-gradient(135deg, #C8860D, #E6A623);
  color: white;
  box-shadow: 0 8px 25px rgba(200, 134, 13, 0.3);
}
@media (min-width: 615px) {
 .projects-nav-link.active {
  transform: translateX(8px);
}

}
@media (min-width: 440px) {
 .projects-nav-link.active {
  margin-top: 10px;
  margin-bottom: 10px;
}

}
.projects-nav-link:hover::before,
.projects-nav-link.active::before {
  left: 0;
}

.project-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.project-featured:hover {
  transform: translateY(-5px);
}

.project-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.5s ease;
}

.project-featured:hover .project-image {
  transform: scale(1.05);
}

.project-info h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
  background: linear-gradient(135deg, #333, #555);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.project-info p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.project-btn {
  background: linear-gradient(135deg, #C8860D, #E6A623);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

.project-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.project-btn:hover {
  background: linear-gradient(135deg, #E6A623, #C8860D);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 134, 13, 0.4);
}

.project-btn:hover::before {
  left: 100%;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ffffff, #f3f0ef);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: #333;
  background: linear-gradient(135deg, #333, #555);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-desc {
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;

  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(200, 134, 13, 0.05);
  transform: translateX(10px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #C8860D;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: linear-gradient(135deg, #C8860D, #E6A623);
  transform: scale(1.1);
}

.contact-item:hover .contact-icon svg {
  stroke: white;
}

.form {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-input,
.form-select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: #C8860D;
  box-shadow: 0 0 0 3px rgba(200, 134, 13, 0.1);
  transform: translateY(-2px);
}

.form-textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  min-height: 120px;
  resize: vertical;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-textarea:focus {
  outline: none;
  border-color: #C8860D;
  box-shadow: 0 0 0 3px rgba(200, 134, 13, 0.1);
  transform: translateY(-2px);
}

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, #C8860D, #E6A623);
  color: white;
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.form-submit:hover {
  background: linear-gradient(135deg, #E6A623, #C8860D);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 134, 13, 0.4);
}

.form-submit:hover::before {
  left: 100%;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #333, #222);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #C8860D, #E6A623);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 0.5rem;
  color: #ccc;
  transition: transform 0.3s ease;
}

.footer-list li:hover {
  transform: translateX(5px);
}

.footer-list a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: #C8860D;
}

.newsletter-desc {
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem;
  border: 2px solid #555;
  border-radius: 5px;
  background-color: #444;
  color: white;
  font-family: inherit;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: #999;
}

.newsletter-input:focus {
  outline: none;
  border-color: #C8860D;
  box-shadow: 0 0 0 3px rgba(200, 134, 13, 0.2);
}
.newsletter-btn {
  background: linear-gradient(135deg, #C8860D, #E6A623);
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.newsletter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.newsletter-btn:hover {
  background: linear-gradient(135deg, #E6A623, #C8860D);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(200, 134, 13, 0.3);
}

.newsletter-btn:hover::before {
  left: 100%;
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #999;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: #999;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 5px;
}

.social-link:hover {
  color: #C8860D;
  background: rgba(200, 134, 13, 0.1);
  transform: translateY(-2px);
}
@media (min-width: 1130px) {
  .containerx section>div:not(.hero-bg){
    padding-right: 50px;
    padding-left: 50px;
  }
    header {
    padding-right: 50px;
    padding-left: 50px;
  }
}

/* Responsive Design */
@media (max-width: 1130px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .nav {
    display: none;
  }
  
  .contact-btn {
    display: none;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .about-wrapper,
  .why-choose-wrapper,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .projects-wrapper {
    grid-template-columns: 1fr;
  }
  
  .projects-nav-list {
    flex-direction: row;
    overflow-x: auto;
    gap: 0.5rem;
  }
  
  .projects-nav-link {
    white-space: nowrap;
    padding: 0.75rem 1rem;
  }
  
  .project-featured {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .about-title,
  .why-choose-title,
  .services-title,
  .projects-title,
  .contact-title {
    font-size: 1.8rem;
  }
  
  .features-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card,
  .service-card {
    padding: 2rem 1.5rem;
  }
}


/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus {
  outline: 2px solid #C8860D;
  outline-offset: 2px;
}

button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #C8860D;
  outline-offset: 2px;
}