/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #f5f6fa;
    color: #0b1b3b;
}

/* Layout */
.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* Header */
.header {
    background: #0b1b3b;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding-bottom: 10px;
}

.menu {
    display: flex;
    gap: 25px;
    list-style: none;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.menu-toggle {
    display: none;
    width: 28px;
    cursor: pointer;
}


/* Make all links inside content sections dark blue */
.content-section a {
    color: #003366; /* deep navy blue */
    text-decoration: underline;
}

/* Optional: darker on hover */
.content-section a:hover {
    color: #001f3f; /* your site’s primary navy */
}


.service-image {
    max-width: 500px;      /* controls how big the image can get */
    margin: 0 auto 20px;   /* centers the whole block */
    text-align: center;    /* centers the credit text */
}

.service-image img {
    width: 100%;           /* scales down on mobile */
    height: auto;          /* keeps aspect ratio */
    display: block;        /* removes inline spacing */
    border-radius: 6px;    /* optional, looks clean */
}

.image-credit {
    font-size: 0.8rem;
    color: #666;
    margin-top: 6px;
}





/* Gold Divider (Option B – Thicker, Rich Gold Bar) */
.section-divider {
    width: 100%;
    height: 8px;
    background: linear-gradient(
        to right,
        transparent 0%,
        #d4a017 20%,
        #d4a017 80%,
        transparent 100%
    );
    border-radius: 4px;
    margin: 0;
}





/* Marquee container */
.notary-marquee {
    background-color: #001f3f; /* navy */
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
}

/* Scrolling text */
.marquee-content {
    display: inline-block;
    text-align: center;
    font-family: "Great Vibes", "Times New Roman", serif;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0px;
    font-style: italic;    
    color: white;
    word-spacing: 0.50rem; /* adds breathing room between words */ 
    letter-spacing: 0.5px; /* optional: makes script fonts read cleaner */
    padding-bottom: 8px; /* adds space under the words */ 
    animation: marquee 30s linear infinite;
}

/* Medium screens (tablets) */
@media (max-width: 900px) {
.marquee-content {
 font-size: 1.5rem; 
word-spacing: 0.3rem;
  }
} 

/* Small screens (phones) */
@media (max-width: 600px) {
.marquee-content {
font-size: 1.2rem; 
word-spacing: 0.25rem;
  }
} 

/* Extra small screens */
@media (max-width: 400px) {
.marquee-content {
font-size: 1rem;
word-spacing: 0.2rem;
  }
}


/* Animation */
@keyframes marquee {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}





/* Gold Divider (Option B – Thicker, Rich Gold Bar) */
.section-divider2 {
    width: 100%;
    height: 4px;
    background: linear-gradient(
        to right,
        transparent 0%,
        #d4a017 20%,
        #d4a017 80%,
        transparent 100%
    );
    border-radius: 4px;
    margin: 0;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(180deg, #08152e, #1a3563);
    padding: 110px 0 120px; /* Reduced height */
    color: white;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* DEFAULT HERO IMAGES (logo, portrait, etc.) */
.hero-image img {
    width: 320px;
    border-radius: 10px;
    padding: 12px;
    
}

/* MAP ONLY — larger image */
.map-wrapper img.coverage-map-img {
    display: block;
    width: 100%;
    max-width: 700px; /* Medium-large */
    height: auto;
    margin: 0 auto;
    border-radius: 10px;
    background: #0b1b3b;
    padding: 10px;
    
}

.hero-text {
    max-width: 600px;
}

.hero h1 {
font-family: "Great Vibes", "Times New Roman", serif;    
font-size: 2.4rem;
    margin-bottom: 15px;
    font-style: italic;
}

.hero h3 {
font-family: "Great Vibes", "Times New Roman", serif;
font-size: 2.4rem;
    margin-bottom: 15px;
    font-style: italic;
}

.content-section.container h2 { font-family: "Great Vibes", "Times New Roman", serif; font-size: 2.2rem; font-style: italic; margin-top: 40px; margin-bottom: 15px; color: #001f3f; /* your navy */  }



.sub {
    font-size: 1rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.disclaimer {
    font-size: 1rem;
    margin-top: 10px;
    opacity: 0.8;
}

.hero-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #d4a017;
    color: #0b1b3b;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
}

.btn-secondary {
    border: 2px solid white;
    padding: 12px 26px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
}

/* CONTENT BELOW HERO */
.content-section {
    margin-top: 80px;
    padding-bottom: 60px;
}

.about-list {
    margin: 15px 0 25px;
    padding-left: 20px;
}

.about-list li {
    margin-bottom: 10px;
}

/* PAYMENT PAGE */
.hero-payment {
    padding: 110px 0 120px;
}

.payment-column {
    flex: 1;
    display: flex;
    justify-content: center;
}

.payment-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.payment-card h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #0b1b3b;
}

.payment-info {
    flex: 1;
    padding-left: 20px;
}

.payment-info h3 {
    font-family: "Great Vibes", "Times New Roman", serif;
    margin-top: 20px;
    color: #d4a017;
}

.payment-info p {
    margin-bottom: 10px;
}

/* FOOTER */
.footer {
    background: #0b1b3b;
    color: white;
    padding: 50px 0 20px;
    margin-top: 120px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
}

.footer h4 {
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 600;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer a {
    color: #d4a017;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .copyright {
    text-align: center;
    margin-top: 30px;
    opacity: 0.7;
}

/* Force hamburger icon to stay white */
.menu-toggle {
    filter: none !important;
    mix-blend-mode: normal !important;
    background: transparent !important;
    color: white;
}

.menu-toggle svg,
.menu-toggle path {
    fill: white !important;
    stroke: white !important;
}









/* MOBILE */
@media (max-width: 860px) {
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        background: #0b1b3b;
        height: 100%;
        width: 250px;
        flex-direction: column;
        padding: 60px 20px;
        transition: 0.4s ease;
    }

    .nav.open .menu {
        right: 0;
    }

    .menu-toggle {
        display: block;
        
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-image img {
        width: 260px;
    }

    .payment-info {
        padding-left: 0;
        margin-top: 30px;
    }

/* Keep site title white in mobile view */

@media (max-width: 860px) {
    .logo {
        padding-bottom: 10px;
    }
}


@media (max-width: 860px) {
    .logo,
    .nav_logo a {
        color: #fff !important;
    }
}


}
