/* style.css – navy, milk & maroon palette */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Inter', system-ui, sans-serif;
    background-color: #fcf8f0;  /* milk base */
    color: #0a2342;              /* navy text */
    line-height: 1.5;
}

/* ----- color palette ----- */
:root {
    --navy: #0a2342;
    --milk: #fcf8f0;
    --maroon: #9e2a2b;
    --maroon-light: #b94546;
    --navy-light: #1f3a5f;
    --border-soft: #e0d6cc;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* section titles */
.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.maroon-text {
    color: var(--maroon);
}

/* ---------- HEADER / LOGO ---------- */
.header-area {
    background-color: var(--navy);
    color: var(--milk);
    padding: 1rem 0;
    border-bottom: 4px solid var(--maroon);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.logo-block {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.logo-icon i {
    font-size: 2.5rem;
    color: var(--maroon);
}
.logo-text {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.logo-text span {
    color: var(--maroon);
    font-weight: 400;
}
.navbar ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}
.navbar a {
    color: var(--milk);
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
}
.navbar a:hover {
    border-bottom-color: var(--maroon);
    color: white;
}

/* ---------- HERO with IMAGE ---------- */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-color: var(--navy); /* fallback */
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-image: url('Img.jpeg');
    background-size: cover;
    background-position: center 30%;
    opacity: 0.4;
    
}
.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero-content {
    max-width: 650px;
    color: var(--milk);
}
.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: white;
}
.hero-content p {
    font-size: 1.5rem;
    margin: 1.2rem 0 2rem;
    color: rgba(255,255,255,0.85);
}
.hero-stats {
    display: flex;
    gap: 2rem;
}
.stat-badge i {
    color: var(--maroon);
    margin-right: 0.5rem;
    background: rgba(255,255,240,0.15);
    padding: 0.5rem;
    border-radius: 50%;
}

/* ---------- ABOUT (milk container, navy border) ---------- */
.about-section {
    background-color: var(--milk);
    padding: 4rem 0;
    border-bottom: 2px solid var(--border-soft);
}
.about-container {
    background: white;
    padding: 3rem;
    border-radius: 32px;
    box-shadow: 0 10px 30px -10px rgba(10,35,66,0.1);
    text-align: center;
    border-left: 8px solid var(--maroon);
}
.about-icon i {
    font-size: 3.5rem;
    color: var(--maroon);
    margin-bottom: 1rem;
}

/* ---------- MISSION (navy container, milk text) ---------- */
.mission-section {
    background-color: var(--navy);
    padding: 4rem 0;
}
.mission-container {
    background: var(--navy-light);
    padding: 3rem;
    border-radius: 32px;
    text-align: center;
    color: var(--milk);
    border-right: 8px solid var(--maroon);
}
.mission-icon i {
    font-size: 3.5rem;
    color: var(--maroon);
    margin-bottom: 1rem;
}
.mission-container .section-title {
    color: var(--milk);
}

/* ---------- SERVICES (cards) ---------- */
.services-section {
    padding: 5rem 0;
    background-color: var(--milk);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.service-card {
    background: white;
    padding: 2.5rem 1.8rem;
    border-radius: 24px;
    box-shadow: 0 10px 25px -8px rgba(0,0,0,0.1);
    text-align: center;
    transition: 0.2s;
    border: 1px solid var(--border-soft);
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--maroon);
}
.card-icon {
    font-size: 3rem;
    color: var(--maroon);
    margin-bottom: 1.2rem;
}
.service-card h3 {
    color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

/* ---------- PHILOSOPHY (milk container, maroon accent) ---------- */
.philosophy-section {
    background-color: var(--milk);
    padding: 3rem 0 5rem;
}
.philosophy-container {
    background: white;
    padding: 3rem;
    border-radius: 32px;
    border-bottom: 8px solid var(--maroon);
    text-align: center;
}
.phil-icon i {
    font-size: 3rem;
    color: var(--maroon);
    margin-bottom: 1rem;
}
.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0 0;
}
.phil-item {
    background: var(--milk);
    padding: 0.8rem 1.8rem;
    border-radius: 60px;
    font-weight: 600;
    color: var(--navy);
    border: 1px solid var(--border-soft);
    box-shadow: 0 4px 8px rgba(0,0,0,0.02);
}
.phil-item i {
    color: var(--maroon);
    margin-right: 0.5rem;
}

/* ---------- SISTER BRAND (detailed) ---------- */
.sister-section {
    background-color: var(--navy);
    padding: 5rem 0;
}
.sister-container {
    background: var(--navy-light);
    border-radius: 48px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    border: 2px solid var(--maroon);
    color: var(--milk);
}
.sister-image img {
    width: 100%;
    border-radius: 30px;
    border: 5px solid var(--maroon);
    box-shadow: 0 25px 30px -10px black;
}
.sister-label {
    color: var(--maroon);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: inline-block;
}
.sister-text h2 {
    font-size: 2.5rem;
    margin: 0.2rem 0 1rem;
}
.sister-description {
    font-size: 1.1rem;
    margin: 1rem 0;
    opacity: 0.9;
}
.sister-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
}
.sister-details i {
    color: var(--maroon);
    margin-right: 0.4rem;
}
.sister-quote {
    font-style: italic;
    border-left: 4px solid var(--maroon);
    padding-left: 1.5rem;
    margin-top: 1.5rem;
}

/* ---------- CONTACT (address & social) ---------- */
.contact-section {
    background-color: var(--milk);
    padding: 5rem 0;
}
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    padding: 3rem;
    border-radius: 40px;
    box-shadow: 0 20px 30px -10px rgba(10,35,66,0.1);
}
.contact-info h3, .contact-form-simple h3 {
    color: var(--navy);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}
.contact-info p {
    margin: 1.2rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.contact-info i {
    color: var(--maroon);
    width: 30px;
    font-size: 1.5rem;
}
.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
}
.social-links a {
    background: var(--navy);
    color: var(--milk);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    border: 2px solid transparent;
    text-decoration: none;
}
.social-links a:hover {
    background: var(--maroon);
    border-color: var(--navy);
}
.contact-form-simple input {
    width: 100%;
    padding: 1rem 1.2rem;
    margin-bottom: 1.2rem;
    border: 1px solid var(--border-soft);
    border-radius: 50px;
    font-size: 1rem;
    background: var(--milk);
}
.contact-form-simple button {
    background: var(--maroon);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.2s;
    width: 100%;
}
.contact-form-simple button:hover {
    background: var(--navy);
}
.form-note {
    text-align: center;
    margin-top: 0.8rem;
    color: var(--navy-light);
}

/* ---------- FOOTER ---------- */
.footer {
    background-color: var(--navy);
    color: var(--milk);
    padding: 2rem 0;
    text-align: center;
    border-top: 5px solid var(--maroon);
}
.footer-icons i {
    color: var(--maroon);
    margin: 1rem 0.5rem 0;
    font-size: 1.4rem;
}

/* responsiveness */
@media (max-width: 800px) {
    .header-flex {
        flex-direction: column;
        gap: 0.8rem;
    }
    .navbar ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .sister-container, .contact-container {
        grid-template-columns: 1fr;
    }
    .philosophy-grid {
        flex-direction: column;
        align-items: center;
    }
}
#landing-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--navy);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.swell-text {
    font-family: 'Inter', sans-serif; /* A clean, modern font */
    font-size: clamp(2rem, 8vw, 5rem); /* Responsive size: scales with screen */
    font-weight: 900;
    letter-spacing: -2px;
    text-transform: uppercase;
    animation: swell 2s ease-in-out infinite;
}

/* Color for "Boggie" */
.word-boggie {
    color: var(--maroon); 
    
}

/* Color for "Energies" */
.word-energies {
    color: var(--milk);
    
    margin-left: 10px; /* Space between words */
}

@keyframes swell {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08); /* Subtle, professional swell */
    }
}

/* Fade out class for JavaScript */
.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

/* founder.css – navy, milk & maroon palette (separate file) */



/* main founder card */
.founder-wrapper {
    max-width: 1300px;
    width: 100%;
}

.founder-card {
    background: #ffffff;
    border-radius: 48px;
    box-shadow: 0 30px 50px -20px rgba(10, 35, 66, 0.3);
    overflow: hidden;
    border: 1px solid #e0d6cc;
}

/* two-column layout */
.founder-container {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 0;
    background: white;
}

/* ----- LEFT COLUMN (navy) ----- */
.founder-image-col {
    background: #0a2342;        /* deep navy */
    padding: 2.5rem 2rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-right: 6px solid #9e2a2b; /* maroon accent */
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    max-width: 320px;
    border-radius: 40px;
    background: #1f3a5f;
    border: 4px solid #9e2a2b;
    box-shadow: 0 20px 25px -10px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Important! */
    position: relative;
    transition: all 0.2s ease;
}
.actual-foundg {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the photo fills the box without stretching */
    border-radius: 36px; /* Slightly less than the parent to fit inside the 4px border */
    display: block;
}

.image-placeholder {
    /* Add this to your existing .image-placeholder block */
    overflow: hidden; 
    position: relative;
}

.image-placeholder i {
    font-size: 5rem;
    color: #b94546;              /* maroon-light */
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.image-placeholder span {
    font-size: 1rem;
    letter-spacing: 2px;
    background: rgba(255,255,240,0.1);
    padding: 0.4rem 1rem;
    border-radius: 60px;
    color: #fcf8f0;
}

/* name under image */
.founder-name-title {
    margin-top: 2rem;
    text-align: center;
    color: #fcf8f0;
}

.founder-name-title h2 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.maroon-text {
    color: #9e2a2b;
}

.founder-role {
    color: #b94546;
    font-weight: 500;
    font-size: 1.2rem;
    display: block;
    margin-top: 0.5rem;
    border-bottom: 2px dotted #b94546;
    padding-bottom: 0.5rem;
}

.tiny-tagline {
    margin-top: 1rem;
    color: #cfcfcf;
    font-size: 0.9rem;
    display: flex;
    gap: 0.8rem;
    justify-content: center;
}

.tiny-tagline i {
    color: #9e2a2b;
}

/* ----- RIGHT COLUMN (milk) ----- */
.founder-content-col {
    background: #fcf8f0;         /* milk */
    padding: 2.8rem 3rem 3rem 2.5rem;
}

.section-caption {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.section-caption i {
    font-size: 2rem;
    color: #9e2a2b;
    background: rgba(158, 42, 43, 0.1);
    padding: 0.6rem;
    border-radius: 50%;
}

.section-caption h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #0a2342;
    letter-spacing: -0.02em;
}

.summary {
    font-size: 1.15rem;
    line-height: 1.5;
    color: #1e2b3c;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e0d6cc;
}

/* expertise grid – 2 columns */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem 2rem;
    margin-bottom: 2.2rem;
}

.expertise-item {
    background: white;
    padding: 1.3rem 1.5rem;
    border-radius: 24px;
    box-shadow: 0 5px 12px rgba(10, 35, 66, 0.04);
    border-left: 6px solid #9e2a2b;
    transition: 0.15s;
}

.expertise-item:hover {
    transform: translateY(-3px);
    border-left-color: #0a2342;
}

.expertise-item i {
    color: #9e2a2b;
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
}

.expertise-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0a2342;
    margin-bottom: 0.3rem;
}

.expertise-item p {
    color: #3f4d62;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* badge strip (Document Control, BIM, Agile, PowerBI) */
.badge-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0 2rem;
}

.badge {
    background: #0a2342;
    color: #fcf8f0;
    padding: 0.5rem 1.4rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #9e2a2b;
}

.badge i {
    color: #9e2a2b;
    font-size: 1rem;
}

/* closing line (risk & compliance) */
.closing-line {
    font-size: 1.05rem;
    color: #0a2342;
    border-left: 4px solid #9e2a2b;
    padding-left: 1.5rem;
    font-style: italic;
    margin-top: 1rem;
    background: rgba(158,42,43,0.02);
    padding: 1rem 1.5rem;
    border-radius: 0 40px 40px 0;
}

/* responsive */
@media (max-width: 950px) {
    .founder-container {
        grid-template-columns: 1fr;
    }
    .founder-image-col {
        border-right: none;
        border-bottom: 6px solid #9e2a2b;
        padding: 2rem;
    }
    .image-placeholder {
        max-width: 280px;
    }
}

@media (max-width: 600px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    .section-caption h1 {
        font-size: 2rem;
    }
    .founder-content-col {
        padding: 2rem 1.5rem;
    }
}

/* optional: actual image styling (if you replace placeholder with <img>) */
/*
.actual-founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
*/
