:root{
    --primary-red:#c62828;
    --dark-red:#a31515;
    --light-bg:#f9f9f9;
    --soft-red:#fdeaea;
  --light:#f8f9fa;
  --text-muted:#6c757d;
  --white:#ffffff;
}

html{ scroll-behavior:smooth; }

body{
    font-family:'Segoe UI', sans-serif;
    background:var(--light-bg);
}

/* ================= TOP BAR ================= */
.top-bar{
    background:var(--primary-red);
    color:#fff;
    font-size:14px;
    padding:8px 0;
}

@media(max-width:991px){
    .top-bar{ display:none; }
}

/* ================= MAIN HEADER ================= */
.main-header{
    background:#fff;
    padding:18px 0;
}

.logo{
    font-size:26px;
    font-weight:700;
    transition:.3s;
}

.logo img{
  max-height: 70px;
}
.drawer-logo img{
  max-height: 50px;
  
}

.logo:hover{
    transform:scale(1.05);
}

.connect-btn{
    background:var(--primary-red);
    color:#fff;
    padding:10px 22px;
    border-radius:6px;
    text-decoration:none;
    transition:.3s;
}

.connect-btn:hover{
    background:var(--dark-red);
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

/* ================= NAVBAR ================= */
.navbar-custom{
    background:#fff;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    padding:15px 25px;
    position:sticky;
    top:0;
    z-index:999;
}

.navbar-links a{
    position:relative;
    color:#333;
    font-weight:500;
    margin:0 18px;
    text-decoration:none;
    transition:.3s;
}

.navbar-links a::after{
    content:'';
    position:absolute;
    width:0%;
    height:2px;
    left:0;
    bottom:-5px;
    background:var(--primary-red);
    transition:.3s;
}

.navbar-links a:hover{
    color:var(--primary-red);
}

.navbar-links a:hover::after{
    width:100%;
}

/* ================= NAVBAR WRAPPER ================= */

.navbar-wrapper{
    position: relative;
    width: 100%;
    transition: all .4s ease;
    z-index: 1000;
}

/* Default State */
.navbar-custom{
    background: #fff;
    border-radius: 12px;
    padding: 18px 25px;
    transition: all .4s ease;
}

/* Sticky State */
.navbar-wrapper.sticky{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08); /* Whole layout shadow */
    animation: slideDown .4s ease;
}

.navbar-wrapper.sticky .navbar-custom{
    border-radius: 0;
    padding: 14px 25px;
}

/* Prevent content jump */
body.nav-sticky-padding{
    padding-top: 90px; /* Adjust according to navbar height */
}

/* Slide animation */
@keyframes slideDown{
    from{
        transform:translateY(-100%);
    }
    to{
        transform:translateY(0);
    }
}

.navbar-links a.active,
.drawer-nav a.active {
    color: var(--primary-red);
    font-weight: 600;
    position: relative;
}

.navbar-links a.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--dark-red);
}

/* ================= MOBILE HEADER ================= */
.menu-btn{
    background:var(--primary-red);
    width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    cursor:pointer;
    transition:.3s;
}

.menu-btn:hover{
    background:var(--dark-red);
    transform:rotate(90deg);
}

/* ================= DRAWER ================= */
.drawer{
    position:fixed;
    top:0;
    left:-100%;
    width:85%;
    max-width:360px;
    height:100%;
    background:#fff;
    box-shadow:5px 0 30px rgba(0,0,0,0.15);
    transition:.4s ease;
    z-index:2000;
    padding:25px;
    display:flex;
    flex-direction:column;
}

.drawer.active{ left:0; }

/* Drawer Header */
.drawer-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}



.close-btn{
    font-size:22px;
    cursor:pointer;
    color:#333;
    transition:.3s;
}

.close-btn:hover{
    color:var(--primary-red);
    transform:rotate(90deg);
}

/* Drawer Nav List */
.drawer-nav{
    list-style:none;
    padding:0;
    margin:0;
}

.drawer-nav li{
    margin-bottom:10px;
}

.drawer-nav a{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 15px;
    border-radius:8px;
    text-decoration:none;
    color:#333;
    font-weight:500;
    transition:.3s;
}

.drawer-nav a i{
    font-size:18px;
    width:22px;
}

.drawer-nav a:hover{
    background:var(--soft-red);
    color:var(--primary-red);
    padding-left:20px;
}

/* Active Tab */
.drawer-nav a.active{
    background:var(--primary-red);
    color:#fff;
}

/* Overlay */
.overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.4);
    backdrop-filter:blur(4px);
    display:none;
    z-index:1500;
}

.overlay.active{ display:block; }

/* Mobile Sticky Header */
@media (max-width: 991px) {

    .main-header{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 1100;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }

    /* Prevent content jump */
    body.mobile-header-padding{
        padding-top: 80px; /* adjust to your header height */
    }

    /* Disable navbar sticky on mobile */
    .navbar-wrapper{
        position: relative !important;
        box-shadow: none !important;
    }
}



/* ================= SCROLL TO TOP ================= */
#scrollTopBtn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;
    background:var(--primary-red);
    color:#fff;
    border:none;
    border-radius:50%;
    display:none;
    align-items:center;
    justify-content:center;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    z-index:999;
}

#scrollTopBtn:hover{
    background:var(--dark-red);
    transform:translateY(-5px);
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px){

    .header-info,
    .navbar-links{
        display:none !important;
    }

    .main-header .container{
        position:relative;
        justify-content:center !important;
    }

    .menu-btn{
        position:absolute;
        left:15px;
    }
}

/* ================= HERO SLIDER ================= */

.hero-slider{
    position:relative;
}

.hero-slide{
    position:relative;
    min-height:90vh;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

.hero-content{
    position:relative;
    color:#fff;
    max-width:750px;
    animation:fadeUp 1s ease forwards;
}

.hero-tag{
    font-size:14px;
    letter-spacing:1px;
    font-weight:500;
    opacity:.9;
}

.hero-content h1{
    font-size:clamp(2.2rem, 4vw, 3.5rem);
    font-weight:700;
    margin:15px 0;
    line-height:1.2;
}

.hero-content p{
    font-size:1rem;
    opacity:.9;
    margin-bottom:25px;
}

.hero-buttons a{
    margin-right:15px;
}

.btn-primary-custom{
    background:var(--primary-red);
    color:#fff;
    padding:12px 25px;
    border-radius:6px;
    text-decoration:none;
    transition:.3s;
}

.btn-primary-custom:hover{
    background:var(--dark-red);
    transform:translateY(-3px);
}

.btn-secondary-custom{
    background:#fff;
    color:#333;
    padding:12px 25px;
    border-radius:6px;
    text-decoration:none;
    transition:.3s;
}

.btn-secondary-custom:hover{
    background:#f2f2f2;
    transform:translateY(-3px);
}

/* ================= FEATURES ================= */

.features-section{
    padding:100px 0;
    background:#f8f9fa;
}

.section-tag{
    color:var(--primary-red);
    font-size:14px;
    letter-spacing:1px;
    font-weight:600;
}

.section-header h2{
    font-size:clamp(1.8rem, 3vw, 2.5rem);
    font-weight:700;
    margin:15px 0;
}

.section-header p{
    max-width:650px;
    margin:auto;
    color:#666;
}

.feature-card{
    background:#fff;
    padding:40px 30px;
    border-radius:12px;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    height:100%;
}

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.feature-icon{
    width:70px;
    height:70px;
    margin:auto;
    border-radius:50%;
    background:#fdeaea;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    color:var(--primary-red);
    margin-bottom:20px;
    transition:.3s;
}

.feature-icon{
    background:var(--primary-red);
    color:#fff;
}

/* Animation */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.about-section{
  background:#f4f6f9;
  padding:120px 0;
  position:relative;
}

.mini-tag{
  font-size:13px;
  letter-spacing:1px;
  color:#1a8b83;
  font-weight:600;
}

.main-heading{
  font-size:clamp(2rem,3vw,2.8rem);
  font-weight:700;
  margin:15px 0;
}

.main-desc{
  color:#6b6b6b;
  line-height:1.7;
}

.mission-card{
  background:var(--primary-red);;
  color:#fff;
  padding:30px;
  border-radius:14px;
  display:flex;
  gap:20px;
  align-items:flex-start;
}

.mission-icon{
  font-size:28px;
  background:#ffffff20;
  width:60px;
  height:60px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.mission-card a{
  color:#fff;
  font-size:14px;
}

.image-stack{
  position:relative;
}

.img-main{
  width:100%;
  border-radius:20px;
}

.image-card{
  position:absolute;
  bottom:40px;
  left:-40px;
  background:#fff;
  padding:20px 30px;
  border-radius:12px;
  font-weight:600;
}

/* Wave */
.wave-divider{
  position:absolute;
  bottom:-1px;
  left:0;
  width:100%;
  height:100px;
  background:url('https://svgshare.com/i/13sZ.svg') repeat-x;
}

/* ================= ABOUT SECTION ================= */

.about-section{
  background:#f5f7fb;
  padding:120px 0 140px;
  position:relative;
  overflow:hidden;
}

.section-tag{
  font-size:14px;
  font-weight:600;
  color:var(--primary-red);
  letter-spacing:1px;
}

.about-title{
  font-size:42px;
  font-weight:700;
  margin:15px 0 25px;
}

.about-text{
  color:#555;
  margin-bottom:18px;
  line-height:1.7;
}

/* ================= CARD SLIDER ================= */

/* ================= ABOUT SLIDER ================= */

.about-slider {
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

/* Progress bar */
.about-progress {
    height: 4px;
    background: rgba(0,0,0,0.1);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.about-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--primary-red);
    transition: width 4s linear;
}

/* Slider wrapper */
.about-slider-wrapper {
    overflow: hidden;
}

.about-slider-track {
    display: flex;
    transition: transform 0.7s ease-in-out;
}

/* Each slide */
.about-slide {
    min-width: 100%;
    box-sizing: border-box;
}

/* Card design */
.about-card {
    background: var(--primary-red);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.about-card a {
    color: #fff;
    text-decoration: none;
}

.about-card a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .about-card {
        flex-direction: column;
    }
}

.card-icon{
  font-size:28px;
  opacity:.9;
}

/* ================= DOTS ================= */

.about-dots{
  margin-top:15px;
}

.about-dots .dot{
  display:inline-block;
  width:10px;
  height:10px;
  background:#ccc;
  border-radius:50%;
  margin-right:8px;
  cursor:pointer;
}

.about-dots .dot.active{
  background:var(--primary-red);
}

/* ================= IMAGE STACK ================= */

.about-image-stack{
  position:relative;
  display:flex;
  justify-content:center;
}

.img-main{
  width:85%;
  border-radius:20px;
  position:relative;
  z-index:2;
}

.img-back{
  position:absolute;
  width:85%;
  top:30px;
  left:40px;
  border-radius:20px;
  opacity:.6;
  z-index:1;
}

.about-floating-box{
  position:absolute;
  bottom:40px;
  left:50%;
  transform:translateX(-50%);
  background:#fff;
  padding:20px 30px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  font-weight:600;
  text-align:center;
  z-index:3;
}

/* ================= WAVE ================= */

.about-wave{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:80px;
  background:linear-gradient(to right,#fff,#f5f7fb);
  border-radius:50% 50% 0 0;
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

  .about-title{
    font-size:32px;
  }

  .about-card{
    flex-direction:column;
  }

  .img-back{
    display:none;
  }

  .about-floating-box{
    position:relative;
    bottom:auto;
    left:auto;
    transform:none;
    margin-top:20px;
  }
}

@media(max-width:576px){
  .about-section{
    padding:90px 0 120px;
  }

  .about-title{
    font-size:26px;
  }
}

/* ================= PROCESS SECTION ================= */

.process-section{
  background:#f4f6f9;
  padding:120px 0;
  position:relative;
  overflow:hidden;
}

/* Watermark Text */
.process-bg-text{
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  font-size:100px;
  font-weight:800;
  color:#000;
  opacity:0.03;
  pointer-events:none;
  white-space:nowrap;
}

/* Mini Tag */
.process-mini-tag{
  color: var(--primary-red);
  font-size:13px;
  font-weight:600;
  letter-spacing:1px;
}

/* Title */
.process-title{
  font-size:clamp(2rem,3vw,2.8rem);
  font-weight:700;
  margin-top:10px;
  color:#1f2937;
}

/* Card */
.process-card{
  padding:20px;
  transition:all .3s ease;
}

.process-card h5{
  font-weight:600;
  margin-top:25px;
  color:#1f2937;
}

.process-card p{
  font-size:14px;
  color:#6b7280;
  line-height:1.7;
  margin-top:10px;
}

/* Icon Wrapper */
.icon-wrapper{
  width:120px;
  height:120px;
  margin:0 auto;
  border-radius:50%;
  position:relative;
  background:#e8edf2;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Inner Circle */
.icon-inner{
  width:80px;
  height:80px;
  background:#dfe5ea;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
}

.icon-inner i{
  font-size:28px;
  color:var(--primary-red);;
}

/* Rotating Dot */
.orbit-dot{
  position:absolute;
  width:12px;
  height:12px;
  background:var(--primary-red);;
  border-radius:50%;
  top:50%;
  left:50%;
  transform-origin:center;
  animation:orbit 3s linear infinite;
}

/* Orbit Animation */
@keyframes orbit{
  0%{
    transform:rotate(0deg) translateX(60px) rotate(0deg);
  }
  100%{
    transform:rotate(360deg) translateX(60px) rotate(-360deg);
  }
}

/* Divider Line */
.process-divider{
  height:1px;
  background:#e5e7eb;
  margin:25px auto 15px;
  width:80%;
}

/* Step Number */
.process-number{
  font-size:22px;
  font-weight:600;
  color:#d1d5db;
}

/* Responsive */
@media(max-width:991px){

  .process-bg-text{
    font-size:60px;
  }

  .icon-wrapper{
    width:100px;
    height:100px;
  }

  .icon-inner{
    width:65px;
    height:65px;
  }

  .orbit-dot{
    animation-duration:4s;
  }
}

/* ================= SOLUTIONS SLIDER ================= */

.solutions-slider-section{
  background:var(--primary-red);;
  padding:140px 0;
  position:relative;
  overflow:hidden;
}

.solutions-bg-text{
  position:absolute;
  top:40px;
  left:50%;
  transform:translateX(-50%);
  font-size:100px;
  font-weight:800;
  opacity:0.05;
  color:#fff;
  pointer-events:none;
  white-space:nowrap;
}

.solutions-mini-tag{
  color:#d1fae5;
  font-size:13px;
  letter-spacing:1px;
  font-weight:600;
}

.solutions-title{
  color:#fff;
  font-size:clamp(2rem,3vw,2.8rem);
  font-weight:700;
  margin-top:10px;
}

/* Card */
.solution-card{
  background:var(--dark-red);;
  border-radius:16px;
  overflow:hidden;
  transition:.4s ease;
  height:100%;
  display:flex;
  flex-direction:column;
}

.solution-card img{
  width:100%;
  aspect-ratio: 16/10;
  object-fit:cover;
}

.solution-content{
  padding:25px;
  color:#fff;
  flex:1;
}

.solution-content h5{
  font-weight:600;
}

.solution-content p{
  font-size:14px;
  opacity:.9;
  margin:10px 0 15px;
}

.solution-content a{
  color:#fff;
  font-size:14px;
  text-decoration:none;
}

/* Hover */
.solution-card:hover{
  transform:translateY(-10px);
}

.solution-card:hover img{
  transform:scale(1.05);
}

/* Navigation Buttons */
.solutions-nav{
  margin-top:40px;
  display:flex;
  justify-content:center;
  gap:20px;
}

.solutions-prev,
.solutions-next{
  width:45px;
  height:45px;
  background:#fff;
  border-radius:50%;
  color:var(--primary-red) !important;
}

.solutions-prev::after,
.solutions-next::after{
  font-size:16px;
}

/* Responsive */
@media(max-width:1200px){
  .solutions-bg-text{ font-size:70px; }
}

@media(max-width:991px){
  .solutions-bg-text{ display:none; }
}

/* ================= CATEGORIES ================= */

.categories-section{
  padding:120px 0;
  background:#f4f6f9;
}

.section-mini{
  color:var(--primary-red);;
  font-weight:600;
  font-size:13px;
}

.explore-btn{
  background:var(--primary-red);;
  color:#fff;
  padding:12px 25px;
  border-radius:8px;
  text-decoration:none;
}

/* Card */
.category-card{
  position:relative;
  overflow:hidden;
  border-radius:16px;
  cursor:pointer;
}

.category-card img{
  width:100%;
  aspect-ratio: 4/3;
  object-fit:cover;
}

.category-card h5{
  position:absolute;
  top:20px;
  left:20px;
  color:#fff;
  z-index:3;
}

.card-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,.7), transparent);
  z-index:1;
}

.plus-icon{
  position:absolute;
  bottom:20px;
  left:20px;
  width:45px;
  height:45px;
  border-radius:50%;
  background:rgba(255,255,255,.2);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  z-index:3;
  transition:.3s;
}

/* Hover */
.category-card:hover img{
  transform:scale(1.05);
}

.category-card:hover::after{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(255, 49, 30, 0.5);
  z-index:2;
}

/* Viewer */
.image-viewer{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.9);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.viewer-content{
  position:relative;
  max-width:900px;
  width:90%;
}

.viewer-content img{
  width:100%;
  border-radius:12px;
}

.viewer-close{
  position:absolute;
  top:-40px;
  right:0;
  font-size:30px;
  color:#fff;
  cursor:pointer;
}

.viewer-controls{
  margin-top:20px;
  text-align:center;
}

.viewer-controls button{
  background:var(--primary-red);;
  border:none;
  padding:10px 20px;
  margin:0 10px;
  color:#fff;
  border-radius:6px;
}

/* ================= REVIEWS SECTION ================= */

.reviews-section{
  width:100%;
  overflow:hidden;
}

.reviews-wrapper{
  display:flex;
  flex-wrap:wrap;
}

.reviews-image,
.reviews-content{
  flex:1 1 50%;
}

@media(max-width:991px){
  .reviews-image,
  .reviews-content{
    flex:1 1 100%;
  }
}

.reviews-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* RIGHT PANEL */
.reviews-content{
  flex:1;
  background:linear-gradient(135deg,#1f2937,#0f172a);
  color:#fff;
  padding:80px 70px;
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

/* Title */
.reviews-title{
  font-size:clamp(2rem,3vw,2.5rem);
  font-weight:700;
  margin-bottom:25px;
}

/* Rating */
.reviews-rating{
  background:#ffffff15;
  padding:8px 18px;
  border-radius:30px;
  display:inline-flex;
  gap:5px;
  margin-bottom:25px;
}

.reviews-rating i{
  color:#1dd1a1;
  font-size:14px;
}

/* Quote Circle */
.quote-icon{
  position:absolute;
  left:-40px;
  top:50%;
  transform:translateY(-50%);
  width:90px;
  height:90px;
  background:var(--primary-red);;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  color:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,.3);
}

/* Name */
#reviewName{
  font-weight:600;
  margin-top:10px;
}

.review-location{
  color:#1dd1a1;
  font-size:13px;
  letter-spacing:1px;
  display:block;
  margin-bottom:20px;
}

/* Text */
.review-text{
  font-size:16px;
  line-height:1.8;
  max-width:500px;
  margin-bottom:30px;
  opacity:.9;
}

/* Controls */
.reviews-controls{
  display:flex;
  align-items:center;
  gap:20px;
}

.reviews-controls button{
  background:none;
  border:none;
  color:#fff;
  font-size:18px;
  cursor:pointer;
}

#reviewCount{
  font-weight:600;
}

/* Fade animation */
.review-fade{
  animation:fadeReview .4s ease;
}

@keyframes fadeReview{
  from{opacity:0; transform:translateY(10px);}
  to{opacity:1; transform:translateY(0);}
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

  .quote-icon{
    left:20px;
    top:-45px;
    transform:none;
  }

  .reviews-content{
    padding:70px 30px;
  }
}

/* ================= BLOG SECTION ================= */

.blog-section{
  padding:120px 0;
  background:#f4f6f9;
}

.blog-mini{
  color:var(--primary-red);;
  font-weight:600;
  font-size:14px;
}

.blog-title{
  font-size:clamp(2rem,3vw,2.6rem);
  font-weight:700;
  margin-top:10px;
}

.blog-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  transition:.4s ease;
  box-shadow:0 10px 25px rgba(0,0,0,.05);
  text-align:left;
}

.blog-image{
  position:relative;
}

.blog-card,
.sidebar-post{
  text-decoration: none;
  color: inherit;
  display: block;
}

.sidebar-post{
  display: flex;
  gap: 15px;
  align-items: center;
}

.blog-date{
  position:absolute;
  top:15px;
  left:15px;
  background:var(--primary-red);;
  color:#fff;
  padding:6px 12px;
  border-radius:20px;
  font-size:13px;
}

.blog-content{
  padding:25px;
}

.blog-content h5{
  font-weight:600;
  margin-bottom:15px;
  
}

.blog-content p{
  font-size:14px;
  color:#6b7280;
  margin-bottom:15px;
}

.blog-content a{
  color:var(--primary-red);;
  text-decoration:none;
  font-weight:500;
}

.blog-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,.08);
}

/* ================= FOOTER ================= */

/* ================= FOOTER SECTION ================= */

.footer-section{
  position:relative;
  padding:100px 0 40px;
  background:url('/assets/images/footer-bg.jpg') center/cover no-repeat;
  border-radius:30px;
  overflow:hidden;
  margin:40px 20px;

}

.footer-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,var(--dark-red), var(--primary-red));
  opacity:.95;
}

.footer-content{
  position:relative;
  color:#fff;
  z-index:2;
}

/* Headings */
.footer-content h5{
  margin-bottom:20px;
  font-weight:600;
  font-size:18px;
}

/* Text */
.footer-content p,
.footer-content li{
  font-size:14px;
  opacity:.9;
  line-height:1.8;
}

.footer-content ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-content ul li{
  margin-bottom:8px;
}

.footer-content a{
  color:#fff;
  text-decoration:none;
  transition:.3s;
}

.footer-content a:hover{
  opacity:.8;
  padding-left:4px;
}

/* ================= COPYRIGHT ================= */

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.2);
  margin-top:50px;
  padding-top:25px;
}

.footer-bottom-wrapper{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:20px;
}

.copyright-text{
  margin:0;
  font-size:14px;
  opacity:.9;
}

/* Badge Images */
.footer-badges{
  display:flex;
  gap:15px;
  align-items:center;
  flex-wrap:wrap;
}

.footer-badges img{
  height:40px;
  object-fit:contain;
  border-radius:6px;
  transition:all .3s ease;
  cursor:pointer;
}

.footer-badges img:hover{
  transform:translateY(-5px) scale(1.05);
  box-shadow:0 8px 20px rgba(0,0,0,0.25);
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

  .footer-section{
    margin:20px 15px;
    border-radius:20px;
  }

  .footer-content{
    padding:0 10px;
  }

  .footer-bottom-wrapper{
    flex-direction:column;
    text-align:center;
  }

  .footer-badges{
    justify-content:center;
  }

}

@media(max-width:576px){

  .footer-section{
    padding:70px 0 30px;
  }

  .footer-content h5{
    font-size:16px;
  }

  .footer-content p,
  .footer-content li{
    font-size:13px;
  }

  .footer-badges img{
    height:30px;
  }

}

/* ================= GLOBAL ================= */
.section-padding{
    padding:100px 0;
}


.section-text{
    color:#6c757d;
    line-height:1.7;
}

/* ================= HERO ================= */
.about-hero{
    position:relative;
    padding:160px 0;
    overflow:hidden;
}

/* Background Layer */
.about-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:url('/assets/images/allbg.jpg') center/cover no-repeat;
    filter: blur(2px);   /* reduced blur */
    transform: scale(1.03); /* small scale to avoid edges */
    z-index:0;
}

.about-hero::after{
    content:"";
    position:absolute;
    inset:0;
    background: rgba(0,0,0,0.35); /* slightly lighter overlay */
    z-index:1;
}

/* Keep Content Above */
.about-hero > *{
    position:relative;
    z-index:2;
}

.about-hero .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.about-hero h1{
    font-size:3rem;
    font-weight:700;
    margin-bottom:20px;
    color: var(--soft-red);
}

.about-hero p{
    font-size:1.1rem;
    opacity:.9;
}

/* ================= INFO CARDS ================= */
.info-card{
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:all .4s ease;
    height:100%;
}

.info-card i{
    font-size:28px;
    color:#0d6efd;
    margin-bottom:15px;
    transition:.3s;
}

.info-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.info-card:hover i{
    transform:scale(1.2);
}


/* ================= FEATURE CARDS ================= */


.feature-card i{
    font-size:40px;
    color:var(--dark-red);
    margin-bottom:20px;
    transition:.3s;
}

.feature-card:hover i{
    transform:scale(1.2);
}

/* ================= SERVICE CARDS ================= */
.service-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.service-card img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:.6s;
}

.service-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,.3));
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    opacity:0;
    transition:.4s;
    text-align:center;
    padding:20px;
}

.service-card:hover img{
    transform:scale(1.1);
}

.service-card:hover .service-overlay{
    opacity:1;
}

.service-card:hover{
    transform:translateY(-10px);
}

/* ================= PROCESS ================= */
.process-card{
    background:#fff;
    padding:50px 20px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.4s;
    height:100%;
}

.process-card span{
    font-size:2.5rem;
    font-weight:700;
    color:var(--dark-red);
    display:block;
    margin-bottom:15px;
}

.process-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 45px rgba(0,0,0,.12);
}

/* ================= TEAM GRID ================= */
.team-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.team-grid img{
    width:100%;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.1);
    transition:.4s;
}

.team-grid img:hover{
    transform:scale(1.05);
}

/* ================= CTA ================= */

.cta-section h2{
    font-weight:700;
    margin-bottom:15px;
}

.cta-section .btn{
    padding:12px 35px;
    border-radius:30px;
    font-weight:600;
    transition:.4s;
}

.cta-section .btn:hover{
    transform:translateY(-5px);
}

/* ================= RESPONSIVE ================= */
@media (max-width:992px){

    .about-hero{
        padding:120px 0;
    }

    .about-hero h1{
        font-size:2.3rem;
    }

}

@media (max-width:768px){

    .section-title{
        font-size:1.8rem;
    }

    .about-hero h1{
        font-size:2rem;
    }

    .service-card img{
        height:230px;
    }

}


/* ================= GLOBAL ================= */

.section-title{
  font-weight:700;
  font-size:2.3rem;
  position:relative;
  display:inline-block;
}

.section-title::after{
  content:"";
  width:60%;
  height:3px;
  background:var(--primary-red);
  position:absolute;
  left:20%;
  bottom:-8px;
  border-radius:10px;
}

.bg-light-custom{
  background:var(--light-bg);
}

/* ================= GLOBAL ================= */


.bg-light-custom{
  background:var(--light-bg);
}

/* ================= FORM CARD ================= */
.contact-form-card{
  background:var(--white);
  padding:45px;
  border-radius:20px;
  box-shadow:0 25px 60px rgba(0,0,0,.08);
  transition:.4s ease;
}

.contact-form-card:hover{
  transform:translateY(-8px);
  box-shadow:0 35px 70px rgba(0,0,0,.12);
}

/* ================= INPUTS ================= */
.custom-input{
  border-radius:14px;
  padding:14px 18px;
  border:1px solid #ddd;
  transition:.3s ease;
  font-size:.95rem;
}

.custom-input:focus{
  border-color:var(--primary-red);
  box-shadow:0 0 0 4px var(--soft-red);
}

/* ================= SUBMIT BUTTON (IMPROVED) ================= */
.contact-btn{
  background:var(--primary-red);
  color:var(--white);
  padding:14px;
  border-radius:40px;
  font-weight:600;
  letter-spacing:.5px;
  border:none;
  transition:all .4s ease;
  box-shadow:0 10px 25px rgba(198,40,40,.3);
  position:relative;
  overflow:hidden;
}

/* Shine animation effect */
.contact-btn::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:rgba(255,255,255,.25);
  transform:skewX(-25deg);
  transition:.6s;
}

.contact-btn:hover::before{
  left:120%;
}

.contact-btn:hover{
  background:var(--dark-red);
  transform:translateY(-4px);
  box-shadow:0 15px 35px rgba(163,21,21,.4);
}

/* ================= COLLAGE ================= */
/* ================= IMAGE COLLAGE ================= */

.image-collage{
  position: relative;
  min-height: 420px;
}

/* Images */
.image-collage img{
  position: absolute;
  width: 65%;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
  transition: .4s ease;
}

/* Desktop Positioning */
.image-collage img:nth-child(1){
  top: 0;
  left: 0;
}

.image-collage img:nth-child(2){
  top: 80px;
  right: 0;
}

.image-collage img:nth-child(3){
  bottom: 0;
  left: 25%;
}

.image-collage img:hover{
  transform: scale(1.06);
  z-index: 2;
}



/* ================= CARDS ================= */

.info-card{
  background: var(--white);
  padding: 45px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,.05);
  transition: .4s ease;
}

/* Tablet Padding */
@media (max-width: 768px){
  .info-card,
  .feature-card{
    padding: 35px 25px;
  }
}

/* Mobile Padding */
@media (max-width: 576px){
  .info-card,
  .feature-card{
    padding: 25px 20px;
    border-radius: 16px;
  }
}

.info-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,.12);
}

/* ICONS NOW USE ROOT RED */
.info-card i,
.feature-card i{
  font-size:38px;
  color:var(--primary-red);
  margin-bottom:18px;
  transition:.3s ease;
}

.info-card:hover i,
.feature-card:hover i{
  transform:scale(1.2);
  color:var(--dark-red);
}

/* ================= CTA ================= */
.cta-section{
  background:linear-gradient(135deg,var(--primary-red),var(--dark-red));
  padding:120px 0;
  margin-bottom: 100px;
}

.cta-btn{
  background:var(--white);
  color:var(--primary-red);
  padding:14px 38px;
  border-radius:40px;
  font-weight:600;
  transition:.4s ease;
  box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.cta-btn:hover{
  background:var(--soft-red);
  transform:translateY(-5px);
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){
  .section-padding{padding:80px 0;}
  .section-title{font-size:2rem;}
}

@media(max-width:768px){
  .section-title{font-size:1.8rem;}

  .image-collage{
    display:flex;
    flex-direction:column;
    gap:20px;
    min-height:auto;
  }

  .image-collage img{
    position:relative !important;
    width:100%;
  }
}

@media(max-width:576px){
  .section-padding{padding:60px 0;}
  .contact-form-card{padding:30px;}
}

/* ================= UNIQUE PRINTER SOLUTIONS PAGE ================= */

.ps-page-wrapper{
  background:var(--light-bg);
  padding:100px 0;
}

/* INTRO */
.ps-intro-block{
  margin-bottom:50px;
}

.ps-main-heading{
  font-size:2.3rem;
  font-weight:700;
  margin-bottom:20px;
}

.ps-main-description{
  color:var(--text-muted);
  line-height:1.7;
}

/* CARD */
.ps-card-item{
  background:var(--white);
  padding:25px;
  border-radius:16px;
  margin-bottom:40px;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  transition:.3s ease;
  overflow:hidden;
}

.ps-card-item:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.ps-card-item img{
  width:100%;
  max-height: 300px;
  border-radius:12px;
  margin-bottom:20px;
  transition:.3s ease;
}

.ps-card-item:hover img{
  transform:scale(1.03);
}

.ps-card-content h4{
  font-weight:600;
  margin-bottom:15px;
}

.ps-card-content p{
  color:var(--text-muted);
  margin-bottom:12px;
}

.ps-card-content ul{
  padding-left:18px;
  margin-bottom:10px;
}

.ps-card-content ul li{
  margin-bottom:6px;
}

.ps-card-content ul li::marker{
  color:var(--primary-red);
}

.ps-highlight-text{
  display:block;
  margin-top:10px;
  font-size:.85rem;
  font-weight:600;
  color:var(--primary-red);
  text-transform:uppercase;
}

/* ================= SIDEBAR ================= */

.ps-sidebar-box{
  background:var(--white);
  padding:28px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  border:1px solid rgba(0,0,0,0.08);   /* 1px border added */
  transition:.3s ease;
}

/* Heading */
.ps-sidebar-box h6{
  color:var(--primary-red);
  font-weight:600;
  margin-bottom:18px;
  font-size:16px;
}

/* List Reset */
.ps-sidebar-box ul{
  list-style:none;
  padding:0;
  margin:0;
}

/* List Items */
.ps-sidebar-box ul li{
  position:relative;
  margin:0;
  border-bottom:1px solid #eee;  /* Divider */
}

.ps-sidebar-box ul li:last-child{
  border-bottom:none;  /* Remove last divider */
}

/* Links */
.ps-sidebar-box ul li a{
  display:block;
  padding:12px 10px;
  text-decoration:none;
  color:#444;
  font-size:14px;
  font-weight:500;
  transition:all .3s ease;
  border-radius:8px;
}

/* Hover Effect */
.ps-sidebar-box ul li a:hover{
  background:rgba(0,0,0,0.03);
  color:var(--primary-red);
  padding-left:18px;
}

/* Left Accent Animation */
.ps-sidebar-box ul li a::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  width:0;
  height:60%;
  background:var(--primary-red);
  border-radius:4px;
  transition:.3s ease;
}

.ps-sidebar-box ul li a:hover::before{
  width:4px;
}

.ps-sidebar-box ul li a.active{
  background:rgba(0,0,0,0.05);
  color:var(--primary-red);
  padding-left:18px;
}

.ps-sidebar-box ul li a.active::before{
  width:4px;
}

/* RESPONSIVE */
@media(max-width:992px){
  .ps-page-wrapper{
    padding:80px 0;
  }
}

@media(max-width:768px){
  .ps-main-heading{
    font-size:1.8rem;
  }
}

@media(max-width:576px){
  .ps-page-wrapper{
    padding:60px 0;
  }
}

/* ================= FAQ PAGE ================= */

.faqx-wrapper{
  background:var(--light-bg);
  padding:100px 0;
}

.faqx-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
}

/* CARD */
.faqx-card{
  background:var(--white);
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  padding:20px 25px;
  position:relative;
  transition:.3s ease;
}

.faqx-card:hover{
  transform:translateY(-5px);
  box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.faqx-card input{
  display:none;
}

.faqx-question{
  font-weight:600;
  cursor:pointer;
  display:block;
  position:relative;
  padding-right:25px;
}

.faqx-question::after{
  content:"+";
  position:absolute;
  right:0;
  color:var(--primary-red);
  font-weight:bold;
}

.faqx-card input:checked + .faqx-question::after{
  content:"−";
}

.faqx-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
  color:var(--text-muted);
  margin-top:10px;
  font-size:.9rem;
}

.faqx-card input:checked ~ .faqx-answer{
  max-height:200px;
}

/* RESPONSIVE */
@media(max-width:992px){
  .faqx-wrapper{
    padding:80px 0;
  }
  .faqx-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:576px){
  .faqx-wrapper{
    padding:60px 0;
  }
}

/* ================= ENHANCED DISCLAIMER ================= */

.discx-wrapper{
  background:var(--light-bg);
  padding:100px 0;
}

.discx-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.discx-card{
  background:var(--white);
  padding:35px 30px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  transition:all .4s ease;
  text-align:left;
  position:relative;
  overflow:hidden;
  min-height:240px;
}

.discx-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.discx-icon{
  width:55px;
  height:55px;
  border-radius:50%;
  background:var(--soft-red);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
  transition:.4s ease;
}

.discx-icon i{
  font-size:22px;
  color:var(--primary-red);
  transition:.4s ease;
}

.discx-card:hover .discx-icon{
  background:var(--primary-red);
}

.discx-card:hover .discx-icon i{
  color:var(--white);
  transform:scale(1.1);
}

.discx-card h4{
  font-weight:600;
  margin-bottom:15px;
  color:#222;
}

.discx-card p{
  color:var(--text-muted);
  font-size:.9rem;
  line-height:1.6;
}

/* RESPONSIVE */

@media(max-width:1200px){
  .discx-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .discx-grid{
    grid-template-columns:1fr;
  }
  .discx-wrapper{
    padding:80px 0;
  }
}

@media(max-width:576px){
  .discx-wrapper{
    padding:60px 0;
  }
}

.blog-section{
  padding: 80px 0;
  background: #f8f9fa;
}

.blog-layout{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

/* ===== LEFT GRID ===== */
.blog-grid{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
}

.blog-card{
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,.06);
  transition: .4s ease;
}

.blog-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

.blog-image{
  position: relative;
  overflow: hidden;
}


  .blog-image img{
  width:100%;
  aspect-ratio: 16/9;
  object-fit:cover;
  transition: .4s ease;
}

.blog-card:hover img{
  transform: scale(1.05);
}

.date-badge{
  position: absolute;
  bottom: -25px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #0d9488;
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.date-badge strong{
  font-size: 16px;
}

.blog-content{
  padding: 50px 30px 30px;
}

.blog-content h4{
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

/* ===== SIDEBAR ===== */
.blog-sidebar{
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,.05);
  height: fit-content;
}

.sidebar-title{
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
}

.sidebar-title::before{
  content: "";
  width: 30px;
  height: 3px;
  background: #0d9488;
  position: absolute;
  left: 0;
  top: -10px;
}

.sidebar-post{
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}

.sidebar-post img{
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
}

.sidebar-post small{
  color: #888;
  font-size: 12px;
}

.sidebar-post p{
  font-size: 14px;
  font-weight: 500;
  margin: 3px 0 0;
}

/* ================= RESPONSIVE ================= */

@media(max-width: 1200px){
  .blog-layout{
    grid-template-columns: 1.7fr 1fr;
  }
}

@media(max-width:1100px){
  .blog-layout{
    grid-template-columns:1fr;
  }

  .blog-sidebar{
    margin-top: 40px;
  }
}

@media(max-width: 768px){
  .blog-grid{
    grid-template-columns: 1fr;
  }

  .blog-image img{
    height: 220px;
  }

  .date-badge{
    width: 55px;
    height: 55px;
  }
}

@media(max-width: 576px){
  .blog-section{
    padding: 60px 0;
  }

  .blog-content{
    padding: 45px 20px 25px;
  }

  .sidebar-post img{
    width: 55px;
    height: 55px;
  }
}

.blog-details-section{
  padding: 80px 0;
  background: #f8f9fa;
}

.blog-details-layout{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.blog-details-image img{
  width: 100%;
  border-radius: 18px;
  margin-bottom: 30px;
  object-fit: cover;
}

.blog-article h1{
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.blog-article h2{
  margin-top: 40px;
  font-size: 24px;
  font-weight: 600;
}

.blog-article h3{
  margin-top: 30px;
  font-size: 20px;
  font-weight: 600;
}

.blog-article p{
  color: #555;
  line-height: 1.8;
  margin-top: 15px;
  font-size: 15px;
}

/* ========== RESPONSIVE ========== */

@media(max-width:1200px){
  .blog-details-layout{
    grid-template-columns: 1.6fr 1fr;
  }
}

@media(max-width:992px){
  .blog-details-layout{
    grid-template-columns: 1fr;
  }

  .blog-sidebar{
    margin-top: 50px;
  }
}

@media(max-width:768px){
  .blog-article h1{
    font-size: 26px;
  }

  .blog-article h3{
    font-size: 18px;
  }

  .blog-article p{
    font-size: 14px;
  }
}

@media(max-width:576px){
  .blog-details-section{
    padding: 60px 0;
  }

  .blog-details-image img{
    border-radius: 14px;
  }
}

/* ================= 404 SECTION ================= */

.error-section{
  padding: 100px 0;
  background: #f8f9fa;
}

.error-content{
  background: #fff;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,.06);
}

.error-code{
  font-size: 110px;
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(135deg,#c62828,#a31515);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.error-title{
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.error-text{
  color: #6c757d;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.error-actions{
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Buttons */

.primary-btn{
  background: #c62828;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: .3s ease;
}

.primary-btn:hover{
  background: #a31515;
  color: #fff;
}

.outline-btn{
  border: 2px solid #c62828;
  color: #c62828;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: .3s ease;
}

.outline-btn:hover{
  background: #c62828;
  color: #fff;
}

.error-illustration img{
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){
  .error-content{
    padding: 40px 30px;
  }

  .error-code{
    font-size: 80px;
  }

  .error-title{
    font-size: 26px;
  }

  .error-section{
    padding: 70px 0;
  }
}

@media(max-width:576px){
  .error-code{
    font-size: 65px;
  }

  .error-actions{
    flex-direction: column;
  }

  .primary-btn,
  .outline-btn{
    width: 100%;
    text-align: center;
  }
}

/* ================= COOKIE BANNER ================= */

.cookie-banner{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1f1f1f;
  color: #fff;
  padding: 20px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -5px 20px rgba(0,0,0,.3);
}

.cookie-content{
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.cookie-content p{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-content a{
  color: #c62828;
  text-decoration: underline;
}

.cookie-buttons{
  display: flex;
  gap: 10px;
}

.cookie-accept{
  background: #c62828;
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
}

.cookie-accept:hover{
  background: #a31515;
}

.cookie-decline{
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 8px 20px;
  border-radius: 6px;
}

.cookie-decline:hover{
  background: #fff;
  color: #000;
}

@media(max-width:768px){
  .cookie-content{
    flex-direction: column;
    text-align: center;
  }
}


@media(max-width:768px){

  .section-padding{
    padding:60px 0 !important;
  }

  .features-section,
  .categories-section,
  .blog-section,
  .process-section,
  .solutions-slider-section{
    padding:70px 0 !important;
  }

  .reviews-content{
    padding:50px 20px !important;
  }

}

/* =========================================
   CLEAN MOBILE RESPONSIVE FIX SYSTEM
========================================= */

/* 1️⃣ Global Fluid Spacing */
@media (max-width: 992px){

  .section-padding,
  .features-section,
  .categories-section,
  .blog-section,
  .process-section,
  .solutions-slider-section,
  .ps-page-wrapper,
  .faqx-wrapper,
  .discx-wrapper,
  .error-section,
  .blog-details-section{
    padding: 70px 0 !important;
  }

}

/* 2️⃣ Extra Small Screens */
@media (max-width: 576px){

  .section-padding,
  .features-section,
  .categories-section,
  .blog-section,
  .process-section,
  .solutions-slider-section,
  .ps-page-wrapper,
  .faqx-wrapper,
  .discx-wrapper,
  .error-section,
  .blog-details-section{
    padding: 50px 0 !important;
  }

  .reviews-content{
    padding: 40px 20px !important;
  }

  .contact-form-card{
    padding: 25px !important;
  }

  .solution-content{
    padding: 20px !important;
  }

  .footer-section{
    margin: 15px !important;
  }

}

/* 3️⃣ Fix Sticky Header Properly */

@media (max-width: 991px){

  body.mobile-header-padding{
    padding-top: 80px;
  }

}

/* 4️⃣ Prevent Overflow Issues */

html, body{
  overflow-x: hidden;
}

.container{
  padding-left: 15px;
  padding-right: 15px;
}

/* ================= FINAL RESPONSIVE SAFETY ================= */

*{
  box-sizing:border-box;
}

body{
  overflow-x:hidden;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}