*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary-color: #ff9d00;
    --secondart-color: ;
    --accent-color: ;
    --text-center: center;
    --color-white: #ffffff;
    --color-black: #000000;
    --text-gray: #b1b1b1;
    --heading-color: #000000;
    --bg-black: #000000;
    --bg-white: #ffffff;
    --brand-purple: #8353E2;
    --primary-font-family: "Inter", sans-serif;
    --secondary-font-family: "Inter", sans-serif;
}
body{
    font-family: var(--primary-font-family);
    color: #6c6c6c;
}
body.page, body.post {
    margin-bottom: 0 !important;
}
h1, h2, h3, h4, h5, h6{
    color: var(--heading-color);
    line-height: 1.2;
    margin-bottom: 20px;
}
p{
    line-height: 1.6;
    margin-bottom: 20px;
}
/* Header Section CSS Style */
.webigenius_top-promo {
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--color-white);
    background: var(--bg-black);
    min-height: 40px;
}
.webigenius_top-promo a {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
}
.webigenius_phone {
    font-size: 1rem;
}
.webigenius_phone i {
    color: var(--primary-color);
    margin-right: 5px;
}
.webigenius_offer{
    font-size: 1rem;
    max-width: 500px;
    overflow: hidden;
    width: 95%;
    margin: 0px auto;
	position: absolute;
	left: 50%;
	transform: translate(-50%);
}
.webigenius_offer .offer-item {
    text-align: center !important;
}
.webigenius_offer button.owl-prev, .webigenius_offer button.owl-next {
    background: transparent !important;
    color: #ffffff !important;
    font-size: 20px !important;
}
section.blog-banner-section {
    background: #f4f7fb;
    padding: 60px 0px;
}
.owl-stage-outer {
    border-radius: 10px;
}
.hero-slider-wrapper {
    max-width: 1280px;
    margin: 0px auto;
    position: relative;
    padding: 0 40px;
}

.main-card {
    height: 450px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden; /* Keeps the notch aligned */
    padding: 40px 60px;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 20%, transparent 80%);
    z-index: 1;
}

.card-body {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 550px;
}

/* Category Tag */
.category-tag {
    background: white;
    color: var(--brand-purple);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.category-tag i { font-size: 6px; }

.bookmark-icon {
    background: white;
    color: var(--brand-purple);
    padding: 4px 8px;
    border-radius: 4px;
    margin-left: 8px;
    font-size: 12px;
}

.entry-title {
    font-size: 40px;
    font-weight: 700;
    margin: 20px 0 10px;
    line-height: 1.2;
    color: white;
}

.entry-excerpt {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.entry-meta {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.9;
}

.meta-dot { width: 3px; height: 3px; background: white; border-radius: 50%; }

/* The Bottom-Right Avatar Notch */
.avatar-notch {
    position: absolute;
    right: 120px;
    bottom: 25px;
}
.avatar-group {
    display: flex;
}
.avatar-wrapper {
    position: relative;
    width: 44px;
    height: 44px;
}
.avatar-notch .avatar-group .avatar-wrapper:not(:last-child) {
    margin-right: 10px;
}
.user-img {
    width: 38px !important;
    height: 38px;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    z-index: 1;
    border: 2px solid white;
}

/* The Loader SVG */
.progress-svg {
    width: 44px;
    height: 44px;
    transform: rotate(-90deg); /* Start from the top */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: none; /* Hidden by default */
}

.progress-circle {
    fill: none;
    stroke: var(--brand-purple);
    stroke-width: 2.5;
    stroke-linecap: round;
    /* Circumference of r=20 is ~126 */
    stroke-dasharray: 126;
    stroke-dashoffset: 126; 
}

/* When the slide is active, show and animate the circle */
.owl-item.active .active-loader .progress-svg {
    display: block;
}

.owl-item.active .active-loader .progress-svg {
    animation: fill-progress 5s linear forwards; /* Match this to Owl autoplayTimeout */
}

@keyframes fill-progress {
    to {
        stroke-dashoffset: 0;
    }
}

/* Owl Navigation Buttons */
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: white !important;
    color: var(--brand-purple) !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-size: 20px !important;
}

.owl-prev { left: -20px; }
.owl-next { right: -20px; }

/* Responsive */
@media (max-width: 768px) {
    .main-card { padding: 30px; height: 400px; }
    .entry-title { font-size: 24px; }
}

/* Trending Now Section CSS */

.trending-section {
    padding: 40px 20px 30px;
    background-color: var(--bg-white);
    font-family: var(--primary-font-family); /* Recommended font */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 95%;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    color: #0d233e;
    margin-bottom: 30px;
}

/* Grid System */
.trending-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 column on mobile */
    gap: 30px;
}

/* Tablet (2 columns) */
@media (min-width: 600px) {
    .trending-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop (4 columns) */
@media (min-width: 1024px) {
    .trending-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Individual Card Styling */
.trending-card {
    display: flex;
    flex-direction: column;
}

.card-image {
    height: 220px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.card-tags {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
}

.tag-category {
    background: white;
    color: var(--brand-purple);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.tag-bookmark {
    background: white;
    color: var(--brand-purple);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.card-content {
    padding: 15px 0;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.card-title a {
    color: #0d233e;
    text-decoration: none;
    transition: color 0.3s;
}

.card-title a:hover {
    color: var(--brand-purple);
}

.card-meta {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-dot {
    width: 3px;
    height: 3px;
    background: #ccc;
    border-radius: 50%;
}

/* Read More Button */
.read-more-wrapper {
    text-align: center;
    margin-top: 40px;
}

.btn-read-more {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid #eee;
    border-radius: 50px;
    color: var(--brand-purple);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-read-more:hover {
    background-color: var(--brand-purple);
    color: white;
    border-color: var(--brand-purple);
}

/* List fixed Section CSS */
.blog-section-list {
  padding: 60px 20px;
  background: #f4f7fb;
}

.container-list {
  max-width: 1200px;
  width: 95%;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

/* Blog Card */
.blog-card-list {
  display: flex;
  gap: 20px;
  background: var(--bg-white);
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
  overflow: hidden;
}

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

.blog-img-list {
    width: 40%;
}
.blog-img-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
}
.blog-content-list {
    width: 60%;
    padding-top: 20px;
}

.blog-content-list h3 a {
    text-decoration: none;
    color: black;
}

.category-list {
  font-size: 13px;
  background: #dc848c;
  color: var(--color-white);
  padding: 5px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}

span.category-list a {
    text-decoration: none;
    color: white;
    text-transform: capitalize;
}

.blog-content-list h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.blog-content-list p {
  font-size: 14px;
  color: #777;
  margin-bottom: 12px;
}

.meta-list {
  font-size: 13px;
  color: #999;
  display: flex;
  gap: 15px;
}

/* Sidebar */
.sidebar-card-list {
  background: var(--bg-white);
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.blog-sidebar-list {
    position: sticky;
    top: 20px;
    height: fit-content;
}
/* Author */
.author-card-list {
  text-align: center;
}

.author-img-list {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.social-icons-list {
  margin-top: 15px;
}

.social-icons-list a {
  display: inline-flex;
  width: 35px;
  height: 35px;
  background: #7c2c4f;
  color: var(--color-white);
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin: 0 5px;
  font-size: 14px;
  transition: 0.3s;
}

.social-icons-list a:hover {
  background: #5e1f39;
}

/* Newsletter */
.newsletter-list {
  background: linear-gradient(135deg, #7c2c4f, #f69c9c);
  color: var(--color-white);
}

.newsletter-list form {
  margin-top: 15px;
  display: flex;
}

.newsletter-list input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 6px 0 0 6px;
  outline: none;
}

.newsletter-list button {
  padding: 10px 15px;
  border: none;
  background: var(--bg-white);
  color: #7c2c4f;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}

/* Recent Posts */
.recent-item-list {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}
.sidebar-card-list h3 {
    margin-bottom: 20px;
}
.recent-item-list img {
    width: 40%;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
}
.sidebar_recent-content {
    width: 60%;
}
.sidebar_recent-content .small-cat-list a {
    text-decoration: none;
    text-transform: capitalize;
    color: #8353e2;
}
.sidebar_recent-content p a {
    text-decoration: none;
    color: #000000;
}
.small-cat-list {
  font-size: 12px;
  color: #8353e2;
}

.recent-item-list p {
    font-size: 14px;
    color: black;
}

/* ======================
   RESPONSIVE
====================== */

@media (max-width: 992px) {
  .container-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .blog-card-list {
    flex-direction: column;
  }

  .blog-img-list img {
    width: 100%;
    height: 200px;
  }
}

/* Single Blog Post CSS */
.blog-post-image {
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
    margin-bottom: 20px;
}
.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

p.breadcrumb-single-post {
    color: black;
}
.post-navigation-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.post-navigation-area span {
    color: var(--color-black);
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 21px;
    cursor: pointer;
}
.post-navigation-area span i {
    font-size: 22px;
    line-height: 24px;
}
.card-tags-single-post {
    position: relative;
    display: flex;
}
ul.post-categories-list {
    list-style: none;
    margin-left: 10px;
}
ul.post-categories-list li {
    padding: 15px 0px;
    border-bottom: 1px solid #e5e5e5;
    cursor: pointer;
}
ul.post-categories-list li a {
    text-decoration: none;
    color: #6c6c6c;
}

/* Contact Page CSS Styles */
section.contact-info-area {
    padding: 60px 0px;
}
.contact-info-container {
    display: flex;
    align-items: stretch;
    gap: 20px;
}
.contact-info-box-rounded {
    background: white;
    border-radius: 10px;
    box-shadow: 0px 0px 20px -4px #00000033;
    padding: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-info-box-icon {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 35px;
    margin-bottom: 25px;
}

/* ===== Section Background ===== */
.astro-consult-section {
  padding: 60px 20px;
  background: var(--bg-white);
  display: flex;
  justify-content: center;
}

/* ===== Main Wrapper ===== */
.astro-consult-wrapper {
  max-width: 1200px;
  width: 100%;
  display: flex;
  background: var(--bg-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* ===== Left Form Area ===== */
.astro-consult-form-area {
  flex: 1;
  padding: 60px;
}

.astro-consult-title {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 600;
  color: #111;
}

/* ===== Grid Layout ===== */
.astro-consult-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

/* ===== Inputs ===== */
.astro-consult-field input, .astro-consult-field textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 10px;
    border: 1px solid #c4c4c4;
    background: #f6f6f600;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
}

.astro-consult-field input:focus,
.astro-consult-field textarea:focus {
  background: var(--bg-white);
  box-shadow: 0 0 0 2px #ff8a00;
}

/* ===== Button ===== */
.astro-consult-btn {
  margin-top: 10px;
  background: #ff8a00;
  color: var(--color-white);
  padding: 14px 30px;
  border: none;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.astro-consult-btn:hover {
  background: #e67600;
}

/* ===== Right Image Area ===== */
.astro-consult-image-area {
  flex: 1;
  min-height: 100%;
}

.astro-consult-image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .astro-consult-wrapper {
    flex-direction: column;
  }

  .astro-consult-form-area {
    padding: 40px 30px;
  }

  .astro-consult-grid {
    grid-template-columns: 1fr;
  }

  .astro-consult-image-area {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .astro-consult-title {
    font-size: 24px;
  }

  .astro-consult-btn {
    width: 100%;
  }

  .astro-consult-image-area {
    height: 300px;
  }
}
section.map-section {
    padding-bottom: 60px;
}
iframe {
    border-radius: 20px;
}

/* Footer Section CSS Style */
.footer {
    background-color: var(--bg-black);
    color: var(--color-white);
    padding-top: 60px;
    position: relative;
    margin-top: 100px; /* Space for the floating newsletter */
}

/* Newsletter Section */
.newsletter-card {
    background: var(--bg-white);
    color: #333;
    padding: 40px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-120px);
    margin-bottom: -60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--color-black);
}

.newsletter-content p {
    color: #666;
    max-width: 450px;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    border: 1.5px solid var(--primary-color);
    border-radius: 50px;
    overflow: hidden;
    width: 100%;
    max-width: 450px;
}

.newsletter-form input {
    border: none;
    padding: 15px 25px;
    flex-grow: 1;
    outline: none;
    font-size: 1rem;
}

.newsletter-form button {
    background: var(--bg-black);
    color: white;
    border: none;
    padding: 0 30px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: var(--primary-color);
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}
.footer-col.brand-col > img {
    margin-bottom: 20px;
    max-width: 230px;
    height: auto;
    width: 100%;
    cursor: pointer;
}
.footer-col h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
}

.footer-col ul {
    list-style: none;
	margin-left: 0px;
}

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

.footer-col ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: 0.3s;
    font-size: 1rem;
    line-height: 24px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Brand Column */
.footer-logo {
    width: 180px;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--primary-color);
}
.contact-info p i {
    width: 23px;
    height: 18px;
    font-size: 22px;
}
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: white;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
    font-size: 22px;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid #333;
    padding: 25px 0;
    text-align: center;
    font-size: 1rem;
    color: var(--text-gray);
}

.footer-bottom p {
    margin-bottom: 0px;
}

.footer-bottom span {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .newsletter-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom {
        padding: 25px 10px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
	.webigenius_offer {
		font-size: 1rem;
		max-width: 500px;
		overflow: hidden;
		width: 95%;
		margin: 0px auto;
		position: absolute;
		/* left: 50%; */
		right: 5%;
		/* transform: translate(-50%); */
	}
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-info p {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
    
    .newsletter-content h2 {
        font-size: 1.5rem;
    }
}