/* Neshara Elementor Plugin Styles */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Playfair+Display:wght@700&display=swap');

:root {
  --navy: #0B1426;
  --orange: #F55D1E;
  --orange-light: rgba(245, 93, 30, 0.1);
  --orange-border: rgba(245, 93, 30, 0.3);
  --light-bg: #F5F6F7;
  --border-color: #ECEDF0;
  --text-muted: #6B7280;
  --white: #FFFFFF;
  --font-main: 'DM Sans', sans-serif;
  --font-display: 'Playfair Display', serif;
}

.neshara-widget {
  font-family: var(--font-main);
  color: var(--navy);
}

.neshara-widget * {
  box-sizing: border-box;
}

.neshara-badge {
  display: inline-block;
  background: var(--orange-light);
  border: 1px solid var(--orange-border);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Animations */
.ns-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.ns-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Widget */
.neshara-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0;
  border-radius: 16px;
}
.neshara-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.neshara-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--navy);
}
.neshara-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 32px;
}
.neshara-hero h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
}
.neshara-hero p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  max-width: 640px;
  line-height: 1.6;
}

/* Buttons */
.ns-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}
.ns-btn-primary { background: var(--orange); color: var(--white); }
.ns-btn-primary:hover { background: #e04d12; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(245,93,30,0.3); }

/* Service Card Widget */
.neshara-service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--border-color);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
  height: 100%;
  border-left: 4px solid var(--orange);
}
.neshara-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--orange);
}
.neshara-service-card h4 {
  margin: 0 0 12px 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.neshara-service-card p {
  color: var(--text-muted);
  font-size: 16px;
  margin: 0;
  line-height: 1.6;
}

/* Timeline Widget */
.neshara-timeline-item {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}
.ns-timeline-circle {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--orange-light);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--orange);
}
.neshara-timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 31px;
  top: 64px;
  bottom: -48px;
  width: 2px;
  background: var(--orange-border);
}
.ns-timeline-content { padding-top: 8px; }
.ns-timeline-content h3 { font-size: 1.5rem; color: var(--navy); margin: 0 0 12px 0; font-weight:600;}
.ns-timeline-content p { color: var(--text-muted); margin: 0; line-height: 1.6; font-size: 16px;}

/* Stat Card Widget */
.neshara-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.neshara-stat-card .ns-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  display: block;
}
.neshara-stat-card .ns-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
}

/* Blog Card Widget */
.neshara-blog-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.neshara-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.neshara-blog-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}
.neshara-blog-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.neshara-blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.neshara-blog-category {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--orange-light);
  padding: 4px 8px;
  border-radius: 4px;
}
.neshara-blog-date {
  font-size: 13px;
  color: var(--text-muted);
}
.neshara-blog-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 12px 0;
  line-height: 1.4;
}
.neshara-blog-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 16px 0;
  flex-grow: 1;
}
.ns-link {
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
  text-decoration: none;
}
.ns-link:hover {
  gap: 8px;
}

/* Contact Form Widget */
.neshara-contact-form { display: flex; flex-direction: column; gap: 16px; background: var(--white); border-radius: 12px; padding: 40px; border: 1px solid var(--border-color); }
.neshara-form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .neshara-form-row { grid-template-columns: 1fr 1fr; } }
.neshara-form-group { display: flex; flex-direction: column; gap: 8px; }
.neshara-form-group label { font-size: 14px; font-weight: 500; color: var(--navy); }
.neshara-form-group input, .neshara-form-group select, .neshara-form-group textarea {
  padding: 14px 18px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--light-bg);
  color: var(--navy);
  width: 100%;
}
.neshara-form-group input:focus, .neshara-form-group select:focus, .neshara-form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-light);
  background: var(--white);
}
.neshara-form-group textarea { resize: vertical; min-height: 120px; }
.neshara-form-group select { appearance: none; background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%230B1426%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"); background-repeat: no-repeat; background-position: right 16px top 50%; background-size: 12px auto; }
