

/* Body text */
body {
  font-family: 'Merriweather', serif;
  font-size: 16px;
  line-height: 1.8;
  color: #2b2b2b;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
}

/* Navbar, buttons, small UI */
nav, button, .btn-primary, .btn-secondary {
  font-family: 'Inter', sans-serif;
}

/* ------------------- BASIC RESET ------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 
}

/* ------------------- HERO SECTION LAYOUT ------------------- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 160px 100px 80px;
    background: #faf9ea;
    gap: 50px;
    flex-wrap: wrap;
}

/* LEFT SIDE CONTENT */
.hero-content {
    flex: 1;
    max-width: 600px;
}

/* RIGHT SIDE IMAGE */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}
/* ------------------- HERO TEXT ------------------- */
.hero h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    color: #1c1c1c;
}

.hero h1 span {
    color: #257ad2;
}

.hero p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

.hero h2 {
    margin-top: 20px;
    font-size: 27px;
    line-height: 1.6;
    color: #e45e22;
}

/* ------------------- STATS ------------------- */
.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.stat {
    font-size: 28px;
    font-weight: bold;
    color: #257ad2;
}

.stat p {
    font-size: 14px;
    color: #333;
    font-weight: normal;
}

/* ------------------- BUTTONS ------------------- */
.hero-buttons {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Primary Button */
.btn-primary {
    background: #e45e22;
    color: #fff;
    padding: 14px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(228, 94, 34, 0.9);
    transition: 0.4s;
}

.btn-primary:hover {
    background: #257ad2;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(37, 122, 210, 0.9);
}

/* Secondary Button */
.btn-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
    font-size: 16px;
}

.insta {
    background: #fff;
    padding: 10px 12px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* ================= TRUST BAR ================= */
/* ================= TRUST BAR ================= */
.trust-bar {
    background: linear-gradient(135deg, #f5f9ff, #fff4ec);
    padding: 60px 6%;
    border-top: 1px solid #eaeef3;
    border-bottom: 1px solid #eaeef3;
}

.trust-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* TRUST ITEM */
.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 22px;
    background: linear-gradient(135deg, #ffffff, #f1f6ff);
    border-radius: 16px;
    transition: all 0.35s ease;
    border: 1px solid rgba(13,94,255,0.08);
}

/* ICON */
.trust-item i {
    font-size: 30px;
    background: linear-gradient(135deg, #0D5EFF, #FF6A00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TEXT */
.trust-text h4 {
    font-size: 18px;
    margin: 0;
    color: #0a1f44;
    font-weight: 600;
}

.trust-text p {
    margin: 6px 0 0;
    font-size: 14px;
    color: #5a6f87;
    line-height: 1.4;
}

/* HOVER */
.trust-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(13,94,255,0.15);
    background: linear-gradient(135deg, #eef4ff, #fff1e6);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .trust-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .trust-container {
        grid-template-columns: 1fr;
    }
}




/* ================= DIGITAL MARKETING SERVICES ================= */

.digital-services {
  padding: 90px 20px;
  background: linear-gradient(135deg, #f4f8ff, #fff3e8);
}

.digital-services .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* SECTION TITLE */
.digital-services .section-title {
  font-size: 2.6rem;
  color: #0a1a3f;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.digital-services .section-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: linear-gradient(135deg, #0d5eff, #ff7a18);
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.digital-services .section-subtitle {
  color: #5a6f87;
  margin-bottom: 60px;
  font-size: 1.1rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* GRID */
.digital-services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

/* CARD */
.digital-services .service-card {
  background: linear-gradient(135deg, #ffffff, #f2f6ff);
  padding: 34px 30px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(13, 94, 255, 0.08);
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* TOP ACCENT */
.digital-services .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #0d5eff, #ff7a18);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* HOVER */
.digital-services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(13, 94, 255, 0.18);
}

.digital-services .service-card:hover::before {
  opacity: 1;
}

/* TEXT */
.digital-services .service-card h3 {
  color: #0a1a3f;
  margin-bottom: 14px;
  font-size: 1.35rem;
  font-weight: 600;
}

.digital-services .service-card p {
  color: #5f728a;
  font-size: 0.96rem;
  line-height: 1.65;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .digital-services .section-title {
    font-size: 2.1rem;
  }

  .digital-services {
    padding: 70px 16px;
  }
}









/* ================================
   GLOBAL CONTAINER (BOXED LAYOUT)
================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================================
   WHY DIGIMARQ – ALT DESIGN
================================ */
.why-digimarq-alt {
  padding: 90px 0;
  background: linear-gradient(135deg, #0f172a, #1e293b, #0f172a);
  color: #fff;
}

/* GRID LAYOUT */
.alt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 50px;
  border-radius: 26px;
}

/* ================================
   LEFT CONTENT
================================ */
.tag {
  display: inline-block;
  background: linear-gradient(
    90deg,
    rgba(59, 130, 246, 0.35),
    rgba(34, 211, 238, 0.35)
  );
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.why-content h2 {
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.why-content h2 span {
  color: #38bdf8;
}

.why-content p {
  font-size: 16px;
  color: #cbd5f5;
  margin-bottom: 25px;
  max-width: 520px;
}

.why-points {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.why-points li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #e2e8f0;
}

/* BUTTON */
.why-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(90deg, #2563eb, #0ea5e9);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.why-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* ================================
   RIGHT SIDE GLASS CARDS
================================ */
.why-cards {
  display: grid;
  gap: 22px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 26px;
  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-10px);
}

.glass-card i {
  font-size: 32px;
  color: #38bdf8;
  margin-bottom: 12px;
}

.glass-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.glass-card p {
  font-size: 14px;
  color: #e5e7eb;
  line-height: 1.6;
}

/* ================================
   PROCESS SECTION
================================ */
.digimarq-process {
  padding: 120px 0;
  background: linear-gradient(
    120deg,
    #f8fafc,
    #eef2ff,
    #e0f2fe
  );
}

/* ================================
   HEADER
================================ */
.process-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 90px;
}

.process-tag {
  display: inline-block;
  padding: 10px 30px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(90deg, #2563eb, #0ea5e9);
  color: #fff;
  margin-bottom: 26px;
}

.process-header h2 {
  font-size: 60px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 22px;
  color: #0f172a;
}

.process-header h2 span {
  display: block;
  background: linear-gradient(90deg, #2563eb, #0284c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-header p {
  font-size: 17px;
  color: #475569;
  line-height: 1.8;
}

/* ================================
   STEPS GRID
================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}

/* ================================
   PROCESS CARD
================================ */
.process-card {
  position: relative;
  background: #ffffff;
  border-radius: 26px;
  padding: 46px 34px 36px;
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.18);
  transition: all 0.35s ease;
}

.process-card:hover {
  transform: translateY(-10px);
}

/* STEP NUMBER */
.step-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 64px;
  font-weight: 900;
  color: rgba(37, 99, 235, 0.18);
}

/* CARD ICON */
.process-card i {
  font-size: 34px;
  color: #2563eb;
  margin-bottom: 18px;
}

/* CARD TEXT */
.process-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
}

.process-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .process-header h2 {
    font-size: 44px;
  }

  .step-number {
    font-size: 52px;
  }
}

@media (max-width: 576px) {
  .process-header h2 {
    font-size: 36px;
  }
}















