/* 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;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #ffffff; /* White background */
    color: #111111;
}

/* ================= SERVICES SECTION ================= */

.re-services {
    padding: 90px 20px;
    background: #f8f8f8; /* light grey for contrast */
}

/* Header */
.re-services__header {
    text-align: center;
    margin-bottom: 65px;
}

.re-services__header h4 {
    color: #d90429; /* Right Express Red */
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.re-services__header h2 {
    font-size: 38px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #111111; /* Black */
}

.re-services__header h2 span {
    color: #d90429; /* Red highlight */
}

.re-services__header p {
    max-width: 650px;
    margin: auto;
    color: #555555;
    font-size: 16px;
}

/* ================= GRID ================= */

.re-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

/* ================= CARD ================= */

.re-service-card {
    background: #ffffff;
    padding: 38px 32px;
    border-radius: 18px;
    text-align: left;
    border-top: 4px solid #d90429; /* Brand accent */
    box-shadow: 0 14px 35px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.re-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* ================= ICON ================= */

.re-service-icon {
    width: 62px;
    height: 62px;
    background: #ffe5ea; /* light red bg */
    color: #d90429;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
}

/* ================= TEXT ================= */

.re-service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #111111;
}

.re-service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 20px;
}

.re-service-card a {
    color: #d90429;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.3px;
}

.re-service-card a:hover {
    text-decoration: underline;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 600px) {
    .re-services__header h2 {
        font-size: 28px;
    }

    .re-service-card {
        padding: 30px 24px;
    }
}






* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #ffffff;
}

/* Section */
.re-stats {
    padding: 70px 20px;
    background: #fff;
}

.container {
    max-width: 2400px;
    margin: auto;
}

/* Grid */
.re-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

/* Card */
.re-stat-card {
    background: #ffffff;
    border: 2px solid #f2f2f2;
    border-radius: 16px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Red top line */
.re-stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: #d90429; /* Right Express Red */
}

.re-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Number */
.re-stat-card h2 {
    font-size: 38px;
    font-weight: 700;
    color: #d90429; /* Red */
    margin-bottom: 8px;
}

/* Text */
.re-stat-card p {
    font-size: 15px;
    color: #111111;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 600px) {
    .re-stat-card h2 {
        font-size: 30px;
    }
}




/* =========================
   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;
  }
}