/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  :root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --secondary: #10b981;
    --light: #f9fafb;
    --dark: #1e293b;
    --gray: #64748b;
    --light-gray: #e2e8f0;
  }
  
  body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  p {
    margin-bottom: 1.5rem;
  }
  
  .text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  /* Layout */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .flex {
    display: flex;
  }
  
  .flex-col {
    flex-direction: column;
  }
  
  .items-center {
    align-items: center;
  }
  
  .justify-between {
    justify-content: space-between;
  }
  
  .justify-center {
    justify-content: center;
  }
  
  .grid {
    display: grid;
  }
  
  .grid-cols-1 {
    grid-template-columns: 1fr;
  }
  
  .grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gap-4 {
    gap: 1rem;
  }
  
  .gap-8 {
    gap: 2rem;
  }
  
  .py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  
  .py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  
  .mb-8 {
    margin-bottom: 2rem;
  }
  
  /* Header */
  header {
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
  }
  
  nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  
  nav a {
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
    position: relative;
  }
  
  nav a:hover {
    color: var(--primary);
  }
  
  nav a.active {
    color: var(--primary);
  }
  
  nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
  }
  
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--dark);
      transition: transform 0.3s ease;
  }

  .mobile-menu-btn:hover {
      transform: scale(1.1);
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(to right, rgba(255,255,255,0.8), rgba(255,255,255,0.8)), url('/api/placeholder/1200/600') center/cover no-repeat;
    padding: 6rem 0;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
  
  .hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--gray);
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .btn-primary {
    background-color: var(--primary);
    color: white;
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
  }
  
  .btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* Contact Form */
  .contact-form {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }
  
  input, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--light-gray);
    border-radius: 0.375rem;
    background-color: var(--light);
    transition: border-color 0.3s;
  }
  
  input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
  }
  
  textarea {
    resize: vertical;
    min-height: 150px;
  }
  
  /* Contact Details */
  .contact-info {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  }
  
  .contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
  }
  
  /* Footer */
  footer {
    background-color: var(--dark);
    color: white;
    padding: 1rem 0;
  }
  
  .footer-links h4 {
      margin-bottom: 1.5rem;
      color: var(--light);
  }
  
  .footer-links ul {
      list-style: none;
  }
  
  .footer-links li {
      margin-bottom: 0.75rem;
  }
  
  .footer-links a {
      color: var(--light-gray);
      transition: color 0.3s;
  }
  
  .footer-links a:hover {
      color: white;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
  }
  
  .social-icon {
      text-decoration: none; /* Removes default underline from links */
  }
  
  .social-icon i {
      font-size: 1.5rem; /* Sets icon size */
      transition: transform 0.2s; /* Smooth transition for hover effect */
  }
  
  .social-icon:hover i {
      transform: scale(1.1); /* Slightly enlarges icon on hover */
  }

  .social-icon .fab.fa-facebook-f {
      color: #1877f2; /* Facebook blue */
  }
  
  .social-icon .fab.fa-twitter {
      color: #1da1f2; /* Twitter blue */
  }
  
  .social-icon .fab.fa-linkedin-in {
      color: #0077b5; /* LinkedIn blue */
  }
  
  .social-icon .fab.fa-instagram {
      color: #e1306c; /* Instagram pink */
  }
  
  .copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .grid-cols-2 {
      grid-template-columns: 1fr;
    }
    
    .hero h1 {
      font-size: 2.5rem;
    }
    
    nav ul {
      position: fixed;
      top: 100px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 70px);
      background-color: white;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      transition: left 0.3s ease;
      z-index: 99;
    }
    
    nav ul.active {
      left: 0;
    }
    
    .mobile-menu-btn {
      display: block;
    }
  }
  
  @media (max-width: 576px) {
    h1 {
      font-size: 2rem;
    }
    
    h2 {
      font-size: 1.5rem;
    }
    
    .hero h1 {
      font-size: 2rem;
    }
    
    .hero p {
      font-size: 1rem;
    }
  }
  /* Top Bar Container */
.top-bar {
    background-color: #35ad3f;
    padding: 0.3rem 0;  /* Reduced padding for a slimmer appearance */
    font-size: 0.85rem; /* Adjust font-size as needed */
  }

/* Main container for top bar content */
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px; /* Adjust max-width if needed */
  margin: 0 auto;
  padding: 0 1rem;
}

/* Social Icons styling */
.top-bar .social-icons {
  display: flex;
  gap: 1rem;
}

/* Contact Info styling */
.top-bar .contact-infos {
  /* display: flex; */
  gap: 1.5rem;
}

/* Ensure links inherit color and remove underline */
.top-bar a {
  color: inherit;
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .top-bar .container {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .top-bar .social-icons,
  .top-bar .contact-infos {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .top-bar .contact-infos span {
    display: block;
    margin: 0.25rem 0;
  }
}
