/* Global Styles */
:root {
    --primary: #004e05;
    --secondary: #fba700;
    --accent: #f9a916;
    --light: #f8fafc;
    --dark: #213b1e;
    --gray: #64748b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark);
}


  body > .skiptranslate,.goog-logo-link,.gskiptranslate,.goog-te-gadget span,.goog-te-banner-frame,#goog-gt-tt, .goog-te-balloon-frame,div#goog-gt-{
    display: none!important;
  }
  .goog-te-gadget {
    color: transparent!important;
    font-size:0px;
  }
  .goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
  }
  #google_translate_element select{
    background:#2b1a12;
    color:#fff4e4;
    border: none;
    font-weight:bold;
    border-radius:3px;
    padding:8px 12px
  }

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    padding-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-accent {
    background: var(--accent);
}

.btn-accent:hover {
    background: #ea580c;
}

section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.section-title {
    position: relative;
    margin-bottom: 60px;
}

.section-title:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}

.logo span {
    color: var(--accent);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}


/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(79, 70, 229, 0.1) 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    flex: 1;
    padding-right: 30px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Services Section */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* About Section */
.about {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(79, 70, 229, 0.05) 100%);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Blog Section */
/* Blog Page */
#blog-page {
    padding: 100px 0;
    background-color: var(--light);
  }

  .blog-container {
    display: flex;
    gap: 40px;
  }

  .blog-posts {
    flex: 2;
  }

  .blog-sidebar {
    flex: 1;
  }

  .blog-post {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }

  .post-image {
    height: 250px;
    overflow: hidden;
  }

  .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .blog-post:hover .post-image img {
    transform: scale(1.05);
  }

  .post-content {
    padding: 25px;
  }

  .post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--gray);
  }

  .post-meta span {
    margin-right: 20px;
    display: flex;
    align-items: center;
  }

  .post-meta i {
    margin-right: 5px;
    color: var(--secondary);
  }

  .post-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
  }

  .post-content p {
    margin-bottom: 20px;
    color: var(--gray);
  }

  .post-content .read-more {
    color: var(--secondary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
  }

  .post-content .read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
  }

  .post-content .read-more:hover i {
    transform: translateX(5px);
  }

  .sidebar-widget {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }

  .sidebar-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary);
    position: relative;
    padding-bottom: 10px;
  }

  .sidebar-widget h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary);
  }

  .categories-list {
    list-style: none;
  }

  .categories-list li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
  }

  .categories-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .categories-list a {
    display: flex;
    justify-content: space-between;
    color: var(--gray);
    transition: color 0.3s ease;
  }

  .categories-list a:hover {
    color: var(--secondary);
  }

  .recent-posts {
    list-style: none;
  }

  .recent-post {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
  }

  .recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .recent-post-image {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 15px;
  }

  .recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .recent-post-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
  }

  .recent-post-content h4 a {
    color: var(--primary);
    transition: color 0.3s ease;
  }

  .recent-post-content h4 a:hover {
    color: var(--secondary);
  }

  .recent-post-content span {
    font-size: 0.8rem;
    color: var(--gray);
  }

  .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .tag {
    padding: 5px 12px;
    background-color: var(--light);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--gray);
    transition: all 0.3s ease;
  }

  .tag:hover {
    background-color: var(--secondary);
    color: #fff;
  }

  .pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
  }

  .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    margin: 0 5px;
    color: var(--gray);
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .page-link:hover,
  .page-link.active {
    background-color: var(--secondary);
    color: #fff;
  }

.blog {
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.business-img {
    height: 200px;
    overflow: hidden;
}

.business-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .business-img img {
    transform: scale(1.05);
}

.service-content {
    padding: 20px;
}

.blog-content {
    padding: 20px;
}

.blog-date {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.blog-excerpt {
    color: var(--gray);
    margin-bottom: 20px;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(79, 70, 229, 0.05) 100%);
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
}

.contact-container {
    display: flex;
    gap: 50px;
  }

  .contact-info {
    flex: 1;
  }

  .contact-info h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
  }

  .contact-details {
    list-style: none;
  }

  .contact-details li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
  }

  .contact-icon {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-right: 15px;
  }

  .contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary);
  }

  .contact-form {
    flex: 1;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary);
  }

  .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }

  .form-control:focus {
    border-color: var(--secondary);
    outline: none;
  }

  textarea.form-control {
    min-height: 150px;
    resize: vertical;
  }

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 3px;
    background: var(--accent);
}

.footer-col p {
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-content,
    .about-content,
    .contact-container {
        flex-direction: column;
    }
    
    .hero-text,
    .about-text,
    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        transition: all 0.3s ease;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 30px;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .hero {
        padding-top: 140px;
    }
}


/* Breadcrumb */
.breadcrumb {
  padding: 10px 0;
  font-size: 0.9rem;
  color: #666;
}

.breadcrumb a {
  color: #2c5f2d;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.btn.btn-back {
  padding-bottom: 60px;
}

/* Service Detail Styles */
.service-detail {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  margin: 30px 0;
  
}

.service-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.service-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  padding: 30px;
}

.service-hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #f9a916;
}

.service-content {
  padding: 40px;
}

.service-overview {
  margin-bottom: 40px;
}

.service-overview h2 {
  color: #2c5f2d;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.feature-card {
  background: #f5f9f5;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #2c5f2d;
}

.feature-card h3 {
  color: #2c5f2d;
  margin-bottom: 10px;
}

.process-steps {
  margin: 40px 0;
}

.step {
  display: flex;
  margin-bottom: 30px;
  align-items: flex-start;
}

.step-number {
  background: #2c5f2d;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  font-weight: bold;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  margin-bottom: 10px;
  color: #2c5f2d;
}

.cta-section {
  background: #2c5f2d;
  color: white;
  padding: 40px;
  text-align: center;
  border-radius: 8px;
  margin-top: 40px;
}

.cta-section h2 {
  margin-bottom: 20px;
  color: #f9a916;
}

.btn-outline {
  background: transparent;
  border: 2px solid #d4e6a5;
  color: #d4e6a5;
}

.btn-outline:hover {
  background: #d4e6a5;
  color: #2c5f2d;
}
   /* Hero Section */
   .hero-team {
    background: linear-gradient(rgba(36, 83, 42, 0.85), rgba(36, 83, 42, 0.85)), url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 0;
    margin-bottom: 60px;
}

.hero-team h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    margin-top: 15px;
    font-weight: 700;
    color: #fba700;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding-bottom: 60px;
}

.team-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #fba700;
}

.team-card h3 {
    margin-bottom: 5px;
    color: #2c5f2d;
}

.team-card .position {
    color: #fba700;
    font-weight: bold;
    margin-bottom: 15px;
}

.team-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #f0f0f0;
    color: #2c5f2d;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #fba700;
    color: white;
}

 .language-selector {
            position: relative;
        }
        
        .language-button {
            background: white;
            border: 2px solid #e1e5e9;
            border-radius: 12px;
            padding: 0.8rem 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        
        .language-button:hover {
            border-color: #4285f4;
            background: #f8f9fa;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(66, 133, 244, 0.2);
        }
        
        .language-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            min-width: 250px;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
            margin-top: 0.8rem;
            max-height: 500px;
            overflow-y: auto;
            z-index: 1001;
        }
        
        .language-dropdown.show {
            display: block;
            animation: fadeInUp 0.3s ease;
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .language-option {
            padding: 1rem 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 1rem;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.2s ease;
        }
        
        .language-option:hover {
            background: linear-gradient(135deg, #4285f4, #34a853);
            color: white;
            transform: translateX(5px);
        }
        
        .language-option:last-child {
            border-bottom: none;
        }
        
        .language-flag {
            width: 28px;
            height: 21px;
            border-radius: 4px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        }
        
        .current-flag {
            width: 24px;
            height: 18px;
            border-radius: 3px;
        }
        
    body > .skiptranslate,.goog-logo-link,.gskiptranslate,.goog-te-gadget span,.goog-te-banner-frame,#goog-gt-tt, .goog-te-balloon-frame,div#goog-gt-{
    display: none!important;
  }
  .goog-te-gadget {
    color: transparent!important;
    font-size:0px;
  }
  .goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
  }
  #google_translate_element select{
    background:#08300f;
    color:#fff4e4;
    border: none;
    font-weight:bold;
    border-radius:3px;
    padding:8px 12px
  }


/* Responsive Styles */
@media (max-width: 768px) {
  .header-content {
      flex-direction: column;
      text-align: center;
  }
  
  nav ul {
      margin-top: 15px;
      justify-content: center;
  }
  
  nav ul li {
      margin: 0 10px;
  }
  
  .service-hero {
      height: 300px;
  }
  
  .service-hero-text h1 {
      font-size: 2rem;
  }
  
  .service-content {
      padding: 20px;
  }
}