/*
Theme Name: My Blank Theme
Theme URI: http://example.com/
Author: Your Name
Author URI: http://example.com/
Description: A blank WordPress theme for custom development
Version: 1.0
*/

/* Main Layout */
.container { 
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-area {
  flex: 1;
}
html {
    margin-top: 0px !important;
    font-family: 'Inter', sans-serif;
}
 .Looking-section {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /* min-height: 80vh; */
    padding: 50px 20px;
    background-color: #f9f9f9;
    gap: 50px;
	 padding-top:160px;
  }
  
  .Looking-content h1 {
    color: #c65757;
    font-size: 50px;
    line-height: 52px;
    margin-bottom: 20px;
  }
  
  .Looking-content p {
    font-size: 17px;
    margin-bottom: 30px;
    line-height: 24px;
    font-family: inherit;
    max-width: 600px;
  }
  
  .Looking-image {
    text-align: start;
  }
  
  .Looking-image img {
    width: 100%;
    height: auto;
  }
  @media (max-width: 1024px) {
    .Looking-section {
      flex-direction: row;
      text-align: center;
    }
  
    .Looking-content h1 {
      font-size: 40px;
      line-height: 44px;
      text-align: start;
    }
  
    .Looking-content p {
      font-size: 16px;
      text-align: start;
    }
  }
  
  @media (max-width: 768px) {
    .Looking-section {
      flex-direction: column;
      text-align: center;
    }
    .Looking-content h1 {
      font-size: 36px;
      line-height: 40px;
    }
  
    .Looking-content p {
      font-size: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .Looking-content h1 {
      font-size: 28px;
      line-height: 32px;
    }
  
    .Looking-content p {
      font-size: 14px;
    }
  
    .Looking-section {
      padding: 30px 15px;
      min-height: auto;
    }
  }





  
/* Blog Section */
.blog-header-section {
  text-align: center;
  padding: 40px 20px 10px;
}

.blog-heading {
  font-size: 32px;
  font-weight: bold;
  color: #222;
  margin-bottom: 20px;
}

/* Main Content Layout */
.main-content-wrapper {
  display: flex;
  max-width: 1600px;
  margin: 0 auto;
  padding: 50px 20px;
	
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 30px 0;
  flex: 3;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
 box-shadow: 0 2px 5px rgb(0 0 0 / 61%);
  transition: transform 0.3s ease;
  border: 1px solid rgba(44, 26, 78, 0.15);
 
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-thumbnail img {
  width: 100%;
  max-width: 90%;
  height: 300px;
  object-fit: contain;
  display: block;
  padding: 20px;
  border-radius: 15px;
}

.blog-content {
  padding: 20px;
}

.blog-title {
  font-size: 27px;
  font-weight: 600;
  color:#c65757;
  margin: 0 0 10px;
}

.blog-excerpt {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

.blog-pagination {
  text-align: end;
  margin: 40px 0;
}

.no-posts {
  text-align: center;
  color: #999;
  padding: 20px;
}

.blog-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card a:hover {
  text-decoration: none;
}

/* Sidebar Styling */
.sidebar-main {
  flex: 1;
  padding: 20px;
  background: #ffff;
  border-radius: 8px;
box-shadow: 0 2px 5px rgb(0 0 0 / 61%);
  margin-left: 30px;
  max-width: 400px;
  height: 100%;
	padding-top:50px;
}

.sidebar-main h2 {
  font-size: 27px;
  color: #063970;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eaeaea;
}

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

.sidebar-main ul li {
  padding: 10px 0;
  border-bottom: 1px solid #eaeaea;
/* 	display: inline-block;
    background-color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    text-transform: capitalize;
    color: #4A4C51;
    background-color: #F4F4F6;
    padding: 7px 20px;
    transition: 400ms; */
}

.sidebar-main ul li:last-child {
  border-bottom: none;
}

.sidebar-main ul li a {
  color:  #c65757;
  text-decoration: none;
  transition: color 0.3s ease;
     font-size: 19px;
    font-weight: 700;
}

.sidebar-main ul li a:hover {
  color: #1f2937;
}

.search-form {
  margin-bottom: 20px;
}

.search-form input[type="text"] {
  width: 100%;
	max-width: 90%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.search-form button {
  background: #222;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
  font-size: 14px;
}

.recent-posts-list li {
  margin-bottom: 15px;
}

.recent-comments li {
  font-size: 14px;
  color: #6b7280;
}

.entry-content1 img {
  height: auto;
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.nav-links a {
  text-decoration: none;
  font-size: 16px;
/*   background: #f1f1f1; */
  padding: 8px 15px;
  border-radius: 4px;
  margin: 0 5px;
  color: #333;
}

/* .nav-links a:hover {
  background: #ddd;
} */

/* Search form styles */
.sidebar-main .search-form {
    display: flex;
    margin-bottom: 20px;
}

.sidebar-main .search-form form {
    display: flex;
    width: 100%;
}

.sidebar-main .search-form input[type="search"] {
    flex: 1;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
}

.sidebar-main .search-form input[type="submit"] {
    background-color: #0c8b51;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}




/* Media Queries */
@media (max-width: 1024px) {
  .main-content-wrapper {
    flex-direction: column;
  }
  
 .sidebar-main {
           margin-left: 0;
        margin-top: 30px;
        width: 100%;
        max-width: 900px;
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .Looking-section {
    flex-direction: column;
    padding: 20px;
  }
	.sidebar-main{
		max-width:670px;
	}
  .Looking-content {
    padding-right: 0;
    margin-bottom: 20px;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    padding: 20px 0;
  }
  
  .blog-card {
    flex-direction: column;
  }
  
  .blog-thumbnail img {
  
    width: 100%;
  }
  
  .blog-content {
    padding: 15px;
  }
  
  .blog-title {
    font-size: 18px;
  }
  
  .blog-excerpt {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .blog-header-section {
    padding: 30px 10px 5px;
  }
  
  .blog-heading {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .blog-grid {
    padding: 10px 0;
    gap: 20px;
  }
  
  .blog-card {
    flex-direction: column;
  }
  
  .blog-content {
    padding: 10px;
  }
  
  .blog-title {
    font-size: 16px;
  }
  
  .blog-excerpt {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .blog-thumbnail img {
    max-width: 90%;
    height: auto;
  }
}

@media (max-width: 425px) {
  .blog-header-section {
    padding: 25px 10px 5px;
  }
  
  .blog-heading {
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .blog-grid {
    padding: 10px 0;
    gap: 16px;
  }
	.sidebar-main{
		max-width:340px;
	}
  .blog-card {
    flex-direction: column;
    border-radius: 6px;
  }
  
  .blog-thumbnail img {
    width: 90%;
    height: auto;
    display: block;
  }
  
  .blog-content {
    padding: 10px;
  }
  
  .blog-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .blog-excerpt {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .blog-pagination {
    margin: 30px 0;
  }
  
  .entry-content1 img {
    height: auto;
    width: 100%;
  }

}



/* Comments Section Styling */
.comments-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
}

/* Comment Form */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
	    max-width: 90%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.comment-form input[type="submit"] {
    background: linear-gradient(135deg, #00bcd4, #0097a7);
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.comment-form input[type="submit"]:hover {
    background: #138496;
}

/* Comment List */
.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
	gap:10px;
}

.comment-author img {
      margin-right: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

/* Sidebar Recent Comments */
.recent-comments {
    list-style: none;
    padding: 0;
}

.comment-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}

.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.author-name {
    margin-left: 5px;
    font-weight: bold;
}

.comment-excerpt {
    margin-bottom: 5px;
    font-style: italic;
	margin-left: 50px;
}

.comment-post {
    font-size: 0.9em;
    color: #666;
	margin-left: 50px;
}

.tag-cloud-link {
	    display: inline-block;
    background-color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    text-transform: capitalize;
    color: #4A4C51;
    background-color: #F4F4F6;
    padding: 7px 20px;
    transition: 400ms;
}
.post-title {
	    font-family: inherit;
	font-size:18px;
}
.post-title a {
	text-decoration:none;
	color:#c65757;
}
.attachment-thumbnail {
	    width: 100%;
    border-radius: 20px;
	margin-bottom:30px !important;
}

.recent-post-item .post-title {
	margin:5px 0 !important;
}

.recent-post-item .post-meta {
	margin-bottom:15px !important;
}
.attachment-medium {
	margin-bottom:20px;
}
@media (max-width: 375px) {
    .sidebar-main {
        max-width: 300px;
    }
}

.footer {
  background-color: #2a3441;
  color: #ffffff;
  padding: 50px 0 30px;
   position: relative;    
  overflow: hidden;
}

.container1 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* Brand Section */
.footer-brand {
  padding-right: 20px;
}

.footer-logo {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand p {
  color: #fff;
  line-height: 1.6;
  font-size: 18px;
  margin-bottom: 35px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  color: #fff;
  font-size: 16px;
}

.contact-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-label img {
  width: 16px;
  height: 16px;
}

/* Footer Links Sections */
.footer-section h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
      border-bottom: 5px solid #3B82F6;
    width: fit-content;
}
.footer-section {
  margin-top: 40px;
  line-height: 1.8;
  font-weight: 600;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #57c2c6;
}
.footer a, .social-link {
  position: relative;
  z-index: 1;
}


/* Social Section */

.journey {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 20px 0px;
    align-items: center;
        border-top: 1px solid #374151;
}

.social-stats-container {
  background-color: #2d3748;
  color: #ffffff;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Social Section */
.social-section h3 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  margin: 0 0 20px 0;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #57c2c6;
  color: #ffffff;
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* Stats Section */
.stats-section {
  display: flex;
  gap: 80px;
  align-items: center;
}

.stat-item {
  text-align: center;
}

.state-number {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1;
}

.state-label {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
  .social-stats-container {
    flex-direction: column;
    gap: 40px;
    padding: 30px 20px;
  }

  .stats-section {
    gap: 40px;
  }

  .state-number {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .stats-section {
    flex-direction: column;
    gap: 30px;
  }

  .social-links {
    justify-content: center;
  }

  .state-number {
    font-size: 32px;
  }
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: #6b7280;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 25px;
}

.footer-legal a {
  color: #6b7280;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #57c2c6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container1 {
    padding: 0 30px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 20px;
  }

  .contact-info {
    flex-direction: row;
    justify-content: space-around;
}
.footer-section{
  margin-top: 0px;
}
}

@media (max-width: 768px) {
  .container1 {
    padding: 0 20px;
  }

  .footer {
    padding: 40px 0 25px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-legal {
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .container1 {
    padding: 0 15px;
  }

  .footer {
    padding: 30px 0 20px;
  }
.contact-item{
  justify-content: center;
}
  .footer-content {
    gap: 25px;
    text-align: center;

  }
  .social-section h3{
    text-align: center;
  }
  .journey{
    flex-direction: column;
            gap: 20px;
  }
  .contact-label{
    justify-content: center;
  }
  .mobile-sidebar.active {
    right: -100px;
}
.close-sidebar {
    right: 7rem;

}
.footer-section h3 {
  width: auto;
  border-bottom: none;
}
  .contact-info {
    flex-direction: column;
}
/* .footer-section{
    text-align: start;
    margin: auto;
} */
}




/* Floating Particles Animation - REPLACE PREVIOUS ANIMATION CODE */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
      radial-gradient(2px 2px at 20px 30px, rgba(59, 130, 246, 0.3), transparent),
      radial-gradient(2px 2px at 40px 70px, rgba(59, 130, 246, 0.2), transparent),
      radial-gradient(1px 1px at 90px 40px, rgba(59, 130, 246, 0.4), transparent),
      radial-gradient(1px 1px at 130px 80px, rgba(59, 130, 246, 0.3), transparent),
      radial-gradient(2px 2px at 160px 30px, rgba(59, 130, 246, 0.2), transparent),
      radial-gradient(1px 1px at 200px 60px, rgba(59, 130, 246, 0.4), transparent),
      radial-gradient(2px 2px at 240px 90px, rgba(59, 130, 246, 0.2), transparent),
      radial-gradient(1px 1px at 280px 20px, rgba(59, 130, 246, 0.3), transparent),
      radial-gradient(1px 1px at 320px 70px, rgba(59, 130, 246, 0.4), transparent),
      radial-gradient(2px 2px at 360px 40px, rgba(59, 130, 246, 0.2), transparent);
  background-size: 400px 120px;
  animation: floatParticles 25s linear infinite;
  z-index: 0;
}

.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
      radial-gradient(1px 1px at 50px 50px, rgba(59, 130, 246, 0.2), transparent),
      radial-gradient(2px 2px at 80px 20px, rgba(59, 130, 246, 0.3), transparent),
      radial-gradient(1px 1px at 110px 90px, rgba(59, 130, 246, 0.2), transparent),
      radial-gradient(1px 1px at 150px 60px, rgba(59, 130, 246, 0.4), transparent),
      radial-gradient(2px 2px at 190px 10px, rgba(59, 130, 246, 0.2), transparent),
      radial-gradient(1px 1px at 230px 80px, rgba(59, 130, 246, 0.3), transparent),
      radial-gradient(1px 1px at 270px 45px, rgba(59, 130, 246, 0.2), transparent),
      radial-gradient(2px 2px at 310px 75px, rgba(59, 130, 246, 0.4), transparent),
      radial-gradient(1px 1px at 350px 25px, rgba(59, 130, 246, 0.3), transparent),
      radial-gradient(1px 1px at 390px 65px, rgba(59, 130, 246, 0.2), transparent);
  background-size: 450px 100px;
  animation: floatParticles 20s linear infinite reverse;
  z-index: 0;
}

@keyframes floatParticles {
  0% {
      transform: translateX(-100px) translateY(0px);
  }
  100% {
      transform: translateX(100px) translateY(-20px);
  }
}