@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Primary Colors */
  --primary-green: #2d7a2d;
  --primary-lime: #7fb069;
  --primary-sage: #9fad8e;
  --primary-cream: #f4f1e8;
  --primary-earth: #8b7355;
  
  /* Light Shades */
  --light-green: #5ba85b;
  --light-lime: #9cc084;
  --light-sage: #b8c4a9;
  --light-cream: #f9f7f1;
  --light-earth: #a88c75;
  
  /* Dark Shades */
  --dark-green: #1a4a1a;
  --dark-lime: #5d8a4d;
  --dark-sage: #7a8569;
  --dark-cream: #e8e3d5;
  --dark-earth: #6b5940;
  
  /* Additional Colors */
  --white: #ffffff;
  --black: #1a1a1a;
  --gray-light: #f8f9fa;
  --gray-medium: #6c757d;
  --gray-dark: #495057;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-lime) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--primary-sage) 0%, var(--primary-cream) 100%);
  --gradient-tertiary: linear-gradient(135deg, var(--primary-earth) 0%, var(--primary-sage) 100%);
  
  /* Font Sizes - Conservative */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--fs-4xl);
}

h2 {
  font-size: var(--fs-3xl);
}

h3 {
  font-size: var(--fs-2xl);
}

h4 {
  font-size: var(--fs-xl);
}

h5 {
  font-size: var(--fs-lg);
}

h6 {
  font-size: var(--fs-base);
}

p {
  margin-bottom: 1rem;
  font-size: var(--fs-base);
}

/* 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(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
  font-size: var(--fs-xl);
  font-weight: var(--font-weight-bold);
  color: var(--primary-green) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--gray-dark);
  font-weight: var(--font-weight-medium);
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green);
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(45, 122, 45, 0.25);
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 6rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-bg.webp') center/cover;
  opacity: 0.2;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: var(--fs-4xl);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: var(--fs-lg);
  margin-bottom: 2rem;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--gray-medium);
  font-size: var(--fs-lg);
}

/* About Section */
.about {
  background: var(--light-cream);
}

.about-feature {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background: var(--white);
}

.service-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.service-price {
  font-size: var(--fs-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--primary-lime);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-light);
}

.service-features li:last-child {
  border-bottom: none;
}

/* Features Section */
.features {
  background: var(--gradient-secondary);
  color: var(--dark-green);
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-lime);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan {
  background: var(--white);
}

.price-card {
  background: var(--white);
  border: 2px solid var(--gray-light);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.price-card:hover {
  border-color: var(--primary-green);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
  border-color: var(--primary-green);
  background: var(--gradient-primary);
  color: var(--white);
}

.price-amount {
  font-size: var(--fs-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.price-card.featured .price-amount {
  color: var(--white);
}

/* Team Section */
.team {
  background: var(--light-cream);
}

.team-member {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-lime);
}

.team-member h4 {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--gray-medium);
  margin-bottom: 0;
}

/* Reviews Section */
.reviews {
  background: var(--white);
}

.review-card {
  background: var(--light-cream);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-stars {
  color: #ffc107;
  font-size: var(--fs-lg);
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--gray-dark);
}

.review-author {
  font-weight: var(--font-weight-semibold);
  color: var(--primary-green);
}

/* Case Studies Section */
.casestudy {
  background: var(--gradient-tertiary);
  color: var(--white);
}

.casestudy-item {
  background: var(--white);
  color: var(--black);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.casestudy-item h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Process Section */
.process {
  background: var(--light-cream);
}

.process-step {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.process-step::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-green);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
}

.process-container {
  counter-reset: step;
}

/* Timeline Section */
.timeline {
  background: var(--white);
}

.timeline-item {
  background: var(--light-cream);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 20px;
  width: 4px;
  height: calc(100% + 2rem);
  background: var(--primary-green);
}

.timeline-item:last-child::before {
  height: 20px;
}

.timeline-item h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Career Section */
.career {
  background: var(--gradient-secondary);
  color: var(--dark-green);
}

.career-item {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.career-item h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.career-role {
  color: var(--primary-lime);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1rem;
}

/* Core Info Section */
.coreinfo {
  background: var(--white);
}

.coreinfo-item {
  text-align: center;
  padding: 2rem;
  background: var(--light-cream);
  border-radius: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.coreinfo-item i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.coreinfo-item h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact {
  background: var(--gradient-primary);
  color: var(--white);
}

.contact-form {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  color: var(--primary-green);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gray-dark);
  font-weight: var(--font-weight-medium);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--gray-light);
  border-radius: 0.5rem;
  font-size: var(--fs-base);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: var(--fs-base);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--primary-green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
}

.contact-info {
  text-align: center;
  margin-top: 2rem;
}

.contact-info p {
  margin-bottom: 1rem;
  font-size: var(--fs-lg);
}

.contact-info i {
  margin-right: 0.5rem;
  color: var(--primary-lime);
}

/* Blog Section */
.blog {
  background: var(--light-cream);
}

.blog-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.blog-card p {
  color: var(--gray-medium);
  margin-bottom: 1rem;
}

.blog-card a {
  color: var(--primary-lime);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
}

/* FAQ Section */
.faq {
  background: var(--white);
}

.faq-item {
  background: var(--light-cream);
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 1.5rem;
  background: var(--primary-green);
  color: var(--white);
  cursor: pointer;
  margin: 0;
  font-size: var(--fs-lg);
  font-weight: var(--font-weight-medium);
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--fs-xl);
  font-weight: var(--font-weight-bold);
}

.faq-answer {
  padding: 1.5rem;
  background: var(--white);
  color: var(--gray-dark);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question::after {
  content: '-';
}

/* Gallery Section */
.gallery {
  background: var(--white);
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item a {
  display: block;
  text-decoration: none;
}

.gallery-item a:hover {
  text-decoration: none;
}

/* Footer */
.footer {
  background: var(--dark-green);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-lime);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-lime);
}

.footer-bottom {
  border-top: 1px solid var(--primary-green);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 0.5rem;
}

.pt-2 {
  padding-top: 1rem;
}

.pt-3 {
  padding-top: 1.5rem;
}

.pt-4 {
  padding-top: 2rem;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 0.5rem;
}

.pb-2 {
  padding-bottom: 1rem;
}

.pb-3 {
  padding-bottom: 1.5rem;
}

.pb-4 {
  padding-bottom: 2rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Breadcrumb */
.breadcrumb {
  background: var(--light-cream);
  padding: 1rem 0;
  margin-top: 80px;
}

.breadcrumb img {
  max-height: 30px;
  opacity: 0.7;
}

/* Space Page */
#space {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: var(--fs-2xl);
  text-align: center;
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
