
/* ========================================================================== */
/* Banner Section */
    .gallery-banner-section {
  position: relative;
  height: 50vh;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.gallery-banner-slider {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 50vh;
}

.gallery-banner-slide {
  position: absolute;
  width: 100%; height: 50vh;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.gallery-banner-slide.active {
  opacity: 1;
  z-index: 1;
}

.gallery-banner-content {
  position: relative;
  z-index: 2;
  /* padding: 20px; */
}

.gallery-banner-title {
  font-size: 3rem;
  font-weight: 800;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
  margin-bottom: 10px;
}

.gallery-banner-subtitle {
  font-size: 1.3rem;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
  margin-bottom: 20px;
}

.gallery-banner-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 2.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery-banner-title { font-size: 2rem; }
  .gallery-banner-subtitle { font-size: 1rem; }
  .gallery-banner-icons { font-size: 2rem; }
}

@media (max-width: 576px) {
  .gallery-banner-section {
    height: auto;
    padding: 60px 20px;
  }
}
/* ================================================================= */
/* gallery-section-1 */
.gallery-section-1 {
  padding: 40px 20px;
  background: #f7f7f7;
}
.gallery-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.gallery-grid img {
  width: 95%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* gallery-section-2 */
.gallery-section-2 {
  padding: 40px 20px;
  background: #fff;
}
.masonry-gallery {
  column-count: 2;
  column-gap: 15px;
}
.masonry-gallery img {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.masonry-gallery img:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
  .masonry-gallery {
    column-count: 1;
  }
}

/* gallery-section-3 */
.trophy-slider-section {
  padding: 40px 20px;
  background: linear-gradient(to right, #e0eafc, #cfdef3);
}

.trophy-slider-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.trophy-slider-wrapper {
  width: 100%;
  padding-bottom: 40px;
}

.trophy-slide {
  text-align: center;
  padding: 10px;
}

.trophy-slide-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.trophy-slider-pagination {
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .trophy-slider-heading {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .trophy-slide-img {
    border-radius: 8px;
  }
}



/* ========================================================================================= */
       .quotes-section {
  background: linear-gradient(to right, #fdfcfb, #e2d1c3);
  padding: 60px 20px;
}

.quotes-container {
  max-width: 1200px;
  margin: 0 auto;
}

.quotes-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #5c4033;
  margin-bottom: 40px;
  position: relative;
}

.quotes-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #d4af37;
  margin: 12px auto 0;
  border-radius: 2px;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.quote-card {
  background: #fff;
  border: 2px solid #f5deb3;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.quote-text {
  font-size: 1.1rem;
  color: #333;
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.6;
}

.quote-author {
  text-align: right;
  font-weight: bold;
  color: #b8860b;
  font-size: 0.95rem;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .quotes-title {
    font-size: 2rem;
  }

  .quote-text {
    font-size: 1rem;
  }

  .quote-author {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .quotes-title {
    font-size: 1.6rem;
  }

  .quote-text {
    font-size: 0.95rem;
  }

  .quotes-grid {
    gap: 20px;
  }
}
/* ======================================================== */
        /* Gallery Section */
        .gallery-section {
            background: #f8f9fa;
            padding: 0;
        }

        .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
            padding:10px;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .gallery-title {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 20px;
            position: relative;
        }

        .gallery-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #ffd700, #ffed4a);
            border-radius: 2px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .gallery-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            transform-style: preserve-3d;
        }

        .gallery-card:hover {
            transform: translateY(-10px) rotateX(5deg);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }

        .card-image {
            width: 100%;
            height: 250px;
            background: url('https://example.com/your-image.jpg');
            background-size: cover;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 49%, rgba(255,255,255,0.1) 50%, transparent 51%);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .card-content {
            padding: 25px;
        }

        .card-title {
            font-size: 1.3rem;
            color: #333;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .card-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        /* 3D Ribbon */
        .ribbon {
            position: absolute;
            top: 20px;
            right: -10px;
            z-index: 1;
        }

        .ribbon-content {
            background: linear-gradient(135deg, #ff6b6b, #ee5a52);
            color: white;
            padding: 8px 25px;
            font-size: 0.9rem;
            font-weight: bold;
            position: relative;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        .ribbon-content::before {
            content: '';
            position: absolute;
            top: 100%;
            right: 0;
            border-left: 10px solid #d63447;
            border-bottom: 10px solid transparent;
        }

        .ribbon-content::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            border-right: 10px solid #d63447;
            border-bottom: 10px solid transparent;
        }

        /* Special Cards */
        .gallery-card:nth-child(3n) .ribbon-content {
            background: linear-gradient(135deg, #ffd700, #ffed4a);
            color: #333;
        }

        .gallery-card:nth-child(3n) .ribbon-content::before,
        .gallery-card:nth-child(3n) .ribbon-content::after {
            border-left-color: #f1c40f;
            border-right-color: #f1c40f;
        }

        .gallery-card:nth-child(5n) .ribbon-content {
            background: linear-gradient(135deg, #4ecdc4, #44a08d);
        }

        .gallery-card:nth-child(5n) .ribbon-content::before,
        .gallery-card:nth-child(5n) .ribbon-content::after {
            border-left-color: #3a9b96;
            border-right-color: #3a9b96;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .banner-title {
                font-size: 2.5rem;
            }
            
            .banner-subtitle {
                font-size: 1.2rem;
            }
            
            .trophy-icons {
                gap: 20px;
            }
            
            .trophy-icon1 {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }
            
            /* .gallery-grid {
                /* grid-template-columns: 1fr; */
            /* } */ */
            
            .quotes-grid {
                grid-template-columns: 1fr;
            }
        }
/* ==================================================================================================================== */
 .studio-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .main-content-area {
            background: white;
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .studio-title {
            color: #8B4513;
            font-size: 3rem;
            margin-bottom: 25px;
            text-align: center;
            border-bottom: 4px solid #DAA520;
            padding-bottom: 15px;
            font-weight: bold;
        }

        .section-heading {
            color: #8B4513;
            font-size: 2rem;
            margin: 30px 0 20px 0;
            border-left: 5px solid #DAA520;
            padding-left: 20px;
        }

        .hero-description {
            font-size: 1.2rem;
            text-align: center;
            color: #666;
            margin-bottom: 35px;
            font-style: italic;
            line-height: 1.8;
        }

        .featured-banner {
            background: linear-gradient(45deg, #DAA520, #FFD700);
            color: white;
            padding: 25px;
            border-radius: 10px;
            margin: 25px 0;
            text-align: center;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .products-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .product-item {
            background: #f9f9f9;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .product-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
            border-color: #DAA520;
        }

        .product-title {
            color: #8B4513;
            margin-bottom: 15px;
            font-size: 1.4rem;
            font-weight: bold;
        }

        .benefits-listing {
            list-style: none;
            padding: 0;
        }

        .benefits-listing li {
            padding: 10px 0;
            padding-left: 25px;
            position: relative;
            font-size: 1rem;
        }

        .benefits-listing li:before {
            content: "✓";
            color: #DAA520;
            font-weight: bold;
            font-size: 1.2rem;
            position: absolute;
            left: 0;
        }

        .contact-banner {
            background: linear-gradient(135deg, #8B4513, #DAA520);
            color: white;
            padding: 35px;
            border-radius: 12px;
            text-align: center;
            margin: 35px 0;
        }

        .contact-banner .section-heading {
            color: white;
            border: none;
            padding: 0;
            margin-bottom: 20px;
        }

        .action-button {
            background: white;
            color: #8B4513;
            padding: 15px 35px;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin: 12px;
        }

        .action-button:hover {
            background: #f0f0f0;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }

        .testimonial-block {
            background: #f8f8f8;
            border-left: 6px solid #DAA520;
            padding: 25px;
            margin: 30px 0;
            font-style: italic;
            border-radius: 0 8px 8px 0;
        }

        /* Mobile Responsive - 320px to 768px */
        @media (max-width: 768px) {
            .studio-wrapper {
                padding: 15px;
            }
            
            .main-content-area {
                padding: 25px;
            }
            
            .studio-title {
                font-size: 2.2rem;
            }
            
            .section-heading {
                font-size: 1.6rem;
            }
            
            .products-showcase {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .product-item {
                padding: 20px;
            }
            
            .hero-description {
                font-size: 1.1rem;
            }
            
            .action-button {
                padding: 12px 25px;
                font-size: 1rem;
                margin: 8px;
            }
            
            .contact-banner {
                padding: 25px;
            }
        }

        /* Tablet Responsive - 769px to 1024px */
        @media (min-width: 769px) and (max-width: 1024px) {
            .studio-wrapper {
                padding: 20px;
            }
            
            .main-content-area {
                padding: 20px;
            }
            
            .studio-title {
                font-size: 2.6rem;
            }
            
            .section-heading {
                font-size: 1.8rem;
            }
            
            .products-showcase {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .hero-description {
                font-size: 1.15rem;
            }
        }

        /* Desktop Responsive - 1025px and above */
        @media (min-width: 1025px) {
            .studio-wrapper {
                padding: 25px;
            }
            
            .main-content-area {
                padding: 45px;
            }
            
            .products-showcase {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Large Desktop - 1440px and above */
        @media (min-width: 1440px) {
            .studio-wrapper {
                padding: 30px;
            }
            
            .main-content-area {
                padding: 0px;
            }
            
            .studio-title {
                font-size: 3.2rem;
            }
            
            .section-heading {
                font-size: 2.1rem;
            }
        }
        .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.trophy-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}
.trophy-card:hover {
  transform: translateY(-5px);
}

.trophy-img {
  position: relative;
  overflow: hidden;
}
.trophy-img img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.trophy-card:hover .trophy-img img {
  transform: scale(1.05);
}

.ribbon {
  position: absolute;
  top: 12px;
  left: -8px;
  background: #ffd700;
  color: #000;
  font-weight: bold;
  padding: 5px 15px;
  transform: rotate(-10deg);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
