nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
   
  }
  nav ul li a:hover {
    background-color:#385069;
  }
  nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s;
  }
  header {
    text-align: center;
    background: #34495e;
    padding: 20px 20px 20px;
  }
  
  header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #34495e;
  }
#awards-flip {
    background: #f5f5f5;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
  }
  
  .container-flip {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .main-title {
    font-size: 3rem;
    color:  rgb(194, 72, 113);
    margin-bottom: 80px;
  }
  
  .flip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    justify-items: center;
  }
  
  .flip-card {
    background: transparent;
    width: 260px;
    height: 320px;
    perspective: 1000px;
  }
  
  .flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  
  .flip-card:hover .flip-inner {
    transform: rotateY(180deg);
  }
  
  .flip-front, .flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 20px;
  }
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    color:  rgb(194, 72, 113);
    
  }
  .flip-front img {
    width: 200px;
    height: 150px;
    margin-bottom: 20px;
  }
  
  .flip-front h3 {
    color:  rgb(194, 72, 113);
    font-size: 1.5rem;
  }
  
  .flip-back {
    transform: rotateY(180deg);
    background:  rgb(194, 72, 113);
    color: #fff;
  }
  
  .flip-back h3 {
    margin-bottom: 10px;
  }
  
  .flip-back p {
    font-size: 1rem;
    padding: 0 10px;
  }
  .footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 2rem 0;
    font-family: Arial, sans-serif;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .footer-column {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-column h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ecf0f1;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
  display:flex;
  gap: 2rem;
  }
  
  .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  .footer-links li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
  }
  
  .footer-links li a:hover {
    color: #677e96;
  }
  
  .footer-column a {
    text-decoration: none;
    color: #ecf0f1;
  }
  
  .footer-column a:hover {
    color: #677e96;
  }
  
  .footer-bottom {
    text-align: center;
    background-color: #34495e;
    padding: 1rem;
    margin-top: 2rem;
  }
  
  .footer-bottom p {
    font-size: 1rem;
    color: #bdc3c7;
  }
  