:root {

    --primary: #0b3c5d;

    --secondary: #328cc1;

    --light: #f5f7fa;

    --dark: #222;

    --max-width: 1200px;

}



* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

    font-family: Arial, Helvetica, sans-serif;

}



body {

    background: #fff;

    color: var(--dark);

    line-height: 1.6;

}



/* =========================

   HEADER WITH FULL-WIDTH IMAGE

========================= */



.main-header {

    position: relative;

    width: 100vw;                 /* 🔑 full browser width */

    min-height: 50vh;            /* 🔑 full screen height */

    

    background-image:

        linear-gradient(

            rgba(0,0,0,0.35),

            rgba(0,0,0,0.35)

        ),

        url("../images/header4.jpg");



    background-size: cover;       /* fills screen proportionally */

    background-position: center;  /* keeps focus centered */

    background-repeat: no-repeat;



    display: flex;

    align-items: center;          /* vertical centering */

}





/* Header content container */

.header-container {

    max-width: 1200px;

    height: 100%;

    margin: 0 auto;

    padding: 0 20px;



    display: flex;

    justify-content: space-between;

    align-items: center;

}





/* Navigation */

.main-nav ul {

    list-style: none;

    display: flex;

    gap: 24px;

    margin: 0;

    padding: 10px 20px;

    background: rgba(0,0,0,0.35); /* menu bar effect */

    border-radius: 4px;

}



.main-nav a {

    font-family: Calibri, Arial, sans-serif;

    font-size: 25px;

    font-weight: 600;

    color: #ffffff;

    text-decoration: none;

}



.main-nav a:hover {

    text-decoration: underline;

}



/* =========================

   RESPONSIVE

========================= */

@media (max-width: 900px) {

    .header-container {

        flex-direction: column;

        justify-content: center;

        text-align: center;

        gap: 15px;

    }



    .site-title {

        font-size: 30px;

    }



    .main-nav ul {

        justify-content: center;

        flex-wrap: wrap;

    }

}







/* MOBILE */

@media (max-width: 768px) {

    .main-header {

        height: 140px;

    }



    nav ul {

        gap: 15px;

    }

}



nav a:hover {

    text-decoration: underline;

}



/* Layout */

.container {

    max-width: var(--max-width);

    margin: auto;

    padding: 0 20px;

}



section {

    padding: 60px 0;

}



.light-bg {

    background: var(--light);

}



h2 {

    color: var(--primary);

    margin-bottom: 15px;

}



p {

    margin-bottom: 15px;

}



/* Cards */

.card-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 30px;

}



.card {

    background: #fff;

    padding: 30px;

    border-radius: 6px;

    box-shadow: 0 2px 10px rgba(0,0,0,0.08);

}



/* Partners */

.partners ul {

    list-style: none;

    columns: 2;

    margin-top: 20px;

}



.partners li {

    padding: 5px 0;

}



/* Contact */

.contact-info p {

    margin-bottom: 8px;

}



/* Footer */

footer {

    background: var(--primary);

    color: #fff;

    text-align: center;

    padding: 20px;

    font-size: 14px;

}



/* Responsive */

@media (max-width: 768px) {

    .header-container {

        flex-direction: column;

        gap: 15px;

    }



    nav ul {

        flex-wrap: wrap;

        justify-content: center;

    }

}



/* Who We Are Section */

.who-we-are {

    background: #fff;

    padding: 60px 0;

}



.section-title {

    color: #6aa84f;

    font-size: 22px;

    margin-bottom: 40px;

}



.who-grid {

    display: grid;

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

    gap: 30px;

}



/* DEFAULT: photo cards */

.who-card img {

    width: 100%;

    height: auto;

    object-fit: cover;      /* good for photos */

    border-radius: 6px;

    display: block;

}



/* LOGO CARD FIX */

.logo-card img {

    height: 120px;          /* smaller */

    object-fit: contain;    /* 🔑 correct for logos */

    background: #fff;

    padding: 15px;

}





/* Responsive */

@media (max-width: 1024px) {

    .who-grid {

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

    }

}



@media (max-width: 600px) {

    .who-grid {

        grid-template-columns: 1fr;

    }

}



/* Partners Section */

.partners-section {

    background: #fff;

    padding: 60px 0;

}



.partners-layout {

    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 50px;

}



.section-subtitle {

    font-size: 13px;

    letter-spacing: 1px;

    color: #333;

    margin-bottom: 15px;

}



.partners-banner {

    width: 100%;

    border-radius: 6px;

    margin: 20px 0;

}



/* Right Column */

.partners-right p {

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 15px;

}



.registration-list {

    list-style: none;

    padding-left: 0;

}



.registration-list li {

    font-size: 13px;

    color: #c00000;

    margin-bottom: 8px;

}



/* Responsive */

@media (max-width: 992px) {

    .partners-layout {

        grid-template-columns: 1fr;

    }

}



/* Partner logo board */

.single-logo {

    display: flex;

    justify-content: center;

    align-items: center;

    margin: 40px 0 20px;

    padding: 30px 20px;

    background: #fafafa;              /* subtle separation */

    border-radius: 8px;

}



.single-logo img {

    width: 100%;

    max-width: 760px;                 /* 🔑 key value */

    height: auto;

    object-fit: contain;

}



/* Footer section */

.footer-partners {

    background: #111;

    color: #ccc;

    padding: 60px 0;

}



.footer-grid {

    display: grid;

    grid-template-columns: 3fr 1.2fr; /* 🔑 partners + contact */

    gap: 60px;

}



/* Titles */

.footer-title {

    color: #fff;

    margin-bottom: 25px;

}



/* Partner grid */

.partner-grid {

    display: grid;

    grid-template-columns: repeat(5, 1fr); /* 5 per row */

    gap: 30px 20px;

}



.partner-logo {

    display: flex;

    align-items: center;

    gap: 12px;

}



.partner-logo img {

    width: 60px;

    height: 60px;

    object-fit: contain;

    background: #fff;

    padding: 8px;

    border-radius: 6px;

}



.partner-logo span {

    font-size: 12px;

    line-height: 1.4;

    color: #bbb;

}



/* Contact column */

.contact-column p {

    font-size: 13px;

    line-height: 1.6;

    margin-bottom: 15px;

}



.contact-column a {

    color: red;

    text-decoration: none;

    font-size: 13px;

}



.back-top {

    display: inline-block;

    margin-top: 10px;

    color: red;

    font-size: 12px;

}



/* Responsive */

@media (max-width: 1200px) {

    .partner-grid {

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

    }

}



@media (max-width: 900px) {

    .footer-grid {

        grid-template-columns: 1fr;

    }



    .partner-grid {

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

    }

}



@media (max-width: 500px) {

    .partner-grid {

        grid-template-columns: 1fr;

    }

}





:root {

    --green: #6aa84f;

    --text: #333;

    --max-width: 1200px;

}



* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

    font-family: Arial, Helvetica, sans-serif;

}



body {

    background: #fff;

    color: var(--text);

    line-height: 1.7;

}



.container {

    max-width: var(--max-width);

    margin: auto;

    padding: 0 20px;

}



/* Main Grid */

.ps-section {

    padding: 60px 0;

}



.ps-grid {

    display: grid;

    grid-template-columns: 1.2fr 2fr 1fr;

    gap: 40px;

}



/* Left Column */

.ps-left h3 {

    color: var(--green);

    font-size: 14px;

    margin-bottom: 15px;

    text-transform: uppercase;

}



.ps-left ul {

    list-style: disc;

    padding-left: 20px;

    margin-bottom: 30px;

}



.ps-left li {

    font-size: 13px;

    margin-bottom: 8px;

}



/* Middle Column */

.ps-middle h3 {

    color: var(--green);

    font-size: 16px;

    margin: 25px 0 10px;

}



.ps-middle p {

    font-size: 14px;

    margin-bottom: 15px;

}



/* Right Column */

.ps-right img {

    width: 100%;

    border-radius: 6px;

    margin-bottom: 20px;

    object-fit: cover;

}



/* Responsive */

@media (max-width: 992px) {

    .ps-grid {

        grid-template-columns: 1fr;

    }



    .ps-right {

        display: flex;

        gap: 20px;

    }



    .ps-right img {

        width: 33%;

    }

}



@media (max-width: 600px) {

    .ps-right {

        flex-direction: column;

    }



    .ps-right img {

        width: 100%;

    }

}



.image-strip {

    display: grid;

    grid-auto-flow: column;

    grid-auto-columns: minmax(220px, 1fr);

    gap: 12px;

    margin: 20px 0 30px;

    justify-content: start;

}



/* Images */

.image-strip img {

    width: 100%;

    height: 180px;          /* 🔑 bigger & nicer */

    object-fit: cover;

    border-radius: 6px;

    display: block;

}



.page-title {

    color: #333;

    font-size: 28px;

    margin-bottom: 15px;

}



.section-spacing {

    margin-top: 60px;

}



.section-subtitle {

    font-weight: bold;

    font-size: 14px;

    margin-bottom: 20px;

}



.intro-text {

    font-size: 14px;

    margin-bottom: 20px;

}



.simple-list {

    list-style: disc;

    padding-left: 20px;

    margin-bottom: 40px;

}



.simple-list li {

    font-size: 14px;

    margin-bottom: 6px;

}



.principal-title {

    font-size: 16px;

    font-weight: bold;

    margin: 35px 0 10px;

}



/* =========================

   PRINCIPALS PAGE LAYOUT

========================= */



.principals-section {

    padding: 60px 0;

}



/* Two-column layout */

.principals-grid {

    display: grid;

    grid-template-columns: 280px 1fr;

    gap: 40px;

}



/* LEFT COLUMN */

.suppliers-column {

    font-size: 13px;

}



.column-title {

    color: #6aa84f;

    font-size: 16px;

    margin-bottom: 10px;

}



.small-text {

    font-size: 12px;

    margin-bottom: 15px;

}



.supplier-list {

    list-style: none;

    padding-left: 0;

    margin-bottom: 30px;

}



.supplier-list li {

    color: #6aa84f;

    margin-bottom: 8px;

}



/* Supplier images */

.supplier-images img {

    width: 100%;

    margin-bottom: 15px;

    border-radius: 4px;

}



/* RIGHT COLUMN */

.principals-column p {

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 18px;

}



.principal-name {

    font-size: 14px;

    font-weight: bold;

    margin-top: 25px;

    margin-bottom: 5px;

}



/* World map image */

.principals-map img {

    width: 100%;

    margin: 20px 0;

}



/* =========================

   RESPONSIVE

========================= */

@media (max-width: 992px) {

    .principals-grid {

        grid-template-columns: 1fr;

    }



    .suppliers-column {

        margin-bottom: 40px;

    }

}





/* =========================

   PRINCIPALS PAGE LAYOUT

========================= */



.principals-section {

    padding: 60px 0;

}



/* Two-column layout */

.principals-grid {

    display: grid;

    grid-template-columns: 280px 1fr;

    gap: 40px;

}



/* LEFT COLUMN */

.suppliers-column {

    font-size: 13px;

}



.column-title {

    color: #6aa84f;

    font-size: 16px;

    margin-bottom: 10px;

}



.small-text {

    font-size: 12px;

    margin-bottom: 15px;

}



.supplier-list {

    list-style: none;

    padding-left: 0;

    margin-bottom: 30px;

}



.supplier-list li {

    color: #6aa84f;

    margin-bottom: 8px;

}



/* Supplier images */

.supplier-images img {

    width: 100%;

    margin-bottom: 15px;

    border-radius: 4px;

}



/* RIGHT COLUMN */

.principals-column p {

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 18px;

}



.principal-name {

    font-size: 14px;

    font-weight: bold;

    margin-top: 25px;

    margin-bottom: 5px;

}



/* World map image */

.principals-map img {

    width: 100%;

    margin: 20px 0;

}



/* =========================

   RESPONSIVE

========================= */

@media (max-width: 992px) {

    .principals-grid {

        grid-template-columns: 1fr;

    }



    .suppliers-column {

        margin-bottom: 40px;

    }

}



.principals-section {

    padding: 60px 0;

}



.principals-grid {

    display: grid;

    grid-template-columns: 280px 1fr;

    gap: 40px;

    align-items: flex-start;

}



.suppliers-column img {

    width: 100%;

    max-width: 240px;

    margin: 20px 0;

    border-radius: 4px;

    display: block;

}



.supplier-list {

    list-style: none;

    margin: 15px 0 30px;

}



.supplier-list li {

    color: #5fae3b;

    font-size: 14px;

    margin-bottom: 6px;

}



.map-image {

    width: 100%;

    max-width: 100%;

    height: auto;

    display: block;

    margin: 30px auto 40px;

    object-fit: contain;

}



.principals-column p {

    margin-bottom: 20px;

    font-size: 14px;

    color: #333;

}



.principal-name {

    margin-top: 30px;

    font-size: 16px;

    font-weight: bold;

    color: #0b4f6c;

}



.column-title {

    font-size: 22px;

    margin-bottom: 10px;

}



.small-text {

    font-size: 12px;

    text-transform: uppercase;

    color: #666;

    margin-bottom: 20px;

}



@media (max-width: 900px) {

    .principals-grid {

        grid-template-columns: 1fr;

    }



    .suppliers-column {

        order: 2;

    }



    .principals-column {

        order: 1;

    }



    .suppliers-column img {

        max-width: 100%;

    }

}



/* =========================

   CLIENTS PAGE

========================= */



.clients-section {

    padding: 60px 0;

}



.clients-grid {

    display: grid;

    grid-template-columns: 1.3fr 1fr;

    gap: 40px;

    align-items: flex-start;

}



/* LEFT COLUMN */

.clients-logos h2 {

    margin-bottom: 6px;

}



.clients-logos .subtitle {

    font-size: 13px;

    color: #555;

    margin-bottom: 25px;

}



/* LOGO GRID */

.logo-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));

    gap: 18px;

    align-items: center;

}



.logo-grid img {

    max-width: 100%;

    max-height: 70px;

    object-fit: contain;

    filter: grayscale(100%);

    transition: 0.3s ease;

}



.logo-grid img:hover {

    filter: grayscale(0%);

    transform: scale(1.05);

}



/* RIGHT COLUMN */

.clients-text h2 {

    margin-bottom: 5px;

}



.clients-text h4 {

    font-size: 14px;

    margin-bottom: 20px;

    color: #666;

}



.clients-text p {

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 16px;

    color: #333;

}



/* RESPONSIVE */

@media (max-width: 900px) {

    .clients-grid {

        grid-template-columns: 1fr;

    }

}



.clients-image-wrapper {

    width: 100%;

    margin-top: 20px;

}



.clients-image-wrapper img {

    width: 100%;

    max-width: 100%;

    height: auto;

    display: block;

    margin: 0 auto;

    object-fit: contain;

}



/* =========================

   CONTACT PAGE

========================= */



.contact-section {

    padding: 60px 0;

}



/* Title */

.page-title {

    font-size: 26px;

    margin-bottom: 5px;

}



/* Business hours */

.business-hours {

    font-size: 13px;

    color: #555;

    margin-bottom: 25px;

}



/* Banner */

.contact-banner {

    margin-bottom: 30px;

}



.contact-banner img {

    width: 100%;

    height: auto;

    border-radius: 4px;

    display: block;

}



/* Company info */

.company-info {

    margin-bottom: 40px;

}



.company-name {

    font-weight: bold;

    color: #5fae3b;

}



/* Grid layout */

.contact-grid {

    display: grid;

    grid-template-columns: 320px 1fr;

    gap: 30px;

    align-items: flex-start;

}



/* Office image */

.office-image img {

    width: 100%;

    height: auto;

    border-radius: 4px;

}



/* Office details */

.office-details h3 {

    font-size: 15px;

    margin-bottom: 15px;

    color: #5fae3b;

}



.office-details p {

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 14px;

    color: #333;

}



.office-details a {

    color: #0b4f6c;

    text-decoration: none;

}



.office-details a:hover {

    text-decoration: underline;

}



/* Responsive */

@media (max-width: 900px) {

    .contact-grid {

        grid-template-columns: 1fr;

    }



    .office-image {

        max-width: 400px;

    }

}





.contact-btn img {

    width: 220px;

    max-width: 100%;

    height: auto;

    cursor: pointer;

    transition: transform 0.2s ease, box-shadow 0.2s ease;

}



.contact-btn img:hover {

    transform: translateY(-2px);

    box-shadow: 0 6px 15px rgba(0,0,0,0.25);

}



/* CENTER HEADER CONTENT */

.center-header {

    height: 100%;

    display: flex;

    flex-direction: column;     /* stack title + menu */

    justify-content: center;    /* vertical center */

    align-items: center;        /* horizontal center */

    text-align: center;

}



/* Title */

.site-title {

    font-family: Calibri, "Segoe UI", Arial, sans-serif;

    font-size: 80px;            /* medium */

    font-weight: 600;

    color: #ffffff;             /* white like your image */

    margin-bottom: 15px;

}



/* Menu */

.main-nav ul {

    list-style: none;

    display: flex;

    gap: 20px;

    padding: 8px 18px;

    background: rgba(0,0,0,0.35);

    border-radius: 4px;

}






.main-nav a:hover {

    text-decoration: underline;

}

