@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --color-primary: #0A3D22;       /* Dark Green – Primary */
  --color-accent: #A1FF60;        /* Bold Lime – Accents & CTAs */
  --color-background: #F5F5F5;    /* Off White – Background */
  --color-text: #2E2E2E;          /* Steel Gray – Text / Nav */
  --color-hero-bg: #000000;       /* Carbon Black – Hero Background */
   --font-heading: 'Poppins', 'Montserrat', sans-serif;
  --font-body: 'Roboto', 'Open Sans', sans-serif;

  --font-size-h1: 48px;
  --font-size-h2: 36px;
  --font-size-h3: 24px;
  --font-size-base: 16px;

  --line-height-base: 1.6;

  --weight-heading: 700;
  --weight-heading-bold: 800;
  --weight-body: 400;
  --weight-body-medium: 500;
}

body {
  background-color: var(--color-background);
  color: var(--color-text);
  margin: 0;
  padding: 0;
  font-family:'Montserrat', sans-serif ;
  overflow-x:hidden;
}
html {
  scroll-behavior: smooth;
}


/* Header Section */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 1px solid #ccc;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-primary);
}

.logo p {
  margin-left: 0.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: var(--color-primary);
  font-size: 1.2rem;
  transition: transform 0.2s ease;
  margin-bottom: 0.7em;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #065f37;
}

.menu-icon {
  font-size: 1.8rem;
  color: var(--color-primary);
  cursor: pointer;
  display: none;
  z-index: 1001;
}

.sidebar {
  position: fixed;
  top: 16.5vh;
  right: -100%;
  width: 250px;
  height: 100%;
  background: var(--color-background);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  transition: right 0.3s ease;
  z-index: 1000;
}

.sidebar.active {
  right: 0;
}

.sidebar a {
  margin: 1rem 0;
  font-size: 1.1rem;
  text-decoration: none;
  color: var(--color-text);
}

.cta-btn {
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 0.8rem 1.2rem;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 2rem;
  transition: background 0.3s;
}

.cta-btn:hover {
  background: #8ce054;
}

/* Desktop View */
@media (min-width: 768px) {
  .menu-icon {
    display: none;
    opacity: 0;
  }

  .sidebar {
    position: static;
    flex-direction: row;
    height: auto;
    width: auto;
    background: none;
    box-shadow: none;
    padding: 0;
    align-items: center;
    gap: 2rem;
    transition: none;
  }

  .sidebar a {
    margin: 0;
  }

  .cta-btn {
    margin: 0 0 0 auto;
  }

  .social-icons {
    display: flex;
  }
}

/* Mobile View */
@media (max-width: 767px) {
  .sidebar {
    display: flex;
  }

  .social-icons {
    display: none;
    
  }

  .cta-btn {
    display: block;
  }

  .menu-icon {
    display: block;
  }
  .logo p{
      font-size:0.9rem;
  }
}

    /*Hero Section*/
   .hero {
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
              url('../images/denis-egorov-ezORpvOaDpM-unsplash.jpg') no-repeat center center/cover;
  height: 90vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
}

.hero-content{
  width: 100%;
  padding: 0;
  justify-items: center;
}
    .hero h1 {
      font-size: 2.5rem;
      font-weight: 800;
      line-height: 1.3;
      width: 100%;
      color: var(--color-accent);
      text-align: center;
    }

    .hero p {
      font-size: 1.2rem;
      margin: 1.5rem 0;
      max-width: 800px;
      color: #e0e0e0;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .hero-buttons a {
      background-color: var(--color-accent);
      color: var(--color-primary);
      padding: 0.9rem 1.5rem;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .hero-buttons a:hover {
      background-color: #8ce054;
    }

    @media (min-width: 768px) {
      .hero h1 {
        font-size: 3rem;
      }

      .hero p {
        font-size: 1.3rem;
      }
    }

    @media (min-width: 1024px) {
      .hero {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 4rem ;
      }

      .hero-content {
        flex: 1;
        padding-right: 2rem;
      }

      .hero-image {
        flex: 1;
      }

      .hero-image img {
        width: 100%;
        max-height: 80vh;
        object-fit: cover;
        border-radius: 12px;
      }
    }
    @keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in {
  opacity: 0;
  animation: slideInLeft 1s ease-out forwards;
}

.primary-tag {
  animation-delay: 0.3s;
}

.secondary-tag {
  animation-delay: 0.6s;
}

.cta-buttons {
  animation-delay: 0.9s;
}

    /*About Us Section*/
    .about {
      padding: 4rem 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .about h2 {
      color: var(--color-primary);
      font-size: 2.5rem;
      margin-bottom: 1rem;
      text-align: center;
    }

    .about p {
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 1.5rem;
      text-align: center;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .quote {
      background-color: var(--color-primary);
      color: white;
      padding: 1.5rem;
      font-style: italic;
      border-left: 5px solid var(--color-accent);
      margin: 2rem auto;
      max-width: 800px;
      text-align: center;
      border-radius: 8px;
    }

    .mv {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      margin-top: 3rem;
    }

    .mv-item {
      background: white;
      padding: 1.5rem;
      border-left: 4px solid var(--color-primary);
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .mv-item h3 {
      color: var(--color-primary);
      margin-bottom: 0.5rem;
    }

    .quick-facts {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .fact {
      background: white;
      padding: 1.5rem;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .fact i {
      font-size: 2rem;
      color: var(--color-accent);
      margin-bottom: 0.5rem;
    }

    .fact h4 {
      font-size: 1.5rem;
      margin: 0.5rem 0;
      color: var(--color-primary);
    }

    .fact p {
      font-size: 1rem;
      color: #555;
    }

    @media (min-width: 768px) {
      .about h2 {
        font-size: 3rem;
      }
    }
     @media (max-width: 768px) {
         .fact {
      background: transparent;
      padding: 1.5rem;
      border-radius: 12px;
      text-align: center;
      box-shadow:none;
    }
     }

    /*Services Styles*/
     .services {
      padding: 4rem 0;
      width: 100%;
      margin: 0 auto;
      text-align: center;
      background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
              url('../images/netzer0.webp') no-repeat center center/cover;
    }

    .services h2 {
      font-size: 2.5rem;
      color: var(--color-primary);
      margin-bottom: 2rem;
    }
    .intro{
      max-width: 800px;
      font-size: 1.2em;
      justify-items: center;
      margin-left: 24%;
      color: #aaaaaac5;
    }

    /* Services Grid */
    .services-grid {
      display: grid;
       display: flex;
      justify-content: space-around;
      align-items: center;
      margin-bottom: 3rem;
    }

    .service-card {
      background: white;
      padding: 2rem;
      border-radius: 12px;
      width: 300px;
      height: 280px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: transform 0.3s ease;
    }


    .service-card i {
      font-size: 2.5rem;
      color: var(--color-accent);
      margin-bottom: 1rem;
    }

    .service-card h3 {
      color: var(--color-primary);
      margin-bottom: 0.5rem;
      font-size: 1.3rem;
    }

    .service-card p {
      font-size: 1rem;
      line-height: 1.6;
    }

    /* CTA Button */
    .services-cta {
      display: inline-block;
      padding: 0.75rem 1.5rem;
      background-color: var(--color-primary);
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 1rem;
      text-decoration: none;
      transition: background 0.3s ease;
      max-width: 350px;
    }

    .services-cta:hover {
      background-color: #062d18;
    }

    @media (min-width: 768px) {
      .services h2 {
        font-size: 3rem;
      }
    }
    @media (max-width: 768px){
      .services-grid{
        flex-direction: column;
        gap: 2rem;
      }
      .intro{
        margin-right: 5%;
        
        width: 90%;
        margin-left:5%;
      }
       .service-card {
      background: white;
      padding: 2rem;
      border-radius: 12px;
      width: 280px;
      height: 280px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: transform 0.3s ease;
    }
    
    }

    /*Team Section*/
    .team-section {
      padding: 4rem 1.5rem;
      text-align: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .team-section h2 {
      font-size: 2.5rem;
      color: var(--color-primary);
      margin-bottom: 3rem;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2.5rem;
    }

    .team-member {
      background: white;
      border-radius: 12px;
      padding: 2rem;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
    }

    .team-member:hover {
      transform: translateY(-5px);
    }

    .team-photo {
      width: 150px;
      height: 150px;
      object-fit: cover;
      border-radius: 50%;   
      transition: filter 0.3s ease;
      margin-bottom: 1rem;
    }

    

    .team-name {
      font-size: 1.25rem;
      font-weight: bold;
      color: var(--color-primary);
    }

    .team-role {
      font-weight: 500;
      margin-top: 0.3rem;
      color: var(--color-text);
    }

    .team-details {
      font-size: 0.95rem;
      margin: 1rem 0;
      line-height: 1.6;
    }

    .linkedin-icon {
      font-size: 1.4rem;
      color: var(--color-primary);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .linkedin-icon:hover {
      color: var(--color-accent);
    }
    

    /*Blog Section*/
    .blog-section {
      padding: 4rem 0;
      width: 100%;
      margin: 0 auto;
      text-align: center;
      background-color: #065f37;
    }

    .blog-section h2 {
      font-size: 2.5rem;
      margin-bottom: 3rem;
      color: var(--color-primary);
    }

    .blog-grid {
      display: grid;
      display: flex;
      justify-content: space-around;
      align-items: center;
      gap: 2rem;
    }

    .blog-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
      width: 380px;
    }

    

    .blog-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .blog-content {
      padding: 1.5rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .blog-title {
      font-size: 1.2rem;
      font-weight: bold;
      color: var(--color-primary);
      margin-bottom: 0.8rem;
    }

    .blog-description {
      font-size: 0.95rem;
      line-height: 1.5;
      margin-bottom: 1.5rem;
      color: #444;
    }

    .read-more {
      color: var(--color-primary);
      background-color: #065f37;
      font-weight: 500;
      text-decoration: none;
      transition: color 0.8s ease;
      padding: 10px 15px;
      border-radius: 5px;
    }

    .read-more:hover {
      color: var(--color-accent);
      
    }
    @media (max-width: 768px){
      .blog-grid{
        flex-direction: column;
        gap: 2rem;
      }
      .blog-card{
        width: 90%;
        margin: 0 5%;
      }
    }

    /*Contact Section*/
    .contact-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding: 4rem 1.5rem;
      max-width: 1200px;
      margin: auto;
      gap: 2rem;
    }
    .contact-info{
      display: flex;
      flex-direction: column;
      gap: 2em;
    }
    
    .contact-info,
    .contact-form {
      flex: 1 1 400px;
      padding: 1rem;
    }

    .contact-info h2 {
      font-size: 2rem;
      margin-bottom: 1.5rem;
      color: var(--color-primary);
      text-align: center;
    }

    .contact-info p {
      margin: 0.5rem 0;
      font-size: 1rem;
      line-height: 1.6;
    }

    .contact-form h2 {
      font-size: 2rem;
      margin-bottom: 1.5rem;
      color: var(--color-primary);
    }

    form {
      display: flex;
      flex-direction: column;
    }

    input, textarea {
      margin-bottom: 1rem;
      padding: 0.75rem 1rem;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 1rem;
      font-family: inherit;
    }

    textarea {
      resize: vertical;
      min-height: 120px;
    }

    button {
      background-color: var(--color-primary);
      color: white;
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    button:hover {
      background-color: #065f37;
    }
    @media(max-width: 768px) {
      .contact-section {
        flex-direction: column;
      }
    }
    /*Footer Section*/
     footer {
       background-color: var(--color-hero-bg);
      padding: 3rem 1.5rem 1rem;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 2rem;
      max-width: 1200px;
      margin: auto;
      color: #ebe5e5;
    }

    .footer-column {
      flex: 1 1 250px;
    }

    .footer-column h3 {
      margin-bottom: 1rem;
      font-size: 1.25rem;
      color: #F5F5F5;
    }

    .footer-column p,
    .footer-column a {
      color: var(--color-muted);
      text-decoration: none;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .footer-column a:hover {
      color: var(--color-accent);
    }

    .social-icons {
      margin-top: 1rem;
    }

    .social-icons a {
      color: var(--color-light);
      font-size: 1.2rem;
      margin-right: 1rem;
      display: inline-block;
      transition: color 0.3s ease;
    }

    .social-icons a:hover {
      color: var(--color-accent);
    }

    .footer-bottom {
      text-align: center;
      border-top: 1px solid #444;
      padding-top: 1rem;
      margin-top: 2rem;
      color: #aaa;
      font-size: 0.9rem;
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        text-align: center;
      }

      .footer-column {
        flex: 1 1 100%;
      }

      .social-icons {
        justify-content: center;
      }
    }
