:root {
    --brand-orange: #FF6B35;
    --brand-blue: #003B5C;
    --brand-light-blue: #EAF6FF;
    --text-dark: #2D3436;
    --text-grey: #636E72;
    --white: #ffffff;
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: #FAFAFA;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--brand-blue);
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}

.btn-orange {
    background-color: var(--brand-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.6);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--brand-blue);
}

.btn-outline-dark {
    border: 2px solid var(--brand-blue);
    color: var(--brand-blue);
    margin-top: 40px;
}

.btn-outline-dark:hover {
    background: var(--brand-blue);
    color: var(--white);
}

/* HEADER */
header {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-dark);
}

.logo span {
    color: var(--brand-orange);
}

.logo i {
    font-size: 1.4rem;
    color: var(--brand-blue);
}

.nav-links a {
    margin-left: 30px;
    color: var(--text-dark);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--brand-orange);
}

/* PAGE HEADER */
.page-header {
    background-color: var(--brand-blue);
    padding: 120px 0 60px;
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* HERO */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 59, 92, 0.85), rgba(0, 59, 92, 0.7)),
        url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    margin-top: 60px;
}

.hero-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* SECTIONS */
.section-padding {
    padding: 100px 0;
}

.bg-light {
    background: var(--brand-light-blue);
}

.bg-white {
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-grey);
    font-size: 1.1rem;
}

/* FOUNDERS GRID */
.founders {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.founder-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    width: 350px;
    transition: 0.3s;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.founder-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.founder-info {
    padding: 30px;
}

.founder-info h3 {
    margin-bottom: 5px;
    color: var(--brand-orange);
}

.founder-info .role {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-grey);
    margin-bottom: 15px;
}

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--brand-orange);
}

.service-card:hover {
    transform: scale(1.02);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--brand-blue);
    margin-bottom: 20px;
}

/* BLOG GRID */
.blog-section {
    padding: 80px 0;
}

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

.blog-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--brand-orange);
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.blog-content p {
    color: var(--text-grey);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.read-more {
    margin-top: auto;
    font-weight: 600;
    color: var(--brand-blue);
    font-family: 'Poppins', sans-serif;
}

.read-more:hover {
    color: var(--brand-orange);
}

/* CONTACT PAGE */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-box {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    height: 100%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--brand-orange);
    margin-right: 20px;
    margin-top: 5px;
    width: 25px;
}

.info-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-item p,
.info-item a {
    color: var(--text-grey);
    font-size: 1rem;
}

.info-item a:hover {
    color: var(--brand-orange);
}

.map-container {
    width: 100%;
    height: 250px;
    background: #eee;
    border-radius: 8px;
    margin-top: 30px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    color: var(--brand-blue);
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: 0.3s;
}

.form-control:focus {
    border-color: var(--brand-orange);
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    background-color: var(--brand-orange);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-box {
        margin-bottom: 30px;
    }
}

/* SERVICES PAGE */
.service-row {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 80px 0;
    border-bottom: 1px solid #eee;
}

.service-row:last-child {
    border-bottom: none;
}

.service-row:nth-child(even) {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-content p {
    color: var(--text-grey);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.service-content ul {
    list-style: none;
    margin-top: 20px;
}

.service-content ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.service-content ul li i {
    color: var(--brand-orange);
}

.service-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-visual i {
    font-size: 10rem;
    color: var(--brand-light-blue);
    opacity: 0.5;
}

/* PROCESS STEPS */
.process-section {
    background: var(--white);
    padding: 100px 0;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    position: relative;
    padding: 20px;
}

.step-number {
    background: var(--brand-orange);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 20px;
    font-family: 'Poppins', sans-serif;
}

.process-step h3 {
    margin-bottom: 10px;
}

/* SUBPAGE CONTENT BLOCKS */
.content-section {
    padding: 80px 0;
    background: var(--white);
}

.text-block {
    max-width: 800px;
    margin: 0 auto;
}

.text-block h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.text-block p {
    margin-bottom: 20px;
    color: var(--text-grey);
    font-size: 1.05rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    padding: 30px;
    background: var(--brand-light-blue);
    border-radius: 8px;
    text-align: center;
}

.value-card i {
    font-size: 2rem;
    color: var(--brand-orange);
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    background: #111;
    color: #aaa;
    padding: 60px 0 20px;
}

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

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col a {
    color: #aaa;
}

.footer-col a:hover {
    color: var(--brand-orange);
}

.copyright {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* RESPONSIVE FIXES */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .nav-links a {
        margin: 0;
    }
}

.blog-header {
    background: var(--brand-light-blue);
    padding: 150px 0 60px;
    text-align: center;
}

.blog-meta-header {
    color: var(--brand-orange);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.blog-header h1 {
    font-size: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.3;
}

.article-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.article-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #444;
}

.article-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.article-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.back-link {
    display: inline-block;
    margin-top: 40px;
    color: var(--brand-blue);
    font-weight: 600;
}

.back-link:hover {
    color: var(--brand-orange);
    transform: translateX(-5px);
}