:root{
--main-color: #151b46;
--secondary-color: #f4b400;
}

html,
body {
    overflow-x: hidden;
}
body{
  background: #f1f1f1;
  font-family: sans-serif,arial,Helvetica;
}

a,
a:hover,
a:focus{
  text-decoration: none;
  outline: none;
}
.btn:focus,
button:focus{
  outline: none;
}

.menu{
  margin:0;
  padding:0;
  list-style:none;
}

h2.page-heading{
  margin: 5px 0 30px;
  padding: 0 5px 10px;
  border-bottom: 2px solid var(--secondary-color);
}

/* Modern Navbar Style for Interior Company */
.navbar {
    background-color: #151b46 !important; /* Your color */
    z-index: 1030; /* Ensure it’s above other elements */
    width: 100%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    /* margin-top: 10px; */
}
.navbar-brand video {
    object-fit: contain;
}
.navbar-brand {
    font-weight: 600;
    color: #f4b400 !important;
    /* Gold accent */
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    position: relative;
    font-weight: 500;
    color: #f9f9f9;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 0;
    height: 2px;
    background-color: #f4b400;
    transition: width 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #f4b400;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}
.navbar-toggler {
    border: none;
    color: #151b46;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    background-color: #f4b400;
}

/* Dropdown on Hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    background-color: #1b1f3b;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.dropdown-menu .dropdown-item {
    color: #f9f9f9;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f4b400;
    /* Gold background on hover */
    color: #1b1f3b;
    /* Dark text for contrast */
}

/* Back-to-top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #f4b400;
    color: #151b46;
    border: none;
    padding: 12px;
    border-radius: 50%;
    display: none; /* shown via JS on scroll */
    cursor: pointer;
    z-index: 1100; /* make sure it’s above navbar */
}

/* Footer */
.site-footer {
    font-size: 0.95rem;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.site-footer h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.site-footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.site-footer a:hover {
    color: #f4b400;
    /* Brand accent color */
}

.social-icons a {
    color: #ccc;
    margin-right: 12px;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #f4b400;
}

/* Main Content Styling */
#main-content{
  padding: 30px 30px;
  min-height: auto;
  margin-top: 90px;
}

@media (min-width: 768px) {
  .custom-row {
    display: flex;
    flex-wrap: nowrap;
  }

  .custom-row .col-md-8 {
    width: 66.6666%;
  }

  .custom-row .col-md-4 {
    width: 33.3333%;
  }
}

@media (max-width: 767.98px) {
  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  #main-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .post-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
#main-content .post-container{
  background-color: #fff;
  padding: 25px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
  border-radius: 5px;
}

#main-content .post-content{
  border-bottom: 1px solid #d1d1d1;
  padding: 0 0 30px;
  margin-bottom:30px;
}

#main-content .post-content img{
width: 100%;
}

#main-content .post-content .post-img{
  border: 3px solid #e7e7e7;
  display: block;
  height: 145px;
  overflow: hidden;
  transition: border .3s;
}
#main-content .post-content .post-img:hover{
border: 3px solid var(--main-color);
}

#main-content .post-content h1{
  font-size: 21px;
  line-height: 28px;
  font-weight: 600;
  margin: 0 0 7px;

}
#main-content .post-content h1 a{
  color: var(--main-color);
  transition:all 0.3s;
}
#main-content .post-content h1 a:hover{
  color:var(--secondary-color);
}

#main-content .post-content .post-information span{
  color: #606060;
  font-size: 12px;
  text-transform: capitalize;
  margin: 0 5px 5px 0;
  display: inline-block;
}

#main-content .post-content .post-information i{
  color: var(--main-color);
  margin-right: 1px;
}

#main-content .post-content .post-information a{
  color: #606060;
  text-decoration: none;
}

#main-content .post-content .post-information a:hover{
  color: var(--secondary-color);
  text-decoration: none;
}

#main-content .post-content p,
#main-content .single-post p{
  color: #000000;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin:0 0 10px;
}

#main-content .post-content a.read-more{
  color: #fff;
  background-color: var(--main-color);
  font-size: 12px;
  text-transform: capitalize;
  padding: 3px 8px;
  border-radius: 2px;
  transition: all 0.3s;
}

#main-content .post-content a.read-more:hover{
  color: #fff;
  background-color: var(--secondary-color);
}

#main-content .single-post{
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

#main-content .single-post h1{
    font-size: 28px;
    line-height: 30px;
    font-weight: 600;
    color: var(--main-color);
}

#main-content .single-post .description p{
    font-size: 17px;
    color: var(--main-color);
}

#main-content .single-post .post-information{
  margin: 0 0 10px;
}
#main-content .single-post p{
  text-align: justify;
}

#main-content .single-post img.single-feature-image{
  width: 80%;
  margin: 0 auto 20px;
  display: block;
  border: 3px solid #e7e7e7;
}

/* Pagination  Styling */
.pagination {
  display: flex;
  justify-content: center;
}

.page_links {
  background-color: #ccc;
  font-family: arial, verdana;
  font-size: 12px;
  text-decoration: none;
  border:1px solid #000;
  padding: 6px;
  margin: 3px;
}

#page_a_link{
  font-size: 12px;
  border:1px #000000 solid;
  color:#000;
  background-color: #cccccc;
  padding: 6px;
  margin: 3px;
  text-decoration: none;
}

i.fa{
  color:#222;
}

/* Sidebar Styling */
#sidebar h4{
  color: #1A1A1A;
  font-size: 17px;
  line-height: 27px;
  font-weight:600;
  text-transform: uppercase;
  padding: 0 0 0 5px;
  margin: 0 0 21px;
  border-left: 3px solid var(--main-color);
}

#sidebar .search-box-container{
  background-color: #fff;
  padding: 20px;
  margin: 0 0 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
}

#sidebar .search-post{
  padding: 0;
}
#sidebar .search-post input{
  color: #606060;
}
#sidebar .search-post input:focus{
  box-shadow: none;
  border-color: #999;
}

#sidebar .search-post .btn{
  font-weight: 600;
  text-transform: uppercase;
  padding: 6px 8px;
  background-color: var(--main-color);
  border-color: var(--main-color);
  outline: none;
}

#sidebar .search-post .btn:hover,
#sidebar .search-post .btn:focus{
  text-shadow: 0 0 3px var(--secondary-color);
  background-color: #f4b400;
  border-color: #f4b400;
}

#sidebar .search-post i.fa{
  font-size: 16px;
  color: #999999;
  line-height: 40px;
  float:right;
}

#sidebar .recent-post-container{
  padding: 20px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
}

#sidebar .recent-post{
  border-bottom: 1px solid #e7e7e7;
  padding: 0 0 15px;
  margin: 0 0 15px;
}

#sidebar .recent-post:last-child{
  margin: 0;
  padding: 0;
  border: none;
}

#sidebar .recent-post .post-img{
  display: inline-block;
  width: 33%;
  border: 3px solid rgba(0,0,0,0.3);
  vertical-align: top;
  transition: border .3s;
}

#sidebar .recent-post .post-img:hover{
border: 3px solid var(--main-color);
}

#sidebar .recent-post .post-img img{
  width: 100%;
}

#sidebar .recent-post .post-content{
  width: 65%;
  display: inline-block;
  border: none;
  padding: 0 0 0 7px;
  margin: 0;
}

#sidebar .recent-post h2{
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  margin: 0 0 5px;
}
#sidebar .recent-post h2 a{
  color: var(--main-color);
}
#sidebar .recent-post h2 a:hover{
  color: var(--secondary-color);
}
#sidebar .recent-post span{
  font-size: 11px;
  display: inline-block;
  margin: 0 5px 10px 0;
}

#sidebar .recent-post span a{
  color: #21a2ac;
}
#sidebar .recent-post span a:hover{
  color: var(--secondary-color);
}
#sidebar .recent-post span i{
  color: var(--main-color);
}

#sidebar .recent-post a.read-more{
  color: var(--main-color);
  width: 65px;
  font-size: 11px;
  text-align: center;
  padding: 0;
  display: block;
  transition: all 0.3s;
}

#sidebar .recent-post a.read-more:hover{
  color: var(--secondary-color)
}


        