/* ===== HEADER ===== */

i {
  color: whitesmoke;
}
.header {
      position: fixed;
        top: 0;
          width: 100%;
      background-color:transparent;
                   backdrop-filter: blur(5px); 
                box-shadow: var(--shadow-sm);
                  z-index: 100;
                    padding: var(--space-sm) 0;
                      transition: all 0.3s ease;
}

.header.scrolled {
      padding: var(--space-xs) 0;
}

.header .container {
      display: flex;
        justify-content: space-between;
          align-items: center;
}

.nav-menu {
      display: flex;
        list-style: none;
          gap: var(--space-md);
            align-items: center;
}

.nav-menu a {
      color: var(--darker);
        font-weight: 500;
          position: relative;
}

.nav-menu a:after {
      content: '';
        position: absolute;
          bottom: -5px;
            left: 0;
              width: 0;
                height: 2px;
                  background: var(--primary);
                    transition: width 0.3s ease;
}

.nav-menu a:hover:after,
.nav-menu a:focus:after {
      width: 100%;
}

.mobile-menu-toggle {
      display: none;
        background: none;
          border: none;
            cursor: pointer;
}
.footer-cta .cta-button {
    background: red;
    color: white;
    margin-bottom: 0.5rem;
}
/* ===== BUTTONS ===== */
.cta-button {
      display: inline-block;
        background: var(--primary);
          color: white;
            padding: 12px 28px;
              border-radius: var(--radius-md);
                font-weight: 600;
                  transition: all 0.3s ease;
                    border: white;
}

.cta-button:hover {
      background: transparent;
        color: var(--primary);
          transform: translateY(-3px);
            box-shadow: var(--shadow-md);
}

/* ===== HERO SECTION ===== */
.hero {
      min-height: 100vh;
        display: flex;
          align-items: center;
            position: relative;
              background: linear-gradient(120deg, #250101 0%, #030d22 100%);
                  overflow: hidden;
}

.hero-content {
      position: relative;
        z-index: 2;
          max-width: 700px;
}

.hero-stroke div {
  content: "";
   /* Essential for pseudo-elements */
  display: block; /* Makes it a block-level element so it takes up space and accepts width/height */
  height: 10px; /* Thickness of the stroke */
  background-color: red; /* Color of the stroke */
  width: 100%; /* Or a fixed width, e.g., 200px */

  /* Positioning the stroke */
  position: absolute;
  top: 0; /* Aligns the top of the stroke with the top of the parent div */
  left: 0;
  transform: translateY(-100%);
}
  .hero h1 {
      margin-bottom: var(--space-md);
        color: white;
}
/*
.subtitle {
      font-size: var(--text-md);
        color: whitesmoke;
          margin-bottom: var(--space-lg);
            max-width: 600px;
            display:inline;
}
*/
.hero-scroll-indicator {
      position: absolute;
        bottom: 40px;
          left: 50%;
            transform: translateX(-50%);
              width: 30px;
                height: 50px;
                  border: 2px solid var(--light);
                    border-radius: 15px;
}

.hero-scroll-indicator:before {
      content: '';
        position: absolute;
          top: 10px;
            left: 50%;
              width: 6px;
                height: 6px;
                  background: var(--primary);
                    border-radius: 50%;
                      transform: translateX(-50%);
                        animation: scrollIndicator 1.5s infinite;
}

@keyframes scrollIndicator {
      0% { top: 10px; opacity: 1; }
        100% { top: 30px; opacity: 0; }
}

/* ===== SERVICES ===== */
.services-preview {
      background: black;
}

.services-grid {
      display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: var(--space-lg);
            margin-top: var(--space-xl);
}

.service-card {
      background: transparent;
        border-radius: var(--radius-lg);
          padding: var(--space-lg);
            box-shadow: var(--shadow-sm);
              transition: all 0.3s ease;
                border: 1px solid #e2e8f0;
}

.service-card:hover {
      transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
          border-color: var(--primary);
}
*/

.icon-wrapper {
      width: 70px;
        height: 70px;
          background: rgba(37, 99, 235, 0.1);
            border-radius: 50%;
              display: flex;
                align-items: center;
                  justify-content: center;
                    margin-bottom: var(--space-md);
}

.icon-wrapper img {
      width: 36px;
        height: 36px;
}

/* ===== FOOTER ===== */
.footer {
          background-color: black;        
          color: white;
          padding: var(--space-xl) 0 var(--space-md);
}

.footer a {
      color: #cbd5e1;
        transition: color 0.3s ease;
}

.footer a:hover {
      color: white;
}

.footer-grid {
      display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: var(--space-xl);
            margin-bottom: var(--space-xl);
}

.footer h4 {
      color: white;
        margin-bottom: var(--space-md);
          font-size: var(--text-md);
}

.footer ul {
      list-style: none;
}

.footer ul li {
      margin-bottom: var(--space-sm);
}

.footer-bottom {
      border-top: 1px solid #334155;
        padding-top: var(--space-md);
          display: flex;
            flex-wrap: wrap;
              justify-content: space-between;
                align-items: center;
                  gap: var(--space-md);
}

.social-links {
      display: flex;
        gap: var(--space-md);
}

.social-links a {
      display: flex;
        align-items: center;
          justify-content: center;
            width: 40px;
              height: 40px;
                background: rgba(255, 255, 255, 0.1);
                  border-radius: 50%;
                    transition: all 0.3s ease;
}

.social-links a:hover {
      background: var(--light);
        transform: translateY(-3px);
}

address {
      font-style: normal;
        margin-top: var(--space-md);
          line-height: 1.8;
}
  /* Parallax Container */
        .parallax-container {
            position: fixed;
            width: 100%;
            height: 100vh;
            top: 0;
            left: 0;
            z-index: -1;
            overflow: hidden;
        }
        
  /* Hero Slider Styles */
        .hero-slider {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }
        
        .slider-track {
            display: flex;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }
        
        .slide {
            min-width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
        }
        
        /* Using Picsum placeholder images */
        .slide-1 { background-image: url('https://picsum.photos/1920/1080?random=1'); }
        .slide-2 { background-image: url('https://picsum.photos/1920/1080?random=2'); }
        .slide-3 { background-image: url('https://picsum.photos/1920/1080?random=3'); }
        .slide-4 { background-image: url('https://picsum.photos/1920/1080?random=4'); }
        
        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background: red;
            transform: scale(1.2);
        }
        
        /* Hero Content */
        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 5;
            width: 80%;
            max-width: 800px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
        }
        
        /* Overlay */
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.4);
            z-index: 1;
        }
        
        /* Basic reset and header styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .header {
            position: fixed;
            top: 0;
            width: 100%;
         /*   background: rgba(0,0,0,0.7); */
            padding: 15px 0;
            z-index: 100;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            /*display: flex;*/
            justify-content: space-between;
            align-items: center;
        }
        :root {
            --space-sm: 1rem;
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
            --header-red: rgb(150, 8, 8);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            box-shadow: var(--shadow-sm);
            z-index: 100;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            color: white;
            font-weight: bold;
            font-size: 1.5rem;
            text-decoration: none;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        .nav-menu a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: white;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: white;
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        /* Scroll effect */
        .header.scrolled {
            background: linear-gradient(
                to bottom,
                rgb(150, 8, 8) 0%,
                rgb(150, 8, 8)50%,
                rgb(255, 28, 28) 100%
            );
            padding: 0.7rem 0;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 20px;
        }
        
        .nav-menu a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }

        /* Blog Page Container */

/* Blog Header */
.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-header h1 {
    font-size: 2.5rem;
    color: black;
}

/* Posts Grid Layout */
.posts-grid {
  display: grid;
  margin-bottom: 60px;
}
/* Individual Post Styling */
.blog-post {
    background: black;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;

}

.blog-post:hover {
    transform: translateY(-5px);
}

.post-thumbnail {
    margin-bottom: 20px;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-post h2 {
    font-size: 1.5rem;
    margin: 0 20px 10px;
    color: black;
}

.blog-post h2 a {
    color: white;
    text-decoration: none;
}

.blog-post h2 a:hover {
    color: #0073aa;
}

.post-meta {
    color: white;
    font-size: 0.9rem;
    margin: 0 20px 15px;
}

.post-excerpt {
    margin: 0 20px 20px;
    line-height: 1.6;
    color:white;
}

.read-more {
    display: inline-block;
    margin: 0 20px 20px;
    padding: 8px 15px;
    background: red;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

/* Pagination */
.pagination {
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-header {
        margin-bottom: 40px;
    }
}
.blog-single-container {
  max-width: 800px !important;
  margin: 0 auto;
  padding: 30px !important;
  top: 20px;
}