
/* Hero Section */
        .hero {
            min-height: 90vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 80px 10px 10px;
        }

         /* Animated background with hexagon pattern */
        .grid-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 25% 25%, transparent 2%, rgba(255, 94, 0, 0.03) 2%, rgba(255, 94, 0, 0.03) 3%, transparent 3%),
                radial-gradient(circle at 75% 75%, transparent 2%, rgba(0, 178, 255, 0.03) 2%, rgba(0, 178, 255, 0.03) 3%, transparent 3%);
            background-size: 80px 80px;
            animation: grid-move 30s linear infinite;
            z-index: -2;
        }

         /* Animated shapes */
        .shapes-container {
            position: relative;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
        }

        .shape-circle {
            width: 300px;
            height: 300px;
            border: 2px solid #F05125;
            border-radius: 50%;
            top: 10%;
            left: 10%;
            animation: float-rotate 20s ease-in-out infinite;
        }

        .shape-triangle {
            width: 0;
            height: 0;
            border-left: 100px solid transparent;
            border-right: 100px solid transparent;
            border-bottom: 173px solid rgba(0, 178, 255, 0.2);
            top: 60%;
            right: 15%;
            animation: float-rotate 25s ease-in-out infinite reverse;
        }

        .shape-square {
            width: 150px;
            height: 150px;
            border: 2px solid #00B2FF;
            transform: rotate(45deg);
            bottom: 20%;
            left: 20%;
            animation: float-rotate 22s ease-in-out infinite;
        }

        @keyframes float-rotate {
            0%, 100% {
                transform: translateY(0) rotate(0deg) scale(1);
            }
            25% {
                transform: translateY(-30px) rotate(90deg) scale(1.1);
            }
            50% {
                transform: translateY(20px) rotate(180deg) scale(0.9);
            }
            75% {
                transform: translateY(-10px) rotate(270deg) scale(1.05);
            }
        }
        
        .hero-content {
            text-align: center;
            max-width: 100%;
            animation: fade-in-up 1s ease-out;
            z-index: 10;
            width: 100%;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .shape-circle,
            .shape-triangle,
            .shape-square {
                transform: scale(0.6);
            }
          /* Floating glowing particles */
.particle {
    position: fixed;
    width: 2px;
    height: 2px;
    pointer-events: none;
    opacity: 0;
    z-index: 0;
    will-change: transform, opacity;
}

.particle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #F05125;
    box-shadow: 0 0 10px #F05125, 0 0 20px #FF5E00;
    animation: float-up 12s linear infinite;
}

/* Keyframes */
@keyframes float-up {
    0% {
        transform: translateY(100vh) scale(0.6) rotate(0deg);
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1.2) rotate(720deg);
        opacity: 0;
    }
}

          
        /* Text Rotator Styles */
        .text-rotator {
            position: sticky;
            min-height: 100px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        .text-set {
            align-items: center;
            justify-content: center;
            position: absolute;
            width: 100%;
            opacity: 0;
            display: none;
        }

        .text-set.active {
            opacity: 1;
            display: block;
        }

        .glitch-text {
            font-family: 'Orbitron', monospace;
            font-size: clamp(0.98rem, 2.94vw, 2.4rem);
            font-weight: 900;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            text-shadow: 0 0 20px #F05125;
            overflow: hidden;
        }



        .char {
            display: inline-block;
            opacity: 0;
            transform: translateY(50px);
            animation: charFlyIn 0.5s ease-out forwards;
        }

        @keyframes charFlyIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .char.out {
            animation: charFlyOut 0.3s ease-in forwards;
        }

        @keyframes charFlyOut {
            to {
                opacity: 0;
                transform: translateY(-30px) rotateX(90deg);
            }
        }

        .subtitle {
            font-size: 1.5rem;
            margin: 20px 0;
            opacity: 0;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
            font-weight: 300;
        }

        .subtitle.visible {
            animation: subtitleFade 0.8s ease-out 0.5s forwards;
        }

        @keyframes subtitleFade {
            to {
                opacity: 0.6;
            }
        }

        @keyframes fade-in-up {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .glitch-text {
            font-family: 'Orbitron', monospace;
            font-size: clamp(2.2rem, 8vw, 3.2rem);
            font-weight: 900;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            text-shadow: 0 0 20px #F05125;
        }

        .glitch-text::before,
        .glitch-text::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .glitch-text::before {
            animation: glitch-1 0.5s infinite;
            color: #F05125;
            z-index: -1;
            text-shadow: -2px 0 #F05125;
        }

        .glitch-text::after {
            animation: glitch-2 0.5s infinite;
            color: #00B2FF;
            z-index: -1;
            text-shadow: 2px 0 #00B2FF;
        }

        @keyframes glitch-1 {
            0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
            20% { clip-path: inset(33% 0 33% 0); transform: translate(-2px); }
            40% { clip-path: inset(66% 0 0 0); transform: translate(2px); }
            60% { clip-path: inset(0 0 66% 0); transform: translate(1px); }
            80% { clip-path: inset(25% 0 50% 0); transform: translate(-1px); }
        }

        @keyframes glitch-2 {
            0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
            20% { clip-path: inset(50% 0 25% 0); transform: translate(2px); }
            40% { clip-path: inset(0 0 75% 0); transform: translate(-2px); }
            60% { clip-path: inset(75% 0 0 0); transform: translate(-1px); }
            80% { clip-path: inset(40% 0 40% 0); transform: translate(1px); }
        }

        .subtitle {
            font-size: 1.5rem;
            margin: 20px 0;
            opacity: 0.6;
            animation: fade-in 1s ease-out 0.5s both;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
            font-weight: 300;
        }

        @keyframes fade-in {
            from { opacity: 0; }
            to { opacity: 0.6; }
        }

        .cta-container {
            position: absolute;
            bottom: 90px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            z-index: 100;
        }

        .cta-button {
            padding: 12px 30px;
            border: none;
            font-size: 1rem;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-family: 'Orbitron', monospace;
            font-weight: 700;
        }

        .cta-primary {
            background: linear-gradient(45deg, #F05125, #0E7EC0);
            color: white;
            animation: pulse 2s infinite;
            box-shadow: 0 0 30px #F05125;
        }

        @keyframes pulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 0 30px #F05125;
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 0 0 40px #F05125;
            }
        }

        .cta-secondary {
            background: transparent;
            color: #F05125;
            border: 2px solid #F05125;
            box-shadow: inset 0 0 20px rgba(255, 94, 0, 0.1);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-secondary:hover {
            background: rgba(255, 94, 0, 0.1);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 40px #F05125;
            border-color: #ffffff;
        }


        /* Scanlines effect */
        .scanlines {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            background: linear-gradient(
                transparent 50%,
                rgba(255, 94, 0, 0.01) 50%
            );
            background-size: 100% 4px;
            animation: scanlines 8s linear infinite;
            z-index: 2;
            pointer-events: none;
        }

        @keyframes scanlines {
            0% { transform: translateY(0); }
            100% { transform: translateY(10px); }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0);
                box-shadow: 0 0 30px #F05125;
            }
            50% { 
                transform: translateY(-10px);
                box-shadow: 0 10px 40px #F05125;
            }
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }


        /* Responsive */
        @media (max-width: 768px) {
          
            .hero-content {
                padding: 10;
            }

            .glitch-text {
                font-size: clamp(1.1rem, 4.4vw, 2.2rem);
            }

            .text-rotator {
                min-height: 150px;
            }

            .subtitle {
                font-size: 1.6rem;
            }

            .cta-container {
                flex-direction: column;
                align-items: center;
            }

            .cta-button {
                width: 100%;
                max-width: 300px;
            }
          

          }




/* -----------------------------------------------------
   GENERAL BOX STYLE
------------------------------------------------------ */
.blog-box {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #ddd;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.blog-box:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.box-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  border-left: 4px solid #0E7EC0;
  padding-left: 10px;
  color: #212529;
}

/* -----------------------------------------------------
   MOST VIEWED SLIDER
------------------------------------------------------ */
.blog-slider img {
  width: 100%;
  border-radius: 10px;
  height: 260px;
  object-fit: cover;
}

.slider-item {
  position: relative;
}

.slider-item h4 {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 16px;
  border-radius: 6px;
  text-shadow: 0 3px 5px rgba(0,0,0,0.4);
}

/* Swiper Controls Styling */
.swiper-button-next,
.swiper-button-prev {
  color: #000 !important;
  font-weight: bold;
}

/* -----------------------------------------------------
   LEFT COLUMN — TOP 10 LIST
------------------------------------------------------ */
#top-10-list li {
  padding: 10px 12px;
  background: #f8f9fa;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

#top-10-list li:hover {
  background: #e9f1ff;
  transform: translateX(4px);
  border-color: #0E7EC0;
}

#top-10-list li a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 15px;
}

/* -----------------------------------------------------
   CENTER COLUMN — LATEST POSTS
------------------------------------------------------ */
.latest-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.latest-item img {
  width: 120px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

.latest-item h4 a {
  font-size: 16px;
  font-weight: 700;
  color: #212529;
  text-decoration: none;
}

.latest-item h4 a:hover {
  color: #0E7EC0;
}

/* -----------------------------------------------------
   RIGHT COLUMN — ALL POSTS
------------------------------------------------------ */
.all-post-item {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.all-post-item .date {
  display: block;
  font-size: 12px;
  color: #6c757d;
}

.all-post-item a {
  font-size: 15px;
  color: #212529;
  text-decoration: none;
  font-weight: 600;
}

.all-post-item a:hover {
  color: #0E7EC0;
}

/* -----------------------------------------------------
   RSS FEED
------------------------------------------------------ */
.rss-list li {
  margin-bottom: 10px;
  padding: 8px 12px;
  background: #f7faff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.rss-list li:hover {
  background: #e7f1ff;
  transform: translateX(4px);
}

.rss-list a {
  color: #0E7EC0;
  font-weight: 600;
  text-decoration: none;
}

/* -----------------------------------------------------
   MOBILE RESPONSIVE
------------------------------------------------------ */
@media (max-width: 991px) {
  .latest-item img {
    width: 90px;
    height: 60px;
  }

  .blog-box {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .slider-item h4 {
    font-size: 14px;
  }

  .latest-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .latest-item img {
    width: 100%;
    height: 180px;
  }
}
