
    
<style>
    /* Fix for mobile scrolling - Prevent page reload */
    html{
        overflow-y: auto;
        overflow-x: hidden;
    }
    body {
        position: relative;
        width: 100%;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    .row{
        align-items: center;
    }
    
/* Popup */
.googleformpopup {
  position: fixed;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: none;
}

.popup-box {
  width: 420px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.25);
  overflow: hidden;
  font-family: Arial, sans-serif;
}

/* Top Section */
.popup-top {
  display: flex;
  align-items: center;
  padding: 15px;
  gap: 12px;
  background: #f5f5f5;
}

.popup-icon {
  width: 45px;
  height: 45px;
}

.popup-text h4 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.popup-text p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #555;
}

/* Bottom Section */
.popup-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
}

.powered {
  font-size: 12px;
  color: #777;
}

/* Buttons */
.popup-buttons {
  display: flex;
  gap: 8px;
}

.deny-btn {
  background: #eee;
  border: 1px solid #ccc;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
}

.allow-btn {
  background: linear-gradient(#4da3ff, #2b7cff);
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
}

/* Modal */
.gform {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.gform-content {
    position: relative;
    background: #fff;
    margin: 0% auto;
    padding: 10px;
    width: 90%;
    max-width: 700px;
    height: 100%;
    border-radius: 8px;
}

.close-modal {
  position: absolute;
  right: 10px;
  top: 5px;
  font-size: 22px;
  cursor: pointer;
}



/* ========== QUOTE MODAL STYLES ========== */
.quote-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.quote-modal.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.quote-modal-content {
  background: white;
  border-radius: 24px;
  max-width: 480px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.quote-modal-header {
  color: #000;
  padding: 11px 22px 25px;
  border-radius: 24px 24px 0 0;
  position: relative;
}

.quote-modal-header h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.quote-modal-header h2 i {
  font-size: 1.6rem;
}
.quote-modal-header p {
    font-size: 0.9em;
    opacity: 0.9;
    margin: 0;
    text-align: center;
}

.quote-modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  color: white;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.quote-modal-body {
    padding: 0px 24px 23px;
}
.modal-content h3 {
    text-align: center;
    font-size: 1.5em;
    font-weight: 800;
}
.modal-content p {
    text-align: center;
}
.form-group {
  margin-bottom: 10px;
}
.quoteAgree label {
    display: block !important;
}
.form-group label {
  display: none;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1a2c3e;
  font-size: 0.7rem;
}

.form-group label i {
  color: #0b1b98;
  margin-right: 8px;
  width: 18px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 11px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0b1b98;
  box-shadow: 0 0 0 3px rgba(11, 27, 152, 0.1);
  background: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}

.checkbox-group input {
  width: auto;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-group label {
  margin: 0;
  font-size: 0.85rem;
  font-weight: normal;
  cursor: pointer;
}

.checkbox-group label a {
  color: #0b1b98;
  text-decoration: none;
}

.checkbox-group label a:hover {
  text-decoration: underline;
}

.quote-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #0b1b98, #1a2bb8);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.quote-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 27, 152, 0.3);
}

.quote-submit-btn:active {
  transform: translateY(0);
}

.quote-submit-btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Success Message */
.quote-success {
  text-align: center;
  padding: 40px 20px;
}

.quote-success i {
  font-size: 70px;
  color: #10b981;
  margin-bottom: 20px;
}

.quote-success h3 {
  font-size: 1.8rem;
  color: #1a2c3e;
  margin-bottom: 10px;
}

.quote-success p {
  color: #64748b;
  margin-bottom: 25px;
}

.quote-success-close {
  background: #0b1b98;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quote-success-close:hover {
  background: #1a2bb8;
  transform: translateY(-2px);
}

/* Scrollbar */
.quote-modal-content::-webkit-scrollbar {
  width: 0px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .quote-modal-header {
    padding: 20px 20px 15px;
  }
  
  .quote-modal-header h2 {
    font-size: 1.4rem;
  }
  
  .quote-modal-body {
    padding: 20px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  
  .quote-submit-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}
</style>



  <style>
        


/* New Header Start */
:root {
            --NRj-primary-blue: #007bff;
            --NRj-dark-blue: #094b91;
            --NRj-gradient: linear-gradient(135deg, #094b91 0%, var(--NRj-primary-blue) 100%);
            --NRj-text-color: #2c3e50;
            --NRj-text-light: #64748b;
            --NRj-bg-light: #f8fafc;
            --NRj-white: #ffffff;
            --NRj-border: #e2e8f0;
            --NRj-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            --NRj-shadow-hover: 0 10px 40px rgba(9, 75, 145, 0.12);
            --NRj-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

      

        /* Header Base - Floating Pill Style */
        .NRj_interactive_header {
            position: fixed;
            top: 16px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            /* 80% of viewport */
            background: var(--NRj-white);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
            border-radius: 14px;
            z-index: 1000;
            transition: top 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.3s ease,
                width 0.4s ease;
        }

        /* Sticky state */
        .NRj_interactive_header.is-sticky {
            top: 10px;
            width: 90%;
            /* Expand to 90% when sticky */
            box-shadow: 0 8px 32px rgba(9, 75, 145, 0.12);
        }

        /* Hide on scroll down */
        .NRj_interactive_header.is-hidden {
            top: -120px;
        }

        .NRj_interactive_header__container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 28px;
            height: 76px;
            transition: height 0.3s ease, padding 0.3s ease;
        }

        .NRj_interactive_header.is-sticky .NRj_interactive_header__container {
            height: 62px;
            padding: 0 24px;
        }

        /* Logo */
        .NRj_interactive_header__logo {
            display: flex;
            align-items: center;
            height: 100%;
        }

        .NRj_interactive_header__logo a {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .NRj_interactive_header__logo img {
            height: 48px;
            transition: height 0.3s ease;
            width: auto;
        }

        .NRj_interactive_header.is-sticky .NRj_interactive_header__logo img {
            height: 38px;
        }

        /* Navigation */
        .NRj_interactive_header__nav {
            display: flex;
            align-items: center;
            height: 100%;
        }

        .NRj_interactive_header__menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            align-items: center;
            height: 100%;
        }

        .NRj_interactive_header__item {
            position: relative;
            margin: 0 4px;
            display: flex;
            align-items: center;
            height: 100%;
            /* Spans full height of header to prevent hover gaps */
        }

        .NRj_interactive_header__has-mega {
            position: static;
            /* Important for full width mega menu alignment */
        }

        .NRj_interactive_header__link {
            display: flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            color: var(--NRj-text-color);
            font-weight: 500;
            font-size: 15px;
            padding: 10px 14px;
            border-radius: 6px;
            transition: var(--NRj-transition);
        }

        .NRj_interactive_header.is-sticky .NRj_interactive_header__link {
            font-size: 14.5px;
        }

        .NRj_interactive_header__link i.fa-chevron-down {
            font-size: 10px;
            transition: transform 0.3s ease;
            color: var(--NRj-text-light);
        }

        .NRj_interactive_header__item:hover>.NRj_interactive_header__link {
            color: var(--NRj-dark-blue);
            background: var(--NRj-bg-light);
        }

        .NRj_interactive_header__item:hover>.NRj_interactive_header__link i.fa-chevron-down {
            transform: rotate(180deg);
            color: var(--NRj-dark-blue);
        }

        /* Standard Dropdown */
        .NRj_interactive_header__dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--NRj-white);
            min-width: 270px;
            box-shadow: var(--NRj-shadow-hover);
            border-radius: 0 0 12px 12px;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            /* Prevents phantom hovers */
            transform: translateY(15px);
            transition: all 0.3s ease;
            list-style: none;
            padding: 12px 0;
            margin: 0;
            border: 1px solid var(--NRj-border);
            border-top: 3px solid var(--NRj-primary-blue);
            z-index: 101;
        }

        .NRj_interactive_header__item:hover>.NRj_interactive_header__dropdown {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0);
            /* Drops right at the bottom edge */
        }

        .NRj_interactive_header__dropdown-item {
            position: relative;
        }

        .NRj_interactive_header__dropdown a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 24px;
            color: var(--NRj-text-color);
            text-decoration: none;
            font-size: 14.5px;
            transition: var(--NRj-transition);
            font-weight: 500;
        }

        .NRj_interactive_header__dropdown a i {
            font-size: 16px;
            color: var(--NRj-primary-blue);
            width: 22px;
            text-align: center;
            transition: var(--NRj-transition);
        }

        .NRj_interactive_header__dropdown a i.fa-angle-right {
            margin-left: auto;
            font-size: 14px;
            color: var(--NRj-text-light);
        }

        .NRj_interactive_header__dropdown a:hover {
            background: var(--NRj-bg-light);
            color: var(--NRj-dark-blue);
            padding-left: 30px;
        }

        .NRj_interactive_header__dropdown a:hover i {
            transform: scale(1.1);
        }

        /* Sub Dropdown */
        .NRj_interactive_header__sub-dropdown {
            position: absolute;
            top: -3px;
            /* Align with top border */
            left: 100%;
            background: var(--NRj-white);
            min-width: 260px;
            box-shadow: var(--NRj-shadow-hover);
            border-radius: 0 12px 12px 12px;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateX(10px);
            transition: all 0.3s ease;
            list-style: none;
            padding: 12px 0;
            margin: 0;
            border: 1px solid var(--NRj-border);
            border-top: 3px solid var(--NRj-primary-blue);
        }

        .NRj_interactive_header__dropdown-item:hover>.NRj_interactive_header__sub-dropdown {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(0);
        }

        /* Mega Menu */
        .NRj_interactive_header__mega {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--NRj-white);
            box-shadow: var(--NRj-shadow-hover);
            border-radius: 0 0 14px 14px;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            /* Prevents phantom hovers */
            transform: translateY(15px);
            transition: all 0.3s ease;
            border: 1px solid var(--NRj-border);
            border-top: 3px solid var(--NRj-primary-blue);
            z-index: 102;
            overflow: hidden;
        }

        .NRj_interactive_header__item:hover>.NRj_interactive_header__mega {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0);
        }

        .NRj_interactive_header__mega-container {
            display: flex;
            min-height: 420px;
        }

        .NRj_interactive_header__mega-sidebar {
            width: 280px;
            background: var(--NRj-bg-light);
            border-right: 1px solid var(--NRj-border);
            padding: 24px 0;
            flex-shrink: 0;
        }

        .NRj_interactive_header__mega-tab {
            padding: 14px 24px;
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            font-weight: 500;
            color: var(--NRj-text-color);
            transition: var(--NRj-transition);
            font-size: 14.5px;
            position: relative;
        }

        .NRj_interactive_header__mega-tab i:first-child {
            color: var(--NRj-primary-blue);
            font-size: 18px;
            width: 24px;
            text-align: center;
        }

        .NRj_interactive_header__mega-tab .arrow {
            margin-left: auto;
            font-size: 12px;
            color: var(--NRj-text-light);
            transition: transform 0.3s;
        }

        .NRj_interactive_header__mega-tab:hover,
        .NRj_interactive_header__mega-tab.active {
            background: var(--NRj-white);
            color: var(--NRj-dark-blue);
            box-shadow: inset 4px 0 0 var(--NRj-primary-blue);
        }

        .NRj_interactive_header__mega-tab.active .arrow {
            transform: translateX(4px);
            color: var(--NRj-primary-blue);
        }

        .NRj_interactive_header__mega-content {
            flex: 1;
            position: relative;
        }

        .NRj_interactive_header__mega-panel {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            padding: 30px;
        }

        .NRj_interactive_header__mega-panel.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            position: relative;
            height: 100%;
            box-sizing: border-box;
        }

        .NRj_interactive_header__mega-panel-inner {
            display: flex;
            gap: 30px;
            height: 100%;
        }

        .NRj_interactive_header__mega-grid {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            align-content: start;
        }

        .NRj_interactive_header__mega-link {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 12px;
            border-radius: 12px;
            text-decoration: none;
            transition: var(--NRj-transition);
            border: 1px solid transparent;
            background: var(--NRj-white);
        }

        .NRj_interactive_header__mega-link:hover {
            background: var(--NRj-white);
            border-color: #e0eaff;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
        }

        .NRj_interactive_header__mega-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: #eff6ff;
            color: var(--NRj-primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
            transition: var(--NRj-transition);
        }

        .NRj_interactive_header__mega-link:hover .NRj_interactive_header__mega-icon {
            background: var(--NRj-primary-blue);
            color: #ffffff;
            box-shadow: 0 4px 10px rgba(9, 75, 145, 0.2);
        }

        .NRj_interactive_header__mega-text h4 {
            margin: 0 0 4px 0;
            font-size: 15px;
            color: var(--NRj-text-color);
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .NRj_interactive_header__mega-link:hover .NRj_interactive_header__mega-text h4 {
            color: var(--NRj-dark-blue);
        }

        .NRj_interactive_header__mega-text p {
            margin: 0;
            font-size: 13px;
            color: var(--NRj-text-light);
            line-height: 1.4;
        }

        /* Right Highlight Box in Mega Menu */
        .NRj_interactive_header__mega-highlight {
            width: 280px;
            background: #f8fafc;
            border-radius: 12px;
            padding: 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            flex-shrink: 0;
            border: 1px solid #eef2f6;
        }

        .highlight-content h4 {
            margin: 0 0 10px 0;
            font-size: 17px;
            color: var(--NRj-text-color);
            font-weight: 700;
        }

        .highlight-content p {
            font-size: 13.5px;
            color: var(--NRj-text-light);
            line-height: 1.5;
            margin: 0 0 20px 0;
        }

        .highlight-btn {
            display: inline-block;
            background: var(--NRj-primary-blue);
            color: #fff;
            padding: 10px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: var(--NRj-transition);
            box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
        }

        .highlight-btn:hover {
            background: var(--NRj-dark-blue);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
        }

        .highlight-contact {
            margin-top: 25px;
            border-top: 1px solid #e2e8f0;
            padding-top: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 13.5px;
            color: var(--NRj-text-color);
        }

        .contact-item i {
            width: 20px;
            text-align: center;
            color: var(--NRj-text-light);
            font-size: 14px;
        }

        .contact-item.phone {
            font-weight: 600;
            font-size: 15px;
        }

        .contact-item.phone i {
            background: var(--NRj-primary-blue);
            color: #fff;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            line-height: 26px;
            font-size: 11px;
        }

        .social-icons {
            display: flex;
            gap: 10px;
            margin-top: 18px;
        }

        .social-icons a {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--NRj-text-color);
            text-decoration: none;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
            font-size: 13px;
            transition: var(--NRj-transition);
            border: 1px solid #e2e8f0;
        }

        .social-icons a:hover {
            background: var(--NRj-primary-blue);
            color: #fff;
            border-color: var(--NRj-primary-blue);
        }

        /* CTA Button */
        .NRj_interactive_header__cta {
            margin-left: 20px;
        }

        .NRj_interactive_header__btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            background: var(--NRj-gradient);
            color: var(--NRj-white);
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14.5px;
            transition: var(--NRj-transition);
            box-shadow: 0 4px 15px rgba(9, 75, 145, 0.25);
        }

        .NRj_interactive_header.is-sticky .NRj_interactive_header__btn {
            padding: 10px 24px;
            font-size: 14px;
        }

        .NRj_interactive_header__btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(9, 75, 145, 0.35);
            color: var(--NRj-white);
        }

        /* Hamburger */
        .NRj_interactive_header__hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 26px;
            height: 18px;
            cursor: pointer;
            z-index: 1001;
        }

        .NRj_interactive_header__hamburger span {
            display: block;
            height: 2px;
            width: 100%;
            background: var(--NRj-text-color);
            border-radius: 2px;
            transition: all 0.3s ease-in-out;
            transform-origin: left center;
        }

        .NRj_interactive_header__hamburger.active span:nth-child(1) {
            transform: rotate(45deg);
            background: var(--NRj-dark-blue);
        }

        .NRj_interactive_header__hamburger.active span:nth-child(2) {
            width: 0;
            opacity: 0;
        }

        .NRj_interactive_header__hamburger.active span:nth-child(3) {
            transform: rotate(-45deg);
            background: var(--NRj-dark-blue);
        }

        .NRj_interactive_header__mobile-top {
            display: none;
        }

        /* Desktop: make the mobile inner wrapper invisible to layout */
        .NRj_mobile_nav_inner {
            display: contents;
            /* Children behave as direct nav children — no layout impact */
        }

        /* Hide video on desktop */
        .NRj_mobile_nav_video {
            display: none;
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {

            /* Floating pill on mobile — 92% width */
            .NRj_interactive_header {
                top: 10px;
                width: 92%;
                overflow: visible;
                /* allow dropdown to show outside */
            }

            .NRj_interactive_header.is-hidden {
                top: -120px;
            }

            .NRj_interactive_header.is-sticky {
                top: 8px;
                width: 94%;
            }

            .NRj_interactive_header__container {
                padding: 0 16px;
                height: 64px;
            }

            .NRj_interactive_header__hamburger {
                display: flex;
            }

            /* Hide mobile-top logo (not needed in dropdown approach) */
            .NRj_interactive_header__mobile-top {
                display: none !important;
            }

            /* === MOBILE NAV: Top-to-bottom dropdown === */
            .NRj_interactive_header__nav {
                position: absolute;
                top: calc(100% + 10px);
                /* 10px gap below pill */
                left: 0;
                right: 0;
                width: 100%;
                max-height: 0;
                overflow: hidden;
                background: transparent;
                flex-direction: column;
                align-items: stretch;
                justify-content: flex-start;
                padding: 0;
                z-index: 998;
                transition: max-height 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
                border-radius: 0 0 14px 14px;
            }

           .NRj_interactive_header__nav.active {
    max-height: 90vh;
    overflow-y: auto;
    height: auto !important;
    border-radius: 14px !important;
}

            /* Inner wrapper with bg and video */
            .NRj_mobile_nav_inner {
                display: block;
                /* Override desktop display:contents */
                position: relative;
                padding: 20px 20px 30px;
                background: rgba(255, 255, 255, 0.97);
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                border-radius: 0 0 14px 14px;
                overflow: visible;
                /* Must be visible so all menu items show */
                box-shadow: 0 10px 40px rgba(9, 75, 145, 0.15);
                border: 1px solid var(--NRj-border);
                border-top: none;
            }

            /* Video background — show on mobile */
            .NRj_mobile_nav_video {
                display: block;
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                opacity: 0.08;
                pointer-events: none;
                z-index: 0;
            }

            /* All content above the video */
            .NRj_interactive_header__menu,
            .NRj_interactive_header__cta {
                position: relative;
                z-index: 1;
            }

            .NRj_interactive_header__menu {
                flex-direction: column;
                align-items: stretch;
                width: 100%;
                height: auto;
            }

            .NRj_interactive_header__item {
                margin: 0;
                border-bottom: 1px solid #edf2f7;
                height: auto;
                flex-wrap: wrap;
            }

            .NRj_interactive_header__item:last-child {
                border-bottom: none;
            }

            .NRj_interactive_header__link {
                padding: 15px 0;
                font-size: 15.5px;
                width: 100%;
                justify-content: space-between;
                color: var(--NRj-text-color);
            }

            /* Reset Hover for Mobile */
            .NRj_interactive_header__item:hover>.NRj_interactive_header__dropdown,
            .NRj_interactive_header__item:hover>.NRj_interactive_header__mega,
            .NRj_interactive_header__dropdown-item:hover>.NRj_interactive_header__sub-dropdown {
                opacity: 0;
                visibility: hidden;
                transform: none;
                pointer-events: none;
            }

            /* Mobile Dropdowns */
            .NRj_interactive_header__dropdown,
            .NRj_interactive_header__sub-dropdown {
                position: static;
                width: 100%;
                box-shadow: none;
                border: none;
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                transform: none;
                display: none;
                padding: 0 0 12px 14px;
                background: transparent;
                border-top: none;
            }

            .NRj_interactive_header__dropdown a {
                justify-content: flex-start;
                padding: 10px 16px;
                font-size: 14px;
            }

            .NRj_interactive_header__item.mobile-active>.NRj_interactive_header__dropdown,
            .NRj_interactive_header__dropdown-item.mobile-active>.NRj_interactive_header__sub-dropdown {
                display: block;
                opacity: 1 !important;
                visibility: visible !important;
                pointer-events: auto !important;
                animation: slideDown 0.3s ease forwards;
            }

            .NRj_interactive_header__item.mobile-active>.NRj_interactive_header__link {
                color: var(--NRj-primary-blue);
            }

            .NRj_interactive_header__item.mobile-active>.NRj_interactive_header__link i.fa-chevron-down {
                transform: rotate(180deg);
                color: var(--NRj-primary-blue);
            }

            .NRj_interactive_header__dropdown-item.mobile-active>a i.fa-angle-right {
                transform: rotate(90deg);
                color: var(--NRj-primary-blue);
            }

            /* Mobile Mega Menu */
            .NRj_interactive_header__mega {
                position: static;
                width: 100%;
                max-width: 100%;
                box-shadow: none;
                border: none;
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                transform: none;
                display: none;
                padding: 0;
                border-radius: 0;
            }

            .NRj_interactive_header__item.mobile-active>.NRj_interactive_header__mega {
                display: block;
                opacity: 1 !important;
                visibility: visible !important;
                pointer-events: auto !important;
                animation: slideDown 0.3s ease forwards;
            }

            .NRj_interactive_header__mega-container {
                flex-direction: column;
                min-height: auto;
            }

            /* Mobile Mega Menu Tabs as Horizontal Scroll Pills */
            .NRj_interactive_header__mega-sidebar {
                display: flex;
                flex-direction: row;
                overflow-x: auto;
                width: 100%;
                border-right: none;
                padding: 10px 0 14px 0;
                background: transparent;
                gap: 8px;
                -ms-overflow-style: none;
                scrollbar-width: none;
            }

            .NRj_interactive_header__mega-sidebar::-webkit-scrollbar {
                display: none;
            }

            .NRj_interactive_header__mega-tab {
                flex-shrink: 0;
                padding: 9px 16px;
                font-size: 13px;
                border-radius: 30px;
                border: 1px solid var(--NRj-border);
                background: #f0f4fa;
                margin: 0;
            }

            .NRj_interactive_header__mega-tab.active {
                box-shadow: none;
                color: #fff;
                background: var(--NRj-primary-blue);
                border-color: var(--NRj-primary-blue);
            }

            .NRj_interactive_header__mega-tab .arrow {
                display: none;
            }

            .NRj_interactive_header__mega-tab.active i:first-child {
                color: #fff;
            }

            .NRj_interactive_header__mega-content {
                padding: 0 0 10px 0;
            }

            .NRj_interactive_header__mega-panel {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
                padding: 0;
            }

            .NRj_interactive_header__mega-panel.active {
                display: block;
                animation: slideDown 0.3s ease forwards;
            }

            .NRj_interactive_header__mega-panel-inner {
                flex-direction: column;
            }

            .NRj_interactive_header__mega-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .NRj_interactive_header__mega-link {
                padding: 10px;
                border: 1px solid var(--NRj-border);
            }

            .NRj_interactive_header__mega-highlight {
                width: 100%;
                box-sizing: border-box;
                margin-top: 16px;
            }

            .NRj_interactive_header__cta {
                margin: 20px 0 0 0;
                text-align: center;
            }

            .NRj_interactive_header__btn {
                width: 100%;
                box-sizing: border-box;
                padding: 14px;
            }
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


/* New Header End */



    </style>
    <!-- New Header -->


<style>
/* ═══ RESET ═══ */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box;}

/* ═══ TOP MARQUEE ═══ */
.top-marquee{
  background:linear-gradient(90deg,#0b1b98,#1a2bb8);
  color:#fff;padding:8px 16px;
  display:flex;align-items:center;gap:12px;
  font-size:12px;font-weight:500;
  overflow:hidden;position:relative;z-index:1001;
  display: none;
}
.marquee-content{flex:1;overflow:hidden;white-space:nowrap;}
.marquee-content span{
  display:inline-block;
  animation:mRun 28s linear infinite;
  padding-left:100%;
}
.marquee-content span i{margin:0 8px;color:#ffd700;}
.top-marquee:hover .marquee-content span{animation-play-state:paused;}
@keyframes mRun{0%{transform:translateX(0);}100%{transform:translateX(-100%);}}

/* ═══════════════════════════════════════
   HERO SECTION  — Mindset Health exact
═══════════════════════════════════════ */
.hero{
  position:relative;
  min-height:calc(100vh - 42px); /* subtract marquee */
  background:#f9f9fb;
  overflow:hidden;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  text-align:center;
  padding:80px 24px 60px;
}

/* Grid BG */
.hero::before{
  content:'';position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(170,175,210,0.17) 1px,transparent 1px),
    linear-gradient(90deg,rgba(170,175,210,0.17) 1px,transparent 1px);
  background-size:44px 44px;z-index:0;pointer-events:none;
}
/* Purple glow */
.hero::after{
  content:'';position:absolute;
  top:38%;left:50%;transform:translate(-50%,-50%);
  width:700px;height:420px;
  background:radial-gradient(ellipse,rgba(120,80,255,0.09) 0%,transparent 66%);
  z-index:0;pointer-events:none;
}

/* Greeting chip */
.hero-chip{
  position:relative;z-index:3;
  display:inline-flex;align-items:center;gap:8px;
  background:#fff;border:1.5px solid #e5e8f2;border-radius:50px;
  padding:7px 20px;font-size:13.5px;font-weight:500;color:#444;
  box-shadow:0 2px 14px rgba(0,0,0,0.07);
  margin-bottom:28px;
  animation:fadeUp 0.65s ease both;
}
.chip-dot{
  width:8px;height:8px;border-radius:50%;
  background:linear-gradient(135deg,#0b1b98,#4f6bff);
  flex-shrink:0;
}

/* ── GIANT HEADLINE ── */
.hero-headline{
  position:relative;z-index:3;
  margin-bottom:24px;
  animation:fadeUp 0.75s ease 0.08s both;
}
.hl-line {
    font-family: inherit;
    font-weight: 800;
    line-height: 1em;
    letter-spacing: -2.5px;
    display: block;
}
/* Line 1: solid black */
.hl-1{
  font-size:clamp(54px,8.5vw,96px);
  color:#111;
  display:flex;align-items:center;justify-content:center;gap:16px;
}
/* Line 2: outlined / gray — like "For IBS & Chronic" */
.hl-2{
  font-size:clamp(50px,8vw,90px);
  -webkit-text-stroke:2.5px #c0c0c0;
  color:transparent;
}
/* Line 3: solid black again */
.hl-3{
  font-size:clamp(54px,8.5vw,96px);
  color:#111;
}
/* Line 4: italic medium grey */
.hl-4{
  font-size:clamp(46px,7vw,82px);
  color:#c8c8c8;
  font-style:italic;
}

/* Arrow CTA inside headline */
.hl-arrow{
  width:clamp(54px,6vw,72px);height:clamp(54px,6vw,72px);
  background:#111;border:none;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  cursor:pointer;flex-shrink:0;
  transition:transform 0.22s,background 0.22s;
}
.hl-arrow:hover{background:#0b1b98;transform:rotate(45deg) scale(1.07);}
.hl-arrow svg{
  width:clamp(22px,3vw,30px);height:clamp(22px,3vw,30px);
  stroke:#fff;stroke-width:2.2;fill:none;
  stroke-linecap:round;stroke-linejoin:round;
}

/* Sub-text */
.hero-sub{
  position:relative;z-index:3;
  font-size:15.5px;color:#777;
  max-width:80%;line-height:1.65;
  margin-bottom:34px;
  animation:fadeUp 0.8s ease 0.14s both;
}


/* ── FLOATING CARDS ── */
.fc{
  position:absolute;z-index:5;
  background:#fff;border-radius:16px;
  box-shadow:0 6px 30px rgba(0,0,0,0.10);
  padding:11px 15px;
  border:1px solid rgba(0,0,0,0.05);
  display:flex;align-items:center;gap:10px;
  animation:floatY 4s ease-in-out infinite;
}
@keyframes floatY{0%,100%{transform:translateY(0);}50%{transform:translateY(-9px);}}

.fc-av{
  width:38px;height:38px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:11px;font-weight:700;color:#fff;flex-shrink:0;
  background:linear-gradient(135deg,#667eea,#764ba2);
}
.fc-title{font-size:15px;font-weight:700;color:#111;white-space:nowrap;}
.fc-sub{font-size:13px;color:#999;white-space:nowrap;}
.fc-sub2{font-size:14px;color:#333;font-weight:600;margin-top:3px;}

/* Positions — same corners as Mindset Health */
.fc-tl{top:18%;left:3%;animation-delay:0s;}
.fc-tr{top:18%;right:3%;animation-delay:0.9s;}
.fc-bl{bottom:22%;left:3%;animation-delay:0.45s;}
.fc-br{bottom:22%;right:3%;animation-delay:1.3s;}

/* ── APPOINTMENT-STYLE FLOATING CARD (center) ── */

.appt-top{font-size:9.5px;opacity:.72;margin-bottom:5px;font-weight:500;}
.appt-name{font-size:15px;font-weight:700;margin-bottom:9px;}
.appt-tags{display:flex;gap:6px;margin-bottom:11px;flex-wrap:wrap;}
.appt-tag{
  background:rgba(255,255,255,.18);border-radius:20px;
  padding:3px 11px;font-size:10px;font-weight:600;
}
.appt-time{font-size:11px;opacity:.82;display:flex;align-items:center;gap:5px;}

@keyframes fadeUp{
  from{opacity:0;transform:translateY(22px);}
  to{opacity:1;transform:translateY(0);}
}

/* ── Responsive ── */
@media(max-width:900px){
  .fc-tl,.fc-bl{left:8%;}
  .fc-tr,.fc-br{right:8%;}
}
@media(max-width:700px){
  .hero{padding:50px 16px 50px;}
  .hl-1{font-size:clamp(42px,11vw,68px);letter-spacing:-2px;gap:10px;}
  .hl-2{font-size:clamp(38px,10vw,62px);}
  .hl-3{font-size:clamp(42px,11vw,68px);}
  .hl-4{font-size:clamp(34px,9vw,56px);}
  .hl-arrow{width:44px;height:44px;}
  .hero-sub{font-size:14.5px;}
}

/* ═══ QUOTE MODAL ═══ */
.q-modal{
  display:none;position:fixed;inset:0;
  background:rgba(0,0,0,0.78);backdrop-filter:blur(8px);
  z-index:9999;align-items:center;justify-content:center;
}
.q-modal.open{display:flex;}
.q-box{
  background:#fff;border-radius:24px;max-width:480px;width:90%;
  max-height:90vh;overflow-y:auto;position:relative;
  box-shadow:0 24px 56px rgba(0,0,0,0.28);
  animation:slideUp 0.3s ease;
}
.q-box::-webkit-scrollbar{width:0;}
@keyframes slideUp{
  from{transform:translateY(48px);opacity:0;}
  to{transform:translateY(0);opacity:1;}
}
.q-head{padding:20px 24px 16px;border-bottom:1px solid #eef2ff;position:relative;}
.q-head h2{font-size:1.2rem;font-weight:700;text-align:center;margin-bottom:5px;color:#111;}
.q-head p{font-size:0.84rem;color:#888;text-align:center;margin:0;}
.q-close{
  position:absolute;top:16px;right:20px;
  background:#f1f5f9;border:none;width:32px;height:32px;
  border-radius:50%;font-size:18px;cursor:pointer;color:#555;
  display:flex;align-items:center;justify-content:center;
  transition:all 0.25s;
}
.q-close:hover{background:#e2e8f0;transform:rotate(90deg);}
.q-body{padding:18px 24px 24px;}
.fg{margin-bottom:10px;}
.fg input,.fg select,.fg textarea{
  width:100%;padding:11px 15px;
  border:1.5px solid #e2e8f0;border-radius:8px;
  font-size:0.85rem;font-family:'DM Sans',sans-serif;
  background:#f8fafc;color:#1a2c3e;transition:all 0.25s;
}
.fg input:focus,.fg select:focus,.fg textarea:focus{
  outline:none;border-color:#0b1b98;
  box-shadow:0 0 0 3px rgba(11,27,152,0.10);background:#fff;
}
.fg textarea{resize:vertical;min-height:88px;}
.fg-check{display:flex;align-items:flex-start;gap:9px;margin:12px 0;}
.fg-check input{width:17px;height:17px;margin-top:2px;cursor:pointer;flex-shrink:0;}
.fg-check label{font-size:0.82rem;line-height:1.5;color:#444;cursor:pointer;}
.fg-check label a{color:#0b1b98;}
.q-submit{
  width:100%;background:linear-gradient(135deg,#0b1b98,#1a2bb8);
  color:#fff;border:none;padding:14px;border-radius:50px;
  font-size:1rem;font-weight:600;cursor:pointer;
  font-family:'DM Sans',sans-serif;
  display:flex;align-items:center;justify-content:center;gap:8px;
  transition:all 0.25s;
}
.q-submit:hover{transform:translateY(-2px);box-shadow:0 8px 20px rgba(11,27,152,0.28);}
.q-success{text-align:center;padding:40px 20px;}
.q-success i{font-size:56px;color:#10b981;display:block;margin-bottom:14px;}
.q-success h3{font-size:1.5rem;color:#111;margin-bottom:8px;}
.q-success p{color:#777;margin-bottom:20px;}
.q-sclose{
  background:#0b1b98;color:#fff;border:none;
  padding:11px 28px;border-radius:40px;font-weight:600;cursor:pointer;
  font-family:'DM Sans',sans-serif;
}
</style>