

@font-face {
	font-family:'GT-Walsheim-Pro';src:url("fonts/GT-Walsheim-Pro-Regular/GT-Walsheim-Pro-Regular.eot");
	src:url("fonts/GT-Walsheim-Pro-Regular/GT-Walsheim-Pro-Regular.woff") format("woff"),
	url("fonts/GT-Walsheim-Pro-Regular/GT-Walsheim-Pro-Regular.ttf") format("truetype");
	font-weight:400;
	font-style:normal;
	}
	
@font-face {
	font-family:'GT-Walsheim-Pro';src:url("fonts/GT-Walsheim-Pro-Medium/GT-Walsheim-Pro-Medium.eot");
					src:url("fonts/GT-Walsheim-Pro-Medium/GT-Walsheim-Pro-Medium.woff") format("woff"),
					url("fonts/GT-Walsheim-Pro-Medium/GT-Walsheim-Pro-Medium.ttf") format("truetype");
					font-weight:300;
					font-style:normal
			}
					
@font-face{
	font-family:'GT-Walsheim-Pro';src:url("fonts/GT-Walsheim-Pro-Regular/GT-Walsheim-Pro-Regular.eot");
	src:url("fonts/GT-Walsheim-Pro-Regular/GT-Walsheim-Pro-Regular.woff") format("woff"),
	url("fonts/GT-Walsheim-Pro-Regular/GT-Walsheim-Pro-Regular.ttf") format("truetype");
	font-weight:200;
	font-style:normal
	}

@font-face {
	font-family:'GT-Walsheim-Pro';src:url("fonts/GT-Walsheim-Pro-Light/GT-Walsheim-Pro-Light.eot");
	src:url("fonts/GT-Walsheim-Pro-Light/GT-Walsheim-Pro-Light.woff") format("woff"),
	url("fonts/GT-Walsheim-Pro-Light/GT-Walsheim-Pro-Light.ttf") format("truetype");
	font-weight:100;
	font-style:normal}
	
@font-face{
	font-family:'GT-Walsheim-Pro-Bold';src:url("fonts/GT-Walsheim-Pro-Bold/GT-Walsheim-Pro-Bold.eot");
	src:url("fonts/GT-Walsheim-Pro-Bold/GT-Walsheim-Pro-Bold.woff") format("woff"),
	url("fonts/GT-Walsheim-Pro-Bold/GT-Walsheim-Pro-Bold.ttf") format("truetype");
	font-weight:400;
	font-style:normal}
	
@font-face{
	font-family:'GT-Walsheim-Pro-Bold-Oblique';src:url("fonts/GT-Walsheim-Pro-Bold-Oblique/GT-Walsheim-Pro-Bold-Oblique.eot");
	src:url("fonts/GT-Walsheim-Pro-Bold-Oblique/GT-Walsheim-Pro-Bold-Oblique.woff") format("woff"),
	url("fonts/GT-Walsheim-Pro-Bold-Oblique/GT-Walsheim-Pro-Bold-Oblique.ttf") format("truetype");
	font-weight:400;
	font-style:italic}
	
@font-face{ 
	font-family:'GT-IconSet';src:url("fonts/GT-IconSet/GT-IconSet.eot");
	src:url("fonts/GT-IconSet/GT-IconSet.ttf") format("truetype"),url("fonts/GT-IconSet/GT-IconSet.woff") format("woff");
	font-weight:400;
	font-style:normal}
	

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap");
:root {
    --navy: #08284a;
    --blue: #0d477d;
    --gold: #d99a18;
    --light: #f5f7fa;
    --text: #273645;
    --muted: #687684;
    --white: #fff;
    --shadow: 0 10px 30px rgba(8, 40, 74, 0.1);
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    /* font-family: Inter, Arial, sans-serif; */
	font-family: 'GT-Walsheim-Pro';
    color: var(--text);
    background: #fff;
    line-height: 1.65;
	    font-size: 17px;
}
a {
    text-decoration: none;
    color: inherit;
}
  
.whatsapp-float {
    position: fixed;
    width: 58px;
    height: 58px;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    background: #20bd5a;
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 15px;
        right: 15px;
        font-size: 28px;
    }
}
.container {
    width: min(1180px, 92%);
    margin: auto;
}
.topbar {
    background: #06213c;
    color: #fff;
    font-size: 15px;
}
.topbar .container {
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.topbar span {
    opacity: 0.95;
}
.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}
.nav {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand img {
    width: 336px;
    height: auto;
}
nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}
nav a {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    position: relative;
}
nav a:hover,
nav a.active {
    color: var(--gold);
}
nav a.active:after {
    content: "";
    height: 2px;
    background: var(--gold);
    left: 0;
    right: 0;
    bottom: -9px;
    position: absolute;
}
.menu {
    display: none;
    border: 0;
    background: none;
    color: var(--navy);
    font-size: 28px;
}
.quote {
    background: #0396D9;
    color: #fff;
    padding: 11px 18px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 800;
}
.quote:hover {
    background: #b87d0b;
}
.hero {
    min-height: 610px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(3, 24, 45, 0.92), rgba(3, 24, 45, 0.45)),
        url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1900&q=85")
            center/cover;
}
.hero .content {
    color: #fff;
    max-width: 780px;
    padding: 90px 0;
}
.eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
}
.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(45px, 6vw, 75px);
    line-height: 1.03;
    margin: 12px 0 18px;
	font-family: 'GT-Walsheim-Pro';
}
.hero h1 span {
    color: var(--gold);
}
.hero p {
    font-size: 18px;
    max-width: 690px;
    color: #eef3f8;
    margin-bottom: 28px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 800;
    transition: 0.2s;
}
.btn-gold {
    background: var(--gold);
    color: #fff;
}
.btn-gold:hover {
    transform: translateY(-2px);
    background: #b97e0c;
}
.btn-white {
    border: 1px solid #fff;
    color: #fff;
    margin-left: 10px;
}
.btn-white:hover {
    background: #fff;
    color: var(--navy);
}
.trust {
    background: #fff;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}
.trust .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.trust-item {
    text-align: center;
    padding: 18px;
    border-right: 1px solid #e7ebef;
}
.trust-item:last-child {
    border: 0;
}
.trust-item strong {
    display: block;
    color: var(--navy);
    font-size: 24px;
}
.trust-item small {
    color: var(--muted);
    font-weight: 600;
    font-size: 16px;
	 
}
.section {
    padding: 85px 0;
}
.section.alt {
    background: var(--light);
}
.head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 45px;
}
.head h2,
.title {
    /* font-family: "Playfair Display", serif; */
	font-family: 'GT-Walsheim-Pro';
    color: var(--navy);
    font-size: 35px;
    line-height: 1.6;
    margin: 8px 0 12px;
}
.head p {
    color: var(--muted);
}
.services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.service {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #edf0f3;
    transition: 0.25s;
}
.service:hover {
    transform: translateY(-6px);
}
.service-img {
    height: 190px;
    background-size: cover;
    background-position: center;
}
.service-body {
    padding: 24px;
}
.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.12);
    display: grid;
    place-items: center;
    color: var(--gold);
    font-size: 21px;
    margin-top: -48px;
    position: relative;
    margin-bottom: 15px;
}
.service h3 {
    font-size: 19px;
    color: var(--navy);
    margin-bottom: 8px;
}
.service p {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 15px;
}
.more {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
}
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-img {
    height: 510px;
    border-radius: 8px;
    background: url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1100&q=85")
        center/cover;
    box-shadow: var(--shadow);
}
.checks {
    list-style: none;
    margin: 24px 0;
}
.checks li {
    margin: 9px 0;
    font-size: 16px;
    font-weight: 600;
}
.checks li:before {
    content: "✓";
    color: var(--gold);
    font-weight: 900;
    margin-right: 11px;
}
.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 28px;
}
.value {
    background: #fff;
    padding: 23px;
    border: 1px solid #e6ebef;
    border-radius: 7px;
    text-align: center;
}
.value .ico {
    font-size: 25px;
    color: var(--gold);
}
.value h4 {
    color: var(--navy);
    margin: 6px 0;
    font-size: 16px;
}
.value p {
    font-size: 16px;
    color: var(--muted);
}
.why {
    background:
        linear-gradient(90deg, rgba(4, 29, 52, 0.95), rgba(4, 29, 52, 0.78)),
        url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=80") center/cover;
    color: #fff;
}
.why .head h2 {
    color: #fff;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.why-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.why-item .circle {
    min-width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gold);
    display: grid;
    place-items: center;
    color: #fff;
}
.why-item h4 {
    font-size: 18px;
    margin-bottom: 3px;
}
.why-item p {
    font-size: 16px;
    color: #d9e3ec;
}
.cta {
    background: var(--gold);
    color: #fff;
    padding: 45px 0;
}
.cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}
.cta h2 {
    /* font-family: "Playfair Display", serif; */
    font-size: 34px;
}
.cta .btn {
    background: #0C99DB;
}
.pagehero {
    padding: 85px 0;
    background:#06213c;
    color: #fff;
}
.pagehero h1 {
     
    font-size: 56px;
}
.crumb {
    color: #e2e9f0;
    font-size: 13px;
}
.service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}
.detail {
    padding: 32px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e5eaf0;
    box-shadow: var(--shadow);
}
.detail .bigicon {
    font-size: 35px;
    color: var(--gold);
    margin-bottom: 10px;
}
.detail h3 {
    
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 10px;
}
.detail p {
    color: var(--muted);
    font-size: 17px;
}
.detail ul {
    list-style: none;
    margin-top: 15px;
}
.detail li {
    font-size: 17px;
    margin: 6px 0;
}
.detail li:before {
    content: "●";
    font-size: 8px;
    color: var(--gold);
    margin-right: 10px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 35px;
}
.contact-card {
    background: var(--navy);
    color: #fff;
    border-radius: 8px;
    padding: 38px;
}
.contact-card h2 {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    margin-bottom: 12px;
}
.contact-card > p {
    color: #d9e4ed;
    font-size: 14px;
}
.contact-item {
    display: flex;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.contact-icon {
    min-width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold);
    display: grid;
    place-items: center;
    font-size: 19px;
}
.contact-item strong {
    display: block;
    color: #fff;
    font-size: 15px;
}
.contact-item span {
    display: block;
    color: #d8e0e8;
    font-size: 15px;
}
.form {
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.form h2 {
    color: var(--navy);
    margin-bottom: 18px;
}
.fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.field label {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: var(--navy);
}
input,
select,
textarea {
    width: 100%;
    margin-top: 6px;
    padding: 12px;
    border: 1px solid #d8e0e7;
    border-radius: 4px;
    font: inherit;
    outline: none;
}
textarea {
    min-height: 135px;
    resize: vertical;
}
.full {
    grid-column: 1/-1;
}
.form button {
    border: 0;
font-family: 'GT-Walsheim-Pro';
    cursor: pointer;
}
.status {
    font-size: 13px;
    margin-top: 12px;
    font-weight: 600;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.gallery img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 7px;
}
footer {
    background: #061e36;
    color: #c5d0da;
    padding: 45px 0 18px;
}
.footgrid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 35px;
}
.footgrid img {
    width: 90px;
    background: #fff;
    border-radius: 4px;
    margin-bottom: 15px;
}
.footgrid h3 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 12px;
}
.footgrid p,
.footgrid li {
    font-size: 16px;
}
.footgrid ul {
    list-style: none;
}
.footgrid li {
    margin: 6px 0;
}
.copy {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 28px;
    padding-top: 15px;
    text-align: center;
    font-size: 14px;
}
.social {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}
.social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    color: var(--navy);
    display: grid;
    place-items: center;
    font-size: 16px;
}
.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 55px;
    height: 55px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 25px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    z-index: 90;
}
@media (max-width: 950px) {
    nav ul {
        display: none;
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 12px 5%;
        box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
    }
    nav ul.open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    nav li {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }
    .menu {
        display: block;
    }
    .quote {
        display: none;
    }
    .services {
        grid-template-columns: 1fr 1fr;
    }
    .split,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-img {
        height: 380px;
    }
    .trust .container {
        grid-template-columns: 1fr 1fr;
    }
    .trust-item:nth-child(2) {
        border: 0;
    }
    .footgrid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .topbar .container {
        padding: 7px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .nav {
        height: 72px;
    }
    .brand img {
        width: 205px;
    }
    nav ul {
        top: 72px;
    }
    .hero {
        min-height: 620px;
    }
    .hero .content {
        padding: 60px 0;
    }
    .hero h1 {
        font-size: 44px;
    }
    .hero p {
        font-size: 16px;
    }
    .btn-white {
        margin-left: 0;
        margin-top: 10px;
    }
    .section {
        padding: 65px 0;
    }
    .head h2,
    .title {
        font-size: 34px;
    }
    .services,
    .service-list,
    .why-grid,
    .gallery,
    .footgrid,
    .fields,
    .values {
        grid-template-columns: 1fr;
    }
    .trust .container {
        grid-template-columns: 1fr 1fr;
    }
    .trust-item {
        padding: 13px 7px;
    }
    .trust-item strong {
        font-size: 20px;
    }
    .pagehero {
        padding: 65px 0;
    }
    .pagehero h1 {
        font-size: 44px;
    }
    .cta .container {
        flex-direction: column;
        align-items: flex-start;
    }
    .full {
        grid-column: auto;
    }
}
/* Non-perishable food product section */
.food-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}.food-card{background:#fff;border:1px solid #e6ebef;border-radius:9px;overflow:hidden;box-shadow:var(--shadow);transition:.25s}.food-card:hover{transform:translateY(-5px)}.food-card img{display:block;width:100%;height:180px;object-fit:cover}.food-card>div{padding:19px}.food-card span{display:inline-block;color:var(--gold);font-size:12px;font-weight:800;letter-spacing:1px;margin-bottom:5px}.food-card h3{font-size:18px;color:var(--navy);margin-bottom:6px}.food-card p{font-size:14px;color:var(--muted);line-height:1.6}.food-note{margin-top:35px;padding:24px 26px;background:#fff;border-left:4px solid var(--gold);box-shadow:var(--shadow);display:flex;align-items:center;gap:16px;flex-wrap:wrap}.food-note strong{color:var(--navy);font-size:16px}.food-note span{color:var(--muted);font-size:14px;flex:1;min-width:260px}@media(max-width:950px){.food-grid{grid-template-columns:1fr 1fr}}@media(max-width:600px){.food-grid{grid-template-columns:1fr}.food-card img{height:210px}.food-note{align-items:flex-start}}
