/*!
Theme Name: levcounselingservice
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: levcounselingservice
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

levcounselingservice is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */
p img {
	float: left;
	margin-right: 15px;
}

figcaption {
	font-size: 0.8em;
	text-align: center;
	margin-top: 5px;
	color: #666;
	font-weight: 700;
	font-style: italic;
}

.main-content-area .thumb img{
	height:250px;
	width:100%;
	object-fit: cover;
}
.zd-sticky-button{
	background: none 0% 0% / auto repeat scroll padding-box border-box rgb(184 174 154) !important;
	color: rgb(0 0 0) !important;
	border-radius:10px;
}
.home-form {
  position: relative;
  border-radius: 10px;
  box-shadow: 0 0 10px #ccc;
  background: url(https://levcounselingservice.digitalguider.dev/wp-content/uploads/2025/05/rm435-068.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  overflow: hidden; /* Ensures the overlay doesn't spill out */
}

.home-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Adjust color & opacity */
  border-radius: 10px; /* Match the parent */
  z-index: 1;
}

.home-form > * {
  position: relative;
  z-index: 2; /* Keep content above overlay */
}
.zd-plugin-initialized{
	  background: #ffffff;
    color: #000 !important;
    padding: 6px 12px;
    font-weight: 600 !important;
    border-radius: 30px;
}
/* Service Page */

	.circle {
	  width: 200px;
	  height: 200px;
	  border-radius: 50%;
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	  align-items: center;
	  text-align: center;
	  position: relative;
	  overflow: hidden;
	  transition: background-color 0.3s ease;
	}

    .circle .icon {
      font-size: 32px;
      margin-bottom: 10px;
    }

    .circle .label {
      font-size: 14px;
      color: #0a1f33;
      font-weight: 600;
    }

    .circle::before {
      content: "";
      position: absolute;
      inset: 0;
      border: 3px solid #0a1f33;
      border-radius: 50%;
      transform: scale(0);
      transition: transform 0.4s ease-in-out;
    }

    .circle:hover::before {
      transform: scale(1);
    }

