/* =========================================
   Google Font
========================================= */
@import url("https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700&display=swap");

/* =========================================
   Root & Base Styles
========================================= */
:root {
  --color-primary: #2563eb;     /* Blue */
  --color-accent: #22c55e;      /* Green accent */
  --color-danger: #ef4444;
  --color-info: #3b82f6;
  --color-success: #16a34a;

  --color-bg: #020617;          /* Page background */
  --color-surface: #111827;     /* Dark card */
  --color-surface-light: #f9fafb;/* Light card */
  --color-border: #e5e7eb;
  --color-text: #0f172a;
  --color-text-soft: #4b5563;

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 12px;

  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.22);
  --shadow-inset: inset 0 0 10px rgba(0, 0, 0, 0.5);

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #1f2937 0, #020617 55%, #000 100%);
  background-attachment: fixed;
  color: var(--color-text);
}

div,
h1,
h2,
h3,
h4,
p,
i,
a,
footer {
  position: relative;
  transition: var(--transition-base);
}

a {
  text-decoration: none;
  color: inherit;
}

form,
input,
textarea,
select,
button {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

input::placeholder {
  font-size: 12px;
  color: #9ca3af;
}

/* =========================================
   View Counter
========================================= */
.view_counter {
  width: fit-content;
  max-width: 220px;
  text-align: center;
  font-size: 11px;
  padding: 4px 14px;
  background: rgba(15, 23, 42, 0.95);
  color: #f9fafb;
  border-radius: var(--radius-md);
  margin: 8px auto 0;
}

/* =========================================
   Alerts
========================================= */
.alert {
  padding: 14px 18px;
  width: fit-content;
  max-width: 90%;
  font-size: 13px;
  margin: 12px auto;
  font-weight: 500;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(4px);
}

.alert.danger {
  background: #fee2e2;
  color: var(--color-danger);
}

.alert.info {
  background: #dbeafe;
  color: var(--color-info);
}

.alert.success {
  background: #dcfce7;
  color: var(--color-success);
}

/* =========================================
   Main Card (Top Section)
========================================= */
.card {
  max-width: 400px;
  width: 100%;
  margin: 20px auto 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-inset), var(--shadow-soft);
  background:
    linear-gradient(to bottom, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.95)),
    url("card_images/bg_testcd.jpg") center/cover no-repeat;
  color: #f9fafb;
  padding-bottom: 24px;
}

/* Hero / profile area */
.card_content {
  margin: 0;
  z-index: 2;
  text-align: center;
  position: relative;
  padding: 24px 16px 12px;
}

.card_content img {
  height: 140px;
  width: 140px;
  max-width: 100%;
  border-radius: 999px;
  margin-top: 4px;
  border: 4px solid #0ea5e9;
  border-bottom-color: #ffffff;
  border-left-color: #ffffff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.6);
  object-fit: cover;
  -webkit-animation: sk-rotateplane 6s infinite ease-in-out;
  animation: sk-rotateplane 6s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(500px);
  }
  80% {
    -webkit-transform: perspective(500px) rotateX(16deg) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(500px);
  }
}

@keyframes sk-rotateplane {
  0% {
    transform: perspective(500px);
  }
  80% {
    transform: perspective(500px) rotateX(16deg) rotateY(10deg);
  }
  100% {
    transform: perspective(500px);
  }
}

/* Decorative box animation (if used) */
.box {
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 15s linear;
  animation: box 12s infinite linear;
}

@keyframes box {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(40%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Card text content */
.card_content2 {
  z-index: 2;
  text-align: center;
  font-weight: 400;
  margin-top: 12px;
  margin-bottom: 10px;
  padding: 16px 20px 20px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(6px);
}

.card_content2 h2 {
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  margin: 10px 5px 6px;
  letter-spacing: 0.05em;
  font-size: 18px;
}

.card_content2 p {
  text-transform: capitalize;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  font-size: 15px;
  margin: 4px 16px;
}

.card_content2 p1 {
  display: block;
  text-transform: capitalize;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  font-size: 13px;
  margin: 4px 5px 10px;
}

/* =========================================
   Generic Flex / Button area
========================================= */
.dis_flex {
  display: block;
  text-align: center;
  padding: 0 12px 10px;
}

/* Small link buttons */
.dis_flex .link_btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  border-radius: 999px;
  padding: 6px 14px 10px;
  width: auto;
  font-weight: 600;
  background: rgba(31, 41, 55, 0.9);
  font-size: 13px;
  color: #e5e7eb;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  margin: 8px 6px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.4);
  cursor: pointer;
}

.dis_flex .link_btn:hover {
  background: #0ea5e9;
  color: #0b1120;
  transform: translateY(-1px);
}

/* Icon in small link buttons */
.dis_flex .link_btn i {
  font-size: 22px;
  color: #020617;
  padding: 8px 10px;
  margin: -18px auto 4px;
  border-radius: 999px;
  background: url("card_images/button_blue.png") center/100% 100% no-repeat;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.6);
}

/* =========================================
   Contact Details
========================================= */
.contact_details {
  padding: 6px 20px 12px;
}

.contact_details .contact_d {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
}

.contact_details .contact_d i {
  color: #020617;
  height: 28px;
  width: 28px;
  font-size: 18px;
  padding: 7px;
  text-align: center;
  border-radius: 999px;
  background: url("card_images/button_blue.png") center/100% 100% no-repeat;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.6);
  flex-shrink: 0;
}

.contact_details .contact_d p {
  margin: 2px 0 0 12px;
  white-space: pre-line;
  background: rgba(249, 250, 251, 0.98);
  color: #020617;
  border-radius: var(--radius-md);
  padding: 6px 10px;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.25);
  font-size: 14px;
  font-weight: 500;
  max-width: 260px;
  line-height: 1.7;
}

/* =========================================
   WhatsApp Share
========================================= */
.dis_flex .share_wtsp {
  margin: 12px auto;
  text-align: center;
  display: inline-flex;
  align-items: stretch;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(16, 185, 129, 0.4);
  background: #111827;
}

.dis_flex .share_wtsp input {
  font-size: 13px;
  color: #f9fafb;
  border: 0;
  padding: 10px 12px;
  outline: none;
  background: transparent;
  min-width: 160px;
}

.wtsp_share_btn,
.dis_flex .share_wtsp input[type="submit"] {
  border: 0;
  outline: none;
  font-size: 12px;
  padding: 10px 14px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}

.wtsp_share_btn {
  background: var(--color-accent);
  color: #f9fafb;
}

.dis_flex .share_wtsp input[type="submit"] {
  background: #22c55e;
  color: #f9fafb;
}

/* =========================================
   Big Buttons
========================================= */
.dis_flex .big_btns {
  background: #e5e7eb;
  color: #111827;
  border-radius: var(--radius-md);
  font-size: 13px;
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 4px 4px;
  width: 150px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.dis_flex .big_btns:hover {
  background: #f9fafb;
  transform: translateY(-2px);
}

/* Social icons row */
.dis_flex .social_med {
  padding: 6px 10px 16px;
  margin: -20px -4px 0;
  display: inline-block;
  background: rgba(229, 231, 235, 0.96);
  border-radius: 22px 22px 0 0;
  box-shadow: var(--shadow-inset);
}

.dis_flex .social_med i {
  font-size: 18px;
  width: 32px;
  text-align: center;
  border-radius: 999px;
  padding: 8px 0;
  margin: 0 3px;
  color: #f9fafb;
}

/* individual social colors */
.fa-twitter {
  background: #1d9bf0;
}

.fa-facebook {
  background: #3b5998;
}

.fa-linkedin {
  background: #0077b5;
}

.fa-youtube {
  background: #ef4444;
}

.fa-pinterest {
  background: #cb2027;
}

.fa-instagram {
  background: radial-gradient(circle at 30% 30%, #facc15, #f97316, #ec4899, #6366f1);
}

.fa-telegram {
  background: #26a4e3;
}

/* =========================================
   Secondary Card (All other sections)
========================================= */
.card2 {
  width: 100%;
  max-width: 400px;
  margin: 10px auto 40px;
  padding-bottom: 18px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--color-surface-light);
  color: var(--color-text);
}

.card2 h3 {
  text-align: center;
  font-size: 18px;
  background: #e5e7eb;
  color: #111827;
  font-weight: 600;
  letter-spacing: 0.02em;
  width: 100%;
  border-bottom: 1px solid #d1d5db;
  padding: 10px 20px;
  margin: 0 0 16px;
}

.card2 form input,
.card2 form textarea {
  width: calc(100% - 52px);
  font-size: 14px;
  border-radius: var(--radius-md);
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  margin: 5px 26px;
  resize: vertical;
  outline: none;
  background: #ffffff;
  color: #111827;
}

.card2 form input:focus,
.card2 form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.15);
}

.card2 form input[type="submit"] {
  color: #f9fafb;
  font-size: 15px;
  background: linear-gradient(135deg, #6366f1, #2563eb);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.card2 iframe {
  margin: 10px auto;
  display: block;
  border-radius: var(--radius-md);
  width: calc(100% - 40px);
  height: 200px;
  border: 0;
}

/* =========================================
   Small Status Buttons
========================================= */
.btn_6,
.btn_5 {
  width: fit-content;
  padding: 9px 14px;
  font-size: 12px;
  margin: 8px auto;
  border-radius: var(--radius-md);
  color: #f9fafb;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.btn_6 {
  background: #ef4444;
}

.btn_5 {
  background: #22c55e;
}

.pro_dis {
  color: #374151;
  font-size: 13px;
  font-weight: 500;
  margin: 10px;
}

.pro_price {
  color: #16a34a;
  font-weight: 600;
  margin: 8px 10px 12px;
}

/* =========================================
   Product / Services Section
========================================= */
#product_services {
  text-align: center;
}

.product_s {
  text-align: center;
  background: #ffffff;
  padding: 10px;
  width: fit-content;
  margin: 10px auto;
  border-radius: var(--radius-md);
  display: inline-block;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
}

.product_s p {
  font-weight: 600;
  text-transform: capitalize;
  margin: 8px 4px 0;
  color: #111827;
}

.product_s img {
  width: auto;
  max-width: 260px;
  max-height: 100%;
  border-radius: var(--radius-md);
  background: #f9fafb;
  display: block;
}

/* =========================================
   Image Gallery
========================================= */
.img_gall {
  display: inline-block;
  width: 32%;
  vertical-align: middle;
  margin: 2px;
}

.img_gall img {
  background: #ffffff;
  border-radius: var(--radius-md);
  max-width: 100%;
  max-height: 500px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}

/* =========================================
   About Us
========================================= */
#about_us p {
  white-space: pre-line;
  font-size: 13px;
  font-weight: 500;
  color: #020617;
  line-height: 1.9;
  padding: 10px 20px 18px;
  margin: 0;
  background: #ffffff;
  border-radius: var(--radius-md);
}

/* =========================================
   Payment Section
========================================= */
#payment {
  max-width: 400px;
  margin: 0 auto 40px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding-bottom: 16px;
}

#payment p {
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  width: 80%;
  margin: 10px auto;
  text-align: center;
}

#payment h2 {
  font-size: 14px;
  font-weight: 600;
  color: #020617;
  background: #f3f4f6;
  border-radius: var(--radius-md);
  padding: 6px 10px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  width: 80%;
  margin: 0 auto 10px;
}

#payment img {
  width: 90%;
  border-radius: 20px;
  margin: 12px auto;
  display: block;
}

/* =========================================
   Bottom Menu
========================================= */
.menu_bottom {
  background: rgba(243, 244, 246, 0.97);
  width: 100%;
  text-align: center;
  color: #111827;
  position: fixed;
  bottom: 0;
  left: 0;
  border-top: 1px solid #e5e7eb;
  overflow-x: auto;
  z-index: 50;
}

.menu_container {
  width: auto;
  display: flex;
  align-items: center;
  padding: 6px 8px;
}

.menu_item {
  text-align: center;
  font-weight: 600;
  display: inline-grid;
  font-size: 11px;
  margin: 6px 12px;
  width: 120px;
  white-space: pre-line;
  color: #111827;
}

.menu_item i {
  font-size: 20px;
  margin-bottom: 4px;
}

/* =========================================
   Shop / Order Page
========================================= */
#shop_online {
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 12px 10px 64px;
}

.order_box {
  width: 100%;
  max-width: 360px;
  display: inline-block;
  margin: 6px auto;
  vertical-align: top;
  border-radius: var(--radius-md);
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
  border: 1px solid #e5e7eb;
}

.order_box img {
  width: 100%;
  display: block;
}

.order_box h2 {
  padding: 8px 10px 2px;
  margin: 0;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  color: #111827;
}

.order_box h4 {
  padding: 0 10px 6px;
  margin: 0;
  font-size: 13px;
  text-align: center;
  font-weight: 500;
  color: #22c55e;
}

.order_box p {
  padding: 4px 10px 8px;
  margin: 0;
  font-size: 12px;
  text-align: center;
  font-weight: 500;
  color: #6b7280;
}

.btn_buy {
  background: #ef4444;
  color: #f9fafb;
  padding: 9px 14px;
  text-align: center;
  font-size: 12px;
  width: fit-content;
  margin: 0 auto 12px;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  cursor: pointer;
}

.btn_buy:hover {
  background: #f97316;
  transform: translateY(-1px);
}

/* =========================================
   Responsive
========================================= */
@media screen and (max-width: 700px) {
  .card {
    margin: 10px auto 60px;
  }

  .card2,
  #payment {
    margin: 8px auto 60px;
  }

  .contact_details .contact_d p {
    max-width: 100%;
  }

  .img_gall {
    width: 48%;
  }

  #payment p,
  #payment h2 {
    width: 90%;
  }

  #shop_online {
    padding-bottom: 80px; /* space for bottom menu */
  }
}
