/* Container styling */
.docs {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    max-width: 1000px;
    margin: 20px auto;
    text-align: center;
}

/* Heading styling */
.docs h1 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Image styling */
.docs-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(234, 24, 24, 0.4);
    transition: transform 0.3s ease;
}

/* Hover effect on desktop */
.docs-img:hover {
    transform: scale(1.02);
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .docs {
        padding: 30px;
    }
    .docs h1 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .docs {
        padding: 15px;
    }
    .docs h1 {
        font-size: 16px;
    }
    .docs-img {
        max-width: 100%;
    }
}


/* .................new2............... */
.new2 {
    width: 100%;
    height: auto;
    max-width: 800px; /* keeps it from being too large on big screens */
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for desktop */
@media (hover: hover) {
    .new2:hover {
        transform: scale(1.02);
        box-shadow: 0 0 20px rgba(0, 166, 81, 0.4);
    }
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .new2 {
        max-width: 100%;
        border-radius: 6px;
    }
}

/* ..................new3.............. */
.new3 {
    width: 90%;
    height: auto;
    max-width: 800px; /* keeps it from being too large on big screens */
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for desktop */
@media (hover: hover) {
    .new3:hover {
        transform: scale(1.02);
        box-shadow: 0 0 20px rgba(0, 166, 81, 0.4);
    }
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .new3 {
        max-width: 100%;
        border-radius: 6px;
    }
}
/* ..............new4.......... */
.new4 {
    display: block;
    margin: 0 auto; /* centers image horizontally */
    max-width: 500px; /* adjust logo size for desktop */
    height: auto;
    transition: transform 0.3s ease;
}

/* Hover zoom effect for desktop */
@media (hover: hover) {
    .new4:hover {
        transform: scale(1.02);
    }
}

/* Mobile adjustments */
@media (max-width: 580px) {
    .new4 {
        max-width: 350px;
        border-radius: 6px;

    }
}
/* .........new form.......... */
/* ====== General Section Styling ====== */


.order-container {
    max-width: 1000px;
    margin: 0 auto;
    color: #333;

}

/* ====== Headings ====== */
.order-heading.main {
    font-size: 26px;
    color: #00a651;
    text-align: center;
    margin-bottom: 10px;
}
.order-heading.main span {
    font-weight: bold;
    font-size: 30px;
}
.order-heading.main small {
    font-size: 18px;
    color: #333;
}

.order-heading.sub {
    text-align: center;
    font-size: 98px;
    color: #ff3b3b;
    margin-bottom: 25px;
}

/* ====== Grid Layout ====== */
.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: start;
}

/* ====== Left: Product & Price ====== */
.product-img-box {
    text-align: center;
    color: #9df3d5ff;
}
.product-img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
}

.price-label {
    font-size: 18px;
    color: #333;
}
.price-value {
    font-size: 118px;
    font-weight: bold;
    color: #43b062ff;
    margin-left: 5px;
}

/* ====== Right: Form ====== */
.order-right {
    background: #f9fff9;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #00a651;
    box-shadow: 0 0 15px rgba(0, 166, 81, 0.2);
    width: 100%;
}

.guarantee-text {
    background: #eaffea;
    color: #00a651;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
}

.order-now-text {
    text-align: center;
    font-size: 18px;
    margin-bottom: 15px;
}

/* Form Inputs */
.order-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: all 0.3s ease;
}
.order-form input:focus {
    border-color: #00a651;
    box-shadow: 0 0 8px rgba(0, 166, 81, 0.3);
    background-color: #f1fff5;
}

/* Submit Button */
.order-btn {
    width: 100%;
    background: linear-gradient(90deg, #a60000ff, #d12828ff);
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    animation: pulseBtn 1.5s infinite;
}
.order-btn:hover {
    background: linear-gradient(90deg, #d12828ff, #a60000ff);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(166, 0, 0, 0.4);
}

/* Pulse Animation */
@keyframes pulseBtn {
    0% { box-shadow: 0 0 0 rgba(166, 0, 0, 0.7); }
    70% { box-shadow: 0 0 15px rgba(166, 0, 0, 0.7); }
    100% { box-shadow: 0 0 0 rgba(166, 0, 0, 0.7); }
}

/* Arrow Image */
.order-arrow {
    display: block;
    margin: 12px auto 0;
    max-width: 120px;
    animation: bounceArrow 1s infinite;
}
@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
    .order-grid {
        grid-template-columns: 1fr;
    }
    .order-heading.main {
        font-size: 22px;
    }
    .order-heading.main span {
        font-size: 24px;
    }
    .order-heading.sub {
        font-size: 16px;
    }
}

.price-value1 {
    font-family: Arial, sans-serif;
    color: red;                   /* Red color for old price */
    text-decoration: line-through; /* Strike-through effect */
    margin-right: 8px;            /* Space before the new price */
    font-size: 100vh;              /* Bigger font size */
    font-weight: bold;            /* Optional: makes it stand out */
}


/* ............move button footer............... */
.order-btnx button {
    background: #00a651;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    animation: wiggle 0.5s ease-in-out infinite alternate;
}

/* Animation keyframes */
@keyframes wiggle {
    0% { transform: translateX(0); }
    50% { transform: translateX(5px); }
    100% { transform: translateX(-5px); }
}
.pcod {
    margin: 3px 0 0;
    font-size: 12px;
    color: red;
}
.pcoda {
    margin: 3px 0 0;
    font-size: 16px;
    color: red;
}

body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: #f9f9f9;
    margin: 0;
    padding: 20px;
}

.promo-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    margin: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.promo-container h2 {
    font-size: 20px;
}

.promo-container h2 span {
    color: red;
    font-weight: bold;
}

.timer-text {
    margin: 10px 0;
    font-size: 14px;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}


.time-box {
    background: white;
    border: 2px dotted #ffcc00;
    border-radius: 8px;
    padding: 10px;
    width: 60px;
}

.time-box span {
    font-size: 24px;
    font-weight: bold;
    display: block;
}

.time-box p {
    font-size: 12px;
    margin: 0;
}

.colon {
    font-size: 24px;
    margin: 0 5px;
}

.logo img {
    width: 80px;
    margin: 15px 0;
}

.old-price {
    font-size: 14px;
    color: gray;
    text-decoration: line-through;
}

.new-price {
    font-size: 20px;
    font-weight: bold;
    color: red;
}
.pastel-green {
    background-color: #b8e2c8; /* soft pastel green */
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    width: 100%; /* make it fill the container */
    margin: auto;
    box-sizing: border-box;
}

.pastel-green img {
    max-width: 100%;
    height: auto;
}

.price-label,
.price-value1,
.price-value {
    display: block;
    margin: 5px 0;
    word-wrap: break-word;
}

/* Desktop adjustments */
@media (min-width: 1025px) {
    .price-label {
        font-size: 1.1rem;
    }
    .price-value1 {
        font-size: 22.5rem;
        font-weight: bold;
        color: red;
    }
}

/* Tablet view */
@media (max-width: 1024px) {
    .pastel-green {
        max-width: 250px;
        padding: 12px;
    }
    .price-label {
        font-size: 1rem;
    }
    .price-value1 {
        font-size: 1.3rem;
    }
}

/* Mobile view */
@media (max-width: 600px) {
    .pastel-green {
        max-width: 100%;
        padding: 10px;
    }
    .pastel-green img {
        max-width: 80%;
    }
    .price-label {
        font-size: 0.9rem;
    }
    .price-value1 {
        font-size: 7rem;
    }
}

.promo-box{
    background: #d8d3f4ff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
margin-top: 20px;
}

/* ===== GENERAL LAYOUT ===== */
.order-section {
    background: #fde2e2; /* soft pink */
    padding: 30px 20px;
    font-family: Arial, sans-serif;
}

.order-container {
    max-width: 1100px;
    margin: 0 auto;
    color: #333;
}

/* ===== HEADINGS ===== */
.order-heading.main {
    font-size: 28px;
    color: #00a651;
    text-align: center;
    margin-bottom: 10px;
}
.order-heading.main span {
    font-weight: bold;
    font-size: 34px;
}
.order-heading.main small {
    font-size: 18px;
    color: #333;
}
.order-heading.sub {
    text-align: center;
    font-size: 48px;
    color: #ff3b3b;
    margin-bottom: 25px;
}

/* ===== GRID ===== */
.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: start;
}

/* ===== LEFT: PRODUCT / PRICE ===== */
.product-img-box {
    text-align: center;
}
.product-img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
}

/* Old price */
.price-value1 {
    font-family: Arial, sans-serif;
    font-size: 2rem;
    color: red;
    text-decoration: line-through;
    font-weight: bold;
    margin-bottom: 5px;
}

/* New price */
.price-value {
    font-size: 3rem;
    font-weight: bold;
    color: #43b062;
}

/* ===== RIGHT: FORM ===== */
.order-right {
    background: #f9fff9;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #00a651;
    box-shadow: 0 0 15px rgba(0, 166, 81, 0.2);
}

.guarantee-text {
    background: #eaffea;
    color: #00a651;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.order-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: all 0.3s ease;
}
.order-form input:focus {
    border-color: #00a651;
    box-shadow: 0 0 8px rgba(0, 166, 81, 0.3);
    background-color: #f1fff5;
}

/* Submit Button */
.order-btn {
    width: 100%;
    background: linear-gradient(90deg, #a60000, #d12828);
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    animation: pulseBtn 1.5s infinite;
}
.order-btn:hover {
    background: linear-gradient(90deg, #d12828, #a60000);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(166, 0, 0, 0.4);
}
@keyframes pulseBtn {
    0% { box-shadow: 0 0 0 rgba(166, 0, 0, 0.7); }
    70% { box-shadow: 0 0 15px rgba(166, 0, 0, 0.7); }
    100% { box-shadow: 0 0 0 rgba(166, 0, 0, 0.7); }
}

/* ===== PURPLE PROMO BOX & IMAGE ===== */
.promo-image-wrap {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 20px;
}

.promo-box {
    background: #d8d3f4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    flex: 1;
}

.new8 {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .order-grid {
        grid-template-columns: 1fr;
    }
    .promo-image-wrap {
        flex-direction: column;
        align-items: center;
    }
    .new8 {
        max-width: 100%;
    }
}


.chart{
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    
}
.white-section p {
   font-size: 36px;
    color: #333;
    line-height: 1.6;
    margin: 10px 0;
}

/* Section Heading */
h2 {
  font-size: 2.4rem;
  font-weight: bold;
  color: #222;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  margin: 12px auto 0;
  border-radius: 4px;
}

/* Card Styles */
.story-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  background: #fff;
}

.story-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}

/* Card Image */
/* Card Image */
.story-card img {
  width: 75%;                  /* shrink image to 75% width */
  height: auto;                /* keep natural aspect ratio */
  object-fit: contain;         /* show full image without cutting */
  display: block;
  margin: 20px auto;           /* center the image inside card */
  border-radius: 12px;         /* optional: rounded edges */
  transition: transform 0.3s ease;
}

.story-card:hover img {
  transform: scale(1.05);      /* slight zoom effect */
}


/* Card Body */
.story-card .card-body {
  text-align: center;
  padding: 25px 20px;
}

.story-card .card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 12px;
}

.story-card .card-text {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
}
