/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    background: #fff;
    border-bottom: 2px solid #f1f1f1;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

.logo img {
    height: 150px;
}
/* --- ADD THIS TO YOUR GENERAL/DESKTOP STYLES --- */

/* Hide the checkbox on PC view completely */
.menu-toggle-cb {
    display: none;
}

/* Your existing desktop styles continue below... */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* ... */
}
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: #002d5b; /* Navy Blue */
    font-weight: 600;
    margin: 0 15px;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #c9a227; /* Gold Accent */
    
}
/* --- MOBILE RESPONSIVE MEDIA BREAKPOINT --- */
@media (max-width: 992px) {
    
    /* Reconfigure navbar wrapper row behaviors */
    .navbar {
        height: 75px;
        padding: 0 20px;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Force the link container block to map scale limits */
    .logo, .logo a {
        display: flex;
        align-items: center;
    }

    .logo img {
        max-height: 50px; /* Constrains relative corporate logo dimensions */
        width: auto;
    }

    /* Keep toggle tracker hidden completely */
    .menu-toggle-cb {
        display: none;
    }

    /* Set up structural framework for hamburger interface button */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 18px;
        cursor: pointer;
        order: 3; /* Pushes button layer cleanly to the far right side */
        z-index: 1010;
    }

    /* Styling individual wire bars inside menu trigger button */
    .hamburger span {
        display: block;
        height: 2.5px;
        width: 100%;
        background-color: #002d5b; /* Navy Blue bars */
        border-radius: 4px;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    /* Position alignment adjustment for search interface icon */
    .search-icon {
        order: 2; /* Positions search anchor directly between logo and menu icon */
        margin-left: auto;
        margin-right: 25px;
        font-size: 18px;
        color: #002d5b;
    }

    /* Convert link collection into standard slide-out menu drawer */
    .nav-links {
        position: fixed;
        top: 75px; /* Aligns flush beneath header row bounds */
        right: -100%; /* Hidden off-screen right default layout state */
        width: 100%;
        height: calc(100vh - 75px); /* Maximizes tracking drop zone dimensions */
        background-color: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 30px;
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.05);
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 1000;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        display: block;
        padding: 20px 0;
        margin: 0; /* Drops active wide horizontal screen desktop borders */
        font-size: 16px;
        border-bottom: 1px solid #f8fafc;
        color: #002d5b;
    }

    /* --- CLICKED SECTOR INTERACTIVE TRANSLATIONS --- */

    /* Slide dynamic fullscreen drop panel layout into view workspace */
    .menu-toggle-cb:checked ~ .nav-links {
        right: 0;
    }

    /* Shift line 1 down and match canvas axis point */
    .menu-toggle-cb:checked ~ .hamburger span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
        background-color: #c9a227; /* Gold accent highlight toggle indicator */
    }

    /* Dissolve visibility lines out from tracking row space */
    .menu-toggle-cb:checked ~ .hamburger span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    /* Shift line 3 up and close cross design match framework */
    .menu-toggle-cb:checked ~ .hamburger span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: #c9a227;
    }
}
/* --- OWNER PAGE STYLES --- */
.owner-profile {
    padding: 100px 0;
    background: #fff;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Image slightly smaller than text */
    gap: 60px;
    align-items: center;
}

/* Image with Gold Accent */
.profile-image {
    position: relative;
}

.profile-image img {
    width: 100%;
    border-radius: 4px;
    display: block;
    z-index: 2;
    position: relative;
}

.image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 5px solid #c9a227;
    border-left: 5px solid #c9a227;
    z-index: 1;
}

/* Text Details */
.profile-details .subtitle {
    color: #c9a227;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-details h1 {
    color: #002d5b;
    font-size: 2.8rem;
    margin: 10px 0;
    font-family: 'Kantumruy Pro', sans-serif;
}

.gold-line {
    width: 80px;
    border: none;
    height: 4px;
    background: #c9a227;
    margin-bottom: 30px;
}

.bio-content p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    font-family: 'Kantumruy Pro', sans-serif;
}
.subtitle {
    font-family: 'Kantumruy Pro', sans-serif;
}
.quote-box{
    font-family: 'Kantumruy Pro', sans-serif;
}

/* Quote Block */
.quote-box {
    margin-top: 40px;
    padding-left: 20px;
    border-left: 4px solid #c9a227;
    font-style: italic;
    color: #002d5b;
    font-weight: 600;
}
/* --- FOOTER SECTION --- */
.footer {
    background: #002d5b; /* Navy Blue */
    color: #ffffff;
    padding: 60px 0 30px; /* Top padding for space, bottom for copyright */
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

/* TOP MENU LINKS */
.footer-top {
    margin-bottom: 30px;
}

.footer-menu {
    display: flex;
    gap: 40px;
    list-style: none;
    padding: 0;
}

.footer-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-menu li a:hover {
    color: #ffde38; /* Gold on hover */
}

/* HORIZONTAL DIVIDER LINE */
.footer-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15); /* Semi-transparent white line */
    margin-bottom: 30px;
}

/* BOTTOM AREA (Copyright & Socials) */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7); /* Slightly dimmed copyright text */
}

/* SOCIAL MEDIA ICONS */
.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: #ffffff;
    font-size: 18px;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.footer-social a:hover {
    color: #ffde38; /* Gold on hover */
    transform: translateY(-3px); /* Slight bounce effect */
}
/* Responsive Mobile Layout */
@media (max-width: 992px) {
    .profile-grid {
        grid-template-columns: 1fr; /* Stack vertically on small screens */
        text-align: center;
    }

    .image-accent {
        display: none; /* Simplify mobile view */
    }

    .gold-line {
        margin: 0 auto 30px;
    }

    .quote-box {
        border-left: none;
        border-top: 2px solid #c9a227;
        padding-top: 20px;
        padding-left: 0;
    }
}
/* --- CONTACT PAGE STYLES --- */
.contact-section {
    padding: 80px 0;
    background: #fbfbfb;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Info Side */
.contact-info h2 {
    color: #002d5b;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-family: 'Kantumruy Pro', sans-serif;
}

.contact-info p {
    color: #666;
    margin-bottom: 30px;
    font-family: 'Kantumruy Pro', sans-serif;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item i {
    color: #c9a227; /* Gold Icons */
    font-size: 1.5rem;
    margin-top: 5px;
}

.info-item h3 {
    color: #002d5b;
    font-size: 18px;
    margin-bottom: 5px;
    font-family: 'Kantumruy Pro', sans-serif;
}

/* Form Side */
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    outline: none;
    transition: border 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: #c9a227;
}

.btn-submit {
    background: #002d5b;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #c9a227;
}

/* Map */
.map-section {
    line-height: 0; /* Removes gap under map */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
/* --- WHO WE ARE SECTION --- */
.who-we-are {
    padding: 100px 0;
    background-color: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Text wider than image */
    gap: 80px;
    align-items: center;
}

/* Text Side */
.section-subtitle {
    font-family: 'Kantumruy Pro', sans-serif;
    color: #c9a227; /* Gold */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.about-content h2 {
    color: #002d5b; /* Navy Blue */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Kantumruy Pro', sans-serif;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: #c9a227;
    border: none;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Kantumruy Pro', sans-serif;
}

/* Bullet Points */
.mission-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.point {
    font-family: 'Kantumruy Pro', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #002d5b;
    font-size: 15px;
}

.point i {
    color: #c9a227;
}

/* Image Side */
.about-image .img-container {
    position: relative;
    padding-right: 20px;
    padding-bottom: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 20px 20px 0px #f1f1f1; /* Grey background offset */
    display: block;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: -10px;
    left: -30px;
    background: #ffcc00; /* Yellow match news button */
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 4px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.experience-badge .years {
    font-size: 32px;
    font-weight: 800;
    color: #002d5b;
}

.experience-badge .text {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: #002d5b;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .accent-line {
        margin: 0 auto 30px;
    }

    .mission-points {
        justify-items: center;
        grid-template-columns: 1fr;
    }

    .experience-badge {
        left: 50%;
        transform: translateX(-50%);
    }
}
/* --- BUSINESS PAGE STYLES --- */

/* Hero Style */
.business-hero {
    background: #002d5b;
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.business-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.business-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

/* Grid Layout */
.business-grid-section {
    padding: 80px 0;
    background: #fdfdfd;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

/* Business Card Styling */
.business-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.business-card:hover {
    transform: translateY(-10px);
}

.business-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.business-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* The Sector Label (Gold Tag) */
.sector-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #c9a227;
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

.business-info {
    padding: 30px;
}

.business-info h3 {
    color: #002d5b;
    margin-bottom: 15px;
    font-size: 22px;
}

.business-info p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Link Button */
.btn-text {
    color: #c9a227;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.btn-text:hover {
    gap: 12px;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .business-hero h1 {
        font-size: 2.2rem;
    }
    
    .business-grid {
        grid-template-columns: 1fr;
    }
}
/* --- CARD LINK STYLING --- */

/* Removes default link decoration from the card wrapper */
.card-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: block; /* Makes the entire area clickable */
}

.business-card {
    cursor: pointer;
    overflow: hidden;
    position: relative;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

/* Learn More Text Style */
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: #c9a227; /* Gold color */
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: gap 0.3s ease;
}

/* Hover Effect: Arrow moves and card lifts */
.business-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 45, 91, 0.1);
}

.business-card:hover .read-more {
    gap: 12px; /* Moves the arrow slightly to the right */
}

.business-card:hover h3 {
    color: #c9a227; /* Title turns gold on hover */
}
/* --- SECTION INTRO STYLES --- */
.section-intro {
    text-align: center;
    max-width: 800px; /* Limits width so the text is easier to read */
    margin: 0 auto 60px; /* Centers the block and adds space below */
}

.section-intro .subtitle {
    color: #c9a227; /* Gold */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.section-intro h2 {
    color: #002d5b; /* Navy Blue */
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

/* Centered Gold Line */
.accent-line-center {
    width: 70px;
    height: 4px;
    background: #c9a227;
    border: none;
    margin: 0 auto 25px; /* Centers the line */
}

.section-intro .description {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    font-weight: 400;
}

/* RESPONSIVE FIX */
@media (max-width: 768px) {
    .section-intro h2 {
        font-size: 2.2rem;
    }
    .section-intro .description {
        font-size: 15px;
        padding: 0 10px;
    }
}
/* --- CAREER PAGE STYLES --- */

/* Hero */
.career-hero {
    background: linear-gradient(rgba(0, 45, 91, 0.8), rgba(0, 45, 91, 0.8)), url('../img/469753973_122134058384388713_5932749993555426560_n.jpg') no-repeat center/cover;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.career-hero h1 { font-size: 3.5rem; margin-bottom: 15px; }

/* Benefits Grid */
.benefits-section { padding: 80px 0; background: #fff; text-align: center; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.benefit-item i { color: #c9a227; font-size: 2.5rem; margin-bottom: 20px; }
.benefit-item h3 { color: #002d5b; margin-bottom: 10px; }
.benefit-item p { color: #666; font-size: 14px; line-height: 1.6; }

/* Job List Styling */
.jobs-section { padding: 80px 0; background: #f9f9f9; }

.job-list { max-width: 900px; margin: 40px auto; }

.job-card {
    background: #fff;
    padding: 25px 35px;
    margin-bottom: 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-left: 5px solid transparent;
    transition: 0.3s;
}

.job-card:hover {
    border-left: 5px solid #c9a227;
    transform: translateX(10px);
}

.job-dept {
    background: #f1f1f1;
    color: #002d5b;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

.job-info h3 { margin: 10px 0 5px; color: #002d5b; }
.job-info p { font-size: 14px; color: #888; }

.btn-apply {
    background: #002d5b;
    color: #fff;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-apply:hover { background: #c9a227; }

.cv-drop { text-align: center; margin-top: 40px; color: #555; }

/* Mobile */
@media (max-width: 768px) {
    .job-card { flex-direction: column; text-align: center; gap: 20px; }
    .career-hero h1 { font-size: 2.5rem; }
}
/* --- PRIVACY POLICY STYLES --- */

.privacy-section {
    padding: 80px 0;
    background: #fff;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-block {
    margin-bottom: 40px;
}

.policy-block h3 {
    color: #002d5b; /* Navy Blue */
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 10px;
}

.policy-block p {
    color: #555;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 15px;
}

.policy-block ul {
    margin-left: 20px;
    margin-bottom: 15px;
    color: #555;
}

.policy-block ul li {
    margin-bottom: 8px;
}

.policy-block strong {
    color: #c9a227; /* Gold for emphasis on email */
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .policy-block h3 {
        font-size: 1.3rem;
    }
}
/* --- LEGAL & TERMS STYLES --- */

.legal-section {
    padding: 80px 0;
    background: #fdfdfd;
}

.legal-content {
    max-width: 850px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.legal-block {
    margin-bottom: 35px;
}

.legal-block h3 {
    color: #002d5b;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-block p {
    color: #444;
    line-height: 1.8;
    font-size: 16px;
}

.legal-block ul {
    margin-top: 15px;
    padding-left: 20px;
}

.legal-block li {
    color: #444;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .legal-content {
        padding: 30px 20px;
    }
    
    .legal-block h3 {
        font-size: 1.2rem;
    }
}
/* --- CENTERED CHAIRMAN MEMBERSHIPS --- */
.chairman-memberships {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #eaeaea;
    text-align: center; /* Centers the <h4> title and text elements */
}

.chairman-memberships h4 {
    color: #002d5b;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 700;
}

.membership-logos {
    display: flex;
    align-items: center;
    justify-content: center; /* Centers the logo items horizontally */
    gap: 35px;
    flex-wrap: wrap; /* Ensures responsiveness on smaller screens */
    max-width: 100%;
}

.logo-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    max-width: 130px;
}

.logo-item img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Tooltip alignment configuration */
.tooltip-text {
    visibility: hidden;
    width: 140px;
    background-color: #002d5b;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%); /* Keeps tooltip centered perfectly over each logo */
    font-size: 11px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s;
}

.logo-item:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}


/* Center on tablet and mobile */
@media (max-width: 992px) {
    .chairman-memberships h4 {
        text-align: center;
    }
    .membership-logos {
        justify-content: center;
        gap: 25px;
    }
}
/* --- STRATEGIC PARTNERSHIP HUB --- */
.partnership-hub {
    padding: 100px 0;
    background-color: #ffffff;
}

.partnership-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* Left Column */
.partnership-left .subtitle {
    color: #c9a227; /* Gold */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    display: block;
    margin-bottom: 15px;
}

.partnership-left h2 {
    color: #002d5b; /* Navy */
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.partnership-lead {
    font-size: 16.5px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

/* Dynamic Action Button */
.partnership-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.partnership-primary-btn {
    display: inline-flex;
    align-items: center;
    background: #f4f7fa;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    border-radius: 8px;
    max-width: 360px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.partnership-primary-btn:hover {
    border-color: #c9a227;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 45, 91, 0.05);
}

.partnership-primary-btn .btn-icon-box {
    background: #002d5b;
    color: #fff;
    padding: 22px 25px;
    font-size: 24px;
    transition: background 0.3s ease;
}

.partnership-primary-btn:hover .btn-icon-box {
    background: #c9a227;
}

.partnership-primary-btn .btn-text-box {
    padding: 15px 25px;
}

.partnership-primary-btn .btn-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: #777;
    letter-spacing: 1px;
    font-weight: 600;
}

.partnership-primary-btn .btn-title {
    display: block;
    font-size: 15px;
    color: #002d5b;
    font-weight: 700;
}

.partnership-note {
    font-size: 14px;
    color: #666;
}

.partnership-note a {
    color: #c9a227;
    text-decoration: none;
    font-weight: 700;
}

.partnership-note a:hover {
    text-decoration: underline;
}

/* Right Side: Partnership Cards Layout */
.partnership-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.partner-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

/* Accent Markers on Cards */
.gold-indicator { border-left: 4px solid #c9a227; }
.navy-indicator { border-left: 4px solid #002d5b; }

.partner-icon-wrapper {
    background: #f4f7fa;
    color: #002d5b;
    width: 50px;
    height: 50px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-icon-wrapper {
    background: #002d5b;
    color: #fff;
}

.partner-card-body h3 {
    font-size: 18px;
    color: #002d5b;
    margin-bottom: 8px;
    font-weight: 700;
}

.partner-card-body p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .partnership-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .partnership-left h2 {
        font-size: 2.3rem;
    }
    .partnership-primary-btn {
        max-width: 100%;
    }
}