/* General Styling */
.section {
        padding: 10px 40px 10px;
        max-width: 1200px;

        margin: 0 auto;
        color: white;
         display: flex;
    justify-content: center; /* Center the section container */
    flex-direction: column;
    margin-top: 60px;
     gap: 30px;
    }


h1 {
    text-align: center;
   font-size: 1.5em;
    margin-bottom: 30px;
}

.gallery-container {
   display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
        
       justify-content: center;
        max-width: 1200px;
         margin: 0 auto;
       
}

.gallery-container-1 {
   display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
        
       justify-content: center;
        max-width: 1200px;
         margin: 0 auto;
       
}

.gallery-item {
     background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        position: relative;
        
	height: 350px;
        display: flex;
        flex-direction: column;

         width: 100%;
    min-width: 150px;
    max-width: 170px;
    margin: 0 auto;
    padding: 15px;
}

.gallery-item-1 {
     background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        position: relative;
        height: 200px;
        display: flex;
        flex-direction: column;

         width: 100%;
    min-width: 160px;
    max-width: 240px;
    margin: 0 auto;
    padding: 15px;
}

.gallery-item:hover {
     box-shadow: 0 20px 40px rgba(255, 193, 7, 0.3);
           transform: translateY(-8px);
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.2);
        }

        .gallery-item-1:hover {
     box-shadow: 0 20px 40px rgba(255, 193, 7, 0.3);
           transform: translateY(-8px);
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.2);
        }

.gallery-item img {
    transition: all 0.4s ease;
  
            width: 100%;
            height:auto ;
            object-fit: cover;
            overflow: hidden;

            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            margin-bottom: 5px;
}

.gallery-item-1 img {
    transition: all 0.4s ease;
  
            width: 100%;
            height: 120px;
            object-fit: cover;
            overflow: hidden;

            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            margin-bottom: 5px;
}

.download-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: none;
}

/* ...existing code... */

/* Responsive Styles */
@media (min-width: 769px) and (max-width: 1100px) {
     .gallery-container {
        grid-template-columns: repeat(4, 1fr));
        gap: 15px;
        padding: 0 20px;
    }

.gallery-container-1 {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
        padding: 0 20px;
    }


	.gallery-item {
        height: 350px;
        max-width: 120px;
    }
    .gallery-item-1 {
        height: 180px;
        max-width: 220px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 10px 20px;
        margin-top: 40px;
        gap: 20px;
    }

    h1 {
        margin-bottom: 20px;
        font-size: 1.0em;
    }

   .gallery-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 0 10px;
    }

	.gallery-container-1,{
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }

    .gallery-item {
        height: 270px;
        min-width: 100px;
        max-width: 120px;
        padding: 10px;
    }
 .gallery-item-1 {
        height: 180px;
        min-width: 140px;
        max-width: 180px;
        padding: 10px;
    }
  
 
    .download-btn {
        padding: 6px 15px;
        font-size: 14px;
    }
}
/*

@media (max-width: 480px) {
  .gallery-container-1,   .gallery-container {
        grid-template-columns: repeat(1, 1fr);
        padding: 0 20px;
    }

    .gallery-item {
        height: 420px;
        max-width: 240px;
    }
    .gallery-item-1 {
        height: 160px;
        max-width: 240px;
    }

    .gallery-item img {
        height: 390px;
    }
    .gallery-item-1 img {
        height: 90px;
    }

    h1 {
        font-size: 1.5em;
    }
}
    *