/* ===========================================
   RoneeWeb Index Styles
   Modern Light Theme for IT Agency
=========================================== */

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background-color: #f9fafb;
  color: #333;
}

/* ----------------------------
   Hero Section
---------------------------- */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6rem 5%;
  background: linear-gradient(90deg, #eaf9f6, #f8fbff);
  gap: 2rem;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #009879;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: linear-gradient(90deg, #009879, #00aaff);
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  transition: 0.3s;
}

.btn-primary:hover {
  background: transparent;
  border-color: #00aaff;
  color: #00aaff;
}

.btn-secondary {
  background: transparent;
  color: #009879;
  border: 2px solid #009879;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #009879;
  color: white;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ----------------------------
   Benefits Section
---------------------------- */
.benefits {
  padding: 5rem 5%;
  background: #ffffff;
  text-align: center;
}

.benefits h2 {
  color: #009879;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.benefits h2 span {
  color: #00aaff;
}

.benefits .section-subtitle,
.benefits > p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Individual benefit cards */
.benefit-item {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 35px 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  border-top: 4px solid transparent;
}

.benefit-item:hover {
  transform: translateY(-6px);
  background: linear-gradient(180deg, #ffffff, #f0fafa);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #00aaff;
}

.benefit-item i {
  font-size: 2.2rem;
  color: #00aaff;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #009879, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefit-item h3 {
  color: #009879;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.benefit-item p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .benefits {
    padding: 4rem 5%;
  }

  .benefit-grid {
    gap: 1.5rem;
  }

  .benefit-item {
    padding: 25px 20px;
  }
}


/* ----------------------------
   Pricing Section
---------------------------- */
/* ===== RoneeWeb Pricing Section (scoped) =====
   Keep these rules after your main index.css so site colors are preserved.
   All classes start with .rw- to avoid collisions.
*/

/* ---- Vars - match site palette: adjust if needed ---- */
:root {
  --rw-blue: #0d3b8f;       /* primary deep blue - change to your index.css variable if present */
  --rw-green: #00b386;      /* roneeweb green */
  --rw-accent: #17c2b2;
  --rw-dark: #071028;
  --rw-card-radius: 14px;
  --rw-shadow: 0 8px 24px rgba(10,20,40,0.15);
  --rw-glass-bg: rgba(255,255,255,0.06);
}

/* Container */
.rw-pricing-section { padding: 48px 18px; }
.rw-container { max-width: 1200px; margin: 0 auto; }

/* Header */
.rw-pricing-header { text-align: center; margin-bottom: 28px; }
.rw-pricing-header h2 { font-size: 28px; margin: 0 0 6px; color: var(--rw-dark); }
.rw-pricing-header .rw-sub { color: #51607a; margin: 0 0 12px; }

/* Grid layout */
.rw-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* Card base */
.rw-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--rw-card-radius);
  padding: 18px;
  min-height: 360px;
  box-shadow: var(--rw-shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
  position: relative;
  background: #fff;
}

/* hover effect */
.rw-card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(6,12,30,0.18); }

/* Card top row */
.rw-card-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:12px; gap:10px; }
.rw-badge { font-weight:700; font-size:13px; padding:6px 10px; border-radius:999px; color:#fff; }
.rw-price { font-weight:800; font-size:20px; color:#fff; background:rgba(0,0,0,0.12); padding:8px 12px; border-radius:8px; }

/* Card title and features */
.rw-card-title { font-size:18px; margin: 6px 0 10px; color: #07203a; }
.rw-features { list-style: none; padding:0; margin:0 0 14px; color:#517ea9; line-height:1.5; }
.rw-features li { margin-bottom:8px; padding-left:18px; position:relative; }
.rw-features li::before {
  content: "✓";
  position:absolute; left:0; top:0;
  color: var(--rw-green); font-weight:700;
}

/* CTA buttons variants */
.rw-card-cta { margin-top: auto; text-align: center; }
.rw-btn {
  display:inline-block; text-decoration:none; padding:10px 16px; border-radius:10px;
  font-weight:700; letter-spacing: .2px;
  background: linear-gradient(90deg, var(--rw-blue), var(--rw-green));
  color:#fff;
  box-shadow: 0 8px 18px rgba(13,59,143,0.14);
}
.rw-btn:hover { opacity:.95; transform: translateY(-2px); }

.rw-btn-light {
  background: linear-gradient(90deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  color:#000000; border:1px solid rgba(255,255,255,0.06);
}

.rw-btn-dark {
  background: linear-gradient(90deg,#0f2b4a,#071733); color:#fff;
}

.rw-btn-outline {
  background: #fff; color:var(--rw-blue); border:2px solid rgba(13,59,143,0.06);
  box-shadow:none;
}

/* ===== Static gradient cards ===== */
.rw-card-static {
  background: linear-gradient(135deg, rgba(12,53,135,0.95), rgba(0,179,134,0.92));
  color: #fff;
}
.rw-card-static .rw-badge { background: rgba(255,255,255,0.12); color: #fff; font-weight:700; }
.rw-card-static .rw-price { background: rgba(255,255,255,0.06); color:#fff; }
.rw-card-static .rw-card-title, .rw-card-static .rw-features li { color: rgba(255,255,255,0.95); }
.rw-card-static .rw-features li::before { color: #fff; }

/* ===== Dynamic glassmorphism cards ===== */
.rw-card-dynamic {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.06);
  color: #71b3e6;
}
.rw-card-dynamic .rw-badge { background: rgba(255,255,255,0.06); color:#000000; }
.rw-card-dynamic .rw-price { background: rgba(255,255,255,0.02); color:#000000; }
.rw-card-dynamic .rw-card-title { color:#000000; }
.rw-card-dynamic .rw-features li::before { color: var(--rw-accent); }

/* ===== Dark premium (Blog / E-com style) ===== */
.rw-card-dark {
  background: linear-gradient(180deg, #041226 0%, #0a1a36 100%);
  color:#fff;
}
.rw-card-dark .rw-badge { background: rgba(255,255,255,0.06); color:#fff; }
.rw-card-dark .rw-price { background: linear-gradient(90deg, #0ea5ff, #7cf7d4); color:#031022; font-weight:800; }
.rw-card-dark .rw-card-title { color:#fff; }
.rw-card-dark .rw-features li::before { color:#7cf7d4; }

/* ===== Horizontal custom quote ===== */
.rw-custom-quote {
  margin-top: 30px;
  padding: 20px;
  display: flex;
  gap: 20px;
  background: #fff;
  border-radius: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(5,12,24,0.08);
}
.rw-custom-left { flex: 1; padding-right: 12px; }
.rw-custom-left h3 { margin:0 0 8px; color:var(--rw-dark); }
.rw-custom-left p { margin:0 0 12px; color:#465a6d; }
.rw-custom-list { list-style: none; padding:0; margin:0 0 12px; color:#3b4956; }
.rw-custom-list li { margin-bottom:8px; padding-left:18px; position:relative; }
.rw-custom-list li::before { content:"•"; position:absolute; left:0; color:var(--rw-green); font-weight:700; }

.rw-custom-right { width:320px; max-width:35%; }
.rw-ecom-note { padding:12px; border-radius:10px; background: linear-gradient(180deg, #071028, #0d2a4a); color:#fff; }
.rw-ecom-note p { margin:6px 0 0; font-size:13px; color:#dbefff; }

/* ===== Blog Expert Horizontal Card ===== */
.rw-blog-expert-card {
  margin: 22px 0 10px;
  padding: 18px 22px;
  background: linear-gradient(180deg, #041226 0%, #0a1a36 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
  box-shadow: 0 14px 30px rgba(4,12,30,0.35);
}

.rw-blog-expert-content h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.rw-blog-expert-content p {
  margin: 0;
  color: #d8e9ff;
  line-height: 1.4;
  max-width: 720px;
}

.rw-blog-expert-btn {
  white-space: nowrap;
  padding: 10px 18px;
}

/* responsive */
@media (max-width: 720px) {
  .rw-blog-expert-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
  }

  .rw-blog-expert-btn {
    width: 80%;
    text-align: center;
  }
}


/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .rw-pricing-grid { grid-template-columns: repeat(3,1fr); }
  .rw-custom-right { max-width:40%; }
}
@media (max-width: 820px) {
  .rw-pricing-grid { grid-template-columns: repeat(2,1fr); }
  .rw-card { min-height: 320px; }
  .rw-custom-quote { flex-direction: column; align-items:flex-start; }
  .rw-custom-right { width:100%; max-width:100%; }
}
@media (max-width: 480px) {
  .rw-pricing-grid { grid-template-columns: 1fr; gap:16px; }
  .rw-card { min-height: auto; padding:14px; }
  .rw-pricing-section { padding: 28px 12px; }
  .rw-pricing-header h2 { font-size:20px; }
  .rw-btn { padding:9px 12px; font-size:14px; }
}

/* ----------------------------
   Testimonials Section (Modern)
---------------------------- */
.testimonials {
  padding: 6rem 5%;
  background: linear-gradient(135deg, #eafaf7 0%, #f2f8ff 100%);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.testimonials h2 {
  color: #009879;
  font-size: 2.3rem;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 3rem;
}

/* Carousel Base */
.testimonial-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 2rem;
  animation: scrollTestimonials 28s linear infinite;
  width: max-content;
  will-change: transform;
}

@keyframes scrollTestimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  min-width: 330px;
  flex-shrink: 0;
  padding: 2rem;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(250,252,255,0.85));
  backdrop-filter: blur(12px);
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 168, 255, 0.12), transparent 60%);
  z-index: 0;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* Avatar Styling */
.client-img {
  position: relative;
  z-index: 1;
  margin-bottom: 1.2rem;
}

.client-img img {
  width: 85px;
  height: 85px;
  object-fit: cover;
  border-radius: 50% 0%;
  border: 3px solid #00aaff;
  background: #fff;
  box-shadow: 0 0 14px rgba(0, 168, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-img img:hover {
  transform: scale(1.08);
  box-shadow: 0 0 22px rgba(0, 168, 255, 0.4);
}

/* Text + Content */
.testimonial-content {
  z-index: 1;
  text-align: center;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  font-style: italic;
  margin-bottom: 15px;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.testimonial-content h4 {
  color: #009879;
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial-content span {
  color: #777;
  font-size: 0.9rem;
}

/* ----------------------------
   Responsive Fix (Tablets + Mobiles)
---------------------------- */

/* Tablets (≤992px) */
@media (max-width: 992px) {
  .testimonial-card {
    max-width: 80px;
    padding: 1.6rem;
    border-radius: 18px;
  }

  .client-img img {
    width: 75px;
    height: 75px;
  }

  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.4;
    -webkit-line-clamp: 3;
  }
}

/* Mobiles (≤600px) */
@media (max-width: 600px) {
  .testimonial-card {
    max-width: 50px;
    padding: 1.4rem;
    border-radius: 15px;
  }

  .client-img img {
    width: 65px;
    height: 65px;
    border-radius: 40% 0%;
  }

  .testimonial-text {
    font-size: 0.9rem;
    line-height: 1.3;
    /* width: 50%; */
  }

  .testimonials h2 {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
}


/* ----------------------------
   Brands Section
---------------------------- */
.brands {
  padding: 5rem 5%;
  background: #ffffff;
  text-align: center;
}

.brands h2 {
  color: #009879;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.brands h2 span {
  color: #00aaff;
}

.brands-subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Logos Grid */
.brands-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.brand-item {
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(245,250,255,0.8));
  padding: 20px 25px;
  border-radius: 14px;
  backdrop-filter: blur(8px);
  box-shadow:
    0 5px 15px rgba(0,0,0,0.07),
    inset 0 0 0 1px rgba(255,255,255,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 160px;
}

.brand-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.brand-item img {
  width: 40%;
  height: auto;
  opacity: 0.85;
  filter: grayscale(40%);
  transition: 0.3s ease;
}

.brand-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

/* Responsive */
@media (max-width: 768px) {
  .brands h2 {
    font-size: 1.8rem;
  }

  .brands-subtitle {
    font-size: 0.95rem;
  }

  .brand-item {
    padding: 15px 18px;
  }
}

/* ----------------------------
   As Seen On Section
---------------------------- */
.as-seen-on {
  padding: 5rem 5%;
  background: #ffffff;
  text-align: center;
}

.as-seen-on h2 {
  color: #009879;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.as-seen-on h2 span {
  color: #00aaff;
}

.aso-subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Logos Row */
.aso-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

/* Individual Logo Cards */
.aso-item {
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(245,250,255,0.8));
  padding: 10px 10px;
  border-radius: 14px;
  backdrop-filter: blur(8px);
  box-shadow:
    0 5px 15px rgba(0,0,0,0.07),
    inset 0 0 0 1px rgba(255,255,255,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 140px;
}

.aso-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.aso-item img {
  width: 40%;
  height: auto;
  opacity: 0.85;
  filter: grayscale(40%);
  transition: 0.3s ease;
}

.aso-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

/* Responsive */
@media (max-width: 768px) {
  .as-seen-on h2 {
    font-size: 1.8rem;
  }

  .aso-subtitle {
    font-size: 0.95rem;
  }

  .aso-item {
    padding: 15px 18px;
  }
}


/* ============================
   WHY WEBSITE IS MUST (Circle Diagram)
============================ */

.why-website {
  padding: 6rem 5%;
  background: #ffffff;
  text-align: center;
}

.why-website h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #009879;
  margin-bottom: 10px;
}

.why-website h2 span {
  color: #00aaff;
  font-weight: 800;
}

.why-sub {
  color: #444;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  font-weight: 500;
}

/* Circle Diagram (Desktop only) */
.circle-diagram {
  position: relative;
  width: 650px;
  height: 650px;
  margin: 0 auto;
}
/* STOP circle from overflowing on mobile */
@media (max-width: 768px) {
  .circle-diagram {
    overflow: hidden;
  }
}


/* Center Core */
.center-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, #eafaf7, #dff3ff);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12),
              0 0 25px rgba(0,168,255,0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.center-core h3 {
  color: #009879;
  font-weight: 700;
  margin-bottom: 5px;
}

.center-core p {
  font-size: 0.95rem;
  font-weight: 500;
  color: #555;
}

/* Outer Items (Desktop) */
.circle-item {
  position: absolute;
  width: 190px;
  padding: 25px 18px;
  background: #ffffff;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0px 10px 28px rgba(0,0,0,0.10);
  border: 1px solid rgba(0,168,255,0.15);
  transition: 0.3s ease;
}

.circle-item:hover {
  transform: scale(1.07);
  box-shadow: 0px 12px 35px rgba(0,168,255,0.25);
}

.circle-item i {
  font-size: 2rem;
  background: linear-gradient(90deg, #009879, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.circle-item p {
  font-size: 1rem;
  color: #333;
  font-weight: 600;
  line-height: 1.45;
}

/* Desktop circle positions */
.item1 { top: 0%; left: 50%; transform: translate(-50%, 0); }
.item2 { top: 20%; left: 2%; }
.item3 { top: 20%; right: 2%; }
.item4 { bottom: 0%; left: 50%; transform: translate(-50%, 0); }
.item5 { bottom: 20%; left: 2%; }
.item6 { bottom: 20%; right: 2%; }

/* ============================
   MOBILE/TABLET FALLBACK (Option A)
============================ */

@media (max-width: 768px) {

  /* Remove absolute layout */
  .circle-diagram {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 5%;
  }

  /* Center bubble becomes top card */
  .center-core {
    position: relative;
    transform: none;
    width: 200px;
    height: 200px;
    margin-bottom: 25px;
    margin-right: 90%;
  }

  /* ALL circle-item become normal stacked cards */
  .circle-item {
    position: relative;
    width: 90%;
    max-width: 360px;
    margin: 15px auto;
    left: 0; 
    right: 0;
    transform: none !important;
  }

  /* Remove desktop spacing */
  .item1, .item2, .item3, .item4, .item5, .item6 {
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .center-core {
    width: 170px;
    height: 170px;
    margin-right: 90%;
  }
  .circle-item p {
    font-size: 0.9rem;
  }
}


/* ----------------------------
   CTA CSS - Why Website Part
---------------------------- */

/* CTA Investment Box */
.ww-cta-box {
  background: linear-gradient(135deg, #eaf9f6, #f0faff);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 20px;
  margin: 4rem auto;
  max-width: 850px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,168,255,0.12);
}

.ww-cta-box h3 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #009879;
  margin-bottom: 10px;
}

.ww-cta-box p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1.8rem;
  font-weight: 500;
}

/* Facts List */
.ww-facts {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left; /* 🔥 Key Fix */
}

.ww-facts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.25rem;
  color: #333;
  font-weight: 500;
  margin: 14px 0;
  line-height: 1.55;
}

.ww-facts i {
  font-size: 1.3rem;
  min-width: 28px; /* keeps icons aligned */
  margin-top: 3px;
  background: linear-gradient(90deg, #009879, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(0,168,255,0.25);
}

/* MOBILE FIX */
@media(max-width: 600px) {

  .ww-cta-box {
    padding: 2rem 1.3rem;
    text-align: center; /* heading centered */
  }

  .ww-facts {
    text-align: left; /* list stays left */
  }

  .ww-facts li {
    font-size: 1.1rem;
    gap: 10px;
  }

  .ww-facts i {
    font-size: 1.4rem;
    min-width: 22px;
  }
}





/* ============================
   PROJECTS SECTION
============================ */
.projects {
  padding: 6rem 5%;
  text-align: center;
  background: #f9fafb;
}

.projects h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #009879;
  margin-bottom: 10px;
}

.projects h2 span {
  color: #00aaff;
  font-weight: 800;
}

.projects-sub {
  color: #555;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* Grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Card */
.project-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
  transition: 0.35s ease;
  cursor: pointer;
  border: 1px solid rgba(0,168,255,0.15);
  background: #ffffff;
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Hover Overlay */
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,152,121,0.8), rgba(0,170,255,0.85));
  color: #fff;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 25px;
  transition: 0.35s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.project-overlay p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

/* Visit Website Button */
.visit-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ffffff;
  color: #009879;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s ease;
}

.visit-btn:hover {
  background: #009879;
  color: #fff;
}

/* More Projects Button */
.more-projects-btn {
  display: inline-block;
  margin-top: 3rem;
  padding: 12px 28px;
  background: linear-gradient(90deg, #009879, #00aaff);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s ease;
  border: 2px solid transparent;
}

.more-projects-btn:hover {
  background: transparent;
  color: #00aaff;
  border-color: #00aaff;
}

/* Mobile Tweaks */
@media (max-width: 480px) {
  .project-overlay p {
    font-size: 0.85rem;
  }
}



/* ============================
   DEMO WEBSITES SECTION
============================ */
.demos {
  padding: 6rem 5%;
  text-align: center;
  background: #ffffff;
}

.demos h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #009879;
  margin-bottom: 10px;
}

.demos h2 span {
  color: #00aaff;
  font-weight: 800;
}

.demos-sub {
  color: #555;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* Grid */
.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

/* Demo Card */
.demo-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
  border: 1px solid rgba(0,168,255,0.15);
  transition: 0.35s ease;
  cursor: pointer;
}

.demo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* Fancy Hover Overlay */
.demo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,152,121,0.85), rgba(0,170,255,0.9));
  color: #fff;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 25px;
  transition: 0.35s ease;
}

.demo-card:hover .demo-overlay {
  opacity: 1;
}

.demo-overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 700;
}

/* View Demo Button */
.demo-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ffffff;
  color: #009879;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.demo-btn:hover {
  background: #009879;
  color: #fff;
}

/* More Demos Button */
.more-demos-btn {
  display: inline-block;
  margin-top: 3rem;
  padding: 12px 28px;
  background: linear-gradient(90deg, #009879, #00aaff);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s ease;
  border: 2px solid transparent;
}

.more-demos-btn:hover {
  background: transparent;
  color: #00aaff;
  border-color: #00aaff;
}

/* Mobile */
@media (max-width: 480px) {
  .demo-overlay h3 {
    font-size: 1rem;
  }

  .demo-btn {
    padding: 8px 18px;
  }
}



/* ============================
   CONTACT US NOW SECTION
============================ */

.contact-now {
  padding: 5rem 5%;
  background: #ffffff;
  text-align: center;
}

.contact-now h2 {
  font-size: 2.3rem;
  color: #009879;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.contact-now h2 span {
  color: #00aaff;
  font-weight: 800;
}

/* Row */
.contact-now-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: nowrap;
}

/* Divider */
/* ============================
   CONTACT US NOW — Enhanced
============================ */

.cn-item {
  text-align: center;
  text-decoration: none;
  color: #333;
  padding: 18px 30px;               /* bigger touch area */
  transition: 0.3s ease;
}

.cn-item:hover {
  transform: translateY(-6px);
}

.cn-item i {
  font-size: 2.6rem;                /* bigger icons */
  background: linear-gradient(90deg, #009879, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  display: block;
  font-weight: 800;
}

.cn-item p {
  font-size: 1.25rem;               /* bigger title */
  font-weight: 700;                 /* bold */
  color: #009879;
  margin-bottom: 3px;
}

.cn-item span {
  font-size: 1.4rem;                  /* bigger detail text */
  font-weight: 600;                 /* boldish */
  color: #444;
}

.cn-divider {
  width: 3px;                       /* slightly thicker */
  height: 55px;                     /* taller */
  background: linear-gradient(180deg, #009879, #00aaff);
  opacity: 0.5;
  border-radius: 50px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-now-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .cn-divider {
    display: none;
  }

  .cn-item {
    padding: 15px 20px;
  }

  .cn-item i {
    font-size: 2.2rem;
  }

  .cn-item p {
    font-size: 1.15rem;
  }

  .cn-item span {
    font-size: 1.2rem;
  }
}


/* =============================
   Contact Form (Modern)
============================= */

.rw-contact-form {
  padding: 5rem 5%;
  text-align: center;
  background: #ffffff;
}

.rw-contact-form h2 {
  font-size: 2.3rem;
  color: #009879;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.rw-form {
  max-width: 650px;
  margin: 0 auto;
  background: #ffffff;
  padding: 35px;
  padding-right: 70px;
  border-radius: 18px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.08);
  border-top: 4px solid #00aaff;
}

.rw-input-box {
  text-align: left;
  margin-bottom: 18px;
}

.rw-input-box label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #009879;
  margin-bottom: 6px;
  display: block;
}

.rw-input-box input,
.rw-input-box select,
.rw-input-box textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-family: "Poppins", sans-serif;
  transition: 0.3s ease;
}

.rw-input-box input:focus,
.rw-input-box select:focus,
.rw-input-box textarea:focus {
  border-color: #00aaff;
  box-shadow: 0 0 0 3px rgba(0,168,255,0.15);
  outline: none;
}

.rw-input-box textarea {
  height: 130px;
  resize: none;
}

.rw-submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg, #009879, #00aaff);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 10px;
}

.rw-submit-btn:hover {
  opacity: 0.9;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 480px) {
  .rw-form {
    padding: 20px;
  }

  .rw-contact-form h2 {
    font-size: 1.8rem;
  }

  .rw-input-box input,
.rw-input-box select,
.rw-input-box textarea {
  width: 90%;
  padding: 12px 15px;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-family: "Poppins", sans-serif;
  transition: 0.3s ease;
}
}

/* ============================
        FAQ Section
============================= */
.rw-faq {
  padding: 6rem 5%;
  background: #f9fafb;
  text-align: center;
}

.rw-faq h2 {
  font-size: 2.3rem;
  color: #009879;
  font-weight: 700;
  margin-bottom: 10px;
}

.rw-faq h2 span {
  color: #00aaff;
}

.faq-subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: 0.3s ease;
  border-left: 4px solid #00aaff;
}

.faq-item:hover {
  transform: translateY(-3px);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 15px 0 20px;
  color: #444;
  line-height: 1.6;
  font-weight: 500;
}

/* Open state */
.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Mobile */
@media (max-width: 480px) {
  .faq-question {
    font-size: 1rem;
  }
}


/* ----------------------------
   Contact Section
---------------------------- */
.contact {
  padding: 5rem 5%;
  background: linear-gradient(90deg, #eaf9f6, #f8fbff);
  text-align: center;
}

.contact h2 {
  font-size: 2.2rem;
  color: #009879;
  margin-bottom: 20px;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.contact-info div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  font-weight: 500;
}

.contact-info i {
  color: #00aaff;
  font-size: 1.3rem;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact form input,
.contact form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.3s;
}

.contact form input:focus,
.contact form textarea:focus {
  border-color: #00aaff;
  outline: none;
}

.contact form button {
  background: linear-gradient(90deg, #009879, #00aaff);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact form button:hover {
  background: transparent;
  color: #00aaff;
  border: 2px solid #00aaff;
}

/* ----------------------------
   Responsive
---------------------------- */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-image {
    margin-top: 30px;
  }

  .contact-info {
    flex-direction: column;
  }
}
