@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
:root {
  --pri: #1631c8;
  --pridim: #f24c4c;
  --prigri: linear-gradient(45deg, #e00505, #ff6b6b);
  --btnpri: linear-gradient(135deg, #c60000, #ff4e4e);

  --sec: #ffffff;
  --bgdim: #21313C;
  --ter: #ffffff;
  --bg: hsl(0deg 0% 18.04%);
  --txtcolor: black;
  --sha: rgb(196 196 196 / 12%) 0px 8px 24px;
  --hoversha: #6d83ff36 0px 8px 24px 7px;

  --font: "DM Sans", sans-serif;
  --basefontsz: 1.6rem;
  --txtsz: 17px;
  --h1fontsz: clamp(2.6rem, 5vw, 3.6rem);
  --h2fontsz: clamp(2.2rem, 4vw, 3rem);
  --h3fontsz: clamp(1.8rem, 3vw, 2.4rem);

  --bor: 1px solid gainsboro;
  --spacing-small: 4px;
  --spacing-medium: 8px;
  --spacing-large: 16px;
  --borrad: 9px;
  --gtcw: 350px;
  --curve: 12px;
	
	--wp--preset--color--primary: var(--pridim);
    --wc-primary: var(--pridim);
    --wc-primary-text: #fff; /* Button text color */
    --wc-secondary: #f4f4f4; /* Light background */
    --wc-highlight: var(--pridim);
    --wc-error: #d63638; /* Error red */
    --wc-success: #4CAF50; /* Success green */
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
    width: 100vw;
    min-height: 100vh;
    font-family: var(--font);
    font-size: var(--basefontsz);
    background: #fbfcff;
    display: flex;
    color: var(--txtcolor);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    flex-direction: column;
    max-width: 100%;
}

h1 {
    font-size: var(--h1fontsz);
    color: var(--pri);
    margin: 0px;
    padding: 0px;
    font-weight: 700;
    line-height: 1.3;
}
h2 {
    font-size: var(--h2fontsz);
    color: var(--pri);
    margin: 10px;
    font-weight: 600;
    justify-content: center;
    align-items: center;
    text-align: center;
}

h3 {
  font-size: var(--h3fontsz);
  color: var(--pri);
  margin: var(--spacing-small);
  font-weight: 600;
}

.sectionheadline {
    width: 90%;
    margin: 0px auto;
}

.sectionheadline h2 {
    display: flex;
    font-size: 20px;
    text-align: left;
    justify-content: flex-start;
    font-weight: bold;
	color: var(--pri);
}

p {
  text-transform: capitalize;
  font-size: var(--txtsz);
  font-weight: 400;
  line-height: 1.6;
}

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

ul, ol, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

strong {
    font-weight: 600;
    color: var(--bgdim);
}

em {
  font-style: italic;
}

iframe {
    width: 90% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px auto;
    aspect-ratio: 2/1;
    height: auto !important;
    margin-bottom: 87px;
}

svg{
	color: var(--sec);
}

img{
	width: 100%;
}

button {
    width: 200px;
    height: 50px;
    border: none;
    background: var(--pri);
    color: white;
    border-radius: 49px;
}

.section_headline {
    margin: 20px auto;
    text-align: center;
    display: flex;
    margin-bottom: 20px;
    width: 90%;
    justify-content: center;
    background: white;
    border-radius: 0px;
}

.section_headline h2 {
    color: var(--bgdim);
    padding: 2px 10px;
    border-radius: 12px;
    background: gainsboro;
    font-size: 17px;
}
/**Navigation Styling**/

.kira_nav {
    display: flex;
    width: 100%;
    margin: 0px auto;
    justify-content: space-around;
    background: var(--pri);
    border-bottom: 1px solid gainsboro;
    height: 55px;
    align-items: center;
}

.kira_nav_right ul {
    display: flex;
    gap: 19px;
    font-weight: 600;
	color: white;
}

.kira_nav_left a h1 {
    font-size: 26px;
    font-weight: 900;
    color: white;
}

.kira_nav_right_mobile{
	display: none
}

.menu_open{
	display: none;
}

.kira_nav_right_mobile ul {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px auto;
    text-align: center;
}

.kira_nav_right_mobile ul li {
  border-bottom: none;
}

.search_icon{
	position: absolute;
	right: 10px;
	top: 15px;
	width: 25px;
	height: 25px;
	cursor: pointer;
}

.search_icon svg{
	fill: white;
}


.search_form {
	position: absolute;
	top: 0;
	width: 100%;
	display: none;
}

label.screen-reader-text,
#searchsubmit {
	display: none;
}

input#s {
	width: 100%;
	height: 56px;
	background: white;
	border: 1px solid gainsboro;
	outline: none;
	box-shadow: var(--sha);
	font-size: 2rem;
	color: var(--pri);
	text-align: center;
}

.cut_search {
	width: 24px;
	height: 24px;
	position: absolute;
	top: 17px;
	right: 16px;
	cursor: pointer;
}


/**Front Page Styling**/


/*Hero Header**/

.hero_featured {
    display: grid;
    grid-template-columns: repeat(auto-fit, 400px);
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin: 0px auto 27px;
    width: 100%;
    border-bottom: 1px solid gainsboro;
    background: white;
    padding: 23px 0px 23px;
}

.hero_featured_sub {
    width: 100%;
    display: flex;
    gap: 10px;
	flex-direction: column;
}

.hero_featured_sub_wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--sha);
    border-radius: 9px;
}

.hero_featured_sub_wrapper_upper a {
    width: 100%;
    max-width: 150px;
	display: flex;
	align-items: center;
}

.hero_featured_sub_wrapper_bottom_tag {
    width: max-content;
    background: var(--pri);
    padding: 0px 10px;
    color: white;
    border-radius: 14px;
}

.hero_featured_sub_wrapper_upper img {
    width: 150px;
    height: 100px;
    aspect-ratio: 1/2;
    border-radius: 12px;
}

.hero_featured_sub_wrapper_bottom_title a h3 {
    font-size: 18px;
    color: var(--bgdim);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.kira_post_container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    margin: 20px auto;
    flex-direction: column;
}

.kira_post_grid {
    width: 100%;
    display: grid;
    --gtw: var(--gtcw);
    justify-content: center;
    align-items: center;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, var(--gtcw));
}

.kira_post_snippet {
    width: var(--gtcw);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: white;
    box-shadow: var(--sha);
    padding: 0px 0px 10px 0px;
    border-radius: 13px;
	min-height: 350px;
}

.single_post_header a img {
    width: 100%;
    height: auto;
    max-width: var(--gtcw);
}

.single_post_footer{
	width: 100%;
}

.single_post_title {
    width: 100%;
}

.single_post_footer .single_post_title h2 {
    font-size: 19px;
    text-align: left;
    color: var(--bgdim);
	font-weight: 900;
}

.post_snippet_meta {
    display: flex;
    margin: 0px 0px 0px 17px;
    gap: 10px;
}

.post_snippet_meta a {
    color: #299df9;
}

.post_snippet_desc{
	margin: 0px 0px 0px 17px;
}

.snippet_read_more a button {
    background: var(--pri);
    width: 40%;
    margin: 10px auto 0px 17px;
    height: 44px;
    border-radius: 25px;
    cursor: pointer;
}

.post_tags {
    width: 100%;
    display: flex;
	margin: 20px auto;
    justify-content: flex-start;
}

ul.post-tags {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: flex-start;
	flex-wrap: wrap;
}

.post-tags li {
    background: #ebebeb8a;
    border: 1px solid gainsboro;
    border-radius: 8px;
    color: var(--bgdim);
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;
    padding: 7px 12px;
    text-align: center;
}


.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px; /* spacing between buttons */
  margin: 20px 0;
  font-family: system-ui, sans-serif;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--pri);
  border-radius: 6px;
  text-decoration: none;
  color: var(--pri);
  font-size: 15px;
  transition: all 0.3s ease;
}

/* Hover effect */
.pagination a:hover {
  background: var(--pri);
  color: #fff;
}

/* Current page */
.pagination .current {
  background: var(--pri);
  color: #fff;
  font-weight: bold;
  cursor: default;
}

/* Next button */
.pagination .next {
  font-weight: 600;
}

/**Home Page Cat**/

.calc_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
    margin: 10px auto;
    width: 90%;
}

.calc_grid_mini {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sha);
    cursor: pointer;
    width: max-content;
    border: 1px solid #caddfc;
    border-radius: 9px;
    padding: 1px 11px;
}

.calc_grid_mini h3{
	font-size: 18px; color: var(--bgdim);
}


/**Post Detial Page **/

.kira_single_post_container {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    width: 95%;
    margin: 20px auto;
    grid-gap: 20px;
    padding: 16px;
}

.kira_post_left {
    background: white;
    padding: 0px 20px;
}

.breadcrumb {
    width: 90%;
    margin: 15px 5px 0px;
}

.kira_post_top {
    width: 100%;
    padding: 1px 15px;
    margin: 10px auto;
    border-radius: 14px;
}

.single_post_meta {
    display: flex;
    justify-content: flex-start;
    margin: 10px auto;
}

.post_title h1{
    font-size: var(--h1fontsz);
    color: var(--pri);
    font-weight: 700;
    margin: 0px;
    padding: 0px;
}

.post_featured_img {
    width: 90%;
    margin: 20px auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    max-height: 650px;
	flex-direction: column;
}

.post_featured_img img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

 .group-card {
    margin-bottom: 10px auto;
    position: relative;
    border: 2px solid transparent;
    border-radius: 5px;
    background: white;
    display: flex;
    align-items: center;
    padding: 3px 12px;
    justify-content: space-between;
    overflow: hidden;
    max-width: 93%;
}
 .whatsapp-card {
    animation: whatsapp-border-animation 2s infinite;
    border-radius: 13px;
    margin: 20px auto;
    padding: 7px 15px;
}
   .telegram-card {
   animation: telegram-border-animation 1s infinite;
   }
   @keyframes whatsapp-border-animation {
   0% {
   border-color: transparent;
   }
   50% {
   border-color: #0cbfaa;
   }
   100% {
   border-color: transparent;
   }
   }
   @keyframes telegram-border-animation {
   0% {
   border-color: transparent;
   }
   50% {
   border-color: #004F7A;
   }
   100% {
   border-color: transparent;
   }
   }
   .seoquake-nofollow {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 18px;
   font-weight: bold;
   text-decoration: none;
   padding: 9px 21px;
   border-radius: 30px;
   flex-shrink: 0;
   transition: all 0.3s ease-in-out;
   color: white !important;
   }
   .seoquake-nofollow i {
   margin-right: 5px;
   }
   .whatsapp-card .seoquake-nofollow {
   background: #0cbfaa;
   }
   }
   .seoquake-nofollow:hover {
   transform: scale(1.05);
   }
   @media screen and (max-width: 400px){
   .seoquake-nofollow {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 15px;
   font-weight: bold;
   text-decoration: none;
   padding: 9px 12px;
   border-radius: 7px;
   flex-shrink: 0;
   transition: all 0.3s ease-in-out;
   color: white !important;
   }
   }

.kira_post_content {
    margin: 10px auto;
}

.kira_post_content p {
    padding: 10px 0px;
    font-size: var(--txtsz);
}

.kira_post_content h1{
	font-size: 21px;
	font-weight: bolder;
	color: var(--bgdim);
}

.kira_post_content h2 {
    font-size: 30px;
    font-weight: bolder;
    color: var(--bgdim);
    text-align: -webkit-auto;
    margin: 10px 0px;
}

.kira_post_content h3{
	font-size: 22px;
	font-weight: bolder;
	color: var(--bgdim);
}

.kira_post_content ul, .kira_post_content ol{
	margin: 0px;
	padding: 0px;
}

.kira_post_content ul>li, .kira_post_content ol>li {
    padding: 6px 0px;
    list-style: auto;
    margin: 0px 19px;
	font-size: var(--txtsz)
}

.kira_post_content img{
	width: 100% !important;
	height: auto;
}

.kira_post_content figure img.wp-block-image {
    width: 100%;
    height: auto;
}

figure.wp-block-table {
    width: 100%;
    max-width: 100%;
    overflow-x: scroll;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 15px;
  margin: 20px auto;
}

thead {
  background-color: white;   /* dark background for header */
  color: var(--bgdim);             /* white text for contrast */
  text-align: left;         /* align header text */
}

thead th {
  padding: 10px 12px;       /* spacing inside header cells */
  border: 1px solid #ddd;   /* border same as table */
}

td {
  border: 1px solid #ddd;
  padding: 8px 12px;
}

tr:nth-child(even) {
  background-color: #f9f9f9; /* alternate row color */
}

tr:hover {
  background-color: #f1f1f1; /* highlight on hover */
}

td:first-child {
  font-weight: bold;
  color: #333;
  width: 150px;
}

td:last-child {
  color: #555;
}


/**Related Post Wrapper**/

.related_posts_wrapper {
    width: 100%;
	display: flex;
	flex-direction: column;
}

.related_posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, 275px);
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin: 0px auto;
    width: 100%;
}

.related_post_child {
    display: flex;
    flex-direction: column;
	width: 100%;
}

.related_post_child_featured {
    width: 100%;
}

.related_post_child_featured img {
    width: 100%;
    height: auto;
    max-width: 300px;
}

.related_post_child_title h3 {
    font-size: 17px;
    font-weight: 600;
	color: var(--bgdim);
}

/**Sidebar_styling**/

.kira_post_right {
    background: white;
    padding: 0px 20px;
}

.kira_post_right .widget h2 {
    background: var(--pri);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    padding: 7px;
    border-radius: 39px;
}

.kira_post_right .widget ul{
	width: 100%;
	margin: 0px 17px;
}

.kira_post_right .widget ul li{
	list-style: auto;
	padding: 10px 0px;
	border-bottom: 1px solid gainsboro;
}

.about_us_sidebar {
    width: 100%;
    margin: 10px auto;
    border-radius: 12px;
    padding: 10px;
}

.about_us_sidebar h2 {
    background: white !important;
    padding: 7px !important;
    margin: 0px;
    color: var(--bgdim) !important;
    font-weight: bold;
}

.about_us_sidebar .about_us_sidebar_top img {
    width: 150px;
    height: 150px;
    margin: 0px auto;
    text-align: center;
    display: flex;
    border-radius: 50%;
}

.about_us_sidebar_bottom .sidebar_author_name h2{
	background: white;
	padding: 0px;
	margin: 0px;
	color: var(--pri);
	font-weight: bold;
}

.sidebar_author_desc{
	width: 100%;
	text-align: center;
}

.sidebar_author_desc p{
	font-size: 16px;
}

.sidebar_author_desc ul{
	list-style: none;
	display: flex;
	gap: 10px;
}

.sidebar_author_social ul{
	display: flex !important;
	flex-direction: row;
	gap: 10px;
	justify-content: center;
	align-items: center;
	margin: 0px auto;
}

.sidebar_author_social ul li{
	list-style: none !important;
	border-bottom: none !important;
}

.sidebar_author_social ul li a svg {
    width: 45px;
    height: 45px;
    border: 1px solid gainsboro;
    border-radius: 13px;
    padding: 10px;
    fill: var(--pri);
}

/**Back To Top **/

.back_to_top {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--pri);
    border-radius: 50%;
    cursor: pointer;
    position: fixed;
    right: 20px;
    bottom: 20px;
}

.back_to_top svg {
    width: 28px;
    height: 40px;
    fill: white;
}

/**Kira Footer Design**/

footer {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #bfbfbf;
    background: white;
}

.footer_top {
    display: grid;
    grid-template-columns: repeat(auto-fit, 400px);
    gap: 20px;
    width: 100%;
    place-content: center;
    padding: 20px 0px;
    align-items: center;
}

.footer_top_child{
	min-height: 320px;
	width: 100%;
}

.footer_top_child ul {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer_social_icons ul {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.footer_social_icons ul li {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 13px;
    border-radius: 5px;
}

.footer_social_icons ul li a svg{
	fill: var(--bgdim);
	height: 45px;
	width: 45px;
	padding: 10px;
	box-shadow: var(--sha);
	border: 1px solid gainsboro;
	border-radius: 12px;
}

.footer_bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid gainsboro;
    text-align: center;
}

.footer_bottom .site-info {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
    text-align: center;
}