/* ===============================
   RELATED BLOGS – EDITORIAL STYLE
================================ */
/* ==================================================
   RELATED BLOGS SECTION
================================================== */

/* Read More Button */
.editorial-content .read-more {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #c41e3a;
    /* match your theme */
    margin-top: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s;
}

.editorial-content .read-more img {
    width: 35px;
    height: 35px;
    margin-left: 6px;
    /* transition: transform 0.3s; */
    box-shadow: none;
}

.editorial-content .read-more:hover {
    color: #c41e3a;
}

/* .editorial-content .read-more:hover img {
    transform: translateX(4px);
} */

.related-blogs-section {
    position: relative;
}

.related-title {
    font-size: 26px;
    font-weight: 600;
    color: #222;
    margin-bottom: 25px;
}

/* ==================================================
   OUTER WRAPPER (for outside arrows)
================================================== */

.related-outer-wrapper {
    position: relative;
}

/* ==================================================
   OUTSIDE ARROWS
================================================== */

.outside-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
}

/* Position arrows OUTSIDE container */
.related-prev {
    left: 30px;
}

.related-next {
    right: 30px;
}

/* ==================================================
   SWIPER
================================================== */

.relatedBlogsSwiper {
    width: 100%;
}

/* ==================================================
   BLOG CARD – EDITORIAL STYLE
================================================== */

.related-blog-card.editorial-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e2e2e2;
    text-decoration: none;
}

/* Content */
.editorial-content {
    padding: 18px;
}

/* ==================================================
   IMAGE
================================================== */

.editorial-image img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

/* ==================================================
   RESPONSIVE
================================================== */



/* Tablets */
@media (max-width: 991px) {
    .outside-arrow {
        width: 48px;
        height: 48px;
    }

    .outside-arrow img {
        width: 40px;
        height: 40px;
    }

    .related-prev {
        left: 35% !important;
    }

    .related-next {
        right: 35% !important;
    }

    .editorial-image img {
        height: 180px;
    }
}

/* ==================================================
   MOBILE – ARROWS CENTER BOTTOM (ADDED ONLY)
================================================== */

@media (max-width: 767px) {

    /* Move arrows below slider */
    .outside-arrow {
        /* position: relative; */
        top: 100%;
        left: auto;
        right: auto;
        transform: none;
        margin: 0 12px;
    }

    /* Center arrows */
    .related-outer-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Arrow row */
    .related-prev,
    .related-next {
        display: inline-flex;
    }

    /* Optional spacing from swiper */
    .related-outer-wrapper {
        padding-bottom: 10px;
    }

    /* Card content tweaks */
    .editorial-content {
        padding: 14px;
    }

    .editorial-content h5 {
        font-size: 15px;
    }

    .editorial-content p {
        font-size: 13px;
    }

    .editorial-image img {
        height: 170px;
    }
}

/* ==================================================
   BLOG CARD – SAME HEIGHT FIX
================================================== */

.related-blog-card.editorial-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e2e2e2;
    text-decoration: none;
}

/* Content area grows equally */
.editorial-content {
    padding: 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

/* ===============================
   TITLE – 2 LINE CLAMP
================================ */

.editorial-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: #c41e3a;
    line-height: 1.45;
    margin-bottom: 10px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===============================
   PARAGRAPH – 3 LINE CLAMP
================================ */

.editorial-content p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin: 0;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===============================
   IMAGE – FIXED HEIGHT
================================ */

.editorial-image {
    margin-top: auto;
}

.editorial-image img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

/* Extra small mobile */
@media (max-width: 575px) {
    .editorial-content {
        padding: 14px;
    }

    .editorial-content h5 {
        font-size: 15px;
    }

    .editorial-content p {
        font-size: 13px;
    }

    .editorial-image img {
        height: 170px;
    }
}

.custom-form [type="submit"] {
    font-size: 14px;
}

.custom-form .white-arrow {
    width: 20px;
}

.form-box {
    height: auto;
}

/* FAQ CARD */
.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* QUESTION */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #d9534f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

/* ICON */
.faq-question .icon {
    font-size: 26px;
    font-weight: bold;
}

/* ANSWER – NO LAYOUT SHIFT */
.faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    margin: 0;
    color: #000;
    line-height: 1.6;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
    height: auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .faq-question {
        font-size: 16px;
    }
}

/* .hero-section {
            height: 70vh;
        } */

.hero-section h1 {
    font-family: "gotham-book";
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    font-size: 40px;
}

.tab-content {
    background: none;
}

.table-responsive {
    filter: none !important;
}

/* Floating Enquiry Form Styles */
.floating-enquiry-form {
    position: fixed;
    right: -350px;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    background: #000;
    border-radius: 15px 0 0 15px;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 999;
}

.floating-enquiry-form.active {
    right: 0;
}

.floating-toggle-btn {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    background: #ed1c24;
    color: #fff;
    border: none;
    padding: 15px 12px;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 2px;
    box-shadow: -3px 0 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.floating-toggle-btn:hover {
    background: #000;
    box-shadow: -5px 0 20px #000;
    left: -52px;
}

.floating-form-content {
    padding: 30px 25px;
}

.floating-form-content h3 {
    color: #ed1c24;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floating-form-content p {
    color: #cccccc;
    font-size: 13px;
    margin-bottom: 25px;
}

.floating-form-content .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(243, 63, 27, 0.3);
    color: #ffffff;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.floating-form-content .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    outline: none;
}

.floating-form-content .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.floating-form-content .submit-btn {
    background: #ed1c24;
    color: #fff;
    border: none;
    padding: 14px 25px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


.floating-form-content .error-message {
    color: #ff6b6b;
    font-size: 11px;
    margin-top: -10px;
    margin-bottom: 10px;
    display: block;
}

.floating-form-content .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.floating-form-content .close-btn:hover {
    background: rgba(212, 175, 55, 0.3);
    transform: rotate(90deg);
}

/* Related Projects Section Styles */
.related-projects-section {
    padding: 40px 0;
}

.project-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.project-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.project-badge.sold-out {
    background: #ed1c24;
    color: #fff;
}

.project-badge.ongoing {
    background: #ed1c24;
    color: #fff;
}

.project-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.project-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-card-image {
    transform: scale(1.1);
}

.project-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-location {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-family: "gotham-book", sans-serif;
}

.project-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.project-type {
    font-size: 14px;
    color: #666;
    flex-grow: 1;
}

.view-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ed1c24;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.view-details-btn:hover {
    color: #1a1a1a;
    gap: 12px;
}

.view-details-btn svg {
    transition: transform 0.3s ease;
}

.view-details-btn:hover svg {
    transform: translateX(4px);
}

/* EMI Calculator Section Styles */
.emi-calculator-section {
    padding: 40px 0;
}

.emi-input-wrapper {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.emi-input-group {
    margin-bottom: 35px;
}

.emi-input-group:last-child {
    margin-bottom: 0;
}

.emi-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.emi-value {
    color: #ed1c24;
    font-size: 18px;
    font-weight: 700;
}

.emi-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #fee6dc;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.emi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ed1c24;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.emi-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.6);
}

.emi-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #d4af37;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.emi-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.6);
}

.emi-range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    color: #666;
}

.emi-result-wrapper {
    height: 100%;
}

.emi-result-card {
    background: #000;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    height: 100%;
}

.emi-monthly-payment {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(212, 55, 55, 0.3);
    margin-bottom: 30px;
}

.emi-result-label {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.emi-amount {
    font-size: 48px;
    font-weight: 700;
    color: #ed1c24;
    margin: 0;
    font-family: "gotham-book", sans-serif;
}

.emi-breakdown {
    margin-bottom: 30px;
}

.emi-breakdown-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.emi-breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.principal-icon {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.interest-icon {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
}

.total-icon {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
}

.breakdown-details {
    flex-grow: 1;
}

.breakdown-label {
    font-size: 13px;
    color: #cccccc;
    margin-bottom: 5px;
}

.breakdown-value {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.total-amount {
    color: #ed1c24;
}

.emi-visual-breakdown {
    margin-top: 30px;
}

.breakdown-bar {
    height: 40px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    margin-bottom: 15px;
}

.principal-bar {
    background: #fee6dc;
    transition: width 0.5s ease;
}

.interest-bar {
    background: #ed1c24;
    transition: width 0.5s ease;
}

.breakdown-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.principal-color {
    background: #fee6dc;
}

.interest-color {
    background: #ed1c24;
}

/* 3D Carousel Gallery Section Styles */
.gallery-3d-section {
    padding: 40px 0;
    /* background: #f8f9fa; */
    overflow: hidden;
}

.gallery-3d-swiper {
    padding: 50px 0 80px 0;
    position: relative;
}

.gallery-3d-swiper .swiper-slide {
    width: 600px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.gallery-3d-card {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-3d-card a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.gallery-3d-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-3d-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-3d-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ed1c24;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.gallery-3d-card:hover .gallery-icon {
    transform: scale(1);
}

.gallery-icon svg {
    color: #fff;
}

.gallery-caption {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.gallery-3d-card:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}

/* Swiper 3D Effect Customization */
.gallery-3d-swiper .swiper-slide-active .gallery-3d-card {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.gallery-3d-pagination {
    bottom: 20px !important;
}

.gallery-3d-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #cccccc;
    opacity: 1;
    transition: all 0.3s ease;
}

.gallery-3d-pagination .swiper-pagination-bullet-active {
    background: #d4af37;
    width: 30px;
    border-radius: 6px;
}

/* Navigation Arrows for 3D Gallery */
.gallery-3d-button-prev,
.gallery-3d-button-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-3d-button-prev:hover,
.gallery-3d-button-next:hover {
    background: #d4af37;
    transform: scale(1.1);
}

.gallery-3d-button-prev img,
.gallery-3d-button-next img {
    width: 20px;
    height: 20px;
}

@media screen and (max-width: 767px) {

    .hero-section h1{
        font-size: 20px;
    }

    .loc-upscale iframe {
        height: 400px;
    }

    .project-overview-section,
    .amenities-section,
    .gallery-section,
    .floorplan-section,
    .specs-section,
    .location-map,
    .visit-section,
    .related-projects-section,
    .emi-calculator-section,
    .gallery-3d-section {
        padding: 25px 0;
    }

    /* Mobile responsive for floating form */
    .floating-enquiry-form {
        width: 90%;
        max-width: 320px;
        right: -100%;
    }

    .floating-toggle-btn {
        left: -45px;
        padding: 12px 10px;
        font-size: 12px;
    }

    .floating-form-content {
        padding: 25px 20px;
    }

    .floating-form-content h3 {
        font-size: 20px;
    }

    .project-image-wrapper {
        height: 220px;
    }

    .project-location {
        font-size: 18px;
    }

    .emi-input-wrapper,
    .emi-result-card {
        padding: 25px;
    }

    .emi-amount {
        font-size: 36px;
    }

    .breakdown-value {
        font-size: 16px;
    }

    .breakdown-legend {
        flex-direction: column;
        gap: 10px;
    }

    /* 3D Gallery Mobile Adjustments */
    .gallery-3d-swiper .swiper-slide {
        width: 320px;
        height: 240px;
    }

    .gallery-3d-card {
        border-radius: 15px;
    }

    .gallery-icon {
        width: 50px;
        height: 50px;
    }

    .gallery-icon svg {
        width: 30px;
        height: 30px;
    }

    .gallery-caption {
        font-size: 14px;
    }

    .gallery-3d-button-prev,
    .gallery-3d-button-next {
        width: 40px;
        height: 40px;
    }

    .gallery-3d-button-prev img,
    .gallery-3d-button-next img {
        width: 16px;
        height: 16px;
    }
}

/* ==========================================
           Adyar SEO Content Sections - Internal CSS
        ========================================== */

/* Section wrappers */
.adyar-seo-section {
    background: #fff;
    padding: 60px 0;
}

.adyar-why-rams-section {
    background: #fff;
    padding: 60px 0;
}

.adyar-market-section {
    background: #fff0ea;
    padding: 60px 0;
}

/* Headings */
.adyar-section-h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.adyar-highlight-h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}

.adyar-stats-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
    border-bottom: 2px solid #ed1c24;
    padding-bottom: 10px;
}

/* Body text */
.adyar-body-p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.adyar-body-p-mb {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 24px;
}

.adyar-body-p-dark {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    margin-top: 16px;
}

.adyar-highlight-p {
    font-size: 0.97rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 16px;
}

.adyar-italic-note {
    font-size: 0.97rem;
    color: #555;
    margin-top: 16px;
    font-style: italic;
}

.adyar-label-p {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.adyar-steps-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    font-size: 1rem;
}

/* Lists */
.adyar-plain-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.adyar-list-item {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
}

.adyar-list-item-last {
    padding: 8px 0;
    color: #444;
}

.adyar-sub-list-item {
    padding: 6px 0;
    color: #444;
    font-size: 0.95rem;
}

.adyar-steps-ol {
    padding-left: 20px;
    margin: 0;
    color: #555;
    line-height: 2;
}

/* Icons / badges */
.adyar-icon-check {
    color: #ed1c24;
    font-weight: 600;
    margin-right: 8px;
}

.adyar-icon-bullet {
    color: #ed1c24;
    margin-right: 8px;
}

.adyar-golden-link {
    color: #ed1c24;
}

/* Boxes */
.adyar-highlight-box {
    background: #fff0ea;
    border-left: 4px solid #ed1c24;
    border-radius: 8px;
    padding: 28px 24px;
}

.adyar-stats-card {
    background: #fff;
    border-radius: 10px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

/* Comparison table */
.adyar-comparison-table {
    border: 1px solid #e8e0d0;
    border-radius: 8px;
    overflow: hidden;
}

/* Stats list */
.adyar-stats-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
    font-size: 0.97rem;
}

.adyar-stats-item-last {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: #444;
    font-size: 0.97rem;
}

.adyar-stats-icon {
    background: #ed1c24;
    color: #fff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-right: 12px;
    flex-shrink: 0;
}

.adyar-stats-value {
    margin-left: 6px;
}