 @import url(theme.css);

 .hero-banner {
     background: linear-gradient(135deg, rgba(237, 28, 36, 0.9), rgba(183, 28, 28, 0.9)),
         url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
     background-size: cover;
     background-position: center;
     color: white;
     padding: 120px 0 80px;
     position: relative;
     overflow: hidden;
 }

 .hero-banner::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
     pointer-events: none;
 }

 .hero-content {
     position: relative;
     z-index: 2;
     text-align: center;
     animation: fadeInUp 1s ease-out;
 }

 .hero-title {
     font-size: 4.5rem;
     font-weight: 700;
     margin-bottom: 1.5rem;
     background: linear-gradient(45deg, #ffffff, #e0e7ff);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
 }

 .hero-subtitle {
     font-size: 1.4rem;
     font-weight: 300;
     margin-bottom: 2rem;
     opacity: 0.9;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
 }

 .hero-cta {
     background: rgba(255, 255, 255, 0.2);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.3);
     padding: 12px 30px;
     border-radius: 50px;
     color: white;
     text-decoration: none;
     font-weight: 500;
     transition: all 0.3s ease;
     display: inline-flex;
     align-items: center;
     gap: 10px;
 }

 .hero-cta:hover {
     background: rgba(255, 255, 255, 0.3);
     transform: translateY(-2px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
     color: white;
 }

 /* Blog Section */
 .blog-section {
     background: #fafbfc;
     padding: 80px 0;
     position: relative;
 }

 .section-title {
     text-align: center;
     margin-bottom: 60px;
 }

 .section-title h2 {
     font-size: 3rem;
     font-weight: 700;
     color: #1a1a1a;
     margin-bottom: 15px;
     position: relative;
 }

 .section-title p {
     font-size: 1.2rem;
     color: #666;
     max-width: 600px;
     margin: 0 auto;
 }

 /* Blog Cards */
 .blog-card {
     background: white;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
     transition: all 0.4s ease;
     margin-bottom: 30px;
     position: relative;
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .blog-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
 }

 .blog-card-image {
     position: relative;
     overflow: hidden;
     height: 250px;
     background-position: center;
     background-size: cover;
     background-repeat: no-repeat;
 }

 .blog-card-image::after {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 60px;
     height: 60px;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .blog-card-image i {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     font-size: 24px;
     color: white;
     z-index: 2;
 }

 .blog-card-content {
     padding: 30px;
 }

 .blog-meta {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 15px;
     font-size: 0.9rem;
     color: #888;
 }

 .blog-meta .badge {
     background: linear-gradient(135deg, #ed1c24, #b71c1c);
     color: white;
     font-size: 0.8rem;
     padding: 5px 12px;
     border-radius: 20px;
     font-weight: 500;
 }

 .blog-title {
     font-size: 1.5rem;
     font-weight: 700;
     color: #1a1a1a;
     margin-bottom: 15px;
     line-height: 1.4;
     transition: color 0.3s ease;
      display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .blog-card:hover .blog-title {
     color: #ed1c24;
 }

 .blog-excerpt {
     color: #666;
     font-size: 1rem;
     line-height: 1.6;
     margin-bottom: 20px;
     display: -webkit-box;
     -webkit-line-clamp: 4;
     -webkit-box-orient: vertical;
     overflow: hidden;
     text-overflow: ellipsis;
     height: 100px;
 }

 .blog-footer {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding-top: 20px;
     border-top: 1px solid #eee;
 }

 .author-info {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .author-avatar {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: linear-gradient(135deg, #ed1c24, #b71c1c);
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-weight: 600;
 }

 .author-name {
     font-weight: 600;
     color: #1a1a1a;
     font-size: 0.9rem;
 }

 .read-more {
     color: #ed1c24;
     text-decoration: none;
     font-weight: 600;
     font-size: 0.9rem;
     display: inline-flex;
     align-items: center;
     gap: 5px;
     transition: all 0.3s ease;
 }

 .read-more:hover {
     color: #000;
     transform: translateX(3px);
 }

 /* Floating Elements */
 .floating-element {
     position: absolute;
     border-radius: 50%;
     background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
     animation: float 6s ease-in-out infinite;
 }

 .floating-element:nth-child(1) {
     width: 100px;
     height: 100px;
     top: 20%;
     left: 10%;
     animation-delay: 0s;
 }

 .floating-element:nth-child(2) {
     width: 60px;
     height: 60px;
     top: 60%;
     right: 15%;
     animation-delay: 2s;
 }

 .floating-element:nth-child(3) {
     width: 80px;
     height: 80px;
     bottom: 20%;
     left: 20%;
     animation-delay: 4s;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-20px);
     }
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .hero-title {
         font-size: 2.5rem;
     }

     .hero-subtitle {
         font-size: 1.1rem;
     }

     .section-title h2 {
         font-size: 2rem;
     }

     .blog-card-content {
         padding: 20px;
     }

     .blog-title {
         font-size: 1.3rem;
     }
 }