/* blog banner  */
.blog-hero-section {
  position: relative;
  height: 50vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.blog-hero-slider {
  position: absolute;
  top: 0; left: 0;
  width: 100%; 
  height: 50vh;
}

.blog-hero-slide {
  position: absolute;
  width: 100%;
height: 50vh;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.blog-hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.blog-hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow:
    2px 2px 0 #000,
    4px 4px 0 #333,
    6px 6px 6px rgba(0, 0, 0, 0.6); /* 3D layered effect */
}

.blog-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 25px;
  text-shadow:
    1px 1px 0 #000,
    2px 2px 0 #333,
    3px 3px 5px rgba(0, 0, 0, 0.5); /* Subtle 3D shadow */
}


.blog-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.blog-btn {
  padding: 10px 25px;
  border: 2px solid rgb(7, 7, 7);
  border-radius: 25px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
  color: rgb(245, 238, 238);
}

.blog-btn-primary {
  background-color: #00a8cc;
}

.blog-btn-secondary {
  background-color: transparent;
}

.blog-btn:hover {
  background-color: white;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-hero-title {
    font-size: 2rem;
  }

  .blog-hero-subtitle {
    font-size: 1rem;
  }

  .blog-btn {
    padding: 8px 20px;
  }
}
/* ============================================================================= */
/* blog section  */
        .trophy-studio-main-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .trophy-studio-header-section {
            text-align: center;
            margin: 20px;
        }

        .trophy-studio-main-title {
            font-size: 3rem;
            /* color: #fff; */
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .trophy-studio-subtitle {
            font-size: 1.2rem;
            /* color: #f0f0f0; */
            font-weight: 300;
        }

        .trophy-studio-blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin: 10px;
            margin-bottom: 50px;
        }

        .trophy-studio-blog-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .trophy-studio-blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }

        .trophy-studio-card-image {
            width: 100%;
            height: 45vh;
            object-fit: cover;
            border-bottom: 3px solid #667eea;
        }

        .trophy-studio-card-content {
            padding: 25px;
        }

        .trophy-studio-card-title {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
            line-height: 1.3;
        }

        .trophy-studio-card-description {
            color: #000000;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .trophy-studio-know-more-btn {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .trophy-studio-know-more-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
        }
    .trophy-studio-card-content {
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* ========================================================================== */
/* modals  */

      /* Fixed Modal CSS - Centered with Square Image */
.trophy-studio-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.trophy-studio-modal-container {
    position: absolute;
    top: 50%;
    left: 47%;
    transform: translate(-50%, -50%);
    background: white;
     border-radius: 20px; 
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.trophy-studio-modal-header {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.trophy-studio-modal-image {
    width: 100%;
    height: 100%;
    /* border-radius: 20px; */
    object-fit: cover; /* Square image fix */
}

.trophy-studio-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    color: #000000;
    transition: all 0.3s ease;
}

.trophy-studio-modal-close:hover {
    background: white;
    transform: scale(1.1);
}

.trophy-studio-modal-content {
    padding: 40px;
}

.trophy-studio-modal-title {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.trophy-studio-modal-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.trophy-studio-meta-item {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #000000;
}

.trophy-studio-blog-content {
    color: #000000;
    line-height: 1.8;
    font-size: 1.1rem;
}

.trophy-studio-blog-content h2 {
    color: #667eea;
    font-size: 1.8rem;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.trophy-studio-blog-content h3 {
    color: #764ba2;
    font-size: 1.4rem;
    margin: 25px 0 10px 0;
    font-weight: 600;
}

.trophy-studio-blog-content p {
    margin-bottom: 18px;
    text-align: justify;
}

.trophy-studio-blog-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.trophy-studio-blog-content li {
    margin-bottom: 8px;
}

.trophy-studio-blog-content strong {
    color: #667eea;
    font-weight: 600;
}

/* Trophy images */
.trophy-icon img {
    width: 420px;
    height: auto;
}

/* Mobile Responsive (480px and below) */
@media (max-width: 480px) {
    .trophy-studio-modal-container {
        width: 95%;
        margin: 10px;
    }
    
    .trophy-studio-modal-header {
        height: 200px;
    }
    
    .trophy-studio-modal-content {
        padding: 20px;
    }
    
    .trophy-studio-modal-title {
        font-size: 1.7rem;
    }
    
    .trophy-studio-main-title {
        font-size: 1.8rem;
    }
    
    .trophy-studio-card-title {
        font-size: 1.3rem;
    }
    
    .trophy-studio-blog-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 10px;
    }
    
    .trophy-icon img {
        width: 280px;
    }
    .trophy-studio-modal-title {
    font-size: 1.2rem;
    }
}

/* Tablet Responsive (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .trophy-studio-modal-container {
        width: 50%;
    }
    
    .trophy-studio-modal-header {
        height: 250px;
    }
    
    .trophy-studio-modal-content {
        padding: 25px;
    }
    
    .trophy-studio-modal-title {
        font-size: 2rem;
    }
    
    .trophy-studio-main-title {
        font-size: 2.2rem;
    }
    
    .trophy-studio-card-content {
        padding: 20px;
    }
    
    .trophy-studio-blog-grid {
        gap: 20px;
        margin: 10px;
    }
    
    .trophy-icon img {
        width: 350px;
    }
    .trophy-studio-modal-title {
    font-size: 1.5rem;
    }
}

/* Large Tablet/Small Laptop (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .trophy-studio-modal-container {
        width: 50%;
    }
    
    .trophy-studio-modal-header {
        height: 280px;
    }
    .trophy-studio-modal-title {
    font-size: 2rem;
    }
    .trophy-studio-blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .trophy-icon img {
        width: 380px;
    }
}

/* Desktop/Laptop (1025px and above) */
@media (min-width: 1025px) {
    .trophy-studio-modal-container {
        width: 50%;
      
    }
    
    .trophy-studio-modal-header {
        height: 500px;
    }
    
    .trophy-icon img {
        width: 350px;
    }
}
