/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.6.1769773320
Updated: 2026-01-30 11:42:00

*/

/* ============================================================
   Rann Utsav — child overrides
   ============================================================ */

/* Form selects are enhanced by the niceSelect plugin (native <select> is
   hidden; a .nice-select div + .list dropdown is shown instead). Only the
   VISIBLE label text needs truncating so a long placeholder never runs under
   niceSelect's own arrow. Do NOT set overflow/height on the wrapper — that
   clips the dropdown list. */
.nice-select .current {
    display: block;
    max-width: calc(100% - 24px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
/* Style the plain native <select> only when niceSelect is NOT applied
   (e.g. JS disabled) so it still gets a clean brand arrow. */
select.wpcf7-form-control:not(.nice-select) {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23E6317A' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px 8px;
    padding-right: 38px;
}

/* ---- Header: keep the primary nav on ONE row ----------------------------
   There are 12 top-level items; on desktop they were wrapping to a second
   row, and a first-row dropdown then overlapped the second-row items.
   Force a single non-wrapping row with tighter spacing so each dropdown
   opens cleanly below its own item (and closes on mouse-out as usual). */
@media (min-width: 1200px) {
    header.style-2 .logo-and-menu-area {
        gap: 22px !important;
    }
    header.style-2 .main-menu > ul {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
    }
    /* Keep only the TOP-LEVEL label on one line (nowrap on the link itself,
       not the <li> — otherwise it cascades into the dropdown and long
       submenu items overflow their box). */
    header.style-2 .main-menu > ul > li > a {
        padding-left: 8px !important;
        padding-right: 8px !important;
        font-size: 14px;
        letter-spacing: 0.2px;
        white-space: nowrap;
    }
    header.style-2 .main-menu > ul > li > a i {
        margin-left: 2px;
    }
    /* Submenu links wrap normally within their box. */
    header.style-2 .main-menu > ul > li .sub-menu li > a {
        white-space: normal;
    }
}
@media (min-width: 1200px) and (max-width: 1499px) {
    header.style-2 .logo-and-menu-area {
        gap: 14px !important;
    }
    header.style-2 .main-menu > ul > li > a {
        padding-left: 6px !important;
        padding-right: 6px !important;
        font-size: 13.5px;
        letter-spacing: 0;
    }
}

/* ---- Footer: two-column menus ------------------------------------------
   The two nav-menu widgets each hold 8 links and rendered as a single tall
   column, which left the right quarter of the footer empty. They now flow
   into two columns inside their own grid cell. The widget markup is
   .footer-widget > .widget-title > (h5 + nav > ul.menu) — the title sits
   inside .widget-title alongside the nav, which is why the heading is
   targeted rather than the wrapper. */

/* Theme padding was 90px/100px, sized for a single tall column of links. With
   the menus split in two the block is half the height, so that much bottom
   padding left an obvious gap above the copyright bar. */
.footer-section .footer-menu-wrap {
    padding: 70px 0 60px;
}

.footer-section .footer-menu-wrap .footer-columns {
    row-gap: 46px;
}

@media (max-width: 991px) {
    .footer-section .footer-menu-wrap {
        padding: 56px 0 50px;
    }
}

.footer-section .footer-widget--menu .widget-title > h5,
.footer-section .footer-widget--menu .widget-title h5 {
    position: relative;
    margin-bottom: 26px;
    padding-bottom: 14px;
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 18px;
    color: var(--white-color);
}

/* Short accent rule under each heading. */
.footer-section .footer-widget--menu .widget-title h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary-color1), var(--primary-color2));
}

/* The theme's wp_nav_menu_args filter renames the menu class to .widget-list;
   .menu is kept as a fallback in case that filter is ever removed. */
.footer-section .footer-widget--menu ul.widget-list,
.footer-section .footer-widget--menu ul.menu {
    columns: 2;
    column-gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-section .footer-widget--menu ul.widget-list > li,
.footer-section .footer-widget--menu ul.menu > li {
    /* Stop a link splitting across the column break. */
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 14px;
    list-style: none;
}

.footer-section .footer-widget--menu ul.widget-list > li > a,
.footer-section .footer-widget--menu ul.menu > li > a {
    display: inline-block;
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    color: var(--white-text-color);
    transition: color .3s ease, transform .3s ease;
}

.footer-section .footer-widget--menu ul.widget-list > li > a:hover,
.footer-section .footer-widget--menu ul.menu > li > a:hover {
    color: var(--primary-color1);
    transform: translateX(4px);
}

/* Highlight the page the visitor is on. */
.footer-section .footer-widget--menu ul.widget-list > li.current-menu-item > a,
.footer-section .footer-widget--menu ul.menu > li.current-menu-item > a {
    color: var(--primary-color1);
}

@media (max-width: 1199px) {
    .footer-section .footer-widget--menu ul.widget-list,
    .footer-section .footer-widget--menu ul.menu {
        column-gap: 24px;
    }
}

/* Single column once a cell gets too narrow to split sensibly. */
@media (max-width: 575px) {
    .footer-section .footer-widget--menu ul.widget-list,
    .footer-section .footer-widget--menu ul.menu {
        columns: 1;
    }

    .footer-section .footer-widget--menu .widget-title h5 {
        margin-bottom: 20px;
    }
}


/* ============================================================
   Content pages — template-page.php / template-write-for-us.php
                   / template-thank-you.php
   ============================================================
   These pages previously ran on WordPress's "Default template". The child
   theme has no page.php, and the parent Hello Elementor stylesheet — the only
   source of a max-width for .site-main — is disabled via the
   `hello_theme_style` option, so their content rendered edge-to-edge with no
   banner and no typography scale. The templates supply the banner and the
   .container; the rules below supply the prose and form styling that
   .page-content never had. */

/* ---- Shared prose column ----------------------------------------------- */

.page-body {
    font-family: var(--font-roboto);
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-color);
}

.page-body > *:first-child {
    margin-top: 0;
}

.page-body > *:last-child {
    margin-bottom: 0;
}

.page-body h2,
.page-body h3,
.page-body h4,
.page-body h5 {
    font-family: var(--font-poppins);
    color: var(--title-color);
    margin-top: 40px;
    margin-bottom: 16px;
}

.page-body h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
}

.page-body h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
}

.page-body h4 {
    font-size: 18px;
    font-weight: 600;
}

/* Editor content sometimes opens with an <h1> that duplicates the banner
   title. Demote it visually so the page still has a single dominant heading
   even before the content is cleaned up. */
.page-body h1 {
    font-family: var(--font-poppins);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--title-color);
    margin-top: 40px;
    margin-bottom: 16px;
}

.page-body p {
    margin-bottom: 18px;
}

.page-body a {
    color: var(--primary-color1);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .25s ease;
}

.page-body a:hover {
    color: var(--primary-color3);
}

.page-body strong {
    color: var(--title-color);
    font-weight: 600;
}

.page-body ul,
.page-body ol {
    margin: 0 0 22px;
    padding-left: 0;
    list-style: none;
}

.page-body ul > li,
.page-body ol > li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.page-body ul > li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color1), var(--primary-color2));
}

/* Ordered lists keep real numbers via a counter, so the `start` attribute and
   nested markup still behave. */
.page-body ol {
    counter-reset: page-body-ol;
}

.page-body ol > li {
    counter-increment: page-body-ol;
}

.page-body ol > li::before {
    content: counter(page-body-ol);
    position: absolute;
    left: 0;
    top: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: rgba(var(--primary-color1-opc), .12);
    color: var(--primary-color1);
    font-family: var(--font-poppins);
    font-size: 12px;
    font-weight: 600;
    line-height: 22px;
    text-align: center;
}

.page-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Any table still living in editor content scrolls inside its own box rather
   than pushing the page wider than the viewport. */
.page-body table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
}

.page-body table td,
.page-body table th {
    padding: 12px 14px;
    border: 1px solid var(--borders-color);
    vertical-align: top;
}

@media (max-width: 767px) {
    .page-body {
        font-size: 15px;
    }

    .page-body h1,
    .page-body h2 {
        font-size: 24px;
        margin-top: 32px;
    }

    .page-body h3 {
        font-size: 20px;
    }
}

/* ---- Write For Us ------------------------------------------------------ */

.wfu-form {
    background-color: #FFF3F7;
    border-radius: 20px;
    overflow: hidden;
    position: sticky;
    top: 110px;
}

/* Sticky only helps while the column actually sits beside the content. */
@media (max-width: 991px) {
    .wfu-form {
        position: static;
    }
}

.wfu-form__head {
    padding: 28px 34px;
    background: linear-gradient(120deg, var(--primary-color1), var(--primary-color2));
}

.wfu-form__head strong {
    display: block;
    font-family: var(--font-poppins);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--white-color);
}

.wfu-form__head span {
    display: block;
    margin-top: 6px;
    font-family: var(--font-roboto);
    font-size: 14px;
    line-height: 1.5;
    color: rgba(var(--white-color-opc), .88);
}

.wfu-form__body {
    padding: 32px 34px 34px;
}

@media (max-width: 575px) {
    .wfu-form__head {
        padding: 24px 20px;
    }

    .wfu-form__body {
        padding: 26px 20px 28px;
    }
}

/* ---- Contact Form 7 fields inside the form card ------------------------ */

.wfu-form__body .control-group > label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-poppins);
    font-size: 14px;
    font-weight: 500;
    color: var(--title-color);
}

.wfu-form__body .wpcf7-form-control-wrap {
    display: block;
}

.wfu-form__body input[type="text"],
.wfu-form__body input[type="email"],
.wfu-form__body input[type="tel"],
.wfu-form__body input[type="url"],
.wfu-form__body input[type="date"],
.wfu-form__body input[type="number"],
.wfu-form__body textarea,
.wfu-form__body select {
    width: 100%;
    padding: 13px 16px;
    background-color: var(--white-color);
    border: 1px solid transparent;
    border-radius: 10px;
    font-family: var(--font-roboto);
    font-size: 15px;
    color: var(--title-color);
    outline: none;
    box-shadow: none;
    transition: border-color .25s ease;
}

.wfu-form__body input::placeholder,
.wfu-form__body textarea::placeholder {
    color: #A9A2A5;
}

.wfu-form__body input:focus,
.wfu-form__body textarea:focus,
.wfu-form__body select:focus {
    border-color: var(--primary-color1);
    box-shadow: none;
}

.wfu-form__body input[type="file"] {
    width: 100%;
    padding: 11px 14px;
    background-color: var(--white-color);
    border: 1px dashed rgba(var(--primary-color1-opc), .45);
    border-radius: 10px;
    font-family: var(--font-roboto);
    font-size: 14px;
    color: var(--text-color);
    cursor: pointer;
}

.wfu-form__body input[type="file"]:hover {
    border-color: var(--primary-color1);
}

/* Consent checkboxes — align the box with the first line of its label. */
.wfu-form__body .wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
}

.wfu-form__body .wpcf7-acceptance label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-roboto);
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-color);
    cursor: pointer;
}

.wfu-form__body .wpcf7-acceptance input[type="checkbox"] {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    margin-top: 3px;
    accent-color: var(--primary-color1);
    cursor: pointer;
}

.wfu-form__body .wpcf7-submit {
    width: 100%;
    margin-top: 6px;
    padding: 16px 24px;
    background-color: var(--primary-color1);
    border: none;
    border-radius: 10px;
    font-family: var(--font-poppins);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .48px;
    color: var(--white-color);
    cursor: pointer;
    transition: background-color .25s ease;
}

.wfu-form__body .wpcf7-submit:hover {
    background-color: var(--primary-color3);
}

/* CF7's own stylesheet leaves these unstyled against the pink card. */
.wfu-form__body .wpcf7-not-valid-tip {
    margin-top: 6px;
    font-size: 13px;
    color: #D5263B;
}

.wfu-form__body .wpcf7-response-output {
    margin: 18px 0 0;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.wfu-form__body form.sent .wpcf7-response-output {
    border-color: #2E9E5B;
    color: #1E6B3D;
}

/* ---- Thank you --------------------------------------------------------- */

.thankyou-card {
    padding: 60px;
    background-color: #FFF3F7;
    border-radius: 20px;
    text-align: center;
}

.thankyou-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    margin-bottom: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color1), var(--primary-color2));
    color: var(--white-color);
    font-size: 30px;
}

.thankyou-card h2 {
    margin-bottom: 16px;
    font-family: var(--font-poppins);
    font-size: 34px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--title-color);
}

.thankyou-intro {
    max-width: 560px;
    margin: 0 auto;
    font-family: var(--font-roboto);
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-color);
}

.thankyou-intro p:last-child {
    margin-bottom: 0;
}

/* "What happens next" — left-aligned inside the centred card so the text
   stays readable. */
.thankyou-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin: 40px 0 36px;
    padding: 0;
    list-style: none;
    text-align: left;
}

.thankyou-steps > li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background-color: var(--white-color);
    border-radius: 14px;
}

.thankyou-steps__num {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(var(--primary-color1-opc), .12);
    color: var(--primary-color1);
    font-family: var(--font-poppins);
    font-size: 14px;
    font-weight: 600;
}

.thankyou-steps > li > span:last-child {
    font-family: var(--font-roboto);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}

.thankyou-steps strong {
    display: block;
    margin-bottom: 4px;
    font-family: var(--font-poppins);
    font-size: 15px;
    font-weight: 600;
    color: var(--title-color);
}

.thankyou-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.thankyou-actions .primary-btn1 i {
    margin-left: 8px;
}

.thankyou-help {
    margin: 28px 0 0;
    font-family: var(--font-roboto);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}

.thankyou-help a {
    color: var(--primary-color1);
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 991px) {
    .thankyou-steps {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

@media (max-width: 767px) {
    .thankyou-card {
        padding: 44px 24px;
    }

    .thankyou-card h2 {
        font-size: 26px;
    }

    .thankyou-actions .primary-btn1 {
        width: 100%;
        justify-content: center;
    }
}

/* Accepted-formats note under the upload field. */
.wfu-form__body .wfu-form__hint {
    display: block;
    margin-top: 7px;
    font-family: var(--font-roboto);
    font-size: 12.5px;
    line-height: 1.5;
    color: #8A8085;
}
