@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
:root {
--primary-color: #000000;
--secondary-color: #ffffff;
--footer-bg-color: #333333;
--bg-dark-color: #2a7e19;
--text-color: #333333;
--light-gray: #f8f9fa;
--border-color: #e9ecef;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
line-height: 1.6;
color: var(--text-color);
font-weight: 400;
}
.btn {
border-radius: 0.25rem !important;
}
.bg-dark {
background: var(--bg-dark-color) !important;
}
.btn-dark {
background: var(--bg-dark-color) !important;
border-color:  var(--bg-dark-color) !important;
}
.main-header {
top: 0;
left: 0;
right: 0;
z-index: 1000;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
border-top: 0px solid var(--bg-dark-color);
}
.brand-text {
font-size: 1.5rem;
font-weight: 500;
color: var(--primary-color);
text-decoration: none;
letter-spacing: -0.02em;
}
.navbar-nav .nav-link {
color: var(--text-color);
font-weight: 400;
padding: 0.5rem 1rem;
transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
color: var(--primary-color);
}
.navbar-toggler {
border: none;
}
.navbar-toggler:focus,
.navbar-toggler-icon:focus {
outline: none;
box-shadow: none;
}
.dropdown-menu {
border: 1px solid var(--border-color);
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
.dropdown:hover>.dropdown-menu {
display: block;
}
.hero-section {
padding-top: 100px;
background: var(--secondary-color);
}
.hero-title {
font-size: 3.5rem;
font-weight: 600;
line-height: 1.2;
color: var(--primary-color);
margin-bottom: 1.5rem;
letter-spacing: -0.02em;
}
.hero-description {
font-size: 1.1rem;
color: #666;
margin-bottom: 2rem;
line-height: 1.7;
}
.explore-btn {
padding: 1rem 2rem;
font-weight: 500;
border-radius: 0;
text-transform: none;
letter-spacing: 0.02em;
transition: all 0.3s ease;
}
.explore-btn:hover {
background: #333;
transform: translateY(-2px);
}
.hero-image img {
border-radius: 8px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.services-preview {
background: var(--light-gray);
}
.section-title {
font-size: 0.9rem;
font-weight: 500;
letter-spacing: 0.2em;
color: var(--text-color);
text-transform: uppercase;
}
.service-card {
position: relative;
overflow: hidden;
border-radius: 8px;
transition: transform 0.3s ease;
}
.service-card:hover {
transform: translateY(-5px);
}
.service-card img {
width: 100%;
height: 300px;
object-fit: cover;
transition: transform 0.3s ease;
}
.service-card:hover img {
transform: scale(1.05);
}
.service-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
color: white;
padding: 2rem 1.5rem 1.5rem;
}
.service-overlay h5 {
font-weight: 600;
margin-bottom: 0.5rem;
}
.service-overlay p {
margin: 0;
opacity: 0.9;
}
.main-footer {
background: var(--footer-bg-color) !important;
}
.footer-brand {
font-size: 1.5rem;
font-weight: 400;
margin-bottom: 1rem;
letter-spacing: -0.02em;
}
.social-links a {
display: inline-block;
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 50%;
transition: all 0.3s ease;
}
.social-links a:hover {
background: white;
color: var(--primary-color) !important;
}
.newsletter-form .form-control {
border: 1px solid rgba(255, 255, 255, 0.2);
background: transparent;
color: white;
}
.newsletter-form .form-control::placeholder {
color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 768px) {
.page-title {
font-size: 2rem !important;
}
.hero-title {
font-size: 2.2rem;
}
.hero-section {
padding-top: 80px;
}
.service-card img {
height: 250px;
}
}
.page-header {
padding: 50px 0 60px;
background: var(--light-gray);
text-align: center;
	border: 1px solid var(--border-color);
}
.page-title {
font-size: 3rem;
font-weight: 600;
color: var(--primary-color);
margin-bottom: 1rem;
}
.page-subtitle {
font-size: 1.2rem;
color: #666;
max-width: 1000px;
margin: 0 auto;
}
.content-section {
padding: 80px 0;
}
.service-detail {
background: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
margin-bottom: 2rem;
}
.service-icon {
width: 60px;
height: 60px;
background: var(--bg-dark-color);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
margin-bottom: 1.5rem;
}
.pricing-card {
background: white;
border: 1px solid var(--border-color);
border-radius: 8px;
padding: 2.5rem 2rem;
text-align: center;
transition: all 0.3s ease;
}
.pricing-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.pricing-card.featured {
border-color: var(--primary-color);
transform: scale(1.05);
}
.price {
font-size: 3rem;
font-weight: 700;
color: var(--primary-color);
}
.price-period {
color: #666;
font-size: 1rem;
}
.feature-list {
list-style: none;
padding: 0;
}
.feature-list li {
padding: 0.5rem 0;
border-bottom: 1px solid var(--border-color);
}
.feature-list li:last-child {
border-bottom: none;
}
.btn-outline-dark {
border-color: var(--primary-color);
color: var(--primary-color);
}
.btn-outline-dark:hover {
background: var(--bg-dark-color);
border-color: var(--bg-dark-color);
}
.fa-whatsapp{color:#149b0c;font-size:34px !important}
.whatsapp-button{position:fixed; width:60px; height:60px; bottom:100px;right:25px;background-color:#25d366;color:#FFF;border-radius:50px;text-align:center;font-size:30px;box-shadow: 2px 2px 3px #999;z-index:100;padding-top: 13px;}
