/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

body {
  font-family: "Bebas Neue", sans-serif;
}

/* Global Settings */

a {
  text-decoration: none;
  color: inherit;
}

.navbar {
  background-color: transparent;
  padding: 20px 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar-nav .nav-link {
  font-size: 1.1rem;
  color: #333;
  margin-right: 20px;
}

.navbar-nav .nav-link:hover {
  color: #8d8d4a;
}

/* Global Settings */

a {
  text-decoration: none;
  color: inherit;
}

.navbar {
  background-color: transparent;
  padding: 20px 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar-nav .nav-link {
  font-size: 1.1rem;
  color: #333;
  margin-right: 20px;
}

.navbar-nav .nav-link:hover {
  color: #8d8d4a;
}
/* Sidebar Styles */
.sidebar {
  position: fixed;
  top: 0;
  left: -250px; /* Initially hide the sidebar off-screen */
  width: 250px;
  height: 100%;
  background: #2C2E33;
  color: #FFFFFF;
  transition: left 0.3s ease; /* Smooth transition */
  z-index: 1000; /* Ensure it's above other content */
  padding-top: 60px; /* Space for close button */
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  padding: 15px 20px;
}

.sidebar ul li a {
  color: #030303;
  text-decoration: none;
}

/* Close button for sidebar */
.close-btn {
  font-size: 30px;
  background: transparent;
  border: none;
  color: #0a0909;
  position: absolute;
  top: 20px;
  right: 20px;
}

/* Show sidebar when active */
.sidebar.active {
  left: 0; /* Slide in */
}

/* Hide sidebar on larger screens */
@media (min-width: 768px) {
  .sidebar {
    display: none; /* Hide sidebar on larger screens */
  }
}


/* Hero Section */
/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh; /* Full viewport height */
  width: 100%;
  background-image: url('image/blog.jpg'); /* Background image */
  background-size: cover; /* Cover the entire section */
  background-position: center; /* Center the image */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Hide overflow */
}

.hero-section .container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
}

.left, .right {
  font-size: 9rem; /* Default font size */
  font-weight: bold;
  width: 50%; /* 50% width for each side on desktop */
  position: absolute;
  height: 100%;
  background-color: #8d8d4a; /* Background color for text */
  color: rgb(20, 16, 16); /* Ensure text is visible */
  display: flex; /* Use flexbox for centering */
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
  transition: transform 0.3s ease-in-out;
}

.left {
  text-align: right;
  left: 0;
  animation: move-up 1.7s ease-in-out forwards; /* Animation for left */
  animation-delay: 3s;
}

.right {
  text-align: left;
  right: 0;
  animation: move-down 1.7s ease-in-out forwards; /* Animation for right */
  animation-delay: 3s;
}

@keyframes move-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100vh); } /* Move up by full viewport height */
}

@keyframes move-down {
  0% { transform: translateY(0); }
  100% { transform: translateY(100vh); } /* Move down by full viewport height */
}

/* Responsive Adjustments */
@media only screen and (max-width: 768px) {
  .hero-section .container {
    flex-direction: column; /* Stack items vertically */
    text-align: center; /* Center text */
  }
  .left, .right {
    position: relative; /* Change to relative for mobile */
    width: 100%; /* Full width on mobile */
    transform: translate(0, 0); /* Reset transform */
    font-size: 5rem; /* Smaller font size for mobile */
    height: auto; /* Allow height to adjust for mobile */
  }
  .left {
    animation: move-up 1.5s ease-in-out forwards; /* Allow animations */
  }
  .right {
    animation: move-down 1.5s ease-in-out forwards; /* Allow animations */
  }
}





/* Statistics Section */
.statistics-section {
  position: relative;
  background-color: rgb(255, 255, 255); /* Background color with opacity */
  color: #181414;
  padding: 100px ; /* Adjust padding as needed */
  text-align: center;
  overflow: hidden; /* Hide overflow for wave */
  z-index: 2; /* Ensure the section is above the wave */
  
}

/* Container for statistics items */
.statistics-section .statistics-row {
  display: flex;
  justify-content: space-around; /* Space between items */
  align-items: center; /* Align items vertically */
  width: 100%; /* Full width */
  position: relative; /* Position relative to the section */
  z-index: 3; /* Ensure text is above the wave */
}

.statistics-section .statistic-item {
  text-align: center;
  margin: 0 20px; /* Adjust margin between items */
  position: relative; /* Position relative to the statistics row */
  z-index: 4; /* Ensure text is above the wave */
  color: #110e0e;
}

.statistics-section .statistic-item h3 {
  font-size: 2.5rem; /* Adjust size */
  margin: 0;
  font-weight: bold;
}
.statistic-item h3 {
  transition: count 0.5s ease; /* Change count animation */
}


.statistics-section .statistic-item p {
  margin: 5px 0 0;
  font-size: 1rem;
  text-transform: uppercase;
}

.statistics-section .statistic-item::after {
  content: '';
  width: 10px;
  height: 10px;
  background-color: #ff6700; /* Dot color */
  border-radius: 50%;
  position: absolute;
  bottom: -25px; /* Adjust to position dot on the wave */
  left: 50%;
  transform: translateX(-50%);
}



/* Responsive Adjustments */
@media only screen and (max-width: 768px) {
  .statistics-section .statistics-row {
    flex-direction: column; /* Stack items vertically on smaller screens */
    position: static; /* Reset position to static */
    align-items: center; /* Center align items */
    padding-bottom: 0; /* Remove padding */
  }

  .statistics-section .statistic-item {
    position: relative; /* Reset position to relative */
    bottom: auto; /* Remove bottom positioning */
    left: auto; /* Remove left positioning */
    right: auto; /* Remove right positioning */
    margin-bottom: 20px; /* Add margin between stacked items */
  }

  
}



/* Blog Post Styles */
/* Blog Post Styles */
.blog-post {
  margin-bottom: 30px;
  background-color: #fff;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.post-image {
  width: 100%; /* Full width for images */
  height: auto; /* Maintain aspect ratio */
  border-radius: 5px;
}

.post-info {
  margin-top: 15px;
}

.post-title {
  font-size: 24px;
  margin: 10px 0;
  font-weight: bold;
}

.post-date {
  color: #777;
}

.post-content {
  margin-top: 10px;
}

.read-more {
  margin-top: 15px;
  display: inline-block;
}

/* Sidebar Styles */
.sidebars {
  background-color: #fff; /* White background for sidebar */
  padding: 20px; /* Padding inside sidebar */
  border-radius: 5px; /* Rounded corners */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Add shadow */
}

.search-bar {
  display: flex; /* Flexbox for search input and button */
}

.search-bar input {
  flex: 1; /* Allow input to take up remaining space */
  padding: 10px; /* Padding for input */
  border: 1px solid #ddd; /* Border for input */
  border-radius: 5px 0 0 5px; /* Rounded corners for input */
}

.btn-search {
  background-color: #007bff; /* Button color */
  border: none; /* Remove border */
  border-radius: 0 5px 5px 0; /* Rounded corners */
  padding: 10px 15px; /* Padding for button */
  color: white; /* Text color */
}

.sidebars h4 {
  margin: 15px 0; /* Space below headings */
  font-weight: bold; /* Bold headings */
  font-size: 1.5rem; /* Adjust size as needed */
  color: #333; /* Dark color for headings */
}

.sidebars-divider {
  width: 100%; /* Full width */
  height: 2px; /* Height of the line */
  background-color: #8d8d4a; /* Underline color */
  margin: 10px 0; /* Space above and below */
}

.list-group-item {
  border: none; /* Remove border */
  padding: 10px 15px; /* Padding for list items */
  background-color: transparent; /* Transparent background */
}

.list-group-item a {
  color: #007bff; /* Blue color for links */
}

.list-group-item a:hover {
  text-decoration: underline; /* Underline on hover */
}

.recent-post {
  margin-top: 10px; /* Space above recent posts */
}

.recent-item {
  margin-bottom: 10px; /* Space between recent items */
  display: flex; /* Flexbox for alignment */
  align-items: center; /* Center vertically */
}

.recent-image {
  width: 50px; /* Fixed width for images */
  height: auto; /* Maintain aspect ratio */
  border-radius: 5px; /* Optional: add rounded corners */
  margin-right: 10px; /* Space between image and text */
}

.recent-item a {
  color: #007bff; /* Link color */
}

.recent-item .post-date {
  display: block; /* Block display for date */
  font-size: 0.9rem; /* Smaller size for date */
  color: #777; /* Grey color for date */
}

/* Responsive Styles */
@media only screen and (max-width: 768px) {
  .blog-post {
    padding: 15px; /* Reduced padding for mobile */
  }

  .post-title {
    font-size: 20px; /* Smaller title size */
  }

  .post-content {
    font-size: 14px; /* Smaller content size */
  }

  .sidebars {
    padding: 15px; /* Reduced padding for mobile */
  }

  .sidebars h4 {
    font-size: 1.25rem; /* Smaller heading size */
  }

  .recent-image {
    width: 40px; /* Smaller recent post image */
  }
}




/* Contact Form Styles */
.contact-form {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-control {
  border-radius: 5px;
  border: 1px solid #b4b59d; /* Border color matching the design */
  height: 50px;
  font-size: 16px;
  color: #495057; /* Text color for inputs */
}

.contact-form .form-control:focus {
  border-color: #b4b59d; /* Focus border color */
  box-shadow: none;
}

.contact-form textarea {
  height: 150px;
  resize: none;
  border-radius: 5px;
  border: 1px solid #b4b59d; /* Border color matching the design */
}

.contact-form .btn-primary {
  background-color: #b4b59d; /* Button background color matching design */
  border-color: #b4b59d; /* Button border color */
  color: #fff; /* Button text color */
  font-size: 18px;
  border-radius: 5px;
  width: 200px;
  text-align: center;
}

.contact-form .btn-primary:hover {
  background-color: #9c9e7d; /* Darker shade on hover */
  border-color: #9c9e7d;
}

/* Info Box Styles */
.dbox {
  background: #f9f9f9;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.dbox:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.dbox .icon {
  width: 60px;
  height: 60px;
  background: #b4b59d; /* Background color matching the design */
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
}

.dbox .icon span {
  font-size: 24px;
}

.dbox .text {
  flex: 1;
}

.dbox .text p {
  margin-bottom: 0;
  font-size: 16px;
  color: #b4b59d;;
}

.dbox .text p span {
  font-weight: bold;
  color: #333;
}

.dbox .text a {
  color: #b4b59d; /* Link color matching the design */
  text-decoration: none;
}

.dbox .text a:hover {
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-section .row {
    display: flex;
    flex-direction: column;
  }

  .contact-form, .dbox {
    width: 100%;
    margin-bottom: 30px;
  }

  .contact-form {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .dbox .icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .dbox .text {
    font-size: 14px;
  }
}

/* Testimonial Section */
.testimonial-card {
  border: 2px solid transparent;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 0 15px rgba(39, 46, 41, 0.3);
}

.testimonial-card:hover {
  border-color: #28a745;
  box-shadow: 0 0 15px rgba(40, 167, 69, 0.3);
}

.testimonial-content {
  position: relative;
  padding-top: 20px;
}

.testimonial-content img {
  position: absolute;
  top: -30px;
  left: 20px;
  width: 60px;
  height: 60px;
  border: 2px solid #fff;

}

.card-text {
  font-style: italic;
  margin-bottom: 20px;
  margin-top: 20px;
}

.client-info {
  text-align: right;
}

.card-title {
  margin-bottom: 0;
}

.card-subtitle {
  font-size: 0.9rem;
}






/* Footer Section */

.footer {
  background-color: #2C2E33;
  color: #FFFFFF;
  padding: 40px 0;
}
.footer .footer-col {
  margin-bottom: 30px;
  text-align: left; /* Align all columns to the left */
}
.footer .footer-col h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: left;
}
.footer .footer-col ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0; /* Remove default margin */
}
.footer .footer-col ul li {
  margin-bottom: 10px;
}
.footer .footer-col ul li a {
  color: #CCCCCC;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
}
.footer .footer-col ul li a i {
  margin-right: 8px;
  font-size: 12px;
  color: #A0A084; /* Adjust this color to match the image */
}
.footer .footer-col ul li a:hover {
  color: #FFFFFF;
}
.footer .footer-col address, .footer .footer-col p {
  color: #CCCCCC;
  margin-bottom: 10px;
  font-size: 14px; /* Match font size to other text */
  text-align: left; /* Align text to the left */
}
.footer .footer-col address i {
  margin-right: 10px;
  color: #A0A084; /* Adjust this color to match the image */
  font-size: 14px; /* Adjust size to match the image */
  width: 20px; /* Add a fixed width for alignment */
}
.footer .social-links {
  display: flex;
  gap: 10px; /* Space between social icons */
  margin-top: 15px; /* Add some space above social links */
}
.footer .social-links a {
  color: #CCCCCC;
  font-size: 18px;
}
.footer .social-links a:hover {
  color: #FFFFFF;
}
.footer .social-links a i {
  font-size: 16px; /* Adjust icon size */
}
.footer .copyright {
  border-top: 1px solid #444;
  padding-top: 20px;
  margin-top: 20px;
  text-align: center;
  color: #888888;
  font-size: 14px; /* Smaller font size for copyright */
}
.footer .btn {
  background-color: #A0A084;
  border: none;
  color: #333;
  padding: 10px 20px;
  margin-top: 10px;
  font-size: 14px; /* Adjust button text size */
  width: 200px;
}
.footer .btn:hover {
  background-color: #8E8E6A;
  color: #FFF;
}

/* Additional styles for alignment */
.footer .footer-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%; /* Ensure all columns have the same height */
  min-height: 200px; /* Minimum height for alignment */
}

.footer .footer-col ul li a {
  padding-left: 0px; /* Align links to the left */
}
