
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

/* HEADER */
header {
  background: #111;
  color: #fff;
  padding: 15px 8%;
  display: flex;
  justify-content: space-between;
}

header h1 {
  margin: 0;
  font-size: 22px;
}

nav a {
  color: #ccc;
  text-decoration: none;
}

nav a:hover {
  color: #f4c430;
}

/* MAIN */
.container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  padding: 40px 8%;
}

/* BLOG POST */
.blog-post {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}

.blog-post img {
  width: 100%;
  border-radius: 8px;
}

.blog-post h2 {
  margin: 15px 0;
}

.blog-post p {
  color: #555;
  line-height: 1.6;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #f4c430;
  text-decoration: none;
}

/* SIDEBAR */
.sidebar {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}

.sidebar h3 {
  margin-bottom: 15px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  margin-bottom: 10px;
}

.sidebar a {
  text-decoration: none;
  color: #333;
}

/* FOOTER */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
  }
}



/* SPACE BELOW NAVBAR */
.container{
  margin-top:100px;   /* 🔥 adds gap */
}



.brand-banner {
  font-size: 22px;
  font-weight: bold;
  color: #0a567a;
  margin-left: 10px;
  display: flex;
}
.logo{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}


.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand-banner {
  font-size: 20px;
  font-weight: 700;
  color: #fff; /* IMPORTANT for blue bg */
  line-height: 1.2;
}

.brand-banner {
  white-space: nowrap;
}


.hero {
  margin-top: 80px; /* adjust based on navbar height */
}


.hero {
  padding-top: 120px;
}


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
}


.logo {
  display: flex;
  align-items: center;
  gap: 12px; /* 👈 THIS ADDS SPACE BEFORE ICON */
}

.logo img {
}



@media (max-width: 768px) {

  .hero {
    flex-direction: column;
    padding: 20px 15px; /* reduce space */
    min-height: auto;   /* remove full height issue */
  }

  .hero-content {
    width: 100%;
    text-align: center;
    margin-top: 0; /* remove extra push */
  }

  .hero-content h1 {
    padding-top: 20px; /* FIX: was 140px ❌ */
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
    margin: 10px 0;
  }

}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-container {
  display: flex;
  justify-content: center;   /* 🔥 CENTER ALL */
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col {
  max-width: 300px;
}

.whatsapp-icon {
  color: #25D366;
  font-size: 22px;
  margin-right: 10px;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 10px;
}


.whatsapp-icon{
    color:#25D366 !important;
    font-size:24px;
    margin-right:10px;
}


.info-box{
    display:flex;
    align-items:center;
    gap:10px;
}

.location-icon{
    color:#EA4335 !important;   /* Google Maps red */
    font-size:24px;
    width:24px;
    text-align:center;
}

.info-box span{
    color:#fff;
    font-size:16px;
    font-weight:500;
}

.footer-contact p{
    display:flex;
    align-items:center;
    gap:12px;
    margin:12px 0;
    color:#fff;
    font-size:15px;
}

.footer-icon{
    width:22px;
    font-size:20px;
    text-align:center;
}

.location{
    color:#EA4335;      /* Google Maps Red */
}

.email{
    color:#ffffff !important;      /* Blue */
}

.whatsapp{
    color:#25D366;      /* WhatsApp Green */
}


.footer-icon.email{
    color: #4dabff;
    font-size: 22px;
    margin-right: 10px;
    transition: .3s;
}
