/* Enhanced Footer CSS */

/* Main footer container */
footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px; /* Increased top padding */
    font-family: 'Inter', sans-serif;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px; /* Increased gap between sections */
  }
  
  /* Branding section */
  .footer-branding {
    flex: 1 1 300px;
  }
  
  .footer-branding h3 {
    font-size: 28px; /* Larger brand name */
    margin-bottom: 16px;
    font-weight: 700;
  }
  
  .footer-branding p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
  }
  
  /* Contact section - ENHANCED */
  .footer-contact {
    flex: 1 1 350px; /* Increased width */
    background-color: rgba(255, 255, 255, 0.1); /* Subtle background */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
    padding: 12px 15px; /* More padding */
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
  }
  
  .contact-item:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .contact-item i {
    font-size: 24px; /* Larger icons */
    margin-right: 15px;
    color: #4a9eff; /* Accent color for icons */
  }
  
  .contact-item a {
    color: #ffffff;
    font-size: 18px; /* Larger text */
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .contact-item a:hover {
    color: #4a9eff;
    text-decoration: underline;
  }
  
  /* Add a title for the contact section */
  .footer-contact::before {
    content: "Get in Touch";
    display: block;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
  }
  
  /* Copyright section */
  .footer-bottom {
    width: 100%;
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
  }
  
  /* Responsive tweaks */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 30px;
    }
    
    .footer-contact {
      width: 100%;
      padding: 20px;
    }
    
    .contact-item {
      padding: 10px;
    }
    
    .contact-item i {
      font-size: 22px;
    }
    
    .contact-item a {
      font-size: 16px;
    }
  }
  