/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    font-family: 'Poppins', sans-serif;
    background-color: #fefefe;
    color: #2e2e2e;
    scroll-behavior: smooth;
  }
  
  /* Variables */
  :root {
    --cricket-green: #1b5e20;
    --highlight-yellow: #ffeb3b;
    --accent-blue: #00bcd4;
    --light-bg: #f1f8e9;
    --form-bg: #ffffff;
    --border: #c8e6c9;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--cricket-green);
    padding: 1rem 2rem;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: slideDown 1s ease;
  }
  
  @keyframes slideDown {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .logo {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: 'Bangers', cursive;
    color: var(--highlight-yellow);
    letter-spacing: 1px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  
  .nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    transition: 0.3s ease;
  }
  
  .nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: var(--highlight-yellow);
    transition: width 0.3s;
  }
  
  .nav-links li a:hover::after {
    width: 100%;
  }
  
  /* Contact Section */
  .contact-section {
    padding: 4rem 2rem;
    background: var(--light-bg);
    text-align: center;
  }
  
  .contact-section h2 {
    font-size: 2.5rem;
    color: var(--cricket-green);
    margin-bottom: 2rem;
    animation: fadeIn 1.2s ease-in-out;
  }
  
  .contact-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: auto;
  }
  
  @media (min-width: 768px) {
    .contact-container {
      flex-direction: row;
      justify-content: space-between;
    }
  }
  
  .contact-details, .feedback-form {
    background: var(--form-bg);
    border: 2px solid var(--border);
    border-radius: 15px;
    padding: 2rem;
    flex: 1;
    box-shadow: 0 10px 30px rgba(27, 94, 32, 0.1);
    transition: transform 0.3s ease;
  }
  
  .contact-details:hover,
  .feedback-form:hover {
    transform: scale(1.02);
  }
  
  .contact-details h3,
  .feedback-form h3 {
    color: var(--cricket-green);
    margin-bottom: 1rem;
    font-size: 1.8rem;
  }
  
  .contact-details p,
  .contact-details a,
  .feedback-form p {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #333;
    line-height: 1.5;
  }
  
  .contact-details a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
  }
  
  .contact-details a:hover {
    text-decoration: underline;
  }
  
  /* Feedback Form */
  .feedback-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .feedback-form input,
  .feedback-form textarea {
    padding: 0.9rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border 0.3s ease;
  }
  
  .feedback-form input:focus,
  .feedback-form textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
  }
  
  .feedback-form button {
    background: var(--accent-blue);
    color: white;
    font-weight: bold;
    padding: 0.9rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
  }
  
  .feedback-form button:hover {
    background: #008ba3;
    transform: translateY(-2px);
  }
  
  .thank-you {
    margin-top: 1rem;
    color: green;
    font-weight: bold;
    animation: fadeIn 0.6s ease-in-out;
  }
  
  /* Footer */
  footer {
    background: var(--cricket-green);
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 4rem;
    border-top: 5px solid var(--highlight-yellow);
  }
  
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1rem;
  }
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 1rem 0;
    /* background: #f1f6fb;
    border-top: 2px solid #1dd1a1; */
    margin-top: 2rem;
  }
  
  .social-icons a {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 50%;
    overflow: hidden;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .social-icons a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .social-icons img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .social-icons {
      flex-wrap: wrap;
      gap: 15px;
    }
  
    .social-icons a {
      width: 45px;
      height: 45px;
    }
  }
  