@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;400;500;700&display=swap');


:root {
  --brand-primary:   #004894;  /* Main company blue — used on nav, buttons, headings */
  --brand-light:     #7ec8f0;  /* Lighter accent blue — used on badges, hover states */
  --brand-dark:      #003a7a;  /* Darker blue — used for hover states on the nav */
 
  --page-bg:         #f0f4f9;  /* Subtle blue-tinted off-white page background */
  --card-bg:         #ffffff;  /* Pure white card backgrounds */
  --card-border:     #dde5ef;  /* Soft blue-grey card border colour */
  --field-bg:        #e8f0fa;  /* Light blue used inside icon wrappers and form fields */
 
  --text-dark:       #1a2a3a;  /* Near-black for headings */
  --text-body:       #555555;  /* Dark grey for body/paragraph text */
  --text-muted:      #777777;  /* Lighter grey for descriptions and meta text */
  --text-faint:      #999999;  /* Very light grey — authors, timestamps, hints */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
 
body {
  font-family: 'Nunito Sans', sans-serif !important;
  background: var(--page-bg);
  color: var(--text-body);
  font-size:16px;
}
h1, h2, h3, h4, h5, p{
	font-family: 'Nunito Sans', sans-serif !important;
}

h1{
	font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    position: relative;
    margin-bottom: 2rem;
}

.caption {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;          /* Spreads the letters for a label feel */
  color: var(--brand-primary);    /* Brand blue — stands out against the page */
  margin-bottom: 5px;
  display: block;                 /* Ensures it sits on its own line */
}
 

h2 {
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1.1rem;
  line-height: 1.3;
  text-transform: capitalize;
}
 

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 4px;
      text-transform: capitalize;
}
 

p {
  line-height: 1.6;
  color: var(--text-body);
    margin-bottom: 10px;
}
 

.text-muted {
  color: var(--text-muted);
  line-height: 1.55;
}
 

a{
  text-decoration:none;
  color: #004894;
}

a:active, a:hover {
  text-decoration:underline;
}

 
/*nav*/
.navbar {
  width: 100%;
  background: var(--brand-primary);
  color: white;
  padding: 0.75rem 1rem;
  position: relative;
  z-index: 10;
}

.nav-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  max-height: 50px;
}

.nav-center {
  width: 50%;
}

.nav-center > ul {
  display: flex;
  justify-content: space-between; /* OR use space-around/space-evenly */
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  width: 100%; /* Important to allow spacing across full nav */
}

.nav-center a,
.nav-right .phone {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  color: #000;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  display: none;
  padding: 0.5rem 0;
  z-index: 20;
  list-style: none; /* ?? Removes bullets */
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 0.5rem 1rem;
}

.dropdown-menu a {
  color: #004894;
  font-weight: 500;
  text-decoration: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hamburger {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Mobile menu */
.mobile-only {
  display: none;
}

.mobile-menu {
  display: none;
  background: #fff;
  padding: 1rem;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
   color: #1a1a1a;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu ul li {
  margin-bottom: 1rem;
}

.mobile-menu a {
  text-decoration: none;
  color: #004894;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .nav-wrapper {
    flex-wrap: wrap;
  }

  .mobile-menu.show {
    display: block;
  }
}

.w3-container, .w3-panel{
	margin:0;
	padding:0;
}

.w3-row-padding{
    padding: 0 8px!important;
    max-width: 1200px!important;
    width: 100%!important;
    margin-left: auto!important;
    margin-right: auto!important;
}


.w3-center {
    text-align: left !important;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

section{
	padding: 4rem 0px!important;
}


.cta-strip-btn {
    background: #fff;
    color: #004894;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
	margin-top:20px;
}

footer{
	padding: 3rem 10rem!important;
	font-size: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var( --brand-dark);
}
	footer p{	
		color:#fff;
	}
	footer h4 {
		color:#fff;
	}
	footer li a{
		color:#fff;
	}
	footer li{
		padding:0!important;
	}
	.Aligner {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: row;
		max-width: 1200px;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	
@media (max-width: 480px) {	
	footer {
		padding: 3rem 1rem!important;
	}
	footer li{
		margin-bottom:20px;
	}
}

/***make default  single strip sections**/
.card-link {
  font-weight: 500;
  color: var(--brand-primary);
  text-decoration: none;
  display: inline-block;
  margin-top: 8px;
}
 
.card-link:hover {
  text-decoration: underline;
}

header{
	background: var(--brand-primary);
	height: auto;
	padding: 2.5rem 2rem 2.5rem!important;
	position: relative;
	overflow: hidden;
}
	.header-inner{
	  max-width: 1200px;
	  margin: 0 auto;
	  position: relative;
	  z-index: 1;
	}
	header p{
		color:#fff;
	}

.slab-container2{
	  display: grid;
	  grid-template-columns: repeat(2, 1fr);
	  gap: 12px;
}	
.slab-container3{
	  display: grid;
	  grid-template-columns: repeat(3, 1fr);
	  gap: 12px;
}
.slab{
  background: var(--card-bg);
  border-radius: 10px;
  border: 0.5px solid var(--card-border);
  padding: 1rem;
 }
 
 .singleSlab{
 background: var(--card-bg);
    border-radius: 10px;
    border: 0.5px solid var(--card-border);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
	.singleSlabImage{
		background: var(--field-bg);
	  border-radius: 10px;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  flex-shrink: 0;   
	}
		.singleSlabImage img{
			height:260px;
		}

.terms{
	margin-top:10px;
}

.cardImage{
  background: var(--field-bg);        /* Light blue tint */
  display: flex;
  align-items: center;
  justify-content: center;
}
	.cardImage  img{
		height: 100%;
		padding: 10px;
		  max-width: 100%;
		  height: auto;
		  display: block;
	}
	
.cardBody{
  padding: 10px 12px 12px;
}



@media (max-width: 1200px) {
	.w3-center{
		padding-left: 10px !important;
        padding-right: 10px !important;
	}
	.slab-container3, .slab-container2 {
		grid-template-columns: 1fr 1fr;   /* 3 col ? 2 col on tablet */
	}
	.singleSlab, .singleSlabImage{
		display:grid;
	}
}

@media (max-width: 480px) {
	.slab-container3, .slab-container2 {
		grid-template-columns: 1fr;   /* 3 col ? 2 col on tablet */
	}
	.w3-center{
		padding-left: 10px !important;
        padding-right: 10px !important;
	}

}

 