/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: Arial, monospace;
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
 align-items: center;

}

/* Header Styles */
header {
    background-color: #222;
    color: #fff;
    padding: 10px 0;
    padding-bottom: 25px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 40px;
    text-decoration: none;
    color: #fff;
    padding-bottom: 25px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav li {
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
}

.centerit {
  text-align: center;

}

.centerer {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Styles */
.hero {
    background-image: url('hero-image.jpg');
    background-size: cover;
    color: #000000;
    padding: 100px 0;
    text-align: center;
    align-items: center;
}

.hero h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.WhiteText{
    color: white;
	
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.2s;
}
.TitleHak{
  color: #3498db;
  font-weight: 900;
}

.btn:hover {
    background-color: #2980b9;
}

/* Blog Styles */
.blog {
    background-image: url("https://cdn.pixabay.com/photo/2016/11/29/09/16/architecture-1868667_1280.jpg");
    padding: 40px 0;
 border: 3px solid #d3d3d3;
}

.blog h2 {
    text-align: center;
    margin-bottom: 30px;
}

.blog-posts {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.centered-box {
    text-align: left;
    padding: 20px;
    border: 1px solid #ccc;
}

.post {
    background-color: #fff;
    border: 1px solid #e2e2e2;
    padding: 20px; 
    margin-bottom: 20px;
    width: calc(33.3333% - 20px);
}

.post img {
    max-width: 100%;
    height: auto;
}

.post h3 {
    font-size: 20px;
    margin: 10px 0;
}

.h-divider {
  margin: auto;
  margin-top: 40px;
  width: 80%;
  position: relative;
}

.h-divider .shadow {
  overflow: hidden;
  height: 20px;
}

.h-divider .shadow:after {
  content: '';
  display: block;
  margin: -25px auto 0;
  width: 100%;
  height: 25px;
  border-radius: 125px/12px;
  box-shadow: 0 0 8px black;
}

.h-divider .text {
  width: 100px;
  height: 45px;
  padding: 10px;
  position: absolute;
  bottom: 100%;
  margin-bottom: -33px;
  left: 50%;
  margin-left: -60px;
  border-radius: 100%;
  box-shadow: 0 2px 4px #999;
  background: white;
}

.h-divider .text i {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  right: 4px;
  border-radius: 100%;
  border: 1px dashed #aaa;
  text-align: center;
  line-height: 50px;
  font-style: normal;
  color: #999;
}

.h-divider .text2 {
  width: 70px;
  height: 70px;
  position: absolute;
  bottom: 100%;
  margin-bottom: -35px;
  left: 50%;
  margin-left: -25px;
  border-radius: 100%;
  box-shadow: 0 2px 4px #999;
  background: white;
}

.h-divider img {
  
  margin: 5px;
  max-width: 60px;
  border-radius: 50%;
  border: 1px dashed #aaa;
}



/* Footer Styles */
footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.fa {
  padding: 20px;
  font-size: 60px;
  width: 80px;
  text-align: center;
  text-decoration: none;
  border-radius: 5%;
}

.fa-instagram {
  background: #3498db;
  color: white;

}

/* Add a hover effect if you want */
.fa:hover {
  opacity: 0.8;
}
