/* Footer Bottom Container */
/* .footer-one__bottom-text {
  width: 100%;
  padding: 15px 0;
  background-color: #0b2c3d;
  text-align: center;
} */

/* Paragraph base style */
.footer-one__bottom-text p {
  margin: 0;
  font-size: 14px;        /* 👈 normal footer font size */
  color: #ffffff;
}

/* Company name (Right Express) */
.footer-company {
  color: #920d0d;
  text-decoration: none;
  font-weight: 500;
}

.footer-company:hover {
  text-decoration: underline;
}

/* Separator spacing */
.footer-separator {
  margin: 0 40px;         /* 👈 gap control */
  color: #be1010;
}

/* 🔥 ONLY Neotech IT Services */
.neotech-link {
  color: #1d076e;         /* 👈 Neotech ka color */
  font-size: 16px;        /* 👈 ONLY Neotech font size */
  font-weight: 600;
  text-decoration: none;
}

.neotech-link:hover {
  color: #4608f0;         /* hover color */
  text-decoration: underline;
}


/* 👈 services */



/* =========================
   SERVICES SECTION
========================= */

.services-section {
  padding: 100px 20px;
  background: #f4f4f4;
}

.container1 {
  max-width: 1200px;
  margin: auto;
}

/* =========================
   TITLE
========================= */

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 38px;
  font-weight: 700;
  color: #000;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #d60000;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.section-title p {
  font-size: 16px;
  color: #555;
  margin-top: 15px;
}

/* =========================
   GRID
========================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 45px;
}

/* =========================
   CARD
========================= */

.service-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  border-bottom: 4px solid #d60000;

  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* =========================
   IMAGE
========================= */

.service-image {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

/* Diagonal White Cut */
.service-image::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  clip-path: polygon(0 45%, 100% 0%, 100% 100%, 0% 100%);
}

/* =========================
   BRAND BADGE
========================= */

.brand-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #d60000;
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: 0.5px;
  z-index: 2;
}

/* =========================
   CONTENT
========================= */

.service-content {
  padding: 30px;
  flex-grow: 1;
}

.service-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
  position: relative;
}

.service-content h3::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #d60000;
  position: absolute;
  left: 0;
  bottom: -6px;
}

.service-content p {
  margin-top: 18px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* =========================
   RESPONSIVE BREAKPOINTS
========================= */

/* Tablet */
@media (max-width: 992px) {
  .services-section {
    padding: 80px 20px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .service-image {
    height: 190px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .services-section {
    padding: 60px 15px;
  }

  .services-grid {
    gap: 30px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .section-title p {
    font-size: 14px;
  }

  .service-image {
    height: 170px;
  }

  .service-content {
    padding: 22px;
  }

  .service-content h3 {
    font-size: 18px;
  }

  .service-content p {
    font-size: 13px;
  }
}


















/* Premium Overlay */
.hero::before{
    content:"";
    position:absolute;
    inset:0;

    /* Black to transparent red blend */
    background:linear-gradient(
        90deg,
        rgba(0,0,0,0.95) 30%,
        rgba(0,0,0,0.85) 50%,
        rgba(120,0,0,0.65) 75%,
        rgba(0,0,0,0.3) 100%
    );

    z-index:1;
}

/* Content */
.hero-content{
    position:relative;
    z-index:2;
    max-width:650px;
    color:#fff;
}

/* Heading */
.hero-content h1{
    font-size:70px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
    position:relative;
}

/* Subtle Outline Effect */
.hero-content h1::after{
    content:"RIGHT EXPRESS";
    position:absolute;
    top:0;
    left:0;
    font-size:70px;
    font-weight:800;
    color:transparent;
    -webkit-text-stroke:1px rgba(255,255,255,0.08);
    transform:translate(6px,6px);
    z-index:-1;
}

/* PVT LTD Stroke Red */
.hero-content h1 span{
    display:block;
    color:transparent;
    -webkit-text-stroke:2px #ff0000;
    letter-spacing:4px;
}

/* Paragraph */
.hero-content p{
    font-size:18px;
    line-height:1.8;
    color:#e0e0e0;
    margin-bottom:30px;
}

/* Buttons */
.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-red{
    background:#ff0000;
    color:#fff;
    padding:14px 30px;
    text-decoration:none;
    font-weight:600;
    border-radius:6px;
    transition:0.3s ease;
}

.btn-red:hover{
    background:#cc0000;
    transform:translateY(-3px);
}

.btn-outline{
    border:2px solid #fff;
    color:#fff;
    padding:12px 28px;
    text-decoration:none;
    font-weight:600;
    border-radius:6px;
    transition:0.3s ease;
}

.btn-outline:hover{
    background:#fff;
    color:#000;
}

/* Responsive */
@media(max-width:992px){

    .hero{
        justify-content:center;
        text-align:center;
        padding:0 5%;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content h1::after{
        font-size:42px;
    }

    .hero-content p{
        font-size:15px;
    }

    .hero-buttons{
        justify-content:center;
    }
}

.hero{
    position:relative;
    width:100%;
    min-height:50vh;
    padding: 70px 8% 70px; /* top padding header ke liye */
    display:flex;
    align-items:center;
    overflow:hidden;
}

/* Background image */
.hero-bg{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    top:0;
    left:0;
    z-index:0;
}

/* Overlay */
/* .hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(0,0,0,0.9) 35%,
        rgba(0,0,0,0.7) 55%,
        rgba(120,0,0,0.5) 75%,
        rgba(0,0,0,0.2) 100%
    );
    z-index:1;
} */

/* Content */
.hero-content{
    position:relative;
    z-index:2;
    max-width:650px;
    color:#fff;
}








