* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: linear-gradient(135deg, #e9f5ec, #f8f9fb);
}

/* Header */
.header {
  position: sticky;
  top: 15px;
  margin: 10px 20px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.6);
  /* transparent white */
  backdrop-filter: blur(12px);
  /* glass blur */
  -webkit-backdrop-filter: blur(12px);
  /* Safari support */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  /* subtle border */
  z-index: 1000;
}

.header:hover {
  background: rgba(255, 255, 255, 0.75);
  transition: 0.3s;
}

html{
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.header-logo {
  height: 45px;
  display: block;
}

.logo{
  display: flex;
  align-items: center;
}

/* Nav */
.nav ul {
  background: transparent;
  display: flex;
  list-style: none;
  gap: 28px;
}

/* BUTTON STYLE */
.nav button {
  background: transparent;
  border: none;
  outline: none;

  color: #1f2d3d;
  font-size: 15px;
  font-weight: 500;

  position: relative;
  cursor: pointer;

  transition: 0.3s;
}

/* Hover + Active */
.nav button:hover,
.nav button.active {
  color: #28a745;
}

/* Underline animation */
.nav button::after {
  content: "";
  position: absolute;

  width: 0%;
  height: 2px;

  background: #28a745;

  left: 0;
  bottom: -6px;

  transition: 0.3s;
}

.nav button:hover::after,
.nav button.active::after {
  width: 100%;
}

/* CTA Button (green rounded like image) */
.btn {
  background: #28a745;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  display: inline-block;
}

.btn:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* Mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #1f2d3d;
  border-radius: 3px;
  transition: 0.3s;
}

/* Animate to X */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.whatsapp-float{
  display: none;
}

/* Tablet */
@media (max-width: 992px) {
  .nav ul {
    gap: 18px;
  }
}

/* Mobile */
@media (max-width: 786px) {
  .menu-toggle {
    display: flex;
  }

  .cta {
      display: none;
  }

  .nav {
    position: absolute;
    top: 100%;
    margin-top: 10px;
    left: 50%;
    transform: translateX(-50%);
    /* center it */
    width: 90%;
    border-radius: 20px;
    /* rounded corners */
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    align-items: center;
    /* centers items horizontally */
    text-align: center;
    /* centers text */
  }

  .nav.active {
    display: block;
  }

  .whatsapp-float {
      display: none !important;
    position: fixed !important;
    width: 50px !important;
    height: 50px !important;
    bottom: 20px !important; /* ABOVE your bottom nav */
    right: 25px !important;
    background-color: #25D366;
    color: #fff !important;
    border-radius: 50%;
    text-align: center;
    font-size: 38px !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    z-index: 99999 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float i {
    font-size: 38px !important;
}
   
}

@media (max-width: 900px) {

  .nav ul {
    gap: 12px;
  }

  .nav button {
    font-size: 13px;
  }

  .btn.whatsapp-btn {
    padding: 9px 14px;
    font-size: 13px;
  }
}


/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
padding: 120px 0 80px;
  background: url('./assets/rm_hero-bg.png') no-repeat;
  background-position: right center;
  background-size: contain;
  /* 👈 show full image */
  background-color: #fff;
  /* fills empty area */
  display: flex;
  align-items: center;
}

/* Light fade overlay (left side like your design) */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(to right, #ffffff 65%, rgba(255, 255, 255, 0.7), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1300px;

  margin: 0 auto;
  padding: 0 80px;
}

.hero-left {
  max-width: 500px;
}

.hero-logo {
  width: 120px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.green {
  color: #4CAF50;
}

.blue {
  color: #1E88E5;
}

.hero p {
  margin: 20px 0;
  font-size: 16px;
  color: #555;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 20px;
}

.features div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.features i {
  color: #28a745;
  font-size: 16px;
}

.hero,
.hero-overlay,
.hero-content {
  transition: all 0.3s ease;
}

.whatsapp-btn {
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

/* hover animation */
.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

/* icon animation */
.whatsapp-btn i {
  font-size: 18px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.email-btn {
  background: #1E88E5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  animation: fadeUp 0.8s ease forwards;
}

.email-btn:hover {
  background: #1565c0;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(30, 136, 229, 0.35);
}

/* icon styling */
.email-btn i {
  color: #fff;
  font-size: 16px;
  transition: transform 0.3s ease;
}

/* icon animation on hover */
.email-btn:hover i {
  transform: scale(1.2) rotate(-8deg);
}

.category-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 25px;
}

.cat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.cat-item span {
  font-size: 14px;
  color: #333;
}

/* Circle icon */
.icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.icon i {
  color: #28a745;
  font-size: 16px;
  transition: 0.3s;
}

/* Hover effect */
.cat-item:hover .icon {
  background: #28a745;
}

.cat-item:hover .icon i {
  color: #fff;
}

.cat-item:hover span {
  color: #28a745;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 992px) {

  .features {
  display: grid;
  grid-template-columns: repeat(2, max-content);

  justify-content: center;
  align-items: center;

  gap: 14px 30px;

  width: 100%;
  margin: 20px auto;
}

.features div {
  justify-content: flex-start;
}

  .hero {
    background-position: center center;
    /* force true center */
    background-size: cover;
  }

  .hero-overlay {
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
  }

  .hero-content {
    text-align: center;
    padding: 0 30px;
  }

  .hero-left {
    margin: auto;
  }

   .container {
    padding: 15px;
  }

  .nav ul {
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .category-list {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }
}

@media (max-width: 576px) {
  .hero {
    height: auto;
    padding: 120px 20px 80px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }
}

/* Our Services */
/* SECTION */
/* =========================
   OUR SERVICES SECTION
========================= */

.services {
  padding: 70px 20px;
  background: linear-gradient(135deg, #e9f5ec, #f8f9fb);
  overflow: hidden;
}

.services-container {
  width: 100%;
  max-width: 1280px;
  margin: auto;
}

/* HEADER */
.services-header {
  text-align: center;
}

.services-header h4 {
  color: #28a745;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.services-header h2 {
  font-size: 34px;
  color: #1f2d3d;
  line-height: 1.3;
}

/* SPACE */
.services-space {
  height: 45px;
}

/* CARDS WRAPPER */
.services-wrapper {
  display: flex;
  align-items: stretch;
  gap: 18px;

  overflow-x: auto;
  overflow-y: hidden;

  padding-bottom: 10px;
  scroll-snap-type: none;

  -webkit-overflow-scrolling: touch;
}

/* HIDE SCROLLBAR */
.services-wrapper::-webkit-scrollbar {
  display: none;
}

.services-wrapper {
  scrollbar-width: none;
}

/* CARD */
.service-card {
  flex: 0 0 190px;

  min-height: 190px;

  padding: 16px 14px;

  border-radius: 20px;

  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.4);

  box-shadow: 0 6px 18px rgba(0,0,0,0.08);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  text-align: center;


  transition: 0.3s;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.55);
}

/* ICON */
.icon-circle {
  width: 52px;
  height: 52px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 12px;
}

.icon-circle i {
  color: #fff;
  font-size: 18px;
}

/* ICON COLORS */
.blue .icon-circle {
  background: #1E88E5;
}

.green .icon-circle {
  background: #28a745;
}

/* TITLE */
.service-card h3 {
  font-size: 15px;
  color: #1f2d3d;

  margin-bottom: 8px;

  line-height: 1.3;
}

/* DESCRIPTION */
.service-card p {
  font-size: 12px;
  color: #555;

  line-height: 1.5;

  margin: 0;
}


/* =========================
   TABLET
========================= */

@media (max-width: 992px) {

  .services {
    padding: 60px 15px;
  }

  .services-header h2 {
    font-size: 28px;
  }

  .service-card {
    flex: 0 0 180px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .services-space {
    height: 35px;
  }

  .services-header h2 {
    font-size: 24px;
  }

  .service-card {
    flex: 0 0 165px;

    min-height: 180px;

    padding: 14px 12px;
  }

  .service-card h3 {
    font-size: 14px;
  }

  .service-card p {
    font-size: 11px;
  }

  .icon-circle {
    width: 48px;
    height: 48px;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

  .services {
    padding: 50px 12px;
  }

  .services-header h4 {
    font-size: 12px;
  }

  .services-header h2 {
    font-size: 21px;
  }

  .service-card {
    flex: 0 0 155px;
  }
}

/* Why Choose Us */
.why-choose {
  padding: 80px 20px;
  background: #f8f9fb;
  text-align: center;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #000;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #000;
  display: block;
  margin: 10px auto 0;
}

/* CARD */
.why-card {
  max-width: 1200px;
  margin: auto;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* EACH SECTION */
.why-item {
  flex: 1;
  padding: 30px 20px;
  text-align: center;
}

.why-item i {
  font-size: 28px;
  margin-bottom: 10px;
}

/* COLORS per section */
.why-item:nth-child(1) i { color: #1E88E5; }
.why-item:nth-child(3) i { color: #28a745; }
.why-item:nth-child(5) i { color: #1E88E5; }
.why-item:nth-child(7) i { color: #28a745; }

.why-item h3 {
  font-size: 16px;
  color: #000;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

/* VERTICAL DIVIDER */
.divider {
  width: 1px;
  background: #000;
  opacity: 0.2;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-card {
    flex-direction: column;
  }

  .divider {
    width: 100%;
    height: 1px;
  }
}

/* Process */
.process-flow {
  padding: 80px 20px;
  text-align: center;background: linear-gradient(135deg, rgb(233, 245, 236), rgb(248, 249, 251));
}

.title {
  font-size: 28px;
  font-weight: 700;
  color: #000;
}

.subtitle {
  font-size: 14px;
  color: #555;
  margin-bottom: 40px;
}

/* MAIN CARD */
.flow-card {
  max-width: 900px;   /* ✅ smaller, cleaner */
  width: 100%;
  margin: auto;

  background: #fff;
  border-radius: 18px;

  padding: 25px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 10px;

  box-shadow: inset 0 6px 15px rgba(0,0,0,0.08),
              inset 0 -6px 15px rgba(255,255,255,0.9),
              0 8px 20px rgba(0,0,0,0.05);

  overflow: hidden;
}
/* STEP */
.flow-step {
  flex: 1;
  min-width: 120px;
  text-align: center;
}

.circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: #f1f5f9;
}

.circle i {
  font-size: 20px;
}

/* COLORS */
.blue .circle i { color: #1E88E5; }
.green .circle i { color: #28a745; }

.flow-step h3 {
  font-size: 15px;
  color: #000;
  margin-bottom: 5px;
}

.flow-step p {
  font-size: 12px;
  color: #666;
}

/* ARROWS */
.arrow {
  font-size: 14px;
  color: #888;
  flex: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .flow-card {
    flex-direction: column;
    align-items: center;
  }

  .arrow {
    transform: rotate(90deg);
  }
}

/* Clients */
.trusted-section {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.trusted-container {
  max-width: 1200px;
  margin: auto;
}

/* Title */
.trusted-title {
  font-size: 32px;
  font-weight: 700;
  color: #1f2d3d;
  margin-bottom: 10px;
}

.trusted-title span {
  color: #28a745;
}

.trusted-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 40px;
}

/* MARQUEE WRAPPER */
.logo-marquee {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

/* TRACK */
.logo-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;

  animation: scroll 25s linear infinite;
}

/* LOGOS */
.logo-track img {
  height: 85px;
  width: auto;

  filter: grayscale(100%);
  opacity: 0.85;

  transition: 0.3s ease;
}

.logo-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* ANIMATION */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .trusted-title {
    font-size: 24px;
  }

  .logo-track {
    gap: 50px;
    animation-duration: 18s;
  }

  .logo-track img {
    height: 45px;
  }
}

/* About us */

.about {
  padding: 80px 20px;
  background: #f8f9fb;
}

.about-container {
  max-width: 1200px;
  margin: auto;

  display: flex;
  align-items: center;
  gap: 50px;
}

/* LEFT IMAGE */
.about-image {
  flex: 1;
  height: auto;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 20px;
  background: #f8f9fb;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.5s ease;
}

/* hover effect */
.about-image img:hover {
  transform: scale(1.05);
}

/* RIGHT CONTENT */
.about-content {
  flex: 1.2;
}

.sub-title {
  color: #28a745;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.main-title {
  font-size: 32px;
  color: #1f2d3d;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* GROUP BOXES */
.group-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 25px;
}

.group-item {
  background: #fff;
  padding: 12px 14px;
  border-radius: 12px;

  border-left: 4px solid #28a745;

  box-shadow: 0 4px 12px rgba(0,0,0,0.06);

  transition: 0.3s;
}

.group-item:hover {
  transform: translateY(-4px);
}

.group-item h3 {
  font-size: 14px;
  color: #1f2d3d;
  margin-bottom: 5px;
}

.group-item p {
  font-size: 12px;
  color: #666;
}

/* =========================
   TABLET (iPad)
========================= */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    height: 400px;
  }

  .group-list {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .main-title {
    font-size: 24px;
  }

  .about-image img {
    height: 320px;
  }

  .group-list {
    grid-template-columns: 1fr;
  }
}

/* Footer */
/* =========================
   FOOTER BASE
========================= */
.footer {
  background: linear-gradient(135deg, #eaf4ff, #f7fbff);
  padding: 70px 20px 20px;
  color: #1f2d3d;
}

/* =========================
   GRID (FIXED 5 COLUMNS)
========================= */
.footer-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));

  gap: 15px;   /* 🔥 reduced from 25px */

  align-items: start;
}

/* =========================
   COLUMN BASE
========================= */
.f-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* =========================
   LOGO
========================= */
.logo {
  width: 140px;
  margin-bottom: 12px;
}

/* =========================
   TEXT
========================= */
.f-col p,
.f-col span {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* =========================
   HEADINGS
========================= */
.f-col h3 {
  font-size: 17px;
  margin-bottom: 14px;
  color: #1E88E5;
  position: relative;
}

.f-col h3::after {
  content: "";
  width: 45px;
  height: 3px;
  background: #28a745;
  display: block;
  margin-top: 6px;
  border-radius: 10px;
}

/* =========================
   LINKS
========================= */
.f-col a {
  text-decoration: none;
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  transition: 0.3s;
}

.f-col a:hover {
  color: #28a745;
  transform: translateX(5px);
}

/* =========================
   SERVICES LIST
========================= */
.f-col span {
  margin-bottom: 4px;
  transition: 0.3s;
  line-height: 1.4;
}

.f-col span:hover {
  color: #28a745;
  transform: translateX(5px);
}

/* =========================
   CONTACT
========================= */
.f-col p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.f-col p br {
  display: block;
  margin-bottom: 4px;
}

.f-col p i {
  color: #28a745;
  margin-right: 6px;
  width: 14px;
  font-size: 13px;
}

.f-col button {
  background: transparent;
  border: none;
  outline: none;

  text-align: left;

  font-size: 14px;
  color: #333;

  margin-bottom: 10px;

  cursor: pointer;

  transition: 0.3s;
}

.f-col button:hover {
  color: #28a745;
  transform: translateX(5px);
}

/* =========================
   SOCIAL ICONS (UPGRADED)
========================= */
.social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;

  background: linear-gradient(135deg, #28a745, #1E88E5);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 15px;

  transition: 0.3s;
  text-decoration: none;

  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.social a:hover {
  transform: translateY(-5px) scale(1.08);
}

/* =========================
   MAP
========================= */
.f-col iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 12px;
  margin-top: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  display: block;
}

/* =========================
   BOTTOM
========================= */
.bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 13px;
  color: #666;
  border-top: 1px solid rgba(0,0,0,0.1);
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================
   SMALL TABLET
========================= */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social {
    justify-content: center;
  }

  .f-col h3::after {
    margin-left: auto;
    margin-right: auto;
  }

    .f-col button {
    text-align: center;
    width: 100%;
  }
}

/* Signature */
.watermark{
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #888;
  text-decoration: none;
  transition: 0.3s;
}

.watermark:hover{
  color: #28a745;
}