
  :root {
            --primary: #8B4513;
            --secondary: #D2691E;
            --accent: #FFD700;
            --light: #FFF8E1;
            --dark: #3E2723;
            --text: #5D4037;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            overflow-x: hidden;
            background-color: #fefefe;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        .navbar {
  height: 72px;
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #0d6efd;
  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}
.navbar {
  min-height: 72px;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    padding: 1rem 0;
  }

  .nav-link {
    padding: 12px 0;
    font-size: 1.05rem;
  }
}

        
        .hero-section {
            background: linear-gradient(rgba(34, 31, 30, 0.85), rgba(33, 24, 23, 0.9)), url('img/bg/1.jpeg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            position: relative;
        }
        
        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }
        
        .hero-subtitle {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: var(--accent);
        }
        
        .section-title {
            color: var(--primary);
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--secondary);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .service-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            background-color: white;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            color: white;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .service-title {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .contact-info {
            background-color: var(--light);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            margin-right: 15px;
        }
        
        .footer {
            background-color: var(--dark);
            color: white;
            padding: 40px 0 20px;
        }
        
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(139, 69, 19, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(139, 69, 19, 0); }
            100% { box-shadow: 0 0 0 0 rgba(139, 69, 19, 0); }
        }
        
        .highlight-text {
            color: var(--secondary);
            font-weight: 600;
        }
        
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary) !important;
        }
        
        .nav-link {
            color: var(--text) !important;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .nav-link:hover {
            color: var(--primary) !important;
        }
        
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 10px 30px;
            font-weight: 500;
        }
        
        .btn-primary:hover {
            background-color: var(--secondary);
            border-color: var(--secondary);
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
        }
        .service-card {
  background: #fff;
  border-radius: 18px;
  height: 100%;
  transition: all 0.35s ease;
}

.service-img {
  overflow: hidden;
  border-radius: 14px;
}

.service-img img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.08);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.12);
}

@media (max-width: 767px) {
  .service-img img {
    height: 180px;
  }
}
.testimonial-slider {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-card {
  min-width: 100%;
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
  text-align: center;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-name {
  font-weight: 600;
  margin-bottom: 4px;
}

.testimonial-location {
  font-size: 0.9rem;
  color: #777;
}

/* Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #0d6efd;
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
}

.slider-btn.prev { left: -20px; }
.slider-btn.next { right: -20px; }

@media (max-width: 767px) {
  .testimonial-card {
    padding: 25px;
  }

  .slider-btn {
    display: none;
  }
}
.site-footer {
  background: #111;
  color: #ccc;
  padding: 60px 0 30px;
}

.footer-title {
  color: #fff;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #0d6efd;
}

.footer-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 22px;
  background: #0d6efd;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
  font-size: 0.85rem;
}

@media (max-width: 767px) {
  .site-footer {
    text-align: center;
  }

  .footer-btn {
    width: 100%;
    text-align: center;
  }
}

.logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-img {
        height: 55px;
    }
}
.footer-logo {
    height: 75px;
    width: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .footer-logo {
        height: 55px;
    }
}

.fix-icon {
	display: inline-block;
	position: fixed;
	bottom: 90px;
	left: 10px;
	z-index: 999999;
  }
  
  #fix-icon {
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-name: example;
	-webkit-animation: mover 1s infinite alternate;
	animation: mover 1s infinite alternate;
  }
  
  @-webkit-keyframes mover {
	0% {
	  transform: translateY(0);
	}
  
	100% {
	  transform: translateY(-20px);
	}
  }
  
  .fix-icon-item img {
	width: 55px !important;
	height: 55px !important;
	background:
	#001f3f;
	border-radius: 50%;
	text-align: center;
	cursor: pointer;
	padding: 10px;
  }
  
  .fix-icon-whataap {
	display: inline-block;
	position: fixed;
	bottom: 20px;
	left: 10px;
	z-index: 999999;
	transition: all0.5s ease-in-out;
	width: 55px !important;
	height: 55px !important;
  }
  
  .fix-icon-whataap-item img {
	border-radius: 50%;
	box-shadow: 1px 1px 4px rgba(60, 60, 60, .4);
	transition: box-shadow .2s;
	cursor: pointer;
	overflow: hidden;
	width: 55px !important;
	height: 55px !important;
	background:
	  #25d366 !important;
  }
  .page-title {
    color: #fff;
    font-weight: 700;
    font-size: 42px;
}

.breadcrumb-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.breadcrumb-wrapper {
    position: relative;
}

.breadcrumb-wrapper .container {
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: #fff;
}

.breadcrumb-item.active {
    color: #ddd;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 30px;
    }
    #text{
      text-align: start;
    }
}
.why-box {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.why-box:hover {
    transform: translateY(-6px);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: #060e3c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    margin: 0 auto 20px;
}

.section-subtitle {
    color: #ff2626;
    max-width: 600px;
    margin: 0 auto;
}
.client-box {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.client-number {
    font-size: 40px;
    font-weight: 700;
    color: #ff2626;
    margin-bottom: 8px;
}

.client-box p {
    font-weight: 500;
    color: #555;
}

.faq-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.faq-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.faq-question .icon {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    font-size: 15px;
    color: #555;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px 22px 20px;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

/* Mobile */
@media (max-width: 576px) {
    .faq-title {
        font-size: 26px;
    }

    .faq-question {
        font-size: 15px;
    }
}
