/* style.css */
:root {
    --bg-blue: #0e3463;
    --text-green: #78AA00;
    --btn-green: #78AA00;
    --btn-red: #D6001C;
    --text-white: #ffffff;
    --text-dark: #0E4174;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
    background-color: #ffffff;
}

main {
    position: relative;
    display: block;
    width: 100%;
}

/* Header */
header { 
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:20px 37px ;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.hidebr{
    display:none;
}

.header-left {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.logo {
    height: 57px;
    object-fit: contain;
}

.logo-text {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
    max-width: 548px;
    line-height: 1.4;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 500;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--btn-red);
}

.contact-item .icon {
    width: 16px;
    height: 16px;
    stroke: var(--text-dark);
}


/* Hero Section */
.hero {
    width: 100%;
    position: relative;
    display: flex;
    min-height: 709px;
    padding: 0;
    margin: 0;
    background-image: url('images/mainbg.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-left {
    padding: 80px 74px 0px 74px;
    position: relative;
    z-index: 2;
}

.hero-left h1 {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 15px;
}

.text-green {
    color: var(--text-green);
}

.subtitle {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.launching {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-images {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none; /* allows text to be clickable */
}

.hero-right-img {
    
    position: absolute;
    top: 0;
    right: 0;
    width: 874px;
    height: 709px;
    max-width: none;
    object-fit: cover;
    object-position: right;
    pointer-events: none;
}

/* CTA Section */
.cta-section {
    position: absolute;
    bottom: 100px;
    left: 57px;
    z-index: 10;
    display: flex;
    gap: 29px;
}

.cta-item {
    width: 244px;
}

.cta-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 33px 13px;
    color: white;
    text-decoration: none;
    margin-bottom: 12px;
    transition: transform 0.3s, background-color 0.3s, color 0.3s;
    border-radius: 10px;
}

.cta-btn:hover {
    transform: translateY(-3px);
    background-color: #FFFFFF;
    color: #0E4174;
}

.btn-green { background-color: var(--btn-green); }


.btn-red { background-color: var(--btn-red); }

.btn-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

.btn-text strong {
    font-size: 20px;
    font-weight: 700;
    display: block;
    margin-top: 2px;
}

.btn-arrow {
    display: flex;
    align-items: center;
}

.cta-item p {
    font-size: 14px;
    color: #ffffff !important;
    margin: 5px 0 0 0;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
}

/* Footer */
footer {
    background-color: #0E4174;
}

.footer-divider {
    /* height: 1px; */
    background: rgba(255,255,255,0.2);
    margin: 0 37px;
}

.footer-content {
    display: flex;
    /* justify-content: space-between; */
    align-items: flex-start;
    padding: 40px 37px;
    width: 100%;
    gap: 49px;
}

.footer-top-mobile, .footer-middle-mobile {
    display: contents;
}

.footer-col {
    flex: none;
    height: 107px;
    /* padding: 0 24px; */
}

.footer-col:first-child {
    padding-left: 0;
}

.footer-col:last-child {
    padding-right: 0;
}

/* ── Custom widths per footer column ── */
.company-info    { width: 437px; }
.office-info     { width: 232px; }
.registered-office { width: 286px; }
.social          { width: auto;  }

.border-right {
    border-right: 1px solid rgb(255, 255, 255);
}

.border-left {
    border-left: 1px solid rgba(255,255,255);
}
.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;

}

.footer-col p {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.social {
    display: flex;
    flex-direction: column;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid white;
    border-radius: 4px;
    color: white;
    transition: 0.3s;
}

.social-icons a:hover {
    background: white;
    color: var(--bg-blue);
}

.social-icons svg {
    width: 18px;
    height: 18px;
}
.hidebr1{
    display: none;
}

/* ─── Mobile Responsiveness ─── */
@media (max-width: 900px) {

    .hidebr1{
        display: block;
    }
    .hidebr{
        display: none;
    }

    /* Header */
    header {
        padding: 14px 20px;
        align-items: center;
    }
    .logo { height: 35px; }
    .logo-text { display: none; }
    .header-right {
        flex-direction: column;
        align-items: flex-end;
        gap: 4px;
    }
    .contact-item { font-size: 12px; }
    .contact-item .icon { width: 13px; height: 13px; }

    /* Hero – switch to mobile background */
    .hero {
        min-height: 300px;
        background-image: url('images/mobilebg.png');
        background-size: cover;
        background-position: center top;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        overflow: hidden;
    }

    /* Text sits on the left, the cover image floats right */
    .hero-left {
        width: 255px;
        padding: 30px 0 20px 20px;
        position: relative;
        z-index: 2;
    }
    .hero-left h1 {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    .subtitle {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 10px;
    }
    .launching {
        font-size: 18px;
        font-weight: 700;
    }

    /* Mobile cover image – top right, shows collage/product art */
    .hero-images {
        position: absolute;
        top: 0;
        right: -40px;
        left: auto;
        bottom: 0;
        width: 370px;
        height: 300px;
        z-index: 1;
        pointer-events: none;
    }
    
    .hero-right-img {
        position: absolute;
        top: 0;
        right: 0px;
        width: 100%;
        height: 100%;
        max-width: none;
        object-fit: cover;
        object-position: right top;
        content: url('images/mobilecover.png');
        pointer-events: none;
    }

    /* CTA – pulled out of hero, displayed below as a row */
    main {
        display: flex;
        flex-direction: column;
    }
    .hero {
        order: 1;
    }
    .cta-section {
        order: 2;
        position: static;
        bottom: auto;
        right: auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 12px;
        padding: 20px 20px 0px 20px;
        background-color: #0E4174;
        width: 100%;
    }
    .cta-item {
        width: 48%;
    }
    .cta-btn {
        padding: 18px 12px;
        border-radius: 8px;
        margin-bottom: 8px;
    }
    .btn-text { font-size: 13px; font-weight: 600; }
    .btn-text strong { font-size: 18px; }
    .btn-arrow svg { width: 28px; }
    .cta-item p {
        font-size: 12px;
        font-weight: 600;
        color: #ffffff !important;
    }

    /* Footer */
    .footer-divider { margin: 0 20px; }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 5px;
        gap: 0;
        width: 100%;
    }

    .footer-top-mobile {
        display: flex;
        width: 100%;
        justify-content: center;
        margin-bottom: 20px;
    }
    .footer-top-mobile .footer-col {
        width: 100%;
        padding: 0;
        height: auto;
        text-align: center;
    }
    .company-info { width: 100%; }

    /* Remove desktop border-right, restore only between office cols */
    .border-right { border-right: none; }

    .footer-middle-mobile {
        display: flex;
        flex-direction: row;
        width: 100%;
        margin-bottom: 20px;
    }
    .footer-middle-mobile .footer-col {
        width: 50%;
        padding: 0 16px;
        height: auto;
        flex: none;
        text-align: left;
    }
    .footer-middle-mobile .footer-col:first-child {
        border-right: 1px solid rgba(255,255,255,0.4);
    }
    .office-info { width: auto; }
    .registered-office { width: auto; }

    .footer-col.social {
        width: 100%;
        align-items: center;
        padding: 0;
    }
    .social { align-items: center; }
    .social h4 { text-align: center; }

    /* Reset desktop fixed heights */
    .footer-col { height: auto; }
    .contact-item {
    display: flex;
    align-items: center;
    gap: 2px;
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 500;
}
}

@media (max-width: 480px) {
    .hero-left { width: 255px; padding: 25px 0 15px 16px; }
    .hero-left h1 { font-size: 19px; }
    .subtitle { font-size: 12px; }
    .launching { font-size: 14px; }
    .cta-btn { padding: 14px 10px; }
    .btn-text { font-size: 12px; }
    .btn-text strong { font-size: 15px; }
    .btn-arrow svg { width: 22px; }
    .footer-col h4 { font-size: 12px; }
    .footer-col p { font-size: 11px; white-space: nowrap; overflow: hidden}
    .footer-middle-mobile .footer-col { padding: 0 12px; }
    .contact-item {
    display: flex;
    align-items: center;
    gap: 2px;
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 500;
}
}
