* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Navigation Bar */
nav {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #7f8c8d;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

/* Collection Section */
.collection-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #ffc117;
    /* font-weight: 400; */
    /* max-width: 700px; */
    font-size: 25px;
    margin: 0 auto;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.collection-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.collection-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.item-details {
    padding: 1.5rem;
}

.item-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.item-description {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.item-meta {
    display: flex;
    justify-content: space-between;
    color: #3498db;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    /* text-align: center; */
    padding: 2rem;
    margin-top: 3rem;
}

.footer-text {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    list-style: none;
}

.social-links li {
    margin: 0 1rem;
}

.social-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #3498db;
}
.hamburger {
display: none;
font-size: 2rem;
cursor: pointer;
color: #2c3e50;
}
@media (max-width: 768px) {
.hamburger {
display: block;
}

.nav-links {
display: none;
flex-direction: column;
width: 100%;
background-color: #fff;
position: absolute;
top: 70px; /* Adjust based on nav height */
left: 0;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-links.show {
display: flex;
}

.nav-links li {
margin: 1rem 0;
text-align: center;
}
}
/* ========== Download Section ========== */
.download {
    /* background: #587e6e; */
    padding: 60px 20px;
    text-align: center;
}

.download .section-title h3 {
    font-size: 2rem;
    color: #f4f4f5;
    margin-bottom: 10px;
}

.download .section-title p {
    color: #ffffff;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.download-btn {
    /* background-color: #ffffff; */
    color: #f8c537;
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 220px;
}

.download-btn:hover {
    background-color: #34495e;
}

.download-btn i {
    font-size: 30px;
    margin-right: 15px;
}

.download-btn-text p {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1;
    color: #bdc3c7;
}

.download-btn-text h4 {
    margin: 2px 0 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #f8c537;
}

/* ========== Footer ========== */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    /* padding: 50px 20px; */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* gap: 40px; */
    max-width: 1200px;
    margin: auto;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #f8c537;
}

.footer-col p {
    font-size: 0.9rem;
    color: #ecf0f1;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f8c537;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.social-links a {
    background-color: #34495e;
    padding: 8px 12px;
    border-radius: 5px;
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #f8c537;
    color: #2c3e50;
}

footer .copyright {
    /* text-align: center; */
    margin-top: 40px;
    font-size: 0.85rem;
    color: #bdc3c7;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .download .section-title h3 {
        font-size: 1.5rem;
    }

    .download-btn {
        /* justify-content: center; */
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        /* text-align: center; */
    }

    .footer-col {
        margin-bottom: 30px;
    }

    .social-links {
        /* justify-content: center; */
    }
    /* footer{
        margin-left: -80px;
    } */
}
:root {
    --primary: #FF5722;
    --secondary: #FF9800;
    --dark: #222;
    --light: #f5f5f5;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }

  body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
  }

  .hero {
    padding: 4rem 0;
    background: url('rummy-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    position: relative;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
  }

  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .features {
    padding: 4rem 0;
  }

  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .section-title {
    text-align: center;
    margin-bottom: 3rem;
  }

  .section-title h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1rem;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  .feature-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
  }

  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
  }

  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2rem;
    }

    .features-grid {
      grid-template-columns: 1fr;
    }

