/* =========================================
   PRINCE SOLUTIONS
   MAIN STYLESHEET
========================================= */


/* =========================================
   RESET
========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: #172033;
    background: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}


/* =========================================
   VARIABLES
========================================= */

:root {

    --primary: #e20a0a;
    --primary-dark: #e30b0b;

    --dark: #101828;
    --text: #475467;
    --muted: #667085;

    --light: #f5f8fc;
    --border: #e4e7ec;

    --white: #ffffff;

    --shadow:
        0 20px 50px rgba(16, 24, 40, 0.08);

    --radius: 18px;
}


/* =========================================
   CONTAINER
========================================= */

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);

    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(12px);
}

.navbar {
    min-height: 78px;

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


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    colour: #000000;
}

.logo-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #111111;
    color: #ffffff;
    
    font-size: 22px;
    font-weight: 800;

    border-radius: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;

    line-height: 1;
}

.logo-text strong {
    font-size: 17px;
    letter-spacing: 1px;
}

.logo-text small {
    margin-top: 4px;

    color: var(--primary);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 3px;
}


/* NAVIGATION */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu > a {
    color: #344054;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s;
}

.nav-menu > a:hover,
.nav-menu > a.active {
    color: var(--primary);
}

.nav-button {
    padding: 11px 18px;

    color: white !important;
    background: var(--primary);

    border-radius: 8px;
}

.nav-button:hover {
    background: var(--primary-dark);
}


/* MOBILE MENU BUTTON */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 0;
    background: transparent;
}

.menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    margin: 5px auto;

    background: var(--dark);

    transition: 0.3s;
}


/* =========================================
   GENERAL SECTIONS
========================================= */

.section {
    padding: 100px 0;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;

    gap: 40px;

    margin-bottom: 55px;
}

.section-heading h2 {
    max-width: 650px;

    color: var(--dark);

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.1;

    letter-spacing: -1.5px;
}

.section-heading > p {
    max-width: 450px;

    color: var(--text);

    font-size: 16px;
}

.center-heading {
    display: block;

    text-align: center;
}

.center-heading h2 {
    margin: 0 auto 18px;
}

.center-heading p {
    margin: auto;
}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;

    overflow: hidden;

    min-height: 700px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            110deg,
            #071a33 0%,
            #0b2d56 55%,
            #0b63ce 100%
        );

    color: white;
}

.hero-background {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(255,255,255,0.12),
            transparent 30%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;

    align-items: center;

    gap: 70px;
}

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

.hero .eyebrow {
    color: #91c5ff;
}

.hero h1 {
    margin-bottom: 25px;

    font-size: clamp(42px, 5.2vw, 72px);

    line-height: 1.05;

    letter-spacing: -3px;
}

.hero h1 span {
    display: block;
    color: #78b7ff;
}

.hero-text > p {
    max-width: 620px;

    margin-bottom: 35px;

    color: #d7e7f9;

    font-size: 17px;
}


/* BUTTONS */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 50px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding: 0 23px;

    border-radius: 9px;

    font-size: 14px;
    font-weight: 700;

    border: 1px solid transparent;

    transition: 0.3s;
}

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

.btn-primary:hover {
    background: #0757b7;
    transform: translateY(-2px);
}

.hero .btn-primary {
    background: white;
    color: var(--primary);
}

.hero .btn-primary:hover {
    background: #edf5ff;
}

.btn-outline {
    color: white;
    border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

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

.btn-dark:hover {
    background: #000;
}


/* HERO TRUST */

.hero-trust {
    display: flex;

    gap: 40px;
}

.hero-trust div {
    display: flex;
    flex-direction: column;
}

.hero-trust strong {
    font-size: 14px;
}

.hero-trust span {
    color: #a9c8e8;

    font-size: 12px;
}


/* HERO VISUAL */

.hero-visual {
    position: relative;

    min-height: 460px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-main {
    width: min(360px, 80%);

    padding: 45px 35px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.16),
            rgba(255,255,255,0.05)
        );

    border: 1px solid rgba(255,255,255,0.2);

    border-radius: 28px;

    backdrop-filter: blur(20px);

    text-align: center;

    box-shadow:
        0 30px 80px rgba(0,0,0,0.25);
}

.security-icon {
    width: 90px;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 25px;

    background: rgba(255,255,255,0.12);

    border-radius: 50%;

    font-size: 42px;
}

.hero-card-main h3 {
    margin-bottom: 12px;

    font-size: 24px;
}

.hero-card-main p {
    color: #c7dbef;

    font-size: 14px;
}


/* FLOATING CARDS */

.floating-card {
    position: absolute;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 15px 18px;

    background: white;
    color: var(--dark);

    border-radius: 12px;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.2);
}

.floating-card > span {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e8f3ff;
    color: var(--primary);

    border-radius: 50%;
}

.floating-card div {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    font-size: 13px;
}

.floating-card small {
    color: var(--muted);

    font-size: 10px;
}

.card-one {
    top: 60px;
    left: 0;
}

.card-two {
    right: 0;
    bottom: 65px;
}




/* =========================================
   SOLUTIONS
========================================= */

.solutions-section {
    background: var(--light);
}

.solution-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.solution-card {
    min-height: 430px;

    position: relative;

    overflow: hidden;

    display: flex;
    align-items: end;

    border-radius: 20px;

    background:
        linear-gradient(
            180deg,
            #17314f,
            #071a33
        );
}

.solution-home {
    background:
        linear-gradient(
            180deg,
            #255f9e,
            #071a33
        );

}

.Why-image{
    width: 100%;
    height: 100%;
    object-fit: cover;  
    border-radius: 20px;    

}


.solution-office {
    background:
        linear-gradient(
            180deg,
            #35647f,
            #071a33
        );
}

.solution-business {
    background:
        linear-gradient(
            180deg,
            #43556e,
            #071a33
        );
}

.solution-overlay {
    width: 100%;

    padding: 35px;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,0.75)
        );

    color: white;
}

.solution-number {
    display: block;

    margin-bottom: 60px;

    color: #91c5ff;

    font-size: 13px;
    font-weight: 700;
}

.solution-overlay h3 {
    margin-bottom: 10px;

    font-size: 25px;
}

.solution-overlay p {
    margin-bottom: 20px;

    color: #d8e4f0;

    font-size: 14px;
}

.solution-overlay a {
    color: white;

    font-size: 13px;
    font-weight: 700;
}


/* =========================================
   WHY
========================================= */

.why-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}

.why-content h2 {
    max-width: 600px;

    margin-bottom: 20px;

    color: var(--dark);

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.08;

    letter-spacing: -1.5px;
}



.why-list {
    display: grid;

    gap: 25px;
}

.why-item {
    display: flex;

    gap: 16px;
}

.check-icon {
    flex: 0 0 auto;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf4ff;
    color: var(--primary);

    border-radius: 50%;

    font-weight: 800;
}


.why-image {
    min-height: 320px;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-wrap: wrap;
    padding: 0 20px;
   
  
}

.experience-card {
    width: 250px;
    height: 250px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.1);

    border: 1px solid rgba(255,255,255,0.25);

    border-radius: 30px;

    color: white;

    backdrop-filter: blur(15px);
}

.big-number {
    margin-bottom: 10px;

    font-size: 65px;
    font-weight: 800;
}

.experience-card strong {
    font-size: 20px;
}

.experience-card > span:last-child {
    color: #c7def7;

    font-size: 13px;
}


/* =========================================
   PROCESS
========================================= */

.process-section {
    background: var(--light);
}

.process-grid {
    display: grid;

    grid-template-columns:
        1fr auto 1fr auto 1fr auto 1fr;

    align-items: center;

    gap: 12px;
}

.process-item {
    text-align: center;
}

.process-number {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;
}

.process-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 50%;

    font-size: 24px;
}

.process-item h3 {
    margin-bottom: 8px;

    color: var(--dark);

    font-size: 16px;
}

.process-item p {
    color: var(--text);

    font-size: 13px;
}

.process-line {
    width: 50px;
    height: 1px;

    background: #ccd4df;
}


/* =========================================
   CTA
========================================= */

.cta-section {
    padding: 75px 0;

    background:
        linear-gradient(
            110deg,
            #071a33,
            #0b63ce
        );

    color: white;
}

.cta-content {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.cta-section .eyebrow {
    color: #91c5ff;
}

.cta-section h2 {
    max-width: 650px;

    margin-bottom: 10px;

    font-size: clamp(30px, 4vw, 44px);

    line-height: 1.1;
}

.cta-section p {
    color: #d5e6f7;
}

.cta-buttons {
    display: flex;
    gap: 12px;

    flex-shrink: 0;
}

.btn-light {
    background: white;
    color: var(--primary);
}

.btn-light:hover {
    background: #edf5ff;
}

.btn-outline-light {
    color: white;

    border-color: rgba(255,255,255,0.4);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
}


/* =========================================
   CONTACT
========================================= */

.contact-grid {
    display: grid;

    grid-template-columns:
        0.85fr 1.15fr;

    gap: 70px;

    align-items: start;
}

.contact-info h2 {
    margin-bottom: 20px;

    color: var(--dark);

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.1;
}

.contact-info > p {
    max-width: 520px;

    margin-bottom: 40px;

    color: var(--text);
}

.contact-items {
    display: grid;

    gap: 25px;
}

.contact-item {
    display: flex;

    gap: 15px;
}

.contact-item > span {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #edf5ff;

    border-radius: 10px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item small {
    color: var(--muted);

    font-size: 11px;
}

.contact-item a,
.contact-item p {
    color: var(--dark);

    font-size: 14px;
    font-weight: 600;
}


/* FORM */

.contact-form-wrapper {
    padding: 35px;

    background: var(--light);

    border: 1px solid var(--border);

    border-radius: 20px;
}

.contact-form h3 {
    margin-bottom: 5px;

    color: var(--dark);

    font-size: 24px;
}

.contact-form > p {
    margin-bottom: 25px;

    color: var(--text);

    font-size: 14px;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: var(--dark);

    font-size: 12px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 13px 14px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 8px;

    outline: none;

    font-size: 13px;

    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 3px rgba(11,99,206,0.08);
}

.form-group textarea {
    resize: vertical;
}

.form-button {
    width: 100%;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    background: #071321;

    color: white;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.4fr
        1.2fr 
        1.2fr
        1.2fr
        1.2fr;

    gap: 50px;

    padding-top: 70px;
    padding-bottom: 60px;
    
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-brand > p {
    max-width: 300px;

    margin-bottom: 25px;

    color: #a8b7c7;

    font-size: 13px;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 11px;
}

.footer-column h3 {
    margin-bottom: 10px;

    font-size: 14px;
}

.footer-column a,
.footer-column p {
    color: #9caabd;

    font-size: 13px;

    transition: 0.3s;
}

.footer-column a:hover {
    color: white;
}

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

.social-links a {
    color: #a8b7c7;

    font-size: 12px;
}

.footer-bottom {
    padding: 20px 0;

    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
    color: #758398;

    font-size: 12px;
}


/* =========================================
   FOOTER APP DOWNLOAD
========================================= */

.footer-app-text {
    max-width: 220px;

    margin-bottom: 18px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.6;
}


.app-download {
    width: 185px;

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 10px;

    padding: 9px 12px;

    background: #111;

    border: 1px solid #333;

    border-radius: 8px;

    color: white;

    transition: 0.3s;
}


.app-download:hover {
    background: #000;

    transform: translateY(-2px);

    border-color: #555;
}


.app-icon {
    width: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-size: 20px;

    line-height: 1;
}


.app-download-text {
    display: flex;

    flex-direction: column;

    line-height: 1.1;
}


.app-download-text small {
    margin-bottom: 3px;

    color: #ddd;

    font-size: 7px;

    letter-spacing: .4px;
}


.app-download-text strong {
    color: white;

    font-size: 15px;

    font-weight: 600;
}



@media (max-width: 800px) {

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;

        display: none;
        flex-direction: column;

        padding: 20px;

        background: #fff;

        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }
}