/*
 * MyClinicalTrial - New UI Design System
  * Based on Figma Make design by Sam
   * Applied to: PublicPage/index.html, MCT_AboutUs.html, MCT_FAQs.html, ContactUs.aspx
    *
     * Design tokens:
      *   Primary Blue:    #2563eb
       *   Dark Blue:       #1e3a8a
        *   Purple:          #7c3aed
         *   Pink/Red:        #db2777
          *   Hero Red:        #ef4444
           *   Dark Text:       #1a1a2e
            *   Gray Text:       #6b7280
             *   Light BG:        #f3f4f6
              *   Page BG:         #f8f9fa
               *   Border:          #e5e7eb
                *   Font:            Inter (Google Fonts)
                 */

                 /* ========================
                    GLOBAL RESET
                       ======================== */
                       *, *::before, *::after {
                           box-sizing: border-box;
                               margin: 0;
                                   padding: 0;
                                   }

                                   html {
                                       scroll-behavior: smooth;
                                       }

                                       body {
                                           font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
                                               color: #1a1a2e;
                                                   background-color: #f8f9fa;
                                                       line-height: 1.5;
                                                           -webkit-font-smoothing: antialiased;
                                                           }

                                                           a {
                                                               text-decoration: none;
                                                                   color: inherit;
                                                                       transition: color 0.2s;
                                                                       }

                                                                       img {
                                                                           max-width: 100%;
                                                                               height: auto;
                                                                                   display: block;
                                                                                   }

                                                                                   /* ========================
                                                                                      TYPOGRAPHY
                                                                                         ======================== */
                                                                                         h1, h2, h3, h4, h5, h6 {
                                                                                             font-weight: 700;
                                                                                                 line-height: 1.2;
                                                                                                     color: #1a1a2e;
                                                                                                     }

                                                                                                     p {
                                                                                                         color: #4b5563;
                                                                                                             line-height: 1.7;
                                                                                                             }

                                                                                                             /* ========================
                                                                                                                MCT NAVBAR
                                                                                                                   ======================== */
                                                                                                                   .mct-navbar {
                                                                                                                       background: #ffffff;
                                                                                                                           box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
                                                                                                                               position: sticky;
                                                                                                                                   top: 0;
                                                                                                                                       z-index: 1000;
                                                                                                                                           padding: 0 2rem;
                                                                                                                                               height: 70px;
                                                                                                                                                   display: flex;
                                                                                                                                                       align-items: center;
                                                                                                                                                           justify-content: space-between;
                                                                                                                                                           }

                                                                                                                                                           .mct-navbar .navbar-brand {
                                                                                                                                                               display: flex;
                                                                                                                                                                   align-items: center;
                                                                                                                                                                       gap: 0.5rem;
                                                                                                                                                                       }

                                                                                                                                                                       .mct-navbar .navbar-brand img {
                                                                                                                                                                           height: 40px;
                                                                                                                                                                               width: auto;
                                                                                                                                                                               }

                                                                                                                                                                               .mct-navbar .brand-text {
                                                                                                                                                                                   font-size: 1.35rem;
                                                                                                                                                                                       font-weight: 700;
                                                                                                                                                                                           color: #1a1a2e;
                                                                                                                                                                                           }

                                                                                                                                                                                           .mct-navbar .brand-text em {
                                                                                                                                                                                               font-style: italic;
                                                                                                                                                                                                   color: #2563eb;
                                                                                                                                                                                                   }

                                                                                                                                                                                                   .mct-navbar .nav-links {
                                                                                                                                                                                                       display: flex;
                                                                                                                                                                                                           align-items: center;
                                                                                                                                                                                                               gap: 2rem;
                                                                                                                                                                                                               }

                                                                                                                                                                                                               .mct-navbar .nav-links a {
                                                                                                                                                                                                                   font-size: 0.95rem;
                                                                                                                                                                                                                       font-weight: 500;
                                                                                                                                                                                                                           color: #374151;
                                                                                                                                                                                                                               transition: color 0.2s;
                                                                                                                                                                                                                                   position: relative;
                                                                                                                                                                                                                                   }

                                                                                                                                                                                                                                   .mct-navbar .nav-links a::after {
                                                                                                                                                                                                                                       content: '';
                                                                                                                                                                                                                                           position: absolute;
                                                                                                                                                                                                                                               bottom: -3px;
                                                                                                                                                                                                                                                   left: 0;
                                                                                                                                                                                                                                                       width: 0;
                                                                                                                                                                                                                                                           height: 2px;
                                                                                                                                                                                                                                                               background: #2563eb;
                                                                                                                                                                                                                                                                   transition: width 0.2s;
                                                                                                                                                                                                                                                                   }

                                                                                                                                                                                                                                                                   .mct-navbar .nav-links a:hover,
                                                                                                                                                                                                                                                                   .mct-navbar .nav-links a.active {
                                                                                                                                                                                                                                                                       color: #2563eb;
                                                                                                                                                                                                                                                                       }

                                                                                                                                                                                                                                                                       .mct-navbar .nav-links a:hover::after,
                                                                                                                                                                                                                                                                       .mct-navbar .nav-links a.active::after {
                                                                                                                                                                                                                                                                           width: 100%;
                                                                                                                                                                                                                                                                           }

                                                                                                                                                                                                                                                                           .mct-navbar .btn-login,
                                                                                                                                                                                                                                                                           .btn-login {
                                                                                                                                                                                                                                                                               background: #2563eb;
                                                                                                                                                                                                                                                                                   color: #fff !important;
                                                                                                                                                                                                                                                                                       border: none;
                                                                                                                                                                                                                                                                                           border-radius: 8px;
                                                                                                                                                                                                                                                                                               padding: 0.55rem 1.25rem;
                                                                                                                                                                                                                                                                                                   font-size: 0.9rem;
                                                                                                                                                                                                                                                                                                       font-weight: 600;
                                                                                                                                                                                                                                                                                                           cursor: pointer;
                                                                                                                                                                                                                                                                                                               transition: background 0.2s, transform 0.1s;
                                                                                                                                                                                                                                                                                                                   display: inline-block;
                                                                                                                                                                                                                                                                                                                       white-space: nowrap;
                                                                                                                                                                                                                                                                                                                       }

                                                                                                                                                                                                                                                                                                                       .mct-navbar .btn-login:hover,
                                                                                                                                                                                                                                                                                                                       .btn-login:hover {
                                                                                                                                                                                                                                                                                                                           background: #1d4ed8;
                                                                                                                                                                                                                                                                                                                               transform: translateY(-1px);
                                                                                                                                                                                                                                                                                                                               }

                                                                                                                                                                                                                                                                                                                               /* ========================
                                                                                                                                                                                                                                                                                                                                  PAGE HERO (inner pages)
                                                                                                                                                                                                                                                                                                                                     ======================== */
                                                                                                                                                                                                                                                                                                                                     .page-hero {
                                                                                                                                                                                                                                                                                                                                         background: linear-gradient(135deg, #1e3a8a 0%, #3b30c4 60%, #7c3aed 100%);
                                                                                                                                                                                                                                                                                                                                             padding: 4rem 2rem;
                                                                                                                                                                                                                                                                                                                                             }

                                                                                                                                                                                                                                                                                                                                             .page-hero .hero-inner {
                                                                                                                                                                                                                                                                                                                                                 max-width: 1200px;
                                                                                                                                                                                                                                                                                                                                                     margin: 0 auto;
                                                                                                                                                                                                                                                                                                                                                     }

                                                                                                                                                                                                                                                                                                                                                     .page-hero .hero-badge {
                                                                                                                                                                                                                                                                                                                                                         display: inline-flex;
                                                                                                                                                                                                                                                                                                                                                             align-items: center;
                                                                                                                                                                                                                                                                                                                                                                 gap: 0.5rem;
                                                                                                                                                                                                                                                                                                                                                                     background: rgba(255, 255, 255, 0.15);
                                                                                                                                                                                                                                                                                                                                                                         border: 1px solid rgba(255, 255, 255, 0.25);
                                                                                                                                                                                                                                                                                                                                                                             color: #fff;
                                                                                                                                                                                                                                                                                                                                                                                 border-radius: 50px;
                                                                                                                                                                                                                                                                                                                                                                                     padding: 0.4rem 1rem;
                                                                                                                                                                                                                                                                                                                                                                                         font-size: 0.85rem;
                                                                                                                                                                                                                                                                                                                                                                                             font-weight: 500;
                                                                                                                                                                                                                                                                                                                                                                                                 margin-bottom: 1.25rem;
                                                                                                                                                                                                                                                                                                                                                                                                     backdrop-filter: blur(4px);
                                                                                                                                                                                                                                                                                                                                                                                                     }

                                                                                                                                                                                                                                                                                                                                                                                                     .page-hero h1 {
                                                                                                                                                                                                                                                                                                                                                                                                             font-size: 2.75rem;
                                                                                                                                                                                                                                                                                                                                                                                                                 font-weight: 800;
                                                                                                                                                                                                                                                                                                                                                                                                                     color: #fff;
                                                                                                                                                                                                                                                                                                                                                                                                                         margin-bottom: 1rem;
                                                                                                                                                                                                                                                                                                                                                                                                                         }

                                                                                                                                                                                                                                                                                                                                                                                                                         .page-hero p {
                                                                                                                                                                                                                                                                                                                                                                                                                                 font-size: 1.1rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                     color: rgba(255, 255, 255, 0.85);
                                                                                                                                                                                                                                                                                                                                                                                                                                         max-width: 650px;
                                                                                                                                                                                                                                                                                                                                                                                                                                             line-height: 1.7;
                                                                                                                                                                                                                                                                                                                                                                                                                                             }

                                                                                                                                                                                                                                                                                                                                                                                                                                             /* ========================
                                                                                                                                                                                                                                                                                                                                                                                                                                                BUTTONS
                                                                                                                                                                                                                                                                                                                                                                                                                                                   ======================== */
                                                                                                                                                                                                                                                                                                                                                                                                                                                   .btn-primary-hero {
                                                                                                                                                                                                                                                                                                                                                                                                                                                           background: #ef4444;
                                                                                                                                                                                                                                                                                                                                                                                                                                                               color: #fff;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                   border: none;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                       border-radius: 8px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                           padding: 0.85rem 1.75rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                               font-size: 1rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   font-weight: 700;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       cursor: pointer;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           display: inline-flex;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               align-items: center;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   gap: 0.5rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       transition: background 0.2s, transform 0.1s;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           font-family: inherit;
                                                                                                                                                                                                                                                                                                                                                                                                                                                   }

                                                                                                                                                                                                                                                                                                                                                                                                                                                   .btn-primary-hero:hover {
                                                                                                                                                                                                                                                                                                                                                                                                                                                       background: #dc2626;
                                                                                                                                                                                                                                                                                                                                                                                                                                                           transform: translateY(-1px);
                                                                                                                                                                                                                                                                                                                                                                                                                                                               color: #fff;
                                                                                                                                                                                                                                                                                                                                                                                                                                                   }

                                                                                                                                                                                                                                                                                                                                                                                                                                                   .btn-secondary-hero {
                                                                                                                                                                                                                                                                                                                                                                                                                                                       background: rgba(255, 255, 255, 0.12);
                                                                                                                                                                                                                                                                                                                                                                                                                                                           color: #fff;
                                                                                                                                                                                                                                                                                                                                                                                                                                                               border: 1.5px solid rgba(255, 255, 255, 0.4);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                   border-radius: 8px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                       padding: 0.85rem 1.75rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                           font-size: 1rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                               font-weight: 600;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   cursor: pointer;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       backdrop-filter: blur(4px);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           transition: background 0.2s;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               display: inline-block;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   font-family: inherit;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   .btn-secondary-hero:hover {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       background: rgba(255, 255, 255, 0.22);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           color: #fff;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   /* ========================
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      FEATURE / INFO CARDS
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ======================== */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         .feature-card,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         .info-card,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         .value-card,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         .contact-card,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         .stat-card {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 background: #fff;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     border-radius: 12px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         border: 1px solid #e5e7eb;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 transition: box-shadow 0.2s, transform 0.2s;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 .feature-card:hover,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 .value-card:hover {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             transform: translateY(-2px);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             /* ========================
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ICON CONTAINERS
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ======================== */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   .feature-icon,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   .value-icon,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   .info-card-icon,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   .contact-card-icon,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   .category-icon {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       width: 48px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           height: 48px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               border-radius: 10px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   background: #eff6ff;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       color: #2563eb;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           display: flex;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               align-items: center;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   justify-content: center;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       font-size: 1.4rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           flex-shrink: 0;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   /* ========================
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      CTA SECTION
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ======================== */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         .mct-cta {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             background: linear-gradient(135deg, #1e3a8a 0%, #3b30c4 50%, #7c3aed 100%);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 padding: 5rem 2rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     text-align: center;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     .mct-cta h2 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         font-size: 2.25rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             font-weight: 800;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 color: #fff;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     margin-bottom: 1rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     .mct-cta p {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         font-size: 1.05rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             color: rgba(255, 255, 255, 0.85);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 margin-bottom: 2rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     max-width: 500px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         margin-left: auto;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             margin-right: auto;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             .mct-cta .cta-actions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     display: flex;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         justify-content: center;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             gap: 1rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 flex-wrap: wrap;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 /* ========================
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    FOOTER
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ======================== */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       .mct-footer {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               background: #111827;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   color: rgba(255, 255, 255, 0.7);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       padding: 3rem 2rem 1.5rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       .footer-container {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               max-width: 1200px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   margin: 0 auto;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   .footer-top {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           display: grid;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               grid-template-columns: 2fr 1fr 1fr 1fr;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   gap: 3rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       margin-bottom: 2.5rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       .footer-brand .brand-text {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           font-size: 1.2rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               font-weight: 700;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   color: #fff;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       margin-bottom: 0.75rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           display: block;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       .footer-brand p {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               font-size: 0.9rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   line-height: 1.6;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       color: rgba(255, 255, 255, 0.6);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       .footer-col h4 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           font-size: 0.85rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               font-weight: 700;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   color: #fff;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       margin-bottom: 1rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           text-transform: uppercase;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               letter-spacing: 0.06em;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               .footer-col ul {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       list-style: none;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               .footer-col ul li {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   margin-bottom: 0.65rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   .footer-col ul li a {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           font-size: 0.875rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               color: rgba(255, 255, 255, 0.6);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   transition: color 0.2s;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   .footer-col ul li a:hover {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       color: #fff;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       .footer-bottom {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               border-top: 1px solid rgba(255, 255, 255, 0.1);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   padding-top: 1.5rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       display: flex;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           justify-content: space-between;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               align-items: center;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   flex-wrap: wrap;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       gap: 0.5rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       .footer-bottom p {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               font-size: 0.85rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   color: rgba(255, 255, 255, 0.5);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   /* ========================
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      RESPONSIVE
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ======================== */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         @media (max-width: 1024px) {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 .footer-top {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         grid-template-columns: 1fr 1fr;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             @media (max-width: 768px) {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     .page-hero h1 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 font-size: 2rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         .mct-cta h2 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     font-size: 1.75rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         @media (max-width: 640px) {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 .mct-navbar .nav-links {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             display: none;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     .mct-navbar {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             padding: 0 1rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     .footer-top {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             grid-template-columns: 1fr;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         .footer-bottom {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     flex-direction: column;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             text-align: center;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         /* ========================
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            UTILITY CLASSES
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ======================== */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               .section-container {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       max-width: 1200px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           margin: 0 auto;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           .mct-section {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   padding: 5rem 2rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   .mct-section.bg-light {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           background: #f3f4f6;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           .section-header {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   text-align: center;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       margin-bottom: 3rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       .section-header h2 {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               font-size: 2rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   font-weight: 800;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       color: #1a1a2e;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           margin-bottom: 0.75rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       .section-header p {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               font-size: 1.05rem;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   color: #6b7280;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       max-width: 600px;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           margin: 0 auto;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       }

/* ============================================================
   STAGE-1 ADDITIONS: MasterPage Navbar, Hero, Cards, Footer,
   Search Wrapper, Telerik Overrides, Responsive
   (Required by stages 2-7 — do not remove)
   ============================================================ */

/* === MASTERPAGE NAVBAR === */
.mct-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.mct-navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mct-navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a2e;
  text-decoration: none;
}
.mct-navbar-brand em {
  color: #2563eb;
  font-style: normal;
}
.mct-navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.mct-navbar-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: color 0.2s;
}
.mct-navbar-links a:hover,
.mct-navbar-links a.active {
  color: #2563eb;
}

/* === MOBILE HAMBURGER (hidden by default) === */
.mct-navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.mct-navbar-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #374151;
  margin: 5px 0;
  transition: 0.2s;
}

/* === PAGE HERO (reusable) === */
.mct-page-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 50%, #db2777 100%);
  padding: 4rem 2rem;
}
.mct-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.mct-page-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.mct-page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  line-height: 1.6;
}

/* === FORM CARD WRAPPER === */
.mct-form-card-wrapper {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 2rem;
}
.mct-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.mct-success-msg {
  color: #16a34a;
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.mct-register-form label {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  display: block;
  margin: 0.75rem 0 0.3rem;
}
.mct-register-form input[type="text"],
.mct-register-form input[type="email"],
.mct-register-form select,
.mct-register-form textarea {
  width: 100%;
  padding: 0.65rem 1rem;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: 'Inter', -apple-system, sans-serif;
  color: #1a1a2e;
  background: #f9fafb;
  transition: border-color 0.2s;
}
.mct-register-form input:focus,
.mct-register-form select:focus,
.mct-register-form textarea:focus {
  outline: none;
  border-color: #2563eb;
  background: #fff;
}

/* === SEARCH WRAPPER === */
.mct-search-wrapper {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 2rem;
}

/* === FOOTER === */
.mct-footer {
  background: #111827;
  color: rgba(255,255,255,0.7);
  padding: 3rem 2rem 1.5rem;
  margin-top: 0;
}
.mct-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.mct-footer p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.mct-footer-links {
  display: flex;
  gap: 1.5rem;
}
.mct-footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}
.mct-footer-links a:hover {
  color: #fff;
}

/* === TELERIK RADGRID OVERRIDES === */
.RadGrid,
.RadGrid table {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-size: 0.875rem;
}
.RadGrid .rgHeader {
  background: #f3f4f6 !important;
  color: #374151 !important;
  font-weight: 600 !important;
  border-color: #e5e7eb !important;
  padding: 0.6rem 0.75rem !important;
}
.RadGrid .rgRow td {
  border-color: #e5e7eb !important;
  padding: 0.55rem 0.75rem !important;
  color: #374151 !important;
}
.RadGrid .rgAltRow td {
  background: #f9fafb !important;
  border-color: #e5e7eb !important;
  color: #374151 !important;
}
.RadGrid .rgRow:hover td,
.RadGrid .rgAltRow:hover td {
  background: #eff6ff !important;
}
.RadGrid .rgPager {
  background: #f3f4f6 !important;
  border-color: #e5e7eb !important;
  padding: 0.5rem !important;
}

/* === PAGE-LEVEL CONTENT WRAPPER === */
.mct-page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* === AUTH / LOGIN CARD === */
.mct-auth-wrapper {
  max-width: 480px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}
.mct-auth-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  text-align: center;
}
.mct-auth-icon {
  width: 56px;
  height: 56px;
  background: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #fff;
  font-size: 1.5rem;
}
.mct-auth-card h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.4rem;
}
.mct-auth-card p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}
.mct-tab-switcher {
  display: flex;
  background: #f3f4f6;
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 1.5rem;
}
.mct-tab-switcher a {
  flex: 1;
  text-align: center;
  padding: 0.45rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #6b7280;
  text-decoration: none;
  transition: all 0.2s;
}
.mct-tab-switcher a.active {
  background: #fff;
  color: #1a1a2e;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* === RESPONSIVE BREAKPOINTS === */
@media (max-width: 1024px) {
  .mct-navbar-inner { padding: 0 1.5rem; }
  .mct-navbar-links { gap: 1.5rem; }
}

@media (max-width: 768px) {
  .mct-navbar-toggle { display: block; }
  .mct-navbar-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem 2rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    gap: 0.25rem;
    z-index: 999;
  }
  .mct-navbar-links.open { display: flex; }
  .mct-navbar-links a { padding: 0.6rem 0; width: 100%; }
  .mct-page-hero { padding: 2.5rem 1.5rem; }
  .mct-page-hero h1 { font-size: 1.75rem; }
  .mct-form-card-wrapper { padding: 0 1rem; }
  .mct-form-card { padding: 1.5rem; }
  .mct-search-wrapper { padding: 0 1rem; }
  .mct-footer-inner { flex-direction: column; text-align: center; }
  .mct-footer-links { justify-content: center; flex-wrap: wrap; }
  .mct-auth-wrapper { padding: 0 1rem; }
}

@media (max-width: 480px) {
  .mct-page-hero h1 { font-size: 1.5rem; }
  .mct-auth-card { padding: 1.75rem 1.25rem; }
}

/* ===== BATCH-3 UI RESTYLE ADDITIONS ===== */

/* Sub-navigation control */
.mct-subnav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: #ffffff;
    border-left: 3px solid #2563eb;
    border-radius: 0 8px 8px 0;
}
.mct-subnav-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.25rem 0;
    transition: color 0.2s;
}
.mct-subnav-link:hover {
    color: #1e3a8a;
    text-decoration: underline;
}

/* Form element styles */
.mct-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #374151;
    margin-bottom: 0.35rem;
}
.mct-input {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    background: #f9fafb;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.mct-input:focus {
    outline: none;
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.mct-field-group {
    margin-bottom: 1.2rem;
}
.mct-error {
    color: #dc2626;
    font-size: 0.85rem;
    display: block;
    margin-top: 0.25rem;
}
.mct-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}
.mct-link:hover {
    color: #1e3a8a;
    text-decoration: underline;
}
.mct-btn-secondary {
    background: #ffffff;
    color: #2563eb;
    border: 2px solid #2563eb;
    border-radius: 8px;
    padding: 0.7rem 1.8rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-left: 0.75rem;
}
.mct-btn-secondary:hover {
    background: #eff6ff;
    border-color: #1e3a8a;
    color: #1e3a8a;
}
.mct-radio-group {
    display: flex;
    gap: 1.5rem;
    padding: 0.5rem 0;
}
/* Login/form page centered layout */
.mct-form-card-wrapper {
    max-width: 480px;
    margin: 0 auto;
}

/* ============
   MCT Admin Styles
   ============ */
.mct-page-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 100%);
    padding: 2rem 2.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}
.mct-hero-content { max-width: 1200px; margin: 0 auto; }
.mct-hero-title { font-size: 1.8rem; font-weight: 700; color: #fff; margin: 0; }
.mct-hero-subtitle { font-size: 1rem; color: rgba(255,255,255,0.85); margin-top: 0.5rem; }
.mct-admin-form { max-width: 900px; background: #fff; border-radius: 10px; padding: 1.5rem 2rem; box-shadow: 0 2px 10px rgba(0,0,0,0.07); margin: 0 1rem 1.5rem; }
.mct-admin-header { display: flex; align-items: center; padding-bottom: 1rem; margin-bottom: 1.25rem; border-bottom: 2px solid #e5e7eb; }
.mct-admin-header h2 { font-size: 1.35rem; font-weight: 700; color: #1e3a8a; margin: 0; }
.mct-grid { width: 100%; border-collapse: collapse; background: #fff; border-radius: 8px; box-shadow: 0 1px 6px rgba(0,0,0,0.06); margin-bottom: 1rem; }
.mct-grid th { background: #1e3a8a; color: #fff; padding: 0.65rem 1rem; text-align: left; font-weight: 600; }
.mct-grid td { padding: 0.6rem 1rem; border-bottom: 1px solid #f1f5f9; }
.mct-grid tr:hover td { background: #eff6ff; }
.mct-security-nav { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 1rem 0; }
.mct-nav-link { display: inline-block; padding: 0.45rem 1rem; background: #eff6ff; color: #2563eb; border-radius: 6px; font-size: 0.9rem; font-weight: 500; }
.mct-nav-link:hover { background: #2563eb; color: #fff; }
.mct-btn { display: inline-block; background: #2563eb; color: #fff; border: none; border-radius: 8px; padding: 0.65rem 1.6rem; font-size: 0.95rem; font-weight: 600; cursor: pointer; }
.mct-btn:hover { background: #1e3a8a; }
.mct-btn-danger { display: inline-block; background: #dc2626; color: #fff; border: none; border-radius: 8px; padding: 0.65rem 1.6rem; font-size: 0.95rem; font-weight: 600; cursor: pointer; }
.mct-btn-danger:hover { background: #b91c1c; }

/* ===== Admin Top Navigation Tabs (NavTabControl.ascx) ===== */
.mct-topnav-wrap {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    width: 100%;
}
.mct-topnav-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    padding: 0 1rem;
    max-width: 100%;
    overflow-x: auto;
}
a.mct-topnav-link,
.mct-topnav-inner a.mct-topnav-link {
    display: inline-flex;
    align-items: center;
    color: #374151;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    transition: color 0.15s, border-color 0.15s;
}
a.mct-topnav-link:hover,
.mct-topnav-inner a.mct-topnav-link:hover {
    color: #2563eb;
    border-bottom-color: #2563eb;
    background: #eff6ff;
}
a.mct-topnav-link.selected,
a.mct-topnav-link.active,
.mct-topnav-inner a.mct-topnav-link.selected {
    color: #2563eb;
    border-bottom-color: #2563eb;
    font-weight: 600;
}
a.mct-topnav-link span { pointer-events: none; }

/* ===== Public Sidebar Navigation (MasterPage.master) ===== */
.mct-public-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 0.75rem;
    background: #f8fafc;
    border-right: 1px solid #e5e7eb;
    min-width: 180px;
}
.mct-public-sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.625rem 0.875rem;
    border-radius: 6px;
    border-left: 3px solid transparent;
    transition: all 0.15s;
}
.mct-public-sidebar-link:hover {
    color: #2563eb;
    background: #eff6ff;
    border-left-color: #2563eb;
}
.mct-public-sidebar-link svg {
    flex-shrink: 0;
    color: #6b7280;
}
.mct-public-sidebar-link:hover svg {
    color: #2563eb;
}
.mct-public-sidebar-link.active {
    color: #2563eb;
    background: #eff6ff;
    border-left-color: #2563eb;
    font-weight: 600;
}
.mct-public-sidebar-link.active svg {
    color: #2563eb;
}

/* ===== Auth Page (Login/Register) ===== */
.mct-auth-toggle-wrap {
    display: flex;
    justify-content: center;
    padding: 2rem 1rem 0;
}
.mct-auth-toggle {
    display: flex;
    background: #e5e7eb;
    border-radius: 50px;
    padding: 4px;
    gap: 2px;
}
.mct-auth-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    min-width: 100px;
}
.mct-auth-tab-active,
.mct-auth-tab.mct-auth-tab-active {
    background: #ffffff;
    color: #111827;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.mct-auth-tab:hover:not(.mct-auth-tab-active) {
    color: #374151;
}

/* Login card constrain to match Figma */
.mct-page-content .mct-form-card-wrapper {
    max-width: 480px;
}

/* Login icon */
.mct-login-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.mct-login-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Auth card headings */
.mct-form-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin: 0 0 0.375rem;
}
.mct-form-card-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
    margin: 0 0 1.75rem;
    line-height: 1.5;
}

/* Remember me row */
.mct-remember-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 0;
}
.mct-remember-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #374151;
    cursor: pointer;
    font-weight: 500;
}
.mct-checkbox {
    width: 16px;
    height: 16px;
    accent-color: #2563eb;
    cursor: pointer;
}

/* ===== Search Study Page ===== */

/* "Search Study:" page heading */
.mct-panel-header {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #2563eb;
}

/* Section headers - blue gradient bars */
.mct-search-wrapper #container h4 {
    background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    letter-spacing: 0.02em;
}

/* Search tabs - box style */
.nav-tabs.SearchTabs {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    gap: 0.5rem;
    border-bottom: none;
}
.nav-tabs.SearchTabs > li {
    list-style: none;
    float: none;
    margin: 0;
}
.nav-tabs.SearchTabs > li > a {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: #e5e7eb;
    color: #374151;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.2s;
}
.nav-tabs.SearchTabs > li > a:hover {
    background: #dbeafe;
    color: #2563eb;
    border-color: #2563eb;
}
.nav-tabs.SearchTabs > li.active > a,
.nav-tabs.SearchTabs > li.active > a:hover,
.nav-tabs.SearchTabs > li.active > a:focus,
.nav-tabs.SearchTabs > li.selected > a,
.nav-tabs.SearchTabs > li.selected > a:hover,
.nav-tabs.SearchTabs > li.selected > a:focus {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
    cursor: default;
}

/* Search button */
.mct-search-wrapper .mct-btn-secondary {
    background: #2563eb;
    color: #fff;
    border: 2px solid #2563eb;
}
.mct-search-wrapper .mct-btn-secondary:hover {
    background: #1e3a8a;
    border-color: #1e3a8a;
}

/* Results grid row styling */
.mct-search-wrapper .bigfont_top .post_top a {
    color: #2563eb;
    font-weight: 600;
}
.mct-search-wrapper .bigfont_top .post_top a:hover {
    color: #1e3a8a;
    text-decoration: underline;
}

/* Footer ul reset - override legacy screen.css margin-left: 1ex */
.mct-footer ul {
    margin-left: 0;
    padding-left: 0;
}
