:root{
    --primary:#0B5FFF;
    --dark:#0B1220;
    --light:#F5F1EB;
    --gray:#6B7280;
    --card:#FFFFFF;
    --navbar-height: 70px;
}

:focus-visible {
    outline: none !important;
}

body{
    background: var(--light);
}


/* Wp admin bar */
.admin-bar .navbar-main {
    top: 32px !important;
}
@media screen and (max-width: 782px) {
    .admin-bar .navbar-main {
        top: 46px !important;
    }
}

@media screen and (max-width: 600px) { 
    #wpadminbar { 
        position: fixed !important;  /* For fixed theme headers */
    } 
}

/* Wp admin bar */
/* Space for fixed header */
main {
    padding-top: var(--navbar-height) !important;
}

.navbar-main{
    position:fixed;
    top:0;
    left:0;
    z-index:100;
    width:100%;
}
.nav-bar-height{
    height:var(--navbar-height);
}


.font-main{
    font-family: 'Nunito', sans-serif;
}

.font-styled-italic{
    font-family: 'Playfair Display', serif;
}


.header-nav .menu {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-nav li {
    position: relative;
    list-style: none;
}

.header-nav a {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.35px;
    font-family: 'Nunito', sans-serif;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.header-nav a svg {
    margin-left: 6px;
}

.header-nav a.active,
.header-nav .current-menu-item > a,
.header-nav .current-menu-parent > a,
.header-nav .current-menu-ancestor > a {
    color: #00458A;
    font-weight: 700;
    border-bottom: 2px solid #00458A;
    padding-bottom: 4px;
}

.header-nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
    z-index: 100;
}

.header-nav li:hover > .sub-menu {
    display: block;
}

.header-nav .sub-menu li {
    width: 100%;
}

.header-nav .sub-menu a {
    display: block;
    padding: 10px 20px;
    border: none;
    white-space: nowrap;
}

.header-nav .sub-menu a.active {
    border: none;
}

.mobile-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-menu > li {
    list-style: none;
}

.mobile-menu > li > a {
    display: block;
    padding: 12px 0;
    color: #000;
    text-decoration: none;
    font-size: 16px;
}

.mobile-menu .sub-menu {
    display: none;
    margin-left: 16px;
    margin-top: 8px;
    padding-left: 12px;
    border-left: 2px solid #e5e7eb;
    position: static;
    box-shadow: none;
    background: transparent;
}

.mobile-menu .menu-item-has-children.open > .sub-menu {
    display: block;
}

.mobile-menu .sub-menu a {
    display: block;
    padding: 10px 0;
    font-size: 15px;
}


.footer-links li{
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height : 20px;
}

@media (min-width: 1280px) {
    .footer-links li{
        font-size: 16px;
    }
}

.footer-links h4{
    color : #FFFFFF;
}


/* =========================================================
   Contact Form 7 styling — matches "Get In Touch" mockup
   Add this file to your theme (e.g. assets/css/contact-form.css)
   and enqueue it, or paste into style.css.
   ========================================================= */

.contact-form-wrap .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 3rem;
    row-gap: 2.25rem;
}

@media (min-width: 640px) {
    .contact-form-wrap .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-wrap .field {
    display: flex;
    flex-direction: column;
}

.contact-form-wrap .field label {
    font-size: 1.0625rem;
    font-weight: 500;
    color: #111827;
    margin-bottom: 0.75rem;
}

/* CF7 wraps every field in a span - make it behave like a block */
.contact-form-wrap .wpcf7-form-control-wrap {
    display: block;
}

.contact-form-wrap input.wpcf7-form-control {
    width: 100%;
    border: none;
    border-bottom: 1px solid #d1d5db;
    background: transparent;
    padding: 0.75rem 0 0.75rem 0;
    font-size: 1rem;
    color: #111827;
    border-radius: 0;
    transition: border-color 0.2s ease;
}

.contact-form-wrap input.wpcf7-form-control::placeholder {
    color: #9ca3af;
}

.contact-form-wrap input.wpcf7-form-control:focus {
    outline: none;
    border-bottom-color: #0f2f5f;
    box-shadow: none;
}

/* Submit button row */
.contact-form-wrap .submit-btn {
    grid-column: 1 / -1;
    margin-top: 1.5rem;
}

.contact-form-wrap input.wpcf7-form-control.wpcf7-submit {
    width: auto;
    display: inline-block;
    background-color: #0f2f5f;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.85rem 2.25rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.contact-form-wrap input.wpcf7-form-control.wpcf7-submit:hover {
    background-color: #0c2549;
}

/* CF7 validation / response styling so it doesn't break the layout */
.contact-form-wrap .wpcf7-not-valid-tip {
    font-size: 0.8125rem;
    color: #dc2626;
    margin-top: 0.4rem;
}

.contact-form-wrap .wpcf7-response-output {
    grid-column: 1 / -1;
    margin: 1rem 0 0 0;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
}

.contact-form-wrap .wpcf7-spinner {
    margin-left: 0.75rem;
}














/* animation */
.hero-orbit-wrapper{
    animation:floatMotion 8s ease-in-out infinite;
}

.hero-orbit{
    animation:
        orbitalRotate 32s linear infinite,
        pulseScale 8s ease-in-out infinite;
    transform-origin:center center;
    will-change:transform;
}

@keyframes orbitalRotate{
    from{transform:rotate(0deg);}
    to{transform:rotate(360deg);}
}

@keyframes floatMotion{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-12px);}
}

@keyframes pulseScale{
    0%,100%{scale:1;}
    50%{scale:1.03;}
}

#atomSVG{
    width:min(80vw,700px);
    height:auto;
    overflow:visible;
    margin-top: 2rem;
}

@media (min-width: 575px) and (max-width: 1023px){
    #atomSVG{
        width:min(50vw,700px);
    }
}

#atomSVG path{
    stroke:#000000;
    fill:none;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
}
.particle{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#000;
    position:fixed;
    pointer-events:none;
    z-index:99;
    transform:translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

@media (min-width: 640px) {
    .particle{
        width:13px;
        height:13px;
    }
}

.nucleus-rotate{
    transform-box:fill-box;
    transform-origin:center center;
    animation:nucleusSpin 20s linear infinite;
}

@keyframes nucleusSpin{
    from{transform:rotate(0deg);}
    to{transform:rotate(360deg);}
}


.marquee-left,
.marquee-right {
    display: flex;
    width: max-content;
}

.marquee-left {
    animation: marquee-left 30s linear infinite;
}

.marquee-right {
    animation: marquee-right 30s linear infinite;
}

.marquee-left:hover,
.marquee-right:hover {
    animation-play-state: paused;
}

@keyframes marquee-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}


/* Wrapper */

.lead-form {
    width: 100%;
}

.lead-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.lead-form .form-col {
    flex: 1;
}

.lead-form .form-group {
    margin-bottom: 32px;
}

.lead-form label {
    display: block;
    margin-bottom: 10px;
    color: #000000;
    font-size: 16px;
    font-weight: 300;
}

@media (min-width: 768px) {
    .lead-form label{
        font-size: 18px;
    }
}

.lead-form .form-input {
    width: 100%;
    height: 40px;
    padding: 0 16px;
    background: #fff;
    border: 1px solid #D8D8D8;
    border-radius: 6px;
    font-size: 16px;
    color: #222;
    transition: .3s;
    box-sizing: border-box;
}

.lead-form textarea.form-input {
    height: 80px;
    padding: 14px 16px;
    resize: vertical;
}

.lead-form select.form-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 45px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23222' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 16px center;
}

.lead-form .form-input:focus {
    outline: none;
    border-color: #00458A;
}

.lead-form .form-submit {
    width: 100%;
    height: 45px;
    border: 0;
    border-radius: 10px;
    background: #00458A;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: .3s;
}

@media (min-width: 768px) {
    .lead-form .form-submit{
        font-size: 18px;
    }
}

.lead-form .form-submit:hover {
    background: #03294f;
}

.lead-form .wpcf7-spinner {
    margin-top: 15px;
}

.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output, 
.wpcf7 form.payment-required .wpcf7-response-output {
    margin: 5px 0 0 !important;
}

@media (max-width: 640px) {
    .lead-form .form-row {
        display: block;
        margin-bottom: 0;
    }
    .lead-form .form-col {
        margin-bottom: 15px;
    }
}

.prose em,
.prose i {
    color: #1961A9;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
}
/* ============================================================
   Elegant, minimal button hover effects (site-wide)
   ============================================================ */
a[class*="bg-[#00458A]"],
button[class*="bg-[#00458A]"],
.uno-cf .btn, .inv-form .btn, .ptr-form .btn,
a.uno-ci {
  transition: transform .28s cubic-bezier(.2,.7,.3,1), box-shadow .28s ease, filter .28s ease;
  will-change: transform;
}
a[class*="bg-[#00458A]"]:hover,
button[class*="bg-[#00458A]"]:hover,
.uno-cf .btn:hover, .inv-form .btn:hover, .ptr-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,69,138,.28);
  filter: brightness(1.06);
}
a[class*="bg-[#00458A]"]:active,
button[class*="bg-[#00458A]"]:active { transform: translateY(0); }
/* arrow nudge on CTAs that contain an svg */
a[class*="bg-[#00458A]"] svg, button[class*="bg-[#00458A]"] svg { transition: transform .28s cubic-bezier(.2,.7,.3,1); }
a[class*="bg-[#00458A]"]:hover svg, button[class*="bg-[#00458A]"]:hover svg { transform: translateX(4px); }
/* ghost / text links subtle */
.footer-links a { transition: color .2s ease, opacity .2s ease; }
