:root {
  /* Primary color palette - 5 colors + shades */
  --primary-green: #2d5418;
  --primary-teal: #197a75;
  --primary-blue: #088b86;
  --primary-light: #bed968;
  --primary-accent: #77a25c;
  
  /* Light/dark shades */
  --green-light: #548a40;
  --green-dark: #0f1a08;
  --teal-light: #46818a;
  --teal-dark: #032828;
  --blue-light: #3ea995;
  --blue-dark: #02705d;
  --light-bright: #d8efa2;
  --light-soft: #76a061;
  --accent-bright: #8baf7b;
  --accent-dark: #46753c;
  
  /* Text colors */
  --text-dark: #243a47;
  --text-light: #ffffff;
  --text-muted: #737c85;
  
  /* Background gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-blue) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-accent) 100%);
  --gradient-light: linear-gradient(135deg, var(--primary-light) 0%, var(--light-bright) 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header Navigation */
.navbar {
  background: var(--gradient-primary);
  padding: 0.5rem 0;
  box-shadow: 0 7px 14px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: 1.42rem;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--text-light);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--light-bright);
}

/* Navbar Toggler */
.navbar-toggler {
  border: none;
  padding: 4px 12px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-secondary);
  background-image: url('../images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(61, 95, 22, 0.60);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-light);
    padding-top: 150px;
}

.hero-content h1 {
  font-size: 2.65rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content h2 {
  font-size: 1.32rem;
  font-weight: 400;
  margin-bottom: 1.65rem;
  opacity: 0.9;
}

.hero-content p {
  font-size: 1rem;
  opacity: 0.8;
  max-width: 500px;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  min-height: 400px; /* Ensure consistent hero image sizing */
  border-radius: 17px;
  box-shadow: 0 11px 30px rgba(0,0,0,0.3);
  object-fit: cover;
}

/* Section Styling */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.section-subtitle {
  font-size: 1.23rem;
  text-align: center;
  margin-bottom: 0.89rem;
  color: var(--primary-teal);
  font-weight: 500;
}

.section-description {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #d9ebf5 100%);
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 110px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-card i {
  font-size: 2.58rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.feature-card h4 {
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 1.04rem;
}

/* Services Section */
.services-section {
  background: var(--gradient-light);
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.service-card:hover {
  transform: translateY(-11px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.62rem;
  min-width: 300px; /* Ensure proper sizing regardless of actual image dimensions */
}

.service-card h4 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 1.65rem;
  font-size: 1.05rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.59rem;
}

.service-features li {
  padding: 0.3rem 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.service-features li::before {
  content: "“";
  color: var(--primary-blue);
  font-weight: bold;
  margin-right: 0.5rem;
}

.service-price {
  font-size: 1.63rem;
  font-weight: 700;
  color: var(--primary-teal);
}

/* Features Section */
.features-section {
  background: white;
}

/* Price Plan Section */
.price-plan-section {
  background: linear-gradient(135deg, #f1f3f4 0%, #ecedf3 100%);
}

.price-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
  position: relative;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card.featured {
  border: 4px solid var(--primary-blue);
  transform: scale(1.05);
}

.price-card h4 {
  font-size: 1.32rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.price-card .price {
  font-size: 2.52rem;
  font-weight: 700;
  color: var(--primary-teal);
  margin-bottom: 1rem;
}

.price-card .price-features {
  list-style: none;
  margin-bottom: 2rem;
}

.price-card .price-features li {
  padding: 0.5rem 0;
  color: var(--text-muted);
  border-bottom: 1px solid #f1f1f1;
}

/* Team Section */
.team-section {
  background: white;
}

.team-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 11px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.72rem;
  border: 4px solid var(--primary-light);
}

.team-card h4 {
  font-size: 1.19rem;
  font-weight: 600;
  margin-bottom: 0.70rem;
  color: var(--primary-green);
}

.team-card p {
  color: var(--primary-teal);
  font-weight: 500;
}

/* Reviews Section */
.reviews-section {
  background: var(--gradient-light);
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-blue);
  opacity: 0.3;
}

.review-card p {
  font-style: italic;
  margin-bottom: 1.58rem;
  color: var(--text-muted);
}

.review-card h5 {
  color: var(--primary-green);
  font-weight: 600;
}

/* Case Studies Section */
.casestudy-section {
  background: white;
}

.case-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
  height: 100%;
  border-left: 4px solid var(--primary-blue);
}

.case-card h4 {
  font-size: 1.28rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.case-card p {
  color: var(--text-muted);
}

/* Process Section */
.process-section {
  background: linear-gradient(135deg, #e5f8ff 0%, #e8e8e8 100%);
}

.process-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
  position: relative;
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.35rem;
  margin: 0 auto 1.5rem auto;
}

.process-card h4 {
  font-size: 1.16rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.process-card p {
  color: var(--text-muted);
  font-size: 1.01rem;
}

/* Timeline Section */
.timeline-section {
  background: white;
}

.timeline-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
  border-left: 4px solid var(--primary-light);
}

.timeline-card h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.timeline-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Career Section */
.career-section {
  background: var(--gradient-light);
}

.career-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

.career-card:hover {
  transform: translateY(-5px);
}

.career-card h4 {
  font-size: 1.31rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.career-card .role {
  color: var(--primary-teal);
  font-weight: 500;
  margin-bottom: 1rem;
}

.career-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

/* Core Info Section */
.coreinfo-section {
  background: white;
}

.info-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-3px);
}

.info-card i {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.info-card h4 {
  font-size: 1.17rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.info-card p {
  color: var(--text-muted);
  font-size: 1.04rem;
}

/* Contact Section */
.contact-section {
  background: var(--gradient-primary);
  color: var(--text-light);
}

.contact-section .section-title,
.contact-section .section-subtitle {
  color: var(--text-light);
}

.contact-section .section-description {
  color: rgba(255,255,255,0.8);
}

.contact-form {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-form .form-control {
  border: 2px solid #d7e0e7;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1.08rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(10, 135, 97, 0.25);
}

.contact-form label {
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.60rem;
}

.btn-submit {
  background: var(--gradient-secondary);
  border: none;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-info {
  color: rgba(255,255,255,0.9);
}

.contact-info p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.contact-info i {
  margin-right: 0.5rem;
  color: var(--light-bright);
}

/* Blog Section */
.blog-section {
  background: white;
}

.blog-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  min-width: 280px; /* Ensure proper sizing regardless of actual image dimensions */
}

.blog-card-body {
  padding: 2rem;
}

.blog-card h4 {
  font-size: 1.31rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.blog-card p {
  color: var(--text-muted);
  margin-bottom: 1.58rem;
  font-size: 1.09rem;
}

.blog-card a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.blog-card a:hover {
  color: var(--primary-teal);
}

/* Gallery Section */
.gallery-section {
  background: white;
  padding: 4rem 0;
}

.gallery-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background: var(--primary-green);
  color: var(--text-light);
  padding: 3rem 0 1rem 0;
}

.footer h5 {
  color: var(--light-bright);
  margin-bottom: 1rem;
  font-size: 1.11rem;
}

.footer p {
  margin-bottom: 0.70rem;
  opacity: 0.9;
}

.footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--light-bright);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom small {
  opacity: 0.8;
}

/* Utility Classes */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Lazy Loading Animation */
.lozad {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.lozad.loaded {
  opacity: 1;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.mb-4 { margin-bottom: 1.62rem; }
.mb-5 { margin-bottom: 3rem; }
.py-5 { padding: 3rem 0; }

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content h2 {
    font-size: 1.22rem;
  }
  
  .section-title {
    font-size: 1.84rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .gallery-layout {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.79rem;
  }
  
  .section-title {
    font-size: 1.61rem;
  }
  
  .service-card,
  .price-card,
  .team-card {
    margin-bottom: 2rem;
  }
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
