
   * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --primary-color: #8B4513; /* SaddleBrown */
  --secondary-color: #CD853F; /* Peru */
  --dark-color: #2C1A0A; /* Very dark brown */
  --light-color: #F5F5DC; /* Beige */
  --text-color: #D2B48C; /* Tan */
  --accent-color: #A0522D; /* Sienna */
  --bg-color: #3A2817; /* Dark brown background */
  --card-bg: #4A3621; /* Slightly lighter brown for cards */
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--light-color);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.text-center {
  text-align: center;
}

/* Header & Navigation */
.header {
  background-color: var(--dark-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light-color);
}

.logo i {
  color: var(--secondary-color);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  color: var(--text-color);
}

.nav-link:hover {
  color: var(--secondary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  bottom: -5px;
  left: 0;
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--light-color);
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(43, 20, 8, 0.85), rgba(79, 39, 17, 0.9)), url('/api/placeholder/1200/800') no-repeat center center/cover;
  display: flex;
  align-items: center;
  color: var(--light-color);
  margin-top: 0;
  padding-top: 0;
}

.hero-content {
  max-width: 700px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

/* Hero Section Animation */
.hero.section {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.5s ease-out forwards;
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #5D4037, #8D6E63);
  color: var(--light-color);
  position: relative;
  overflow: hidden;
}

/* Floating Animation for a Dynamic Feel */
.hero-title {
  animation: float 3s ease-in-out infinite;
}

/* Glowing Pulse Effect */
.hero.section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background: rgba(205, 133, 63, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2.5s infinite;
}

/* Keyframes for Hero Section */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating Text Effect */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Glowing Pulse Effect */
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
}

/* Services Section */
.services {
  background-color: var(--bg-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  text-align: center;
  background-color: var(--card-bg);
  color: var(--text-color);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid var(--secondary-color);
}

.service-icon {
  color: var(--secondary-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--light-color);
}

/* Contact Section */
.testimonials {
  background-color: var(--bg-color);
}

/* From Uiverse.io by vinodjangid07 */
/* From Uiverse.io by PauloRFJ */
.cardx {
  width: fit-content;
  height: fit-content;
  background-color: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 25px;
  gap: 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  border-radius: 8px;
}

/* for all social containers*/
.socialContainer {
  width: 40px;
  height: 50px;
  background-color: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition-duration: 1.2s;
  border-radius: 15px 0 15px 0px;
}

/* instagram*/
.containerOne:hover {
  background-color: #d62976;
  transition-duration: 1.2s;
}

/* twitter*/
.containerTwo:hover {
  background-color: #00acee;
  transition-duration: 1.2s;
}

/* linkdin*/
.containerThree:hover {
  background-color: #0072b1;
  transition-duration: 1.2s;
}

/* Whatsapp*/
.containerFour:hover {
  background-color: var(--secondary-color);
  transition-duration: 1.2s;
}

.socialContainer:active {
  transform: scale(0.9);
  transition-duration: 1.2s;
}

.socialSvg {
  width: 17px;
}

.socialSvg path {
  fill: rgb(255, 255, 255);
}

.socialContainer:hover .socialSvg {
  animation: slide-in-top 1.2s both;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Media Queries */
@media (max-width: 991px) {
  .container {
    padding: 0 2rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 4.5rem;
    left: -100%;
    width: 100%;
    height: calc(100vh - 4.5rem);
    background-color: var(--dark-color);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: var(--transition);
  }
  
  .nav-links.show {
    left: 0;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}
