
/* Base */
body {
    margin:0;
    font-family:Arial, sans-serif;
    background:#f5f7fb;
    color:#222;
}
.scroll-banner {
  width: 100%;
  overflow: hidden;
  background: #0A2A43;
  color: white;
  padding: 10px 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.scroll-text {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 12s linear infinite;
}

@keyframes scroll-left {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Header */
.header {
    position:sticky;
    top:0;
    background:#fff;
    padding:15px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:2px solid #d4af37;
    box-shadow:0 2px 6px rgba(0,0,0,0.1);
    z-index:10000;
}

.logo-wrap{
    display:flex;
    align-items:center;
    gap:4px;
}

.logo{
    height:60px;
    width:auto;
    display:block;
}

.logo-text{
    font-size:24px;
    font-weight:bold;
    color:#1b2a4a;
    margin:0;
    white-space:nowrap;
}

nav a{
    margin-left:14px;
    text-decoration:none;
    font-size:16px;
    font-weight:bold;
    color:#1b2a4a;
}

.nav a:hover,
.nav a.active {
  color: #f4c44f;
}

/* Hero */
.hero {
    background: url('building.jpg') center/cover no-repeat;
    background-attachment: fixed;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-small {
  min-height: 220px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 27, 59, 0.25);
}

.hero-content {
  position: relative;
  max-width: 720px;
  padding: 40px;
  text-align: left;
}

.hero-content h1 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 12px;
}

.hero-content p {
  color: #e5e9f5;
  margin-bottom: 18px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
  font-size: 14px;
}

/* Gold variant */
.btn.gold {
  background-color: #f4c44f;
  color: #0b1b3b;
}

.btn.gold:hover {
  background-color: #d9ab3f;
  color: #ffffff;
}

/* Sections */
.section {
  padding: 40px 40px 30px;
  background-color: #ffffff;
  margin: 20px auto;
  max-width: 1100px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.section.center {
  text-align: center;
}

/* Grids */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.card {
  background-color: #f5f7fa;
  border-radius: 8px;
  padding: 16px;
  font-size: 14px;
  border: 1px solid #dde3ee;
}

.card h3 {
  margin-bottom: 8px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.process-item {
  background-color: #f5f7fa;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid #dde3ee;
}

ul {
  padding-left: 20px;
}

/* Trust grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.trust-item {
  background-color: #f5f7fa;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid #dde3ee;
}

/* Footer */
.site-footer {
  background-color: #0b1b3b;
  color: #ffffff;
  padding: 30px 40px 20px;
  margin-top: 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto 16px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-message h2 {
  color: #f4c44f;
  margin-bottom: 10px;
}

.footer-message p {
  margin-bottom: 8px;
}

/* Existing CSS */

/* Add this at the bottom */

.social-icons {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 20px;
}

.social-icons a {
    color: #ffffff;
    font-size: 26px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #d4af37;
}

/* Footer image */
.footer-image {
  position: relative;
  margin-top: 60px;
}

.footer-image img {
  width: 100%;
  max-width: 250px;
  border-radius: 10px;
  object-fit: cover;
  opacity: 0.90;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  opacity: 0.85;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width:768px){

.header{
    flex-direction:column;
    align-items:center;
    padding:15px 20px;
}

.logo{
    height:60px;
}

.logo-text{
    font-size:20px;
    text-align:center;
}

.nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin-top:15px;
}

.nav a,
nav a{
    margin:0;
}

.hero{
    background-attachment:scroll;
    height:auto;
    min-height:450px;
    padding:50px 20px;
}

.hero-content{
    padding:20px;
    text-align:center;
}

.hero-content h1{
    font-size:30px;
}

.hero-content p{
    font-size:16px;
}

.section{
    padding:25px 20px;
    margin:15px;
}

.footer-inner{
    flex-direction:column;
}

.footer-grid{
    grid-template-columns:1fr;
    padding:30px 20px;
    text-align:center;
}

.footer-image img{
    max-width:100%;
}

.footer-bottom{
    text-align:center;
}

}
/* Trust Bar */

.trust-bar{

display:flex;

justify-content:center;

gap:30px;

flex-wrap:wrap;

background:#0f2d5c;

color:white;

padding:18px;

font-weight:600;

}

.trust-item{

padding:8px 15px;

}

/* CTA */

.cta-section{

text-align:center;

padding:80px 20px;

background:#f8f9fc;

}

.cta-section h2{

font-size:42px;

margin-bottom:20px;

color:#13294b;

}

.cta-section p{

max-width:850px;

margin:auto;

font-size:20px;

line-height:1.8;

margin-bottom:35px;

}

/* Footer */

.footer-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:40px;

padding:60px;

}

.footer-grid h3,

.footer-grid h4{

color:#f2b632;

margin-bottom:15px;

}

.footer-grid p,

.footer-grid a{

color:white;

text-decoration:none;

line-height:2;

}

.footer-bottom{

text-align:center;

padding:25px;

border-top:1px solid rgba(255,255,255,.2);

color:white;

}

/* Gold Apply Button */

.apply-btn{

background:#f2b632;

padding:12px 22px;

border-radius:6px;

color:#13294b !important;

font-weight:bold;

transition:.3s;

}

.apply-btn:hover{

background:#d89f00;

}
/* ===========================
   MOBILE HAMBURGER MENU
=========================== */

.logo-wrap{
    display:flex;
    align-items:center;
    gap:12px;
}

.menu-toggle{
    display:none;
    font-size:32px;
    cursor:pointer;
    color:#13294b;
}

@media (max-width:768px){

.header{
    flex-wrap:wrap;
    padding:15px 20px;
}

.menu-toggle{
    display:block;
    margin-left:auto;
}

.nav{
    display:none;
    width:100%;
    flex-direction:column;
    margin-top:15px;
}

.nav.active{
    display:flex;
}

.nav a{
    margin:0;
    padding:14px;
    text-align:center;
    border-bottom:1px solid #ececec;
}

.hero{
    background-attachment:scroll;
}

}

@media (max-width: 768px) {
    .logo-wrap img {
        height:50px;
    }

    .logo-text {
        font-size:18px;
        margin-left:-4px;
    }
}

/* ===========================
   PROCESS PAGE (process.html)
=========================== */

.section-subtitle{
    text-align:center;
    color:#555;
    font-size:16px;
    margin-bottom:10px;
}

.process-list{
    display:flex;
    flex-direction:column;
    gap:20px;
    margin-top:20px;
}

.process-step{
    display:flex;
    align-items:flex-start;
    gap:24px;
    background:#f5f7fa;
    border:1px solid #dde3ee;
    border-radius:10px;
    padding:24px;
}

.step-number{
    flex:0 0 auto;
    width:56px;
    height:56px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#13294b;
    color:#f2b632;
    font-weight:bold;
    font-size:20px;
    border-radius:50%;
}

.step-content h3{
    margin:0 0 8px;
    color:#13294b;
}

.step-content p{
    margin:0;
    color:#555;
    line-height:1.7;
}

@media (max-width:600px){
    .process-step{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }
}

/* ===========================
   WHO WE SERVE PAGE (serve.html)
=========================== */

.serve-details .intro{
    max-width:850px;
    margin:0 auto 30px;
    text-align:center;
    color:#555;
    font-size:17px;
    line-height:1.8;
}

.client-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:18px;
}

.client-card{
    background:#f5f7fa;
    border:1px solid #dde3ee;
    border-radius:10px;
    padding:20px;
}

.client-card h3{
    color:#13294b;
    margin:0 0 10px;
    font-size:18px;
}

.client-card p{
    margin:0;
    color:#555;
    line-height:1.7;
    font-size:14px;
}

/* ===========================
   SERVICES PAGE (services.html)
=========================== */

.specialties-list h3{
    color:#13294b;
    margin:22px 0 10px;
}

.specialties-list h3:first-child{
    margin-top:0;
}

.specialties-list ul{
    margin:0 0 10px;
    color:#555;
    line-height:1.8;
}
