@charset "UTF-8";
/*
Theme Name:Webdoze
Theme URI: : http://webdoze.in/
Author: Webdoze
Author URI: Webdoze.in
Description: Webdoze
Version:v 1.0
Text Domain: Webdoze
*/
@import url(http://fonts.googleapis.com/css?family=Montserrat:400,700);
body {
  margin: 0;
  font-family: "Noto Sans Oriya", sans-serif;
}
.custom-logo {
  max-height: 200px;
  width: 200px;
}
.main-header {
  width: 100%;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: #fcba5c;
}

.logo img {
  height: 120px;
  width:120px;
}

.menu-icon {
  font-size: 24px;
  margin-right: 10px;
  cursor: pointer;
}

.contact-banner {
  flex: 1;
  text-align: center;
  font-size: 14px;
}

.contact-banner a {
  margin: 0 10px;
  text-decoration: none;
  color: #000;
}

.social-icons a {
  margin: 0 8px;
  color: #000;
  font-size: 18px;
}

.navbar {
  background: #c4161c;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.navbar li {
  padding: 12px 16px;
}

.navbar a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
}

.navbar a i {
  margin-right: 5px;
}

.footer {
  background: #fcba5c;
  color: #a40000;
  padding: 30px 20px 10px;
  position: relative;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  max-width: 200px;
  margin-bottom: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 20px;
  color: #fff;
}

.social-icons a:hover {
  color: #ff3333;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #a40000;
  text-decoration: none;
  margin: 0 5px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-col h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.footer-col p,
.footer-col ul {
  font-size: 14px;
  line-height: 1.6;
  margin: 5px 0;
}

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

.footer-col ul li a {
  color: #a40000;
  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.newsletter {
  display: flex;
  margin-top: 10px;
}

.newsletter input {
  padding: 8px;
  border: none;
  border-radius: 3px 0 0 3px;
  outline: none;
  flex: 1;
}

.newsletter button {
  background: #c4161c;
  border: none;
  padding: 8px 15px;
  border-radius: 0 3px 3px 0;
  color: #fff;
  cursor: pointer;
}

.newsletter button:hover {
  background: #ff3333;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #666;
  margin-top: 20px;
  padding-top: 10px;
  font-size: 14px;
}

.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #5c2222;
  color: #fff;
  padding: 10px 12px;
  border-radius: 50%;
  font-size: 18px;
  text-decoration: none;
}

.scroll-top:hover {
  background: #c4161c;
}
.news-section {
  padding: 20px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #800000;
  margin-bottom: 15px;
}

.section-header h2 {
  margin: 0;
  background: #800000;
  color: #fff;
  padding: 6px 15px;
  font-size: 20px;
}

.more-btn {
  text-decoration: none;
  background: #800000;
  color: #fff;
  padding: 6px 12px;
  border-radius: 3px;
  font-size: 14px;
}

.more-btn:hover {
  background: #b71c1c;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.news-card {
  background: #222;
  color: #fff;
  overflow: hidden;
  border-radius: 5px;
}

.news-card img {
  width: 100%;
  display: block;
}

.news-content {
  padding: 10px;
  height: 50px;
}

.news-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}



.news-container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr; /* left, center, right */
  gap: 15px;
  margin: 20px;
}

.news-left, .news-center, .news-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Logo */
.nlogo img {
  max-width: 100%;
  display: block;
}

/* Small posts (left) */
.small-post {
  display: flex;
  gap: 10px;
  align-items: center;
}
.small-post img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}
.small-post p {
  font-size: 14px;
}

/* Featured big post (center) */
.featured {
  position: relative;
}
.featured img {
  width: 100%;
  height: auto;
  display: block;
}
.featured .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
}

/* Grid of smaller posts */
.center-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.post-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.post-card h3 {
  font-size: 14px;
  margin-top: 5px;
}

.category-page,.category-header {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  max-width: 1400px; /* prevent stretching */
  margin: auto;
  padding: 20px;
  box-sizing: border-box;
}

.content {
  overflow: hidden; /* keep slider inside */
}

.post-slider {
  width: 100%;
  max-width: 100%; /* no overflow */
  box-sizing: border-box;
}

.post-slider .slide {
  text-align: center;
  padding: 10px;
}

.post-slider img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.content .post {
  margin-bottom: 20px;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.content .post img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.content .post h2 {
  margin: 10px 0;
  font-size: 20px;
}

.content .post p {
  color: #444;
  font-size: 15px;
}

.sidebar .widget {
  background: #fff;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.sidebar .widget h3 ,.content .widget h3{
  margin-bottom: 10px;
  font-size: 18px;
  border-bottom: 2px solid #900;
  padding-bottom: 5px;
}

.widget.recent-posts ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget.recent-posts li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.widget.recent-posts li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #222;
}

.widget.recent-posts .recent-thumb {
  flex-shrink: 0;
  margin-right: 10px;
}

.widget.recent-posts .recent-thumb img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

.widget.recent-posts .recent-title {
  font-size: 15px;
  line-height: 1.3;
}

.widget.recent-posts li a:hover .recent-title {
  color: #900; /* hover color */
}
/* Make all WordPress embedded videos responsive */
.entry-content iframe,
.entry-content video,
.entry-content embed,
.entry-content object {
    max-width: 100% !important;
    
}

/* Optional: maintain 16:9 ratio for iframe videos */
.responsive-video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Responsive */
@media(max-width: 900px) {
  .category-page {
    grid-template-columns: 1fr; /* stack */
  }
  .sidebar {
    order: -1; /* show sidebar above posts on mobile */
  }
}
/* Responsive */
@media (max-width: 1024px) {
  .news-container {
    grid-template-columns: 1fr 1fr;
  }
  .news-left {
    order: 2;
  }
  .news-right {
    order: 3;
  }
}

@media (max-width: 768px) {
  .news-container {
    grid-template-columns: 1fr;
  }
  .center-grid {
    grid-template-columns: 1fr;
  }
  .entry-content iframe,
.entry-content video,
.entry-content embed,
.entry-content object {
    max-width: 100% !important;
    height: auto !important;
}
}
.entry-meta{
    color: #a40000;
    margin-bottom: 10px;
    font-weight: 600;
}

/* ===== Comment Area Wrapper ===== */
#comments {
  margin-top: 50px;
  padding: 20px;
  background: #fafafa;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* ===== Comments Title ===== */
#comments h3,
#reply-title {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #222;
  border-left: 4px solid #a40000;
  padding-left: 10px;
}

/* ===== Individual Comments ===== */
.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.comment-list li {
  margin-bottom: 25px;
  padding: 15px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
}
.comment-list li .comment-body {
  display: flex;
  gap: 15px;
}
.comment-list li .avatar {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
.comment-list li .comment-content {
  flex: 1;
}
.comment-list li .comment-author {
  font-weight: 600;
  color: #333;
}
.comment-list li .comment-metadata {
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
}

/* ===== Reply Link ===== */
.comment-reply-link {
  display: inline-block;
  margin-top: 8px;
  padding: 5px 12px;
  font-size: 13px;
  background: #0073aa;
  color: #fff !important;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}
.comment-reply-link:hover {
  background: #005177;
}

/* ===== Comment Form ===== */
.comment-form {
  margin-top: 30px;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: border 0.2s, box-shadow 0.2s;
}
.comment-form input:focus,
.comment-form textarea:focus {
  border-color: #0073aa;
  box-shadow: 0 0 4px rgba(0,115,170,0.2);
  outline: none;
}
.comment-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* ===== Submit Button ===== */
.comment-form input[type="submit"] {
  background: #a40000;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.comment-form input[type="submit"]:hover {
  background: #005177;
}
.slick-list{ background:#a40000}
.slick-slide a{ color:#fff;
}
@media (max-width: 992px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-banner {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .header-menu {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .navbar {
    position: relative;
    display: none;
  }
  .navbar.active {
    display: block;
  }
  .social-icons{margin-top: 10px;}

  /* Mobile Menu Toggle */
  .menu-toggle {
    display: block;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
  }
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}


.breaking-news {
  background: #260808;
  color: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.breaking-label {
  font-weight: bold;
  margin-right: 15px;
  white-space: nowrap;
  flex-shrink: 0;      /* keeps it fixed */
  z-index: 2;
}

.news-ticker-wrap {
  overflow: hidden;
  flex: 1;            /* ticker takes remaining width */
  position: relative;
}

.news-ticker {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 30s linear infinite; /* adjust speed */
  padding-left: 100%; /* ensures text starts after label */
}

.news-ticker a {
  color: #fff;
  text-decoration: none;
  margin-right: 50px;
  font-weight: 500;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}