*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --btn-primary:     #e8453c;
      --navy:    #1a2a4a;
      --gold:    #c9a84c;
      --light:   #f9f5f0;
      --whitbe:   #ffffff;
      --gray:    #6b7280;
      --lgray:   #f3f4f6;
      --border:  #e5e7eb;
      --shadow:  0 4px 24px rgba(0,0,0,.10);
      --btn-primary: #FF9E99;
      --btn-border:#FF746D;
    }
     
    @font-face {
        font-family: 'Proxima Nova Regular';
        src: url(../assets/fonts/Proxima.ttf) format('truetype');
        font-weight: 400;
    }


    /* whatsapp / messenger */


    .messenger-float{
    position: fixed;
    bottom: 100px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #0084FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); */
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.wa-float-left {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 99999;
    /* background: #25D366; */
    width: 60px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); */
    transition: 0.3s;
}

.wa-float-left img {
    width: 62px;
    height: 132px;
}


    html { scroll-behavior: smooth; }
    body { font-family: 'Proxima Nova Regular', sans-serif; color: #222; background: var(--white); overflow-x: hidden; }

    img { max-width: 100%; display: block; }
    a  { text-decoration: none; color: inherit; }

    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    p{
        font-family: 'Proxima Nova Regular', serif;
    }
    /* ── BUTTONS ── */
    .btn {
      display: inline-block; padding: 11px 28px; border-radius: 0px;
      font-family: 'Lato', sans-serif; font-weight: 400; font-size: 14px;
      cursor: pointer; transition: all .25s; border: 2px solid transparent;
    }
    a.btn.btn-primary  { background: var(--btn-primary); border-radius: 0;  color: #fff; border-color: #ff9e99; }
    .btn-primary:hover { background: var(--btn-border);  }
    .btn-outline  { background: transparent; color: var(--btn-primary); border-color: var(--btn-primary); }
    .btn-outline:hover { background: var(--btn-primary); color: #fff; }
    .btn-white    { background: #fff; color: var(--btn-primary); border-color: #fff; }
    .btn-white:hover { background: var(--btn-primary); color: #fff; border-color: var(--btn-primary); }

    /* ── SECTION TITLE ── */ 
    .section-title {
      text-align: center  ; 
      font-family: 'Proxima Nova Regular', serif;
      font-size: 50px; font-weight: 400; color: var(--navy);
      display: flex; align-items: center; justify-content: center; 
    }
     
    .section-title-about {
      text-align: left !important; 
      font-family: 'Proxima Nova Regular', serif;
      font-size: 50px; font-weight: 400; color: var(--navy);
      display: flex; align-items: center;  
    }



    .section-title-cta {
      text-align: center !important; 
      font-family: 'Proxima Nova Regular', serif;
      font-size: 50px; font-weight: 400; color: var(--navy);
      display: flex; align-items: center; justify-content: center; 
    } 


    .section-title::before,
    .section-title::after {
      content: ''; flex: 1; max-width: 120px; height: 2px; 
    }
    .section-sub {
      text-align: center; color: var(--gray); font-size: 14px; margin-top: 8px;
    }

    .section-sub-about {
      text-align: left; color: var(--gray); font-size: 14px; margin-top: 8px;
    }

    .section-sub-cta {
      text-align: center; color: var(--gray); font-size: 14px; margin-top: 8px;
    }

    .section-sub-cta {
      text-align: center; color: var(--gray); font-size: 14px; margin-top: 8px;
    }

    /* ═══════════════════════════════
       TOP BAR + HEADER
    ═══════════════════════════════ */
    header { position: sticky; top: 0; z-index: 1000; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.08); }

    .header-inner {
      display: flex; align-items: center; justify-content: space-between;
      padding: 12px 20px; max-width: 1200px; margin: 0 auto;
    }

    .logo img {
      height: 60px;
    }

    .logo { display: flex; align-items: center; gap: 8px; }
    .logo-flag { font-size: 28px; line-height: 1; }
    .logo-text { line-height: 1.1; }
    .logo-text strong { display: block; font-family: 'Proxima Nova Regular', serif; font-size: 18px; color: var(--navy); letter-spacing: .5px; }
    .logo-text span   { font-size: 10px; color: var(--btn-primary); letter-spacing: 1.5px; text-transform: uppercase; }

    nav.main-nav { display: flex; align-items: center; gap: 28px; }
    nav.main-nav a { 
        font-family: 'Proxima Nova Regular', serif;
        font-size: 18px; font-weight: 500; color: #333; transition: color .2s; text-decoration: none; }
    nav.main-nav a:hover { color: var(--btn-primary); 
    
    }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 0px; transition: .3s; }

    /* Mobile nav */
    .mobile-nav {
      display: none; flex-direction: column; background: #fff;
      padding: 20px; border-top: 1px solid var(--border); gap: 14px;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a { font-size: 15px; font-weight: 600; color: #333; padding: 4px 0; border-bottom: 1px solid var(--lgray); }
    .mobile-nav a:last-child { border-bottom: none; }

    /* ── Sub nav ── */
    .sub-nav {
      background: var(--btn-border); overflow-x: auto; white-space: nowrap;
      scrollbar-width: none;
    }
    .sub-nav::-webkit-scrollbar { display: none; }
    .sub-nav-inner {
      display: flex; justify-content: center; gap: 0;
      max-width: 1200px; margin: 0 auto; padding: 0 20px;
    }
    .sub-nav a {
      font-family: 'Proxima Nova Regular', serif;
      
      display: inline-block; padding: 10px 18px;
      font-size: 12px; font-weight: 400; color: rgba(255,255,255,.75);
      text-transform: uppercase; letter-spacing: .5px;
      transition: color .2s, background .2s; white-space: nowrap;
      text-decoration: none;
    }
    .sub-nav a:hover, .sub-nav a.active { color: #fff; background: rgba(255,255,255,.1); }

    /* ═══════════════════════════════
       HERO
    ═══════════════════════════════ */
.hero {
  background-image: url(../assets/images/home/flag-gif.gif);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px 50px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(224, 209, 208) 0%, transparent 40%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(231 231 231 / 55%);;
  z-index: 0;
  border-bottom: 1px solid #a5a5a559;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-content,
.hero-books {
  flex: 1;
}

.hero-books {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ── Hero Stacked Book Slider ── */
#heroStack {
position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  width: 100%;
}

.stack-slide {
 position: absolute;
  width: 200px;
  height: 300px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transform: translateX(0) scale(1);
  transform: translateX(0) scale(1);
  /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); */
}

.stack-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stack-slide.s-center {
  -webkit-transform: translateX(0) scale(1);
  transform: translateX(0) scale(1);
  z-index: 5;
  
  left: 50%;
  margin-left: -75px;
}

.stack-slide.s-left1 {
  transform: translateX(-120px) scale(0.82) rotateY(15deg);
  z-index: 4;
  opacity: 0.85;
}

.stack-slide.s-left2 {
 -webkit-transform: translateX(-220px) scale(0.66) rotateY(25deg);
  transform: translateX(-220px) scale(0.66) rotateY(25deg);
  z-index: 3;
  opacity: 0.65;
}

.stack-slide.s-right1 {
   -webkit-transform: translateX(120px) scale(0.82) rotateY(-15deg);
  transform: translateX(120px) scale(0.82) rotateY(-15deg);
  z-index: 4;
  opacity: 0.85;
}

.stack-slide.s-right2 {
  -webkit-transform: translateX(220px) scale(0.66) rotateY(-25deg);
  transform: translateX(220px) scale(0.66) rotateY(-25deg);
  z-index: 3;
  opacity: 0.65;
}

.stack-slide.s-hidden {
  -webkit-transform: translateX(0) scale(0.5);
  transform: translateX(0) scale(0.5);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

/* Tablet */
@media (max-width: 991px) {
  .hero {
    padding: 50px 20px 40px;
    background-position: left;
  }

  .hero-inner {
    gap: 25px;
    align-items: flex-start;
  }

  .hero-content h1 {
    font-size: 38px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 1.7;
  }

  #heroStack {
    height: 340px;
    -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  }

  .stack-slide {
    width: 170px;
    height: 255px;
  }

  .stack-slide.s-left1  { transform: translateX(-140px) scale(0.82) rotateY(15deg); }
  .stack-slide.s-left2  { transform: translateX(-250px) scale(0.66) rotateY(25deg); }
  .stack-slide.s-right1 { transform: translateX(140px)  scale(0.82) rotateY(-15deg); }
  .stack-slide.s-right2 { transform: translateX(250px)  scale(0.66) rotateY(-25deg); }
}

/* Mobile */
@media (max-width: 767px) {
  .hero {
    padding: 50px 15px 35px;
    text-align: center;
    
    background-size: cover;
    background-color: #bbbbbb;
  }

  .hero::after {
    background: rgb(231 231 231 / 55%);;
  }

  .hero-inner {
    flex-direction: column;
    gap: 30px;
  }

  .hero-content {
    order: 1;
  }

  .hero-books {
    order: 2;
    width: 100%;
  }

  .hero-content h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #fff;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #fff;
  }

  #heroStack {
    height: 300px;
    -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  }

  .stack-slide {
    width: 150px;
    height: 225px;
  }

  /* .stack-slide.s-left1  { -webkit-transform: translateX(-70px) scale(0.82) rotateY(15deg); transform: translateX(-70px) scale(0.82) rotateY(15deg); }
  .stack-slide.s-left2  { -webkit-transform: translateX(-130px) scale(0.66) rotateY(25deg); transform: translateX(-130px) scale(0.66) rotateY(25deg); }
  .stack-slide.s-right1 { -webkit-transform: translateX(70px) scale(0.82) rotateY(-15deg); transform: translateX(70px) scale(0.82) rotateY(-15deg); }
  .stack-slide.s-right2 { -webkit-transform: translateX(130px) scale(0.66) rotateY(-25deg); transform: translateX(130px) scale(0.66) rotateY(-25deg); } */
   .stack-slide.s-left1  { -webkit-transform: translateX(-60px) scale(0.82) rotateY(15deg); transform: translateX(-60px) scale(0.82) rotateY(15deg); }
  .stack-slide.s-left2  { -webkit-transform: translateX(-110px) scale(0.66) rotateY(25deg); transform: translateX(-110px) scale(0.66) rotateY(25deg); }
  .stack-slide.s-right1 { -webkit-transform: translateX(60px) scale(0.82) rotateY(-15deg); transform: translateX(60px) scale(0.82) rotateY(-15deg); }
  .stack-slide.s-right2 { -webkit-transform: translateX(110px) scale(0.66) rotateY(-25deg); transform: translateX(110px) scale(0.66) rotateY(-25deg); }

}




@media (max-width: 480px) {
  .hero {
    padding: 40px 12px 30px;
  }

  .hero-content h1 {
    font-size: 25px;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .btn.btn-primary {
    padding: 12px 22px;
    font-size: 14px;
  }

  #heroStack {
    height: 260px;
    -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  }

  .stack-slide {
    width: 130px;
    height: 195px;
  }
/* 
  .stack-slide.s-left1  { transform: translateX(-90px)  scale(0.82) rotateY(15deg); }
  .stack-slide.s-left2  { transform: translateX(-165px) scale(0.66) rotateY(25deg); }
  .stack-slide.s-right1 { transform: translateX(90px)   scale(0.82) rotateY(-15deg); }
  .stack-slide.s-right2 { transform: translateX(165px)  scale(0.66) rotateY(-25deg); } */
 .stack-slide.s-left1  { -webkit-transform: translateX(-70px) scale(0.82) rotateY(15deg); transform: translateX(-70px) scale(0.82) rotateY(15deg); }
  .stack-slide.s-left2  { -webkit-transform: translateX(-110px) scale(0.66) rotateY(25deg); transform: translateX(-110px) scale(0.66) rotateY(25deg); }
  .stack-slide.s-right1 { -webkit-transform: translateX(70px) scale(0.82) rotateY(-15deg); transform: translateX(70px) scale(0.82) rotateY(-15deg); }
  .stack-slide.s-right2 { -webkit-transform: translateX(110px) scale(0.66) rotateY(-25deg); transform: translateX(110px) scale(0.66) rotateY(-25deg); }


}

/* ABOUT US PAGE */
.about-hero {
  position: relative;
  background: url('../assets/images/about/image-ab.webp') center/cover no-repeat;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 20px;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.35);
}

.about-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.about-hero h1 {
  font-family: 'Proxima Nova Regular', serif;
  font-size: 62px;
  color: #1a2a4a;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
}

/* ── Logos Carousel ── */
.logos-carousel .logo-card {
  opacity: 0.35;
  transition: opacity 240ms ease, transform 240ms ease;
}

.logos-carousel .logo-card.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.logos-carousel .logo-card img {
  max-height: 64px;
  width: auto;
  display: block;
  margin: 0 auto;
}

/* ABOUT US PAGE */
.about-hero {
  position: relative;
  background: url('../assets/images/about/image-ab.webp') center/cover no-repeat;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 20px;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.35);
}
.about-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.about-hero h1 {
  font-family: 'Proxima Nova Regular', serif;
  font-size: 62px;
  color: #1a2a4a;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
}

/* CONTACT HERO */
.contact-hero {
  position: relative;
  background: url('../assets/images/about/image-ab.webp') center/cover no-repeat;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 20px;
  z-index: 1;
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.35);
}
.contact-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.contact-hero h1 {
  font-family: 'Proxima Nova Regular', serif;
  font-size: 62px;
  color: #1a2a4a;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
}

.about-section {
  padding: 70px 20px;
}
.bg-light { background: #faf7f7; }
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
  align-items: center;
}
.reverse-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media(max-width: 991px) { .about-grid { grid-template-columns: 1fr; } }

.about-text .subheadline {
  color: #ff6b6b;
  font-size: 14px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 700;
}
.about-text h2 {
  font-family: 'Proxima Nova Regular', serif;
  font-size: 42px;
  color: #171e2e;
  line-height: 1.1;
  margin-bottom: 20px;
}
.about-text p { color: #404040; font-size: 16px; line-height: 1.8; margin-bottom: 16px; }

.about-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 35px rgba(0,0,0,.12);
}

.about-cta {
  background: linear-gradient(137deg, #fff5f4 0%, #fffaf7 30%, #fdf6fd 100%);
  padding: 80px 20px;
  text-align: center;
}
.about-cta-content {
  max-width: 900px;
  margin: 0 auto;
}
.about-cta h2 {
  font-size: 40px;
  color: #222;
  margin-bottom: 16px;
  line-height: 1.2;
}
q {
  font-size: 18px;
  color: #626262;
  margin-bottom: 26px;
}
.about-cta .btn-primary {
  padding: 14px 32px;
  font-size: 15px;
}

@media(max-width: 768px) {
  .about-hero { min-height: 260px; padding: 60px 16px; }
  .about-hero h1 { font-size: 34px; }
  .about-text h2 { font-size: 22px; }
  .about-cta h2 { font-size: 22px; }
}
    .hero-content { flex: 1; max-width: 560px; }
    .hero-content h1 {
      font-family: 'Proxima Nova Regular', serif;
      font-size: 50px;
      font-weight: 400; color: var(--navy); line-height: 1.2;
      margin-bottom: 18px;
    }


    .hero-content p { font-size: 15px; color: #000000; line-height: 1.7; margin-bottom: 28px; max-width: 460px; }

.hero-books {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
    .book-cover {
      border-radius: 6px; ;
      transition: transform .3s;
    }
    .book-cover:hover { transform: translateY(-6px) rotate(-1deg); }
    .book-cover-main { width: clamp(140px, 18vw, 220px); }
    .book-cover-side { width: clamp(110px, 14vw, 170px); margin-bottom: 20px; }

    /* Store badges */
    .store-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
    .store-badge {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 6px 14px; border: 1.5px solid var(--border);
      border-radius: 20px; font-size: 11px; font-weight: 400;
      color: #555; background: #fff; transition: border-color .2s;
    }
    .store-badge:hover { border-color: var(--btn-primary); }
    .store-badge img { height: 16px; }

    /* ── Ticker ── */
    .ticker-bar {
      background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
      overflow: hidden; padding: 10px 0;
    }
    .ticker-track {
      display: flex; gap: 50px; animation: tickerMove 35s linear infinite;
      width: max-content;
    }
.ticker-item a {
    color: black !important;
    text-decoration:none !important;
}

    .ticker-track:hover { animation-play-state: paused; }
    .ticker-item {
      border: none;
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    white-space: nowrap;
    padding: 5px;
    width: 180px;
    justify-content: center;
    box-shadow: -2px 1px 1px 0px #0000002e;
    }
    .ticker-item a {
      color: #000 !important;
      text-decoration: none !important;
    }
    .ticker-item a:hover {
      color: #000 !important;
      text-decoration: none !important;
    }
    .ticker-dot {  border-radius: 50%;  flex-shrink: 0; }
    @keyframes tickerMove { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

    
    
    /* ═══════════════════════════════
       PUBLISHING SERVICES (Carousel)
    ═══════════════════════════════ */
    .section { padding: 70px 20px; }
    .section-lg { padding: 80px 20px; }

    .carousel-wrapper { position: relative; margin-top: 40px; }
    .carousel-track-outer { overflow: hidden; }
    .carousel-track {
      display: flex; gap: 24px;
      transition: transform .45s cubic-bezier(.4,0,.2,1);
    }

    .service-card {
      flex: 0 0 calc(50% - 16px); min-width: 0;
      border-radius: 12px; overflow: hidden;
      box-shadow: var(--shadow); background: #fff;
      transition: transform .3s, box-shadow .3s;
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,.14); }
    .service-card-img { width: 100%; height: 200px; object-fit: cover; }
    .service-card-body { padding: 16px; text-align: center; }
    .service-card-body h3 { font-size: 13px; font-weight: 400; text-transform: uppercase; letter-spacing: 1px; color: var(--navy); }

    .carousel-btn {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 42px; height: 42px; border-radius: 50%;
      background: #fff; border: 2px solid var(--border);
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      font-size: 18px; color: var(--navy); box-shadow: 0 2px 8px rgba(0,0,0,.12);
      transition: background .2s, color .2s; z-index: 10;
    }
    .carousel-btn:hover { background: var(--btn-primary); color: #fff; border-color: var(--btn-primary); }
    .carousel-btn.prev { left: -20px; }
    .carousel-btn.next { right: -20px; }

    /* ═══════════════════════════════
       BESTSELLERS
    ═══════════════════════════════ */
    .bestsellers { background-image: url(../assets/images/home/bookshelf.png); background-size: cover; }
    .book-card {
      flex: 0 0 calc(20% - 20px); min-width: 0;
      border-radius: 8px; overflow: hidden;
      
      
    }
    .book-card:hover { transform: translateY(-8px) scale(1.02); }
    .book-card img { width: 100%; height: 320px !important; object-fit: cover; }
    .book-card-body { padding: 12px; }
    .book-card-body h4 { font-family: 'Proxima Nova Regular', serif; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
    .book-card-body span { font-size: 11px; color: var(--gray); }

    .bestsellers-cta { text-align: center; margin-top: 36px; }

    /* ═══════════════════════════════
       FEATURES STRIP
    ═══════════════════════════════ */
     

.features-strip {
  background: #fff;
  padding: 40px 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 260px;   /* ye sabse important hai */
  width: 100%;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 14px;
}
.features-strip {
  background: #f5f5f5;
  padding: 45px 0;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 30px;
  min-height: 100px;
}

.feature-border {
  border-left: 1px solid #efb6b6;
}

.feature-icon i {
  font-size: 42px;
  color: #f48b82;
  line-height: 1;
}

.feature-content h4 {
  font-size: 16px;
  font-weight: 500;
  color: #111;
  margin: 0 0 6px;
}

.feature-content p {
  font-size: 14px;
  color: #333;
  margin: 0;
  line-height: 1.5;
}


    /* ═══════════════════════════════
       BUILT FOR AUTHORS
    ═══════════════════════════════ */


.built-left-box{
  background:#e9e1e1;
  padding:100px 80px;
  height:100%;
}

.stats-row{
  display:flex;
  align-items:center;
  gap:30px;
  margin-top:30px;
}

.stat-divider{
  width:1px;
  height:40px;
  background:#d79a9a;
}

.built-right{
  max-width:500px;
  margin-left:60px;
}

.built-right p{
  font-size:14px;
  line-height:1.7;
  color:#444;
}
    /* ═══════════════════════════════
       PUBLISHERS LOGOS
    ═══════════════════════════════ */
    .logos-bar { background: var(--lgray); padding: 36px 20px; }
    .logos-inner {
      max-width: 1100px; margin: 0 auto;
      display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 40px;
    }
    .pub-logo { font-size: 18px; font-weight: 800; color: #888; letter-spacing: -0.5px; transition: color .2s; cursor: default; }
    .pub-logo:hover { color: var(--navy); }
    .pub-logo.amazon { font-style: italic; font-size: 22px; }
    .pub-logo.bn { letter-spacing: 1px; font-size: 14px; }

    /* ═══════════════════════════════
       VIDEO TESTIMONIALS
    ═══════════════════════════════ */
 .video-section {
  background: var(--light);
}

.carousel-track-outer {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.3s ease;
}

.video-card {
  flex: 0 0 calc(25% - 18px);
  min-width: 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.video-thumb-wrap {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(0 0 0 / 16%);
  transition: background .3s;
}

.video-card:hover .video-play {
  background: rgba(0,0,0,.55);
}

.play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--btn-primary);
  transition: transform .2s;
}

.video-card:hover .play-btn {
  transform: scale(1.1);
}

.video-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--btn-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 20px;
  z-index: 2;
}

/* Modal */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.78);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 920px;
}

.video-modal-close {
  position: absolute;
  top: -42px;
  right: 0;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}

.video-iframe-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
}

.video-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.play-btn{
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--btn-primary);
    transition: transform .2s;
}

/* tablet */
@media (max-width: 991px) {
  .video-card {
    flex: 0 0 calc(50% - 12px);
  }

  .carousel-track {
    gap: 16px;
  }
}

/* mobile */



@media (max-width: 576px) {
  .carousel-track-outer {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

   .section-title-about {
      text-align: left !important; 
      font-family: 'Proxima Nova Regular', serif;
      font-size: 28px; font-weight: 400; color: var(--navy);
      display: flex; align-items: center;  
    }

  .carousel-track-outer::-webkit-scrollbar {
    display: none;
  }

  .carousel-track {
    gap: 12px;
    cursor: grab;
    user-select: none;
    touch-action: pan-x;
  }

  .carousel-track.dragging {
    cursor: grabbing;
  }

  .video-card {
    flex: 0 0 calc(50% - 6px);
  }

  .video-thumb-wrap,
  .video-thumb {
    height: 200px;
  }

  .play-btn {
    width: 42px;
    height: 42px;
    font-size: 16px;
     color: var(--btn-primary);
  transition: transform .2s;
  }

  .video-badge {
    font-size: 9px;
    padding: 3px 7px;
  }

  .carousel-btn {
    display: none;
  }
}
    /* ═══════════════════════════════
       CTA BANNER
    ═══════════════════════════════ */
   .cta-banner{
  position:relative;
   background:url('../assets/images/home/cta-banner.png') left center/cover no-repeat;

  min-height:350px;
  display:flex;
  align-items:center;
  overflow:hidden;
}

/* gradient overlay */

.cta-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    317deg,
    rgba(236, 148, 142, 0.85) 0%,
    rgba(224, 134, 128, 0.65) 40%,
    rgba(255,255,255,0) 100%
  );
}



/* container above overlay */
.cta-banner .container{
  position:relative;
  z-index:2;
}

/* content aligned right */
.cta-content{
  max-width:600px;
  margin-left:auto;
  text-align:left;
  color:#fff;
}

/* small heading */
.cta-small{
  font-size:14px;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:6px;
}

/* main title */
.cta-content h2{
  font-family:'Proxima Nova Regular', serif;
  font-size:50px;
  font-weight:400;
  margin-bottom:10px;
}

/* description */
.cta-sub{
  font-size:16px;
  line-height:1.6;
  margin-bottom:18px;
}

/* button */
.cta-btn{
  display:inline-block;
  background:#f27d6b;
  color:#fff;
  padding:9px 18px;
  font-size:12px;
  border-radius:3px;
  text-decoration:none;
}

.cta-btn:hover{
  background:#e96a59;
}

    /* ═══════════════════════════════
       HOW IT WORKS
    ═══════════════════════════════ */
    .how-works { background: #fff; }
    .steps-row {
      display: flex; gap: 0; justify-content: center; margin-top: 48px; flex-wrap: wrap;
    }
    .step {
      text-align: center; padding: 20px 30px; position: relative; flex: 1; min-width: 200px;
    }
    .step:not(:last-child)::after {
      content: '→'; position: absolute; right: -10px; top: 40%; transform: translateY(-50%);
      font-size: 24px; color: var(--btn-primary); font-weight: 400;
    }
    .step-num {
      width: 100px; height: 100px; border-radius: 50%;
      background: linear-gradient(135deg, var(--btn-primary), #ff6b6b);
      color: #fff; font-size: 18px; font-weight: 400;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 14px; box-shadow: 0 6px 20px rgba(232,69,60,.35);
    }
    .step h3 { font-size: 20px; font-weight: 400; color: var(--navy); }

    /* ═══════════════════════════════
       CLIENT REVIEWS
    ═══════════════════════════════ */
    .reviews { background: var(--light); }
    .review-card {
      flex: 0 0 calc(25% - 18px); min-width: 0;
      background: #fff; border-radius: 12px; padding: 22px;
      box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 12px;
    }
    .review-header { display: flex; align-items: center; gap: 10px; }
    .review-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: linear-gradient(135deg, var(--btn-primary), var(--navy));
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-weight: 400; font-size: 14px; flex-shrink: 0;
    }

    /* ═══════════════════════════════
       BLOG STYLES
    ═══════════════════════════════ */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 40px;
    }

    .blog-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform .3s, box-shadow .3s;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .blog-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 36px rgba(0,0,0,.14);
    }

    .blog-card-image {
      width: 100%;
      height: 200px;
      overflow: hidden;
    }

    .blog-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .3s;
    }

    .blog-card:hover .blog-card-image img {
      transform: scale(1.05);
    }

    .blog-card-content {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .blog-card-content h3 {
      font-family: 'Proxima Nova Regular', serif;
      font-size: 18px;
      font-weight: 400;
      color: var(--navy);
      margin-bottom: 12px;
      line-height: 1.4;
    }

    .blog-excerpt {
      color: #666;
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 16px;
      flex: 1;
    }

    .blog-meta {
      display: flex;
      gap: 15px;
      margin-bottom: 20px;
      font-size: 12px;
      color: var(--gray);
    }

    .blog-date::after {
      content: '•';
      margin: 0 8px;
      color: var(--gray);
    }

    .blog-carousel-card {
      flex: 0 0 calc(25% - 18px);
      min-width: 0;
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform .3s;
    }

    .blog-carousel-card:hover {
      transform: translateY(-6px);
    }

    .blog-carousel-image {
      width: 100%;
      height: 180px;
      overflow: hidden;
    }

    .blog-carousel-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .blog-carousel-content {
      padding: 16px;
    }

    .blog-carousel-content h4 {
      font-family: 'Proxima Nova Regular', serif;
      font-size: 16px;
      font-weight: 400;
      color: var(--navy);
      margin-bottom: 8px;
      line-height: 1.4;
    }

    .blog-carousel-content p {
      color: #666;
      font-size: 13px;
      line-height: 1.5;
      margin-bottom: 16px;
    }

    .blog-post-content {
      max-width: 800px;
      margin: 0 auto;
    }

    .blog-post-body {
      font-size: 16px;
      line-height: 1.8;
      color: #444;
      margin-bottom: 30px;
    }

    .blog-post-meta {
      display: flex;
      gap: 20px;
      margin-bottom: 20px;
      font-size: 14px;
      color: var(--gray);
    }

    .blog-post-meta span::after {
      content: '•';
      margin: 0 10px;
      color: var(--gray);
    }

    .blog-post-meta span:last-child::after {
      display: none;
    }

    .blog-post-share {
      border-top: 1px solid var(--border);
      padding-top: 20px;
      margin-top: 30px;
    }

    .blog-post-share span {
      font-weight: 600;
      color: var(--navy);
      margin-right: 15px;
    }

    .social-share {
      display: flex;
      gap: 10px;
    }

    .social-share a {
      padding: 6px 12px;
      border: 1px solid var(--border);
      border-radius: 20px;
      font-size: 12px;
      color: var(--navy);
      text-decoration: none;
      transition: all .2s;
    }

    .social-share a:hover {
      background: var(--btn-primary);
      color: #fff;
      border-color: var(--btn-primary);
    }

    .related-posts {
      margin-top: 60px;
      padding-top: 40px;
      border-top: 1px solid var(--border);
    }

    .related-posts h3 {
      font-family: 'Proxima Nova Regular', serif;
      font-size: 32px;
      font-weight: 400;
      color: var(--navy);
      margin-bottom: 30px;
    }

    .no-posts, .error {
      text-align: center;
      padding: 40px;
      color: var(--gray);
      font-size: 16px;
    }

    /* Mobile responsive */
    @media (max-width: 991px) {
      .blog-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .blog-grid {
        grid-template-columns: 1fr;
      }
      
      .blog-carousel-card {
        flex: 0 0 calc(50% - 12px);
      }
      
      .blog-post-meta {
        flex-direction: column;
        gap: 8px;
      }
    }

    @media (max-width: 480px) {
      .blog-carousel-card {
        flex: 0 0 100%;
      }
    }
    .review-name { font-size: 13px; font-weight: 400; color: var(--navy); }
    .review-time { font-size: 11px; color: var(--gray); }
    .stars { color: #f59e0b; font-size: 13px; }
    .review-text { font-size: 13px; color: var(--gray); line-height: 1.6; }
    .review-more { font-size: 12px; font-weight: 400; color: var(--btn-primary); cursor: pointer; }

    /* ═══════════════════════════════
       CONTACT
    ═══════════════════════════════ */
.contact-section{
  padding:0px 0;
  position: relative;
}

/* FULL WIDTH MAP */

.map-container{
  position:relative;
  width:100%;
  height:620px;
  overflow:hidden;
  margin-top: 80px;
}

.map-frame{
  width:100%;
  height:100%;
  border:0;
}

/* OVERLAY WRAPPER */

.contact-overlay{
  position:absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:60px 20px;
  background: transparent;
  z-index: 100;
  width: 90%;
  max-width: 1100px;
  pointer-events: none;
}

.contact-overlay > .contact-inner {
  pointer-events: auto;
}

/* FORM CARD */

.contact-inner{
  width:100%;
  max-width:1100px;
  background:#ffffff;
  padding:50px 50px;
  display:grid;
  grid-template-columns:330px 1fr;
  gap:60px;
  box-shadow: 0 8px 35px rgba(0,0,0,.1);
  border-radius: 0;
}

/* LEFT CARD */

.contact-info-card{
  background:#f9a9a1;
  padding:32px 28px;
  color:#fff;
}

.contact-info-card h3{
  font-size:24px;
  font-weight:600;
  margin-bottom:14px;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.3px;
}

.contact-info-card p{
  font-size:13px;
  line-height:1.7;
  margin-bottom:28px;
  opacity: 0.98;
  font-weight: 400;
}

.contact-item{
  display:flex;
  gap:14px;
  margin-bottom:24px;
  align-items:flex-start;
}

.contact-item span {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 0px;
  display: inline-block;
}

.contact-item div {
  flex: 1;
}

.contact-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 15px;
  margin-bottom: 0;
  opacity: 0.9;
  color: #fff;}

/* FORM */

.contact-form{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.contact-form input,
.contact-form textarea{
  border:none;
  border-bottom:1px solid #d5d5d5;
  padding:14px 0;
  background:transparent;
  font-size:14px;
  font-family: 'Lato', sans-serif;
  color: #333;
  outline:none;
  transition: border-bottom-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a0a0a0;
  font-weight: 400;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: #f9a9a1;
  box-shadow: none;
}

.contact-form textarea{
  min-height:110px;
  border-bottom:1px solid #d5d5d5;
  resize: vertical;
}

/* BUTTON */

.contact-btn{
  background:#f9a9a1;
  border:none;
  color:#fff;
  padding:12px 28px;
  font-size:13px;
  font-weight: 600;
  font-family: 'Lato', sans-serif;
  cursor:pointer;
  width:auto;
  align-self: flex-start;
  border-radius: 0;
  transition: background 0.3s ease;
  letter-spacing: 0.3px;
}

.contact-btn:hover{
  background:#f09891;
}

    /* ═══════════════════════════════
       FOOTER
    ═══════════════════════════════ */
 .whatsapp-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* ── Footer mobile contact ── */
.footer-mobile-contact {
  display: none;
  margin-top: 16px;
}

.footer-mobile-contact .contact-item {
  margin-bottom: 10px;
  font-size: 14px;
  color: #ccc;
}

.footer-mobile-contact .contact-item a {
  color: #ccc;
  text-decoration: none;
}

.footer-mobile-contact .contact-item i {
  margin-right: 6px;
}

@media (max-width: 767px) {
  .footer-mobile-contact {
    display: block;
  }
}

    footer { background: #F5F5F5; color: #000000; padding: 60px 20px 0; }
    .footer-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
    }
    .footer-brand p { font-size: 13px; color: rgba(0, 0, 0, 0.6); line-height: 1.7; margin: 16px 0 20px; max-width: 300px; }
    .footer-socials { display: flex; gap: 10px; }
    .social-icon {
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; transition: background .2s;
    }
    .social-icon:hover { background: var(--btn-primary); border-color: var(--btn-primary); }

    .footer-col h4 { font-size: 14px; font-weight: 400; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; color: rgba(0, 0, 0, 0.9); }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; }
    .footer-col ul li a { font-size: 13px; color: rgba(0, 0, 0, 0.6); transition: color .2s; text-decoration: none;}
    .footer-col ul li a:hover { color: var(--btn-primary); }

    .footer-bottom {
      max-width: 1200px; margin: 40px auto 0;
      padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1);
      display: flex; align-items: center; justify-content: space-between;
      font-size: 12px; color: rgba(255,255,255,.5); flex-wrap: wrap; gap: 10px;
    }

    /* ── Carousel dots ── */
    .carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
    .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: background .2s, width .2s; }
    .dot.active { background: var(--btn-primary); width: 22px; border-radius: 4px; }

    /* ── Utils ── */
    .text-center { text-align: center; }
    .mt-10 { margin-top: 10px; }
    .mt-20 { margin-top: 20px; }
    .mt-40 { margin-top: 40px; }

    /* ── Scroll reveal ── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s, transform .6s; }
    .reveal.visible { opacity: 1; transform: none; }


    /* Service page css */

 .hero-services {
  background: url("../assets/images/book-publishing/image-bg.png") center center / cover no-repeat;
  min-height: 260px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid #a5a5a559;
  background-color: antiquewhite;
}

.hero-services-content h1 {
  font-family: 'Proxima Nova Regular', serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2;
  color: #111;
  margin-bottom: 14px;
}

.hero-services-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  max-width: 460px;
  margin-bottom: 20px;
}

.hero-consult-btn {
  display: inline-block;
  background: #f29a94;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  padding: 9px 16px;
  border-radius: 3px;
  transition: 0.3s ease;
}

.hero-consult-btn:hover {
  background: #ea8d87;
  color: #fff;
}

.hero-services-books {
  display: flex;
  justify-content: center;
}



.hero-books-img {
  max-width: 100%;
  width: 520px !important;
  height: auto;
}

/* Design process css */


/* ── Process Mobile Carousel ── */

.process-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.process-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}


.process-mobile-carousel {
  width: 100%;
  padding: 0 10px;
}

.pmc-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pmc-track-outer {
  flex: 1;
  overflow: hidden;
}

.pmc-track {
  display: flex;
  transition: transform 0.35s ease;
}

.pmc-slide {
  flex: 0 0 100%;
  width: 100%;
}

.pmc-btn {
  background: none;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.pmc-btn:hover { background: #f0f0f0; }
.pmc-btn:disabled { opacity: 0.3; cursor: default; }

.pmc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.pmc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.2s;
}
/* ── Process Mobile Carousel ── */
.pmc-outer {
  display: none;
  width: 100%;
  padding: 0 4px;
}

.pmc-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pmc-viewport {
  flex: 1;
  overflow: hidden;
}

.pmc-track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.pmc-slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
}

.pmc-btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.pmc-btn:hover  { background: #f0f0f0; }
.pmc-btn:disabled { opacity: 0.25; cursor: default; }

.pmc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.pmc-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.pmc-dot.active { background: #333; }

/* ── Process carousel mobile centering ── */
.pmc-slide .process-step-inner {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.pmc-slide .process-content {
  text-align: center;
}



/* ── Process steps desktop centering ── */
.process-step-inner {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.process-content {
  text-align: center;
}


/* cta one css */

.book-cta{
  position: relative;
  background: url("../assets/images/book-publishing/cta-one.webp") center bottom no-repeat;
  background-size: cover;
  padding: 50px 0;
  text-align: center;
  overflow: hidden;
}

/* white overlay */
/* .book-overlay{
  position:absolute;
  inset:0;
  background:rgba(255,255,255,0.85);
} */

.book-content{
  position:relative;
  max-width:700px;
  margin:auto;
}

.book-subtitle{
  display:block;
  font-size:12px;
  letter-spacing:1px;
  color:#444;
  margin-bottom:10px;
}

.book-title{
  font-size:34px;
  font-weight:400;
  color:#111;
  margin-bottom:12px;
}

.book-description{
  font-size:13px;
  color:#555;
  line-height:1.6;
  margin-bottom:22px;
}

.book-btn{
  display:inline-block;
  padding:10px 22px;
  background:#e74c3c;
  color:#fff;
  font-size:12px;
  border-radius:4px;
  text-decoration:none;
  transition:.3s;
}

.book-btn:hover{
  background:#d63d2f;
}


/*  About Services */
.about-service-img img {
    border-radius: 0 !important;
}


/* designer-cta */
.designer-cta {
  background: url(../assets/images/book-publishing/image-bg-one.png);
  padding: 60px 0;
}


/* logo carousel */

.logos {
  overflow: hidden;
  position: relative;
  width: 100%;
  background: #ffffff;
  padding: 30px 0;
}

.logos::before,
.logos::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logos::before {
  left: 0;
  background: linear-gradient(to right, #f8f8f8 0%, rgba(248, 248, 248, 0) 100%);
}

.logos::after {
  right: 0;
  background: linear-gradient(to left, #f8f8f8 0%, rgba(248, 248, 248, 0) 100%);
}

.logos-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.logos:hover .logos-track {
  animation-play-state: paused;
}

.logos-slide {
  display: flex;
  align-items: center;
  gap: 70px;
  flex-shrink: 0;
  padding-right: 70px;
}

.logos-slide img {
  height: 55px;
  width: auto;
  object-fit: contain;
  display: block;
  opacity: 0.95;
  transition: transform 0.3s ease;
}

.logos-slide img:hover {
  transform: scale(1.05);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════
   RESPONSIVE STYLES
═══════════════════════════════ */

@media (max-width: 1024px) {
  .service-card { flex: 0 0 calc(50% - 12px); }
  .book-card    { flex: 0 0 calc(33.333% - 16px); }
  /* .video-card   { flex: 0 0 calc(50% - 12px); } */
  .review-card  { flex: 0 0 calc(50% - 12px); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .built-inner  { gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 991px) {
  .book-cover {
    height: 150px !important;
  }

  

  .feature-border {
    border-left: none;
  }

  .hero-services {
    min-height: auto;
    padding: 50px 0;
  }

  .hero-services-content h1 {
    font-size: 34px;
  }

  .hero-services-content p {
    font-size: 13px;
    max-width: 100%;
  }

  .hero-books-img {
    width: 420px;
  }

  .process-title {
    font-size: 22px;
  }

  .process-step-inner {
    display: flex;
    
    justify-content: center;
    gap: 12px;
    text-align: left;
  }

  .process-content p {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  nav.main-nav { display: none; }
  .hamburger   { display: flex; }
  .hero-services-inner  { flex-direction: column; }
  .hero-services-books  { justify-content: center; width: 100%; }
  .service-card { flex: 0 0 calc(50% - 0px); }
  .book-card    { flex: 0 0 calc(100% - 12px); }
  /* .video-card   { flex: 0 0 calc(100%); } */
  .review-card  { flex: 0 0 calc(100%); }
  .features-grid { grid-template-columns: 1fr; }
  .built-inner  { grid-template-columns: 1fr; gap: 30px; }
  .stats-row    { gap: 24px; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .step:not(:last-child)::after { display: none; }
  .steps-row   { gap: 20px; }
  .sub-nav-inner { justify-content: flex-start; }
  .sub-nav { display: none; }
  .carousel-btn.prev { left: -24px;
        width: 30px;
        height: 30px; }
  .carousel-btn.next { right: -24px;
        height: 30px;
        width: 30px;}
  .section-title { font-size: 40px; }
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-content { max-width: none; }
  .hero-books { justify-content: center; }

  .hero-services {
    text-align: center;
    padding: 40px 0;
  }

  .hero-services-content {
    margin-bottom: 10px;
  }

  .hero-services-content h1 {
    font-size: 28px;
  }

  .hero-services-content p {
    font-size: 13px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-services-books {
    justify-content: center;
  }

  .hero-books-img {
    width: 100%;
    max-width: 340px;
  }

  .sub-nav-link {
    padding-left: 20px;
    font-size: 14px;
    font-weight: 500;
  }

  .design-process {
    padding: 45px 0;
  }

  .process-title {
    font-size: 26px;
  }

  .process-step-inner {
    flex-direction: column;
    text-align: center;
  }

  .process-icon img {
    width: 40px;
    height: 40px;
  }

  .process-content h3,
  .process-content h4 {
    font-size: 14px;
  }

  .process-content p {
    font-size: 15px;
    white-space: normal;
  }

  /* Make design process steps scrollable in a single row on mobile */
  .process-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

 
 .process-row > div:nth-child(1) {
    order: 1 !important;
  }

  .process-row > div:nth-child(3) {
    order: 2 !important;
  }

  .process-row > div:nth-child(5) {
    order: 3 !important;
  }

  .process-arrow {
    display: none !important;
  }


  .process-step {
    flex: 0 0 260px;
    min-width: 260px;
  }

.built-left-box{
  background:#e9e1e1;
  padding:60px 50px;
  height:100%;
}

.built-right {
    max-width: 500px;
    margin: 20px 20px !important;
}


.logos-slide img {
  height: 20px;

}

.contact-info-card{
  display: none;
}


.book-card img {
    height: 150px !important;
}

/* ═════════════════════════════════
   SUBSCRIPTION MODAL DESIGN
═════════════════════════════════ */

.modal.show .consultation-modal {
  border: none;
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  max-width: 350px;
  width: 90%;
  background: #ffffff;
  position: relative;
}

.consultation-modal {
  border: none;
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  max-width: 350px;
  width: 90%;
  background: #ffffff;
  position: relative;
}

.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.5) !important;
}

.consultation-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  font-size: 24px;
  color: #ff7b7b;
  opacity: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  line-height: 1;
}

.consultation-close:hover {
  color: #ff6060;
}

.consultation-close::after {
  content: '✕';
  font-weight: 300;
  font-size: 28px;
  line-height: 1;
}

.btn-close {
  display: none;
}

.consultation-body {
  padding: 35px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.consultation-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 10px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.consultation-title .highlight {
  color: #ff7b7b;
}

.consultation-subtitle {
  font-size: 0.85rem;
  color: #666;
  max-width: 320px;
  margin: 0 0 5px 0;
  line-height: 1.4;
  font-weight: 500;
}

.consultation-description {
  font-size: 0.85rem;
  color: #999;
  max-width: 320px;
  margin: 0 0 20px 0;
  line-height: 1.4;
}

.consultation-input {
  width: 100%;
  padding: 13px 15px !important;
  margin-bottom: 12px;
  border: 1px solid #ddd !important;
  border-radius: 8px !important;
  font-size: 0.9rem !important;
  outline: none;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  display: block;
  box-sizing: border-box;
  background-color: #f9f9f9 !important;
  color: #333 !important;
  box-shadow: none !important;
}

.consultation-input::placeholder {
  color: #bbb;
}

.consultation-input:focus {
  border-color: #ff7b7b !important;
  box-shadow: 0 0 0 3px rgba(255, 123, 123, 0.1) !important;
  background-color: #fff !important;
}

.consultation-submit {
  display: block !important;
  width: 100% !important;
  padding: 13px 20px !important;
  margin-top: 8px;
  margin-bottom: 18px;
  background-color: #ff7b7b !important;
  color: white !important;
  border: none !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 123, 123, 0.3) !important;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  font-family: inherit;
}

.consultation-submit:hover {
  background-color: #ff6060 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 123, 123, 0.4) !important;
}

.consultation-submit:active {
  transform: translateY(0);
}

.consultation-footer {
  font-size: 0.75rem;
  color: #888;
  margin: 0;
  line-height: 1.4;
}

.consultation-footer a {
  color: #888;
  text-decoration: none;
  border-bottom: 1px solid #ddd;
}

.consultation-footer a:hover {
  color: #333;
  border-bottom: 1px solid #333;
}

@media (max-width: 480px) {
  .consultation-modal {
    max-width: 90%;
  }

  .consultation-body {
    padding: 30px 22px 22px 22px;
  }

  .consultation-title {
    font-size: 1.6rem;
    margin: 0 0 8px 0;
  }

  .consultation-subtitle {
    font-size: 0.8rem;
    margin: 0 0 3px 0;
  }

  .consultation-description {
    font-size: 0.8rem;
    margin: 0 0 16px 0;
  }

  .consultation-input {
    font-size: 0.9rem;
    padding: 12px 12px;
    margin-bottom: 10px;
  }

  .consultation-submit {
    font-size: 0.85rem;
    padding: 12px 16px;
    margin-bottom: 14px;
    letter-spacing: 0.6px;
  }
}

@media (max-width: 480px) {
  .hero-services { padding: 40px 16px 36px; }
  .section, .section-lg { padding: 50px 16px; }
   
.section, .designer-cta { padding: 20px 0; }

  .book-card  { flex: 0 0 calc(33.333% - 16px); }
  .footer-inner { grid-template-columns: 1fr; }
  .logo-text strong { font-size: 15px; }
  .cta-banner { padding: 44px 16px; }
  .hero-content h1 { font-size: 30px; }
  .section-title { font-size: 30px; }
  .cta-content h2 { font-size: 30px; }
  .hero { padding: 40px 20px 30px; }
  .hero-inner { gap: 30px; }
}
}

