* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: #fff;
  }
  
  header {
    background: #111;
    padding: 15px 30px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
  }
  
  .logo {
    font-family: 'Unica One', cursive;
    font-size: 28px;
    color: red;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-links {
    display: flex;
    gap: 30px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    position: relative;
  }
  
  .nav-links a:hover::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 2px;
    width: 100%;
    background: red;
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .hamburger div {
    background: white;
    height: 3px;
    margin: 4px;
    width: 25px;
  }
  
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      background: #111;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .hamburger {
      display: flex;
    }
  }
  














  .slider {
    margin-top: 60px; /* Reduced for mobile */
    position: relative;
    height: 60vh; /* Smaller height for mobile */
    overflow: hidden;
    touch-action: pan-y; /* Enable touch scrolling */
  }
  
  .slides {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out; /* Faster transition for mobile */
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight */
  }
  
  .slide.active {
    opacity: 1;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none; /* Prevent image drag on mobile */
  }
  
  /* Mobile-friendly controls */
  .slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 10px; /* Reduced padding for mobile */
    z-index: 10;
  }
  
  .slider-controls button {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 12px 15px; /* Slightly larger for touch */
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 16px; /* Larger text for mobile */
    width: 40px; /* Fixed size */
    height: 40px; /* Fixed size */
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation; /* Better touch response */
  }
  
  .slider-controls button:hover {
    background: rgba(229, 9, 20, 0.8);
  }
  
  /* Mobile-specific optimizations */
  @media (max-width: 768px) {
    .slider {
      margin-top: 50px;
      height: 50vh; /* Even smaller on very small devices */
    }
    
    .slider-controls button {
      padding: 10px 12px;
      width: 36px;
      height: 36px;
    }
    
    /* Add swipeable area for touch devices */
    .slides {
      overflow: hidden;
    }
  }
  
  /* Prevent text selection during swipe */
  .slides {
    user-select: none;
    -webkit-user-select: none;
  }














  
  @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500&family=Poppins&display=swap');

  .about-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.15);
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    color: #fff;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .about-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    color: #e50914;
    margin-bottom: 25px;
  }
  
  .about-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  
  .read-more-btn {
    display: inline-block;
    margin-top: 25px;
    background-color: #e50914;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .read-more-btn:hover {
    background-color: #ff1f2a;
  }


  /* Products & Services Section */
.services-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.15);
    text-align: center;
  }
  
  .services-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    color: #e50914;
    margin-bottom: 30px;
  }
  
  .tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
  }
  
  .tab-btn {
    padding: 12px 20px;
    background: #111;
    color: white;
    border: none;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .tab-btn:hover {
    background: #222;
  }
  
  .tab-btn.active {
    background: #e50914;
    font-weight: bold;
  }
  
  .tab-content {
    background: rgba(17, 17, 17, 0.7);
    border-radius: 10px;
    padding: 30px;
    min-height: 250px;
  }
  
  .tab-pane {
    display: none;
  }
  
  .tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
  }
  
  .service-content {
    text-align: left;
  }
  
  .service-content h3 {
    color: #e50914;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
  }
  
  .service-content p {
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .know-more-btn {
    display: inline-block;
    background-color: #e50914;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .know-more-btn:hover {
    background-color: #ff1f2a;
    transform: translateY(-2px);
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .services-section {
      padding: 30px 20px;
    }
    
    .tab-buttons {
      flex-direction: column;
    }
    
    .tab-btn {
      width: 100%;
    }
    
    .services-section h2 {
      font-size: 2rem;
    }
  }
  
 /* Clients Section - Matches About Us Styling */
.clients-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.15);
    font-family: 'Poppins', sans-serif;
    text-align: center;
  }
  
  .clients-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    color: #e50914;
    margin-bottom: 25px;
  }
  
  .clients-logos {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  
  .logos-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
  }
  
  .logos-track img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: filter 0.3s ease;
  }
  
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .clients-section {
      padding: 30px 20px;
      margin: 40px auto;
    }
    
    .logos-track img {
      height: 40px;
    }
  }
  


  /* Contact Form Section */
.contact-form-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.15);
    text-align: center;
  }
  .section-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    color: #e50914;
    margin-bottom: 30px;
    text-align: center;
  }
  
  /* Responsive adjustment */
  @media (max-width: 768px) {
    .section-heading {
      font-size: 2rem;
    }
  }
  
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(17, 17, 17, 0.7);
    border-radius: 10px;
  }
  
  .form-group {
    position: relative;
    margin-bottom: 30px;
  }
  
  .form-group label {
    position: absolute;
    top: -10px;
    left: 15px;
    background: #111;
    padding: 0 10px;
    color: #e50914;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 2px solid #333;
    border-radius: 6px;
    color: rgb(255, 0, 0);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: #e50914;
    outline: none;
  }
  
  .form-group select {
    appearance: none;
    -webkit-appearance: none;
  }
  
  .textarea-group {
    margin-bottom: 40px;
  }
  
  .submit-btn {
    background-color: #e50914;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
  }
  
  .submit-btn:hover {
    background-color: #ff1f2a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(229, 9, 20, 0.3);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .contact-form-section {
      padding: 30px 20px;
      margin: 40px auto;
    }
    
    .contact-form {
      padding: 20px;
    }
    
    .form-group {
      margin-bottom: 25px;
    }
  }





  footer {
    background: #000;
    padding: 30px;
    text-align: center;
    font-family: 'Unica One', cursive;
  }
  
  footer h2 {
    font-size: 28px;
    color: red;
  }
  
  .footer-nav {
    margin: 15px 0;
  }
  
  .footer-nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
  }
  
  .socials a {
    color: rgb(255, 0, 0);
    margin: 0 10px;
    font-size: 18px;
  }
  
  .contact-info {
    margin-top: 15px;
    font-size: 15px;
  }
  
  .contact-info a {
    color: red;
    text-decoration: none;
  }
  @media (max-width: 600px) {
    .about-section {
      padding: 30px 20px;
    }
  
    .about-section h2 {
      font-size: 2rem;
    }
  
    .about-section p {
      font-size: 1rem;
    }
  }






















/* About Page - Matching Homepage Style */
.about-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 40px 30px;
    background: rgba(255,255,255,0.02);
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.15);
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin: 50px 0;
  }
  
  .stat-card {
    background: rgba(17,17,17,0.7);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333;
  }
  
  .stat-number {
    display: block;
    font-size: 2.5rem;
    color: #e50914;
    font-weight: bold;
  }
  
  .stat-label {
    font-size: 1.1rem;
    color: #ccc;
  }
  
  /* Services Tabs */
  .service-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
  }
  
  .service-tab {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .service-tab:hover {
    transform: translateY(-10px);
  }
  
  .service-tab img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .service-tab h3 {
    color: #e50914;
    font-family: 'Oswald', sans-serif;
    padding: 15px 20px 5px;
    font-size: 1.5rem;
  }
  
  .service-tab p {
    padding: 0 20px 20px;
    color: #ddd;
  }
  
  /* Founder Section - Matching Card Style */
.founder-section {
    padding: 60px 0;
  }
  
  .founder-card {
    background: rgba(17,17,17,0.7);
    border-radius: 10px;
    display: flex;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  }
  
  .founder-image {
    flex: 1;
    min-width: 300px;
  }
  
  .founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  
  .founder-details {
    flex: 2;
    padding: 30px;
  }
  
  .founder-details h3 {
    color: #e50914;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    margin-bottom: 5px;
  }
  
  .designation {
    color: #aaa;
    font-style: italic;
    margin-bottom: 20px;
    display: block;
  }
  
  .founder-bio p {
    margin-bottom: 15px;
    line-height: 1.7;
  }
  
  .quote {
    font-style: italic;
    color: #e50914;
    padding-left: 20px;
    border-left: 3px solid #e50914;
    margin-top: 25px !important;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .founder-card {
      flex-direction: column;
    }
    
    .founder-image {
      min-width: 100%;
      height: 300px;
    }
    
    .founder-details {
      padding: 25px;
    }
  }
  /* Products Section */
.products-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  color: #e50914;
  margin-bottom: 15px;
}

.section-heading p {
  color: #aaa;
  font-size: 1.1rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
  background: rgba(17, 17, 17, 0.7);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #333;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(229, 9, 20, 0.2);
}

.product-img {
  height: 200px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  color: #e50914;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.product-info p {
  color: #ddd;
  margin-bottom: 15px;
  line-height: 1.5;
}

.know-more-btn {
  display: inline-block;
  background-color: #e50914;
  color: white;
  padding: 8px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.know-more-btn:hover {
  background-color: #ff1f2a;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  
  .section-heading h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Enquiry CTA Section */
.enquiry-cta {
  background: rgba(229, 9, 20, 0.1);
  border-top: 2px solid #e50914;
  border-bottom: 2px solid #e50914;
  padding: 50px 20px;
  text-align: center;
  margin: 60px auto;
  max-width: 1200px;
  border-radius: 5px;
}

.enquiry-content {
  max-width: 800px;
  margin: 0 auto;
}

.enquiry-content h3 {
  font-family: 'Oswald', sans-serif;
  color: #e50914;
  font-size: 2rem;
  margin-bottom: 20px;
}

.enquiry-content p {
  color: #ddd;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-btn {
  display: inline-block;
  background-color: #e50914;
  color: white;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-btn:hover {
  background-color: transparent;
  border-color: #e50914;
  color: #e50914;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(229, 9, 20, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .enquiry-content h3 {
    font-size: 1.8rem;
  }
  
  .enquiry-content p {
    font-size: 1rem;
  }
}
/* Single Contact Card Styling */
.single-contact-wrapper {
  max-width: 600px;
  margin: 60px auto;
}

.contact-card {
  background: rgba(17, 17, 17, 0.7);
  border-radius: 10px;
  padding: 30px;
  display: flex;
  align-items: center;
  border: 1px solid #333;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(229, 9, 20, 0.2);
}

.contact-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 30px;
  border: 3px solid #e50914;
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-info h3 {
  color: #e50914;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 5px;
  font-size: 1.8rem;
}

.role {
  color: #aaa;
  font-style: italic;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.contact-details p {
  color: #ddd;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.contact-details i {
  margin-right: 12px;
  color: #e50914;
  width: 20px;
  text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-card {
      flex-direction: column;
      text-align: center;
      padding: 25px;
  }
  
  .contact-photo {
      margin-right: 0;
      margin-bottom: 20px;
      width: 100px;
      height: 100px;
  }
  
  .contact-details p {
      justify-content: center;
  }
}

@media (max-width: 480px) {
  .single-contact-wrapper {
      margin: 40px auto;
  }
  
  .contact-info h3 {
      font-size: 1.5rem;
  }
}









/* Gallery Section */
.gallery-section {
  padding: 100px 30px 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  color: #e50914;
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(229, 9, 20, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}
/* CTA Section */
.cta-section {
  background: rgba(229, 9, 20, 0.1);
  border-top: 2px solid #e50914;
  border-bottom: 2px solid #e50914;
  padding: 50px 20px;
  margin: 60px auto 0;
  text-align: center;
  max-width: 1200px;
  border-radius: 5px;
}

.cta-content h3 {
  font-family: 'Oswald', sans-serif;
  color: #e50914;
  font-size: 2rem;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.contact-btn {
  background-color: #e50914;
  color: white;
  border: 2px solid #e50914;
}

.call-btn {
  background-color: transparent;
  color: #e50914;
  border: 2px solid #e50914;
}

.cta-btn i {
  margin-left: 10px;
}

.call-btn i {
  margin-right: 10px;
  margin-left: 0;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(229, 9, 20, 0.3);
}

.contact-btn:hover {
  background-color: #ff1f2a;
}

.call-btn:hover {
  background-color: rgba(229, 9, 20, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .cta-content h3 {
      font-size: 1.8rem;
  }
  
  .cta-buttons {
      flex-direction: column;
      gap: 15px;
  }
  
  .cta-btn {
      width: 100%;
      justify-content: center;
  }
}




















































































/* Blog Page Styles */
.blog-main {
  padding: 100px 30px 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-hero {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(229, 9, 20, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(229, 9, 20, 0.2);
}

.blog-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  color: #e50914;
  margin-bottom: 15px;
}

.blog-hero p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
}

.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.blog-card {
  background: rgba(17, 17, 17, 0.7);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #333;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(229, 9, 20, 0.2);
}

.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-date {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(229, 9, 20, 0.9);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.blog-content {
  padding: 25px;
}

.blog-content h2 {
  font-family: 'Oswald', sans-serif;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #aaa;
}

.blog-meta i {
  margin-right: 5px;
  color: #e50914;
}

.blog-content p {
  color: #ddd;
  margin-bottom: 20px;
  line-height: 1.6;
}

.read-more {
  display: inline-flex;
  align-items: center;
  color: #e50914;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.read-more:hover {
  color: #ff1f2a;
}

.read-more:hover i {
  transform: translateX(5px);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.pagination a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #111;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination a:hover, .pagination a.active {
  background: #e50914;
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .blog-hero h1 {
      font-size: 2.2rem;
  }
  
  .blog-hero p {
      font-size: 1rem;
  }
  
  .blog-posts {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .blog-main {
      padding: 80px 15px 30px;
  }
  
  .blog-hero {
      padding: 30px 15px;
  }
  
  .blog-content {
      padding: 20px;
  }
  
  .blog-meta {
      flex-direction: column;
      gap: 10px;
  }
}




































/* Single Blog Post Styles */
.single-blog-main {
  padding-top: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-hero-image {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.blog-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  padding: 80px 40px 40px;
}

.blog-title-container {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  color: #ccc;
  font-family: 'Poppins', sans-serif;
}

.blog-meta i {
  color: #e50914;
  margin-right: 5px;
}

.single-blog-post h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 30px;
}

.blog-content-wrapper {
  display: flex;
  gap: 40px;
  padding: 40px;
}

.blog-content {
  flex: 2;
  font-family: 'Poppins', sans-serif;
  line-height: 1.8;
  color: #ddd;
}

.blog-intro {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #fff;
}

.blog-content h2 {
  font-family: 'Oswald', sans-serif;
  color: #fff;
  margin: 40px 0 20px;
  font-size: 1.8rem;
}

.red-accent {
  color: #e50914;
  margin-right: 10px;
}

.blog-image-with-caption {
  margin: 30px 0;
}

.blog-image-with-caption img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.image-caption {
  font-size: 0.9rem;
  color: #aaa;
  text-align: center;
  font-style: italic;
}

.stat-box {
  background: rgba(229, 9, 20, 0.1);
  border: 1px solid rgba(229, 9, 20, 0.3);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  margin: 30px 0;
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  color: #e50914;
  line-height: 1;
}

.stat-text {
  font-size: 1.2rem;
  color: #fff;
}

.comparison-table {
  margin: 30px 0;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(17, 17, 17, 0.7);
}

.comparison-table th, .comparison-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #333;
}

.comparison-table th {
  background: rgba(229, 9, 20, 0.2);
  color: #fff;
  font-family: 'Oswald', sans-serif;
}

.comparison-table tr:hover {
  background: rgba(255,255,255,0.05);
}

.key-takeaways {
  background: rgba(17, 17, 17, 0.7);
  border-left: 4px solid #e50914;
  padding: 25px;
  margin: 40px 0;
}

.key-takeaways h3 {
  font-family: 'Oswald', sans-serif;
  color: #fff;
  margin-bottom: 15px;
}

.key-takeaways ul {
  list-style: none;
}

.key-takeaways li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.key-takeaways i {
  color: #e50914;
  position: absolute;
  left: 0;
  top: 5px;
}

.blog-conclusion {
  font-size: 1.1rem;
  margin: 50px 0;
}

.blog-conclusion a {
  color: #e50914;
  text-decoration: none;
  font-weight: bold;
}

.blog-conclusion a:hover {
  text-decoration: underline;
}

.blog-author {
  display: flex;
  gap: 30px;
  margin-top: 60px;
  padding: 30px;
  background: rgba(17, 17, 17, 0.7);
  border-radius: 8px;
  align-items: center;
}

.author-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e50914;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-family: 'Oswald', sans-serif;
  color: #e50914;
  margin-bottom: 10px;
}

.author-name {
  font-weight: bold;
  color: #fff;
  margin-bottom: 5px;
}

.author-title {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.author-bio {
  color: #ddd;
  font-size: 0.95rem;
}

/* Sidebar Styles */
.blog-sidebar {
  flex: 1;
}

.sidebar-widget {
  background: rgba(17, 17, 17, 0.7);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
  border: 1px solid #333;
}

.sidebar-widget h3 {
  font-family: 'Oswald', sans-serif;
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 10px;
}

.sidebar-widget h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #e50914;
}

.sidebar-widget ul {
  list-style: none;
}

.sidebar-widget li {
  margin-bottom: 12px;
}

.sidebar-widget a {
  color: #ddd;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.sidebar-widget a:hover {
  color: #e50914;
  transform: translateX(5px);
}

.sidebar-widget i {
  margin-right: 8px;
  color: #e50914;
  font-size: 0.8rem;
}

.popular-post {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #333;
}

.popular-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.popular-post a {
  display: flex;
  gap: 15px;
  align-items: center;
}

.popular-post img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.popular-post span {
  font-size: 0.95rem;
}

.newsletter-widget input {
  width: 100%;
  padding: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid #333;
  border-radius: 4px;
  color: #fff;
  margin-bottom: 10px;
}

.newsletter-widget button {
  width: 100%;
  background: #e50914;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.newsletter-widget button:hover {
  background: #ff1f2a;
}

.newsletter-widget i {
  margin-left: 8px;
}

/* Related Posts */
.related-posts {
  padding: 40px;
  margin-top: 40px;
}

.related-posts h2 {
  font-family: 'Oswald', sans-serif;
  color: #fff;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.related-post {
  background: rgba(17, 17, 17, 0.7);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #333;
}

.related-post:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(229, 9, 20, 0.2);
}

.related-post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-post h3 {
  font-family: 'Oswald', sans-serif;
  color: #fff;
  font-size: 1.3rem;
  margin: 20px 20px 10px;
  line-height: 1.3;
}

.related-post h3 a {
  color: #fff;
  text-decoration: none;
}

.related-post h3 a:hover {
  color: #e50914;
}

.related-post p {
  color: #ddd;
  margin: 0 20px 20px;
  font-size: 0.95rem;
}

.related-post .read-more {
  display: inline-block;
  margin: 0 20px 20px;
  color: #e50914;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-post .read-more:hover {
  color: #ff1f2a;
}

.related-post .read-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.related-post .read-more:hover i {
  transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .blog-content-wrapper {
      flex-direction: column;
  }
  
  .blog-sidebar {
      margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .blog-hero-image {
      height: 400px;
  }
  
  .blog-hero-overlay {
      padding: 40px 20px;
  }
  
  .single-blog-post h1 {
      font-size: 2.2rem;
  }
  
  .blog-content-wrapper {
      padding: 20px;
  }
  
  .blog-content h2 {
      font-size: 1.5rem;
  }
  
  .related-posts {
      padding: 20px;
  }
}

@media (max-width: 576px) {
  .blog-hero-image {
      height: 300px;
  }
  
  .blog-meta {
      flex-direction: column;
      gap: 10px;
  }
  
  .single-blog-post h1 {
      font-size: 1.8rem;
  }
  
  .blog-author {
      flex-direction: column;
      text-align: center;
  }
  
  .author-image {
      margin-bottom: 20px;
  }
}



































































































