* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}


.hero {
  padding: 0 60px 0 60px;
}

:root {
  --primary: #0d6efd;
  --secondary: #6c757d;
  --white: #fff;
  --gray: #777;
  --light-gray: #f1f1f1;
  --border-radius: 10px;
}
.tp-Highlight-container {
  background: #ffcc00;
  color: #000;
  text-align: center;
  padding: 8px 16px;
  font-family: 'Poppins', sans-serif;

  position: fixed;
  top: -120px; /* hidden initially */
  left: 0;
  width: 100%;
  z-index: 999;

  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;

  transition: top 0.4s ease;
}

/* Jab visible karna ho */
.tp-Highlight-container.show {
  top: 0;
}

.tp-Highlight-container h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.tp-Highlight-container p {
  margin: 0;
  font-size: 0.85rem;
}

/* Button Styling */
.tp-Highlight-container .tp-btn {
  background-color: #000;
  color: #fff;
  padding: 6px 14px;
  font-size: 0.85rem;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tp-Highlight-container .tp-btn:hover {
  background-color: #333;
  transform: translateY(-2px);
}

/* =========================
   HEADER
========================= */
.header {
  background: var(--white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0; /* default */
  left: 0;
  width: 100%;
  z-index: 998;
  transition: top 0.4s ease, box-shadow 0.3s ease;
}

/* Jab top bar visible ho */
.header.with-topbar {
  top: 46px; /* top bar ki height ke according */
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hdr-nav-links {
  display: flex;
}

.hdr-nav-links a {
  margin-left: 30px;
  color: black;
  transition: 0.3s ease;
}

.hdr-nav-links a:hover {
  color: red;
}

/* Page content upar chipke na */
body {
  padding-top: 100px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .tp-Highlight-container {
    flex-direction: column;
    padding: 8px 12px;
    gap: 6px;
    text-align: center;
  }

  .tp-Highlight-container h2 {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .tp-Highlight-container p {
    font-size: 0.78rem;
    line-height: 1.4;
    max-width: 95%;
  }

  .tp-Highlight-container .tp-btn {
    font-size: 0.8rem;
    padding: 6px 14px;
  }

  /* Header ko top bar ke niche shift karo */
  .header.with-topbar {
    top: 70px;
  }

  /* Page content navbar ke niche chipke na */
  body {
    padding-top: 90px;
  }

  .navbar {
    padding: 12px 16px;
  }

  .hdr-nav-links a {
    margin-left: 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .tp-para{
    display: none;
  }
}

/* =========================
   HERO SECTION START
========================= */

.hm-hero {
  width: 100%;
  min-height: 100vh;
  background-image: url(https://res.cloudinary.com/dieboinjz/image/upload/v1774603022/GacImages/nq987i6dihiz9xqmllze.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hm-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hm-hero-text {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hm-hero-text .hm-tag {
  display: inline-block;
  width: fit-content;
  background: rgba(0, 119, 255, 0.1);
  color: #0077ff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.hm-hero-text h1 {
  font-size: 52px;
  line-height: 1.15;
  color: #fff;
  font-weight: 800;
  max-width: 620px;
}

.hm-hero-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #b7bbc0;
  max-width: 600px;
}

.hm-hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.hm-hero-buttons .hm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
  cursor: pointer;
}

.hm-hero-buttons .hm-btn-primary {
  background: #0077ff;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 119, 255, 0.25);
}

.hm-hero-buttons .hm-btn-primary:hover {
  background: #005fd1;
  transform: translateY(-3px);
}

.hm-hero-buttons .hm-btn-outline {
  border: 2px solid #0077ff;
  color: #0077ff;
  background: transparent;
}

.hm-hero-buttons .hm-btn-outline:hover {
  background: #0077ff;
  color: #ffffff;
  transform: translateY(-3px);
}

.hm-hero-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hm-hero-badges .hm-badge {
  background: #ffffff;
  color: #0f172a;
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(0, 119, 255, 0.08);
}

/* =========================
   HERO IMAGE SIDE
========================= */

.hm-hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hm-hero-image .hm-hero-main-img {
  background-image: url("https://res.cloudinary.com/dieboinjz/image/upload/v1774603189/GacImages/et47cmvppgokctme0rjh.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  max-width: 480px;
  height: 500px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border: 6px solid #ffffff;
}

.hm-floating-card {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: #ffffff;
  padding: 22px 24px;
  width: 280px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 119, 255, 0.08);
  animation: hmFloatCard 3s ease-in-out infinite;
}

.hm-floating-card h3 {
  font-size: 20px;
  color: #0f172a;
  margin-bottom: 10px;
  font-weight: 700;
}

.hm-floating-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
}

@keyframes hmFloatCard {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .hm-hero {
    padding: 70px 20px;
  }

  .hm-hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hm-hero-text {
    text-align: center;
    align-items: center;
  }

  .hm-hero-text h1 {
    font-size: 42px;
    max-width: 100%;
  }

  .hm-hero-text p {
    max-width: 100%;
  }

  .hm-hero-buttons {
    justify-content: center;
  }

  .hm-hero-badges {
    justify-content: center;
  }

  .hm-floating-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    width: 85%;
    max-width: 320px;
    animation: none;
  }
}

@media (max-width: 768px) {
  .hm-hero {
    min-height: auto;
    padding: 60px 16px;
  }

  .hm-hero-text h1 {
    font-size: 34px;
    line-height: 1.25;
  }

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

  .hm-hero-buttons .hm-btn {
    width: 100%;
    padding: 14px 20px;
  }

  .hm-hero-image .hm-hero-main-img {
    max-width: 100%;
    height: 420px;
  }

  .hm-floating-card {
    position: relative;
    left: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .hm-hero {
    height: 200vh;
  }

  .hm-hero-text .hm-tag {
    font-size: 13px;
    padding: 8px 14px;
  }

  .hm-hero-text h1 {
    font-size: 28px;
  }

  .hdr-nav-links{
    display: none;
  }

  .hm-hero-badges .hm-badge {
    width: 100%;
    text-align: center;
  }

  .hm-hero-image {
    display: block;

  }


  .hm-hero-image .hm-hero-main-img {
    border-radius: 22px;
  }
}


/* =========================
   SERVICES SECTION START
========================= */

.prd-section {
  width: 100%;
  padding: 100px 20px;
  background: #f8fbff;
}

.prd-section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.prd-section-title h2 {
  font-size: 42px;
  color: #0f172a;
  font-weight: 800;
  margin-bottom: 16px;
}

.prd-section-title p {
  font-size: 18px;
  color: #64748b;
  line-height: 1.8;
}

.prd-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.prd-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(0, 119, 255, 0.08);
  transition: all 0.35s ease;
  overflow: hidden;
  position: relative;
}

.prd-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 119, 255, 0.12);
}

.prd-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 22px;
}

.prd-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 22px auto;
  background: linear-gradient(135deg, #e6f3ff, #f0f8ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: 0 8px 24px rgba(0, 119, 255, 0.08);
}

.prd-card h3 {
  font-size: 24px;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 14px;
}

.prd-card p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.8;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .prd-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .prd-section {
    padding: 80px 16px;
  }

  .prd-section-title h2 {
    font-size: 34px;
  }

  .prd-section-title p {
    font-size: 16px;
  }

  .prd-grid-4 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .prd-card {
    padding: 26px 20px;
  }

  .prd-card img {
    height: 200px;
  }

  .prd-card h3 {
    font-size: 22px;
  }

  .prd-card p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .prd-section-title h2 {
    font-size: 28px;
  }

  .prd-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .prd-card img {
    height: 180px;
  }
}



/* Product section style css  */

/* =========================
   PRODUCT SECTION START
========================= */

.prdsec-section {
  width: 100%;
  padding: 100px 20px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.prdsec-section-title {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px auto;
}

.prdsec-section-title h2 {
  font-size: 42px;
  color: #0f172a;
  font-weight: 800;
  margin-bottom: 16px;
}

.prdsec-section-title p {
  font-size: 18px;
  color: #64748b;
  line-height: 1.8;
}

.prdsec-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.prdsec-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(0, 119, 255, 0.08);
  transition: all 0.35s ease;
  position: relative;
}

.prdsec-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 119, 255, 0.12);
}

.prdsec-product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.prdsec-product-card h3 {
  font-size: 24px;
  color: #0f172a;
  font-weight: 700;
  margin: 24px 24px 12px 24px;
}

.prdsec-product-card p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.8;
  margin: 0 24px 18px 24px;
}

.prdsec-price {
  font-size: 28px;
  font-weight: 800;
  color: #0077ff;
  margin: 0 24px 24px 24px;
}

.prdsec-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 24px 28px 24px;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
  cursor: pointer;
}

.prdsec-btn-primary {
  background: linear-gradient(135deg, #133d66, #072843);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 119, 255, 0.22);
}

.prdsec-btn-primary:hover {
  background: #005fd1;
  transform: translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .prdsec-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .prdsec-section {
    padding: 80px 16px;
  }

  .prdsec-section-title h2 {
    font-size: 34px;
  }

  .prdsec-section-title p {
    font-size: 16px;
  }

  .prdsec-product-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .prdsec-product-card img {
    height: 220px;
  }

  .prdsec-product-card h3 {
    font-size: 22px;
  }

  .prdsec-product-card p {
    font-size: 15px;
  }

  .prdsec-price {
    font-size: 24px;
  }

  .prdsec-btn {
    width: calc(100% - 48px);
    margin: 0 24px 24px 24px;
  }
}

@media (max-width: 480px) {
  .prdsec-section-title h2 {
    font-size: 28px;
  }

  .prdsec-product-card img {
    height: 200px;
  }

  .prdsec-product-card h3 {
    font-size: 20px;
  }

  .prdsec-price {
    font-size: 22px;
  }
}


/* services  price style here  */

/* =========================
   AMC / SURPRISE SECTION START
========================= */

.srprse-section {
  width: 100%;
  padding: 100px 20px;
  background: linear-gradient(180deg, #f4fbff 0%, #eef7ff 100%);
}

.srprse-section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px auto;
}

.srprse-section-title h2 {
  font-size: 42px;
  color: #0f172a;
  font-weight: 800;
  margin-bottom: 16px;
}

.srprse-section-title p {
  font-size: 18px;
  color: #64748b;
  line-height: 1.8;
}

.srprse-amc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.srprse-card {
  position: relative;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(0, 119, 255, 0.08);
  transition: all 0.35s ease;
  overflow: hidden;
}

.srprse-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 55px rgba(0, 119, 255, 0.14);
}

.srprse-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #56b6ff, #0d6efd);
}

.srprse-tag {
  display: inline-block;
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: 0.4px;
}

.srprse-card h3 {
  font-size: 30px;
  color: #0f172a;
  font-weight: 800;
  margin-bottom: 18px;
}

.srprse-price {
  font-size: 40px;
  font-weight: 800;
  color: #0077ff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.srprse-price span {
  font-size: 18px;
  font-weight: 500;
  color: #64748b;
}

.srprse-card p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.9;
  max-width: 280px;
  margin: 0 auto;
}

/* Featured Middle Card */
.srprse-card-featured {
  background: linear-gradient(135deg, #0d6efd, #3ba7ff);
  transform: scale(1.04);
  box-shadow: 0 24px 60px rgba(13, 110, 253, 0.25);
}

.srprse-card-featured::before {
  background: linear-gradient(90deg, #ffffff, #d9ecff);
}

.srprse-card-featured .srprse-tag {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.srprse-card-featured h3,
.srprse-card-featured .srprse-price,
.srprse-card-featured p,
.srprse-card-featured .srprse-price span {
  color: #ffffff;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .srprse-amc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .srprse-card-featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .srprse-section {
    padding: 80px 16px;
  }

  .srprse-section-title h2 {
    font-size: 34px;
  }

  .srprse-section-title p {
    font-size: 16px;
  }

  .srprse-amc-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .srprse-card {
    padding: 34px 24px;
  }

  .srprse-card h3 {
    font-size: 26px;
  }

  .srprse-price {
    font-size: 34px;
  }

  .srprse-price span {
    font-size: 16px;
  }

  .srprse-card p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .srprse-section-title h2 {
    font-size: 28px;
  }

  .srprse-card h3 {
    font-size: 24px;
  }

  .srprse-price {
    font-size: 30px;
  }

  .srprse-tag {
    font-size: 13px;
    padding: 8px 16px;
  }
}


/* feedback section here  */


/* =========================
   FEEDBACK / REVIEW SECTION START
========================= */

.fdbc-section {
  width: 100%;
  padding: 100px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.fdbc-section-title {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px auto;
}

.fdbc-section-title h2 {
  font-size: 42px;
  color: #0f172a;
  font-weight: 800;
  margin-bottom: 16px;
}

.fdbc-section-title p {
  font-size: 18px;
  color: #64748b;
  line-height: 1.8;
}

.fdbc-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.fdbc-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 34px 28px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(0, 119, 255, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.fdbc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(0, 119, 255, 0.12);
}

.fdbc-card::before {
  content: "❝";
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 60px;
  color: rgba(13, 110, 253, 0.08);
  font-weight: 800;
  line-height: 1;
}

.fdbc-stars {
  font-size: 22px;
  color: #fbbf24;
  margin-bottom: 18px;
  letter-spacing: 3px;
}

.fdbc-review-card p {
  font-size: 17px;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 24px;
  font-style: italic;
}

.fdbc-review-card h4 {
  font-size: 18px;
  color: #0f172a;
  font-weight: 700;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .fdbc-review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .fdbc-section {
    padding: 80px 16px;
  }

  .fdbc-section-title h2 {
    font-size: 34px;
  }

  .fdbc-section-title p {
    font-size: 16px;
  }

  .fdbc-review-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .fdbc-card {
    padding: 30px 22px;
  }

  .fdbc-review-card p {
    font-size: 16px;
  }

  .fdbc-review-card h4 {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .fdbc-section-title h2 {
    font-size: 28px;
  }

  .fdbc-stars {
    font-size: 20px;
  }

  .fdbc-review-card p {
    font-size: 15px;
    line-height: 1.8;
  }

  .fdbc-review-card h4 {
    font-size: 16px;
  }
}


















/* =========================
   FOOTER SECTION START
========================= */

.ft-footer {
  width: 100%;
  background: linear-gradient(135deg, #081a2f, #0d2c4f);
  padding: 28px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ft-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.ft-text {
  font-size: 15px;
  color: #d9ecff;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .ft-footer {
    padding: 24px 16px;
  }

  .ft-text {
    font-size: 14px;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .ft-text {
    font-size: 13px;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 20px;
  width: 90px;
  height: 90px;
  background: #25d366;
  color: white;
  padding-top: 8px;
  border-radius: 50%;
  font-size: 24px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 999;
  text-decoration: none;
  transition: 0.3s;
}

.whatsapp-float:hover {
  background: #20b358;
  transform: scale(1.05);
}