:root {
  /* Primary Color Palette - High contrast pastels for drone garden monitoring */
  --primary-green: #4ade80;
  --primary-blue: #60a5fa;
  --primary-yellow: #fbbf24;
  --primary-purple: #a78bfa;
  --primary-orange: #fb7185;
  
  /* Light shades */
  --light-green: #bbf7d0;
  --light-blue: #dbeafe;
  --light-yellow: #fef3c7;
  --light-purple: #e9d5ff;
  --light-orange: #fce7f3;
  
  /* Dark shades */
  --dark-green: #166534;
  --dark-blue: #1e3a8a;
  --dark-yellow: #92400e;
  --dark-purple: #6b21a8;
  --dark-orange: #be185d;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  --gradient-secondary: linear-gradient(135deg, var(--primary-yellow), var(--primary-orange));
  --gradient-tertiary: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
  --gradient-hero: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 50%, var(--primary-purple) 100%);
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --content-max-width: 1200px;
  
  /* Shadows */
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-strong: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
}

/* Header Styles */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-green);
  text-decoration: none;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.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%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #333;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  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.1;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    padding-top: 125px;
}

.hero h2 {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.hero p {
  font-size: var(--font-size-large);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: var(--shadow-strong);
}

/* Section Styles */
.section {
  padding: var(--section-padding);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--dark-green);
}

.section-subtitle {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--dark-blue);
}

.section-description {
  font-size: var(--font-size-large);
  text-align: center;
  margin-bottom: 3rem;
  color: #666;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about {
  background: linear-gradient(135deg, var(--light-green), var(--light-blue));
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-medium);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-green);
}

.feature-card p {
  color: #666;
  margin-bottom: 0;
}

/* Services Section */
.services {
  background: white;
}

.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  padding: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-green);
}

.service-card p {
  color: #666;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  color: #555;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-green);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-align: center;
}

/* Features Section */
.features {
  background: linear-gradient(135deg, var(--light-purple), var(--light-yellow));
}

/* Price Plan Section */
.priceplan {
  background: white;
}

.price-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
  text-align: center;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.price-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-green);
}

.price-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.price-card p {
  color: #666;
  margin-bottom: 1.5rem;
}

/* Team Section */
.team {
  background: linear-gradient(135deg, var(--light-orange), var(--light-green));
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-medium);
  margin-bottom: 1rem;
}

.team-member h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-green);
}

.team-member p {
  color: #666;
  font-style: italic;
}

/* Reviews Section */
.reviews {
  background: white;
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  margin-bottom: 2rem;
  height: 100%;
}

.review-card p {
  color: #666;
  margin-bottom: 1rem;
  font-style: italic;
}

.review-card h4 {
  color: var(--dark-green);
  font-weight: 600;
  margin-bottom: 0;
}

/* Case Study Section */
.casestudy {
  background: linear-gradient(135deg, var(--light-blue), var(--light-purple));
}

.case-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  margin-bottom: 2rem;
  height: 100%;
}

.case-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-green);
}

.case-card p {
  color: #666;
  margin-bottom: 0;
}

/* Process Section */
.process {
  background: white;
}

.process-step {
  text-align: center;
  margin-bottom: 2rem;
}

.process-step .step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-green);
}

.process-step p {
  color: #666;
}

/* Timeline Section */
.timeline {
  background: linear-gradient(135deg, var(--light-yellow), var(--light-orange));
}

.timeline-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  margin-bottom: 2rem;
}

.timeline-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-green);
}

.timeline-item p {
  color: #666;
  margin-bottom: 0;
}

/* Career Section */
.career {
  background: white;
}

.career-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  margin-bottom: 2rem;
  height: 100%;
}

.career-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-green);
}

.career-item .role {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 1rem;
}

.career-item p {
  color: #666;
  margin-bottom: 0;
}

/* Core Info Section */
.coreinfo {
  background: linear-gradient(135deg, var(--light-green), var(--light-purple));
}

.coreinfo-item {
  text-align: center;
  margin-bottom: 2rem;
}

.coreinfo-item i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.coreinfo-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-green);
}

.coreinfo-item p {
  color: #666;
}

/* Contact Section */
.contact {
  background: white;
}

.contact-form {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow-medium);
}

.contact-form .form-control {
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(74, 222, 128, 0.25);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.contact-info {
  padding: 2rem;
}

.contact-info h3 {
  color: var(--dark-green);
  margin-bottom: 2rem;
}

.contact-info p {
  color: #666;
  margin-bottom: 1rem;
}

/* Blog Section */
.blog {
  background: linear-gradient(135deg, var(--light-blue), var(--light-yellow));
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-green);
}

.blog-card p {
  color: #666;
  margin-bottom: 1rem;
}

.blog-card a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
}

.blog-card a:hover {
  color: var(--dark-blue);
}

/* FAQ Section */
.faq {
  background: white;
}

.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-light);
  overflow: hidden;
}

.faq-question {
  background: var(--light-green);
  padding: 1.5rem;
  margin: 0;
  font-weight: 600;
  color: var(--dark-green);
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: var(--primary-green);
  color: white;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 1.5rem;
  color: #666;
  border-top: 1px solid #e5e5e5;
  margin: 0;
  display: none;
}

.faq-answer.show {
  display: block;
}

/* Gallery Section */
.gallery {
  background: linear-gradient(135deg, var(--light-purple), var(--light-orange));
  padding: 5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Footer */
.footer {
  background: var(--dark-green);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--light-green);
  margin-bottom: 1rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.footer a {
  color: var(--light-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.footer-bottom small {
  color: rgba(255, 255, 255, 0.6);
}

/* Breadcrumb */
.breadcrumb-section {
  padding: 2rem 0;
  background: var(--light-green);
}

.breadcrumb-image {
  text-align: center;
}

.breadcrumb-image img {
  max-width: 100px;
  height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
    padding-top: 125px;
}
  
  .hero h2 {
    font-size: 1.25rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .hero {
    min-height: 80vh;
  }
  
  .team-member img {
    width: 150px;
    height: 150px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.75rem;
    padding-top: 125px;
}
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .feature-card,
  .service-card,
  .price-card,
  .review-card,
  .case-card,
  .timeline-item,
  .career-item {
    margin-bottom: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
