/* ================= ROOT VARIABLES ================= */
:root {
  --primary: #4f46e5;
  --secondary: #6366f1;
  --dark: #0f172a;
  --light: #f8fafc;
  --border: #e5e7eb;
  --muted: #64748b;
  --text: #334155;
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
}

/* ================= BODY ================= */
body {
  background: linear-gradient(180deg, #f8fafc, #eef2ff);
  color: var(--dark);
}

/* ================= NAVBAR ================= */
.navbar {
  background: #111827;
  color: #fff;
  padding: 14px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.35);
}

.logo {
  font-weight: 700;
  font-size: 18px;
  padding-right: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 16px;
}

.nav-links a:hover {
  color: #fff;
}

/* ================= DROPDOWN ================= */
.dropdown {
  position: relative;
}

.docs-link {
  display: flex;
  align-items: center;
  gap: 4px;
}

.caret {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1f2c47;
  min-width: 230px;
  border-radius: 10px;
  padding: 10px 0;
  z-index: 999;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
}

.dropdown-menu a:hover {
  background: #2f436a;
}

/* Desktop hover */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  .dropdown:hover .caret {
    transform: rotate(180deg);
  }
}

/* ================= MOBILE NAV ================= */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar {
    justify-content: flex-start;
  }

  .menu-toggle {
    display: block;
    margin-right: auto;
  }

  .logo {
    margin-left: auto;
    padding-right: 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #111827;
    flex-direction: column;
    padding: 20px 24px;
    gap: 0;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    background: #1f2937;
    border-left: 2px solid #374151;
    margin-top: 8px;
    padding-left: 12px;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown.open .caret {
    transform: rotate(180deg);
  }
}

/* ================= FOOTER ================= */
.footer {
  background: #111827;
  color: #9ca3af;
  text-align: center;
  padding: 20px;
  font-size: 13px;
  position: fixed;
  bottom: 0;
  width: 100%;
}

/* ================= PAGE WRAP ================= */
.page-wrap {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 90px 50px;
}

/* ================= GENERIC CARD ================= */
.card,
.api-card,
.contact-card,
.about-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* ================= UPLOAD CARD ================= */
.card {
  max-width: 420px;
  padding: 30px;
  text-align: center;
}

input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 2px dashed #cfd8e3;
  border-radius: 8px;
  margin-bottom: 15px;
}

button {
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

button:hover {
  background: #4338ca;
}

/* ================= PREVIEW ================= */
.preview {
  margin-top: 15px;
  padding: 10px;
  background-image:
    linear-gradient(-45deg, #ccc 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #ccc 75%);
  background-size: 20px 20px;
  border-radius: 8px;
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 80px;
  background: #25D366;
  color: #fff;
  padding: 12px 16px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .page-wrap {
    padding: 60px 20px;
  }
}
:root {
  --primary: #4f46e5;
  --secondary: #6366f1;
  --dark: #0f172a;
  --light: #f8fafc;
  --border: #e5e7eb;
}

/* ===== RESET (ONCE) ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, sans-serif;
}

/* ===== BODY (FIRST ONE KEPT) ===== */
body {
  background: linear-gradient(180deg, #f8fafc, #eef2ff);
  color: var(--dark);
}

/* ================= NAVBAR ================= */
.navbar {
  background: #111827;
  color: #ffffff;
  padding: 14px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* ================= LOGO ================= */
.logo {
  font-weight: 700;
  font-size: 18px;
  padding-right: 20px;
}

/* ================= NAV LINKS ================= */
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
}

.nav-links a:hover {
  color: #fff;
}

/* ================= DROPDOWN ================= */
.dropdown {
  position: relative;
}

.docs-link {
  display: flex;
  align-items: center;
  gap: 4px;
}

.caret {
  font-size: 12px;
  transition: transform 0.2s ease;
}

@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  .dropdown:hover .caret {
    transform: rotate(180deg);
  }
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1f2c47;
  min-width: 230px;
  border-radius: 10px;
  padding: 10px 0;
  z-index: 999;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 16px;
}

.dropdown-menu a:hover {
  background: #2f436a;
  color: #fff;
}

/* ================= HAMBURGER ================= */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  user-select: none;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .navbar {
    justify-content: flex-start;
  }

  .menu-toggle {
    display: block;
    margin-right: auto;
  }

  .logo {
    margin-left: auto;
    padding-right: 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #111827;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 0;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    text-align: left;
  }

  .dropdown {
    width: 100%;
  }

  .docs-link {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 8px;
    margin-left: 12px;
    padding-left: 12px;
    border-left: 2px solid #374151;
    background: #1f2937;
  }

  .dropdown-menu a {
    padding: 10px 0;
    font-size: 15px;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown.open .caret {
    transform: rotate(180deg);
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #111827;
  color: #9ca3af;
  text-align: center;
  padding: 20px;
  font-size: 13px;
  position: fixed;
  bottom: 0;
  width: 100%;
}

/* ===== MAIN CARD ===== */
.container {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  background: #fff;
  width: 100%;
  max-width: 420px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  text-align: center;
}

h2 { margin-top: 0; }

input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 2px dashed #cfd8e3;
  border-radius: 8px;
  margin-bottom: 15px;
}

button {
  width: 100%;
  padding: 12px;
  background: #4f46e5;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

button:hover {
  background: #4338ca;
}

img {
  max-width: 100%;
  margin-top: 15px;
  border-radius: 8px;
}

.download-btn {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 50px;
  background: #16a34a;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 80px;
  background: #25D366;
  color: #fff;
  padding: 12px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.preview {
  margin-top: 15px;
  padding: 10px;
  background-image:
    linear-gradient(-45deg, #ccc 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #ccc 75%),
    linear-gradient(-45deg, transparent 75%, #ccc 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  border-radius: 8px;
}

/*Pricing Css*/

/* ===== HEADER ===== */
.pricing-header {
  text-align: center;
  padding: 80px 20px 40px;
}

.pricing-header h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
}

.pricing-header p {
  font-size: 18px;
  color: #475569;
  max-width: 700px;
  margin: auto;
}

/* ===== PRICING CARDS ===== */
.pricing-container {
  max-width: 1100px;
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 20px 80px;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.plan-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.plan-desc {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 25px;
}

.price {
  font-size: 44px;
  font-weight: 800;
  color: var(--primary);
}

.price span {
  font-size: 16px;
  color: #64748b;
}

.features {
  list-style: none;
  margin: 30px 0;
}

.features li {
  padding: 10px 0;
  font-size: 15px;
  color: #334155;
}

.features li::before {
  content: "✔";
  color: var(--secondary);
  font-weight: bold;
  margin-right: 10px;
}

.btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: #4338ca;
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* ===== POPULAR PLAN ===== */
.popular {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

/*About Css*/

/* HEADER */
.about-header {
  text-align: center;
  padding: 80px 20px 50px;
}

.about-header h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
}

.about-header p {
  font-size: 18px;
  color: var(--muted);
  max-width: 750px;
  margin: auto;
}

/* CONTENT */
.about-container {
  max-width: 1000px;
  margin: auto;
  padding: 0 20px 80px;
}

.about-card {
  background: white;
  border-radius: 16px;
  padding: 45px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
}

.about-card h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-card p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}

/* VALUES */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.value-box {
  background: var(--light);
  border-radius: 14px;
  padding: 25px;
  border: 1px solid var(--border);
}

.value-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-box p {
  font-size: 15px;
  color: var(--muted);
}

/* ===== API PAGE ===== */
.page-wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
}

.api-card {
  background: #ffffff;
  padding: 70px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
}

.api-card h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.api-card h2 {
  font-size: 26px;
  margin-top: 45px;
  margin-bottom: 15px;
}

.api-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 16px;
}

.api-badges {
  display: flex;
  gap: 25px;
  margin: 35px 0 45px;
}

.api-badge {
  flex: 1;
  background: #f8fafc;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  font-weight: 600;
  text-align: center;
  color: #111827;
  font-size: 15px;
}

@media (max-width: 900px) {
  .api-badges {
    flex-wrap: wrap;
  }

  .api-badge {
    flex: 1 1 calc(50% - 25px);
  }
}

@media (max-width: 500px) {
  .api-badge {
    flex: 1 1 100%;
  }
}

/* ===== CODE BLOCK ===== */
.code {
  background: #111827;
  color: #e5e7eb;
  padding: 20px;
  border-radius: 10px;
  font-size: 14px;
  margin-top: 15px;
  overflow-x: auto;
}

/* ===== CONTACT PAGE ===== */
.contact-card {
  width: 100%;
  background: #ffffff;
  padding: 80px 110px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.contact-card h1 {
  font-size: 44px;
  margin-bottom: 25px;
}

.contact-card h2 {
  font-size: 28px;
  margin-top: 50px;
  margin-bottom: 18px;
}

.contact-card p {
  font-size: 17px;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 45px;
}

.info-box {
  background: #f8fafc;
  padding: 35px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
}

.info-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.info-box p {
  font-size: 15px;
  margin-bottom: 10px;
}

.info-box a {
  font-size: 17px;
  font-weight: 600;
  color: #4f46e5;
  text-decoration: none;
}

@media (max-width: 900px) {
  .contact-card {
    padding: 45px 30px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.code-block {
  position: relative;
  margin-top: 20px;
}

.code-block pre {
  background: #111827;
  color: #e5e7eb;
  padding: 22px;
  border-radius: 12px;
  font-size: 14px;
  overflow-x: auto;
}

.copy-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #4f46e5;
  color: #fff;
  border: none;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 6px;
  cursor: pointer;
}

.copy-btn:hover {
  background: #4338ca;
}
/* ===============================
   CHATGPT STYLE CODE BLOCK
================================ */

.code-block {
  position: relative;
  margin-top: 24px;
}

/* Code container */
.code-block pre {
  background: #f7f7f8;
  color: #0f172a;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px 16px;
  font-size: 14px;
  line-height: 1.6;
  overflow-x: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* Remove default spacing */
.code-block pre code {
  display: block;
  white-space: pre;
}

/* Copy button (ChatGPT style) */
.copy-btn {
  position: absolute;
  top: 8px;
  right: 8px;

  background: transparent;
  border: 1px solid #e5e7eb;
  color: #374151;

  padding: 4px 10px;
  font-size: 12px;
  border-radius: 8px;

  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;

  transition: background 0.15s ease, color 0.15s ease;
}

/* Hover effect */
.copy-btn:hover {
  background: #eef2ff;
  color: #111827;
}

/* Copied state */
.copy-btn.copied {
  color: #16a34a;
  border-color: #bbf7d0;
}
/* ===============================
   FIX COPY BUTTON FULL WIDTH
   (CHATGPT STYLE)
================================ */

/* Override global button styles */
.copy-btn {
  width: auto !important;
  min-width: unset !important;
  padding: 4px 10px !important;

  background: transparent !important;
  border: 1px solid #e5e7eb !important;
  color: #374151 !important;

  font-size: 12px !important;
  border-radius: 8px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  position: absolute !important;
  top: 8px;
  right: 8px;

  cursor: pointer;
}

/* Hover like ChatGPT */
.copy-btn:hover {
  background: #eef2ff !important;
  color: #111827 !important;
}

/* Copied state */
.copy-btn.copied {
  color: #16a34a !important;
  border-color: #bbf7d0 !important;
}
.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.blog-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  border:1px solid #e5e7eb;
  box-shadow:0 20px 40px rgba(0,0,0,.07);
  transition:.3s;
}

.blog-card:hover{
  transform:translateY(-8px);
}

.blog-content{
  padding:30px;
}

.blog-content h2{
  font-size:22px;
  margin-bottom:12px;
}

.blog-content p{
  font-size:15px;
  color:#475569;
  line-height:1.7;
  margin-bottom:18px;
}

.blog-content a{
  text-decoration:none;
  font-weight:600;
  color:#4f46e5;
}

@media(max-width:1000px){
  .blog-grid{grid-template-columns:1fr 1fr}
}

@media(max-width:600px){
  .blog-grid{grid-template-columns:1fr}
}
/* Transparent PNG background (checker) */
.preview {
    margin-top: 15px;
    padding: 15px;
    background-color: #eee;
    background-image:
        linear-gradient(45deg, #ccc 25%, transparent 25%),
        linear-gradient(-45deg, #ccc 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #ccc 75%),
        linear-gradient(-45deg, transparent 75%, #ccc 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    border-radius: 12px;
    display: inline-block;
}

.preview img {
    max-width: 100%;
    display: block;
    border-radius: 8px;
}
.download-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 26px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

/* =========================
   RTL Support (Arabic)
========================= */

html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

/* Navbar alignment fix */
html[dir="rtl"] .navbar,
html[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

/* Dropdown fix */
html[dir="rtl"] .dropdown-menu {
    right: 0;
    left: auto;
    text-align: right;
}

/* Buttons spacing fix */
html[dir="rtl"] .btn,
html[dir="rtl"] button {
    direction: rtl;
}

/* Form inputs fix */
html[dir="rtl"] input,
html[dir="rtl"] textarea {
    text-align: right;
}

/* Hero section center protection */
html[dir="rtl"] .hero {
    text-align: center;
}
html[dir="rtl"] body {
    font-family: 'Cairo', sans-serif;
}

/* =========================
   Language Floating Widget
========================= */
.language-offer{
margin-top:15px;
}

.lang-heading{
display:block;
font-weight:600;
color:#555;
margin-bottom:10px;
}

/* GRID */

.language-offer{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(120px,1fr));
gap:8px 12px;
}

/* ITEM */

.lang-item{
display:flex;
align-items:center;
gap:6px;
text-decoration:none;
color:#444;
padding:4px 6px;
border-radius:6px;
transition:0.2s;
}

.lang-item:hover{
background:#f3f4f6;
color:#000;
}

/* FLAG */

.lang-item img{
width:16px;
height:16px;
border-radius:50%;
object-fit:cover;
flex-shrink:0;
}

/* TEXT */

.lang-item span{
line-height:1;
}

/* MOBILE OPTIMIZATION */

@media (max-width:600px){

.language-offer{
grid-template-columns:repeat(auto-fit,minmax(100px,1fr));
}

.lang-item img{
width:14px;
height:14px;
}

.lang-item{
font-size:13px;
}

}

.post-wrap{
max-width:1200px;
margin:auto;
padding:90px 40px;
}

.post-card{
background:#fff;
padding:80px 90px;
border-radius:20px;
border:1px solid #e5e7eb;
box-shadow:0 25px 50px rgba(0,0,0,.08);
}

.post-card h1{
font-size:42px;
margin-bottom:25px;
}

.post-card h2{
font-size:28px;
margin-top:45px;
margin-bottom:15px;
}

.post-card p{
font-size:17px;
line-height:1.9;
color:#475569;
margin-bottom:20px;
}

@media(max-width:800px){

.post-wrap{
padding:60px 20px;
}

.post-card{
padding:40px 30px;
}

}

.blog-wrap{
max-width:1200px;
margin:auto;
padding:90px 40px;
}

.blog-wrap h1{
font-size:40px;
margin-bottom:10px;
}

.blog-sub{
color:#64748b;
margin-bottom:40px;
}

.blog-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.blog-card{
background:#fff;
border-radius:16px;
border:1px solid #e5e7eb;
padding:30px;
text-decoration:none;
color:#111;
transition:all .2s ease;
box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.blog-card:hover{
transform:translateY(-4px);
box-shadow:0 15px 35px rgba(0,0,0,.1);
}

.blog-card h2{
font-size:22px;
margin-bottom:10px;
}

.blog-card p{
color:#475569;
font-size:15px;
line-height:1.6;
margin-bottom:15px;
}

.read-more{
font-size:14px;
color:#2563eb;
font-weight:600;
}

@media(max-width:800px){

.blog-wrap{
padding:60px 20px;
}

}