/* ================================
   HERO SECTION
================================ */
.hero-section {
  padding: 30px 0;
  background: #fdf7ef;
}

.hero-title {
  font-size: 34px;
  font-weight: 700;
  color: #1a1a1a;
}

.hero-title .highlight {
  color: #b57a30;
}

.hero-subtitle {
  font-size: 15px;
  color: #6b6b6b;
  margin-top: 5px;
}

.separator {
  width: 10px;
  height: 10px;
  background: #b57a30;
  border-radius: 50%;
}

.custom-hero-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

/* ================================
   SECTION HEADINGS
================================ */
.section-heading {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
}

/* ================================
   SERVICES
================================ */
/* =====================================
   SECURITY PRIORITY SECTION
===================================== */

.security-shield {
  width: 60px;
  height: auto;
}

.security-heading {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
}

.security-heading .highlight {
  color: #b57a30;
}

.explore-btn {
  background: #b57a30;
  color: white;
  padding: 6px 18px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
}

.pick-text {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 15px;
}

/* Product Cards */
/* Make card relative so absolute element works */
.product-card {
  position: relative;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 0px 10px #00000015;
  transition: 0.3s;
  text-align: left;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

/* Logo absolute inside card */
.card-logo {
  position: absolute;
  left: 40px;
  top: 54%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 5px;
  box-shadow: 0px 0px 6px #00000020;
  z-index: 1000;
}

.card-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.product-img {
  transition: transform 0.2s ease-in-out;
}
.product-card:hover {
  cursor: pointer;
}
.product-card:hover .product-img {
  transform: scale(1.05);
}

/* Product Image Placeholder */
.product-img {
  width: 100%;
  height: 180px;
  background: #d9d9d9;
  z-index: -1;
}

/* Product Title & Description */
.product-title {
  font-size: 16px;
  font-weight: 600;
}

.product-desc {
  font-size: 13px;
  color: #777;
  margin-bottom: 15px;
}

/* Know More Button */
.know-btn {
  background: #b57a30;
  color: #fff;
  border: none;
  padding: 8px 0;
  border-radius: 5px;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* ================================
   Slider
================================ */
/* Section Background */
.investor-section {
  background: #f7f2e8;
}

/* Section Heading */
.investor-heading {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
}

.investor-heading .highlight {
  color: #b57a30;
}

/* Main Card Style */
.investor-box {
  background: #ffffff;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  gap: 15px;
  box-shadow: 0 0 10px #00000015;
  transition: all 0.3s ease-in-out;
}
.investor-box .img-container {
  height: 80px !important;
  width: 80px !important;
}

/* Hover Effect */
.investor-box:hover {
  cursor: pointer;
}
/* Hover Effect */
.investor-box:hover .investor-img {
  transform: scale(1.05);
}

/* Image Style */
.investor-img {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

/* Text Area */
.investor-content h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.investor-content p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #555;
}

.investor-content p {
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word; /* forces wrapping */
    white-space: normal; /* ensures multi-line text */
}

/* Ensure the card never overflows */
.investor-box {
    max-width: 100%;
    overflow: hidden;
    padding: 15px;
}

/* Mobile Fix */
@media (max-width: 576px) {
    .investor-content p {
        font-size: 13px; /* smaller text on mobile */
    }
}

/* ================================
   FAQ
================================ */

.faq-section {
  background: #f7f4ee; /* light beige like your screenshot */
}

.faq-heading {
  font-weight: 700;
  font-size: 28px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
}

.faq-question {
  font-size: 18px;
  color: #444;
  font-weight: 600;
}

.faq-answer {
  color: #666;
  font-size: 15px;
  margin-bottom: 10px;
}

.faq-expand {
  font-size: 14px;
  color: #1473e6;
  text-decoration: none;
}

.faq-expand:hover {
  text-decoration: underline;
}

/* ================================
   video
================================ */

.videos-section {
    background: #F7F4EE;
}

.videos-title {
    font-weight: 700;
    font-size: 28px;
}

.video-box {
    background: #ccc;
    height: 380px;
    max-width: 280px;
    border-radius: 6px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-placeholder i {
    font-size: 40px;
    color: #555;
}

.video-caption {
    font-size: 14px;
    color: #444;
}


/* ================================
   FOOTER
================================ */
.numbers-section {
    background: #8C5A25; /* brown strip like screenshot */
    color: #fff;
}

.numbers-title {
    font-size: 22px;
    font-weight: 700;
}

.numbers-subtext {
    font-size: 15px;
    opacity: 0.9;
}

.app-badge {
    height: 60px;
}

.product-box {
    width: 450px;
    background: #ffffff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

.know-more-btn, .close-btn {
    background: #0073e6;
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 8px;
}

/* Hidden Content (Carton Fall Effect) */
.carton-fall {
    margin-top: 15px;
    background: #f4f9ff;
    padding: 15px;
    border-radius: 8px;
    display: none; /* Initially hidden */
    animation-duration: 0.4s;
}

    body {
        background-color: #f3f3f3;
    }

    hr {
        margin: .5rem 0 !important;
    }

    /* CARD */
    .bond-card {
        background: #fff;
        padding: 8px;
        border-radius: 12px;
        margin-bottom: 24px;
        border: 1px solid #ddd;
    }

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

    .left-area {
        display: flex;
        gap: 8px;
    }

    .bond-logo {
        width: 60px;
        height: 60px;
        object-fit: contain;
    }

    .bond-title {
        font-size: 13px;
        font-weight: 700;
        margin: 0;
        max-width: 280px;
        margin-bottom: 2px;
    }

    .chip {
        background: #22c7a5;
        padding: 2px 8px;
        border-radius: 30px;
        color: white;
        font-size: 12px;
    }

    .right-area {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .rating-icon {
        width: 24px;
    }

    .share-icon {
        width: 18px;
        opacity: 0.7;
    }

    /* DETAILS GRID */
    .bond-details {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .detail-box h6 {
        margin: 0;
        color: gray;
        font-size: 12px;
        font-weight: 600;
    }

    .detail-box p {
        margin: 3px 0;
        font-size: 14px;
        font-weight: 500;
    }

    .pill {
        background: #92600c;
        color: #fff;
        padding: 2px 6px;
        border-radius: 20px;
        font-size: 12px;
        text-align: center;
    }

    .pill-outline {
        border: 1px solid #92600c;
        padding: 2px 6px;
        border-radius: 15px;
        font-size: 12px;
    }

    .date-tag {
        font-size: 11px;
        color: #333;
    }

    /* BUTTON */
    .bond-btn {
        margin-top: 12px;
        max-width: 150px;
        font-size: 14px;
        background: #b57b09;
        border: none;
        padding: 4px 12px;
        color: white;
        font-weight: normal;
        border-radius: 8px;
        cursor: pointer;
    }

    /* EXPLORE BUTTON */
    .explore-section {
        text-align: center;
        margin: 20px 0;
    }

    .explore-btn {
        background: #f0b837;
        padding: 8px 25px;
        border-radius: 20px;
        color: #000;
        text-decoration: none;
        font-weight: 600;
    }

    /* SECTION HEADINGS */
    .why-bonds-section h3,
    .how-section h3 {
        font-size: 22px;
        margin-bottom: 10px;
        font-weight: 700;
    }

    /* MOBILE RESPONSIVE */
    @media (max-width: 600px) {
        .bond-details {
            grid-template-columns: repeat(2, 1fr);
        }

        .bond-title {
            font-size: 14px;
            max-width: 200px;
        }
    }

    .bottom-line {
        position: relative;
        padding-bottom: 12px;
        /* space for the line */
    }

    .bottom-line::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        /* full width line */
        height: 2px;
        /* line thickness */
        background-color: #d1d1d1;
        /* line color */
    }

@keyframes dropDown {
    from {
        opacity: 0;
        transform: translateY(-20px) scaleY(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scaleY(1);
    }
}

@keyframes fallClose {
    from {
        opacity: 1;
        height: auto;
    }
    to {
        opacity: 0;
        height: 0;
    }
}