/* 

Theme Name: Hello Elementor Child

Theme URI: https://github.com/elementor/hello-theme/

Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team

Author: Elementor Team

Author URI: https://elementor.com/

Template: hello-elementor

Version: 1.0.1

Text Domain: hello-elementor-child

License: GNU General Public License v3 or later.

License URI: https://www.gnu.org/licenses/gpl-3.0.html

Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready

*/

/* service page slider start */

:root {
  --glass: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --blur: blur(20px);
  /* This variable controls the horizontal "spread" */
  --shift-x: 30vw;
}
html{ /*remove this block when integrating in your html body*/
  background: #000;
}
.carousel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: transparent;
  perspective: 2000px; /* Increased for better depth on wide screens */
  overflow: hidden;
  color: white;
  width: 100%;
}

.carousel-stage {
  position: relative;
  width: 100vw; /* Occupy full width to allow cards to spread */
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.carousel-card {
  position: absolute;
  /* Dynamic width: wider on desktop, narrower on mobile */
  width: clamp(280px, 25vw, 400px);
  height: clamp(380px, 60vh, 500px);
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
}

/* --- 3D TRANSFORM STATES --- */

.carousel-card.active {
  transform: translate3d(0, 0, 250px) rotateY(0deg);
  z-index: 10;
  opacity: 1;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
}

.carousel-card.left {
  transform: translate3d(calc(var(--shift-x) * -1), 0, -150px) rotateY(35deg)
    scale(0.85);
  z-index: 5;
  opacity: 0.5;
}

.carousel-card.right {
  transform: translate3d(var(--shift-x), 0, -150px) rotateY(-35deg) scale(0.85);
  z-index: 5;
  opacity: 0.5;
}

.carousel-card.far-left {
  transform: translate3d(calc(var(--shift-x) * -1.8), 0, -500px) rotateY(45deg)
    scale(0.6);
  z-index: 1;
  opacity: 0.2;
}

.carousel-card.far-right {
  transform: translate3d(calc(var(--shift-x) * 1.8), 0, -500px) rotateY(-45deg)
    scale(0.6);
  z-index: 1;
  opacity: 0.2;
}

.carousel-card.hidden {
  transform: translate3d(0, 0, -1000px) scale(0.1);
  opacity: 0;
}

/* Card Inner Styling */
.card-image {
    height: 60%;
    background-size: contain;
    background-position: center;
    position: relative;
    padding: 15px;
    background-repeat: no-repeat;
    background-color: #fff;
}

.expand-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  width: fit-content;
  margin: 0 auto;
}

.card-content {
  padding: 20px;
  flex-grow: 1;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.4));
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.card-footer{
  font-size: 12px;
}
.card-content p {
  font-size: 12px;
  font-style:italic;
  margin-top:4px;
  margin-bottom:4px;
  margin-left:0;
  margin-right:0;
}
.card-header h3 {
  margin: 0;
  font-size: 16px;
}

.tag-pill {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Controls */
.carousel-controls {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--glass);
  backdrop-filter: var(--blur);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
}

.nav-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  padding: 10px;
}

.user-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 1px solid var(--glass-border);
  border-right: 1px solid var(--glass-border);
  padding: 0 20px;
}

.user-badge img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

/*Pagination : dots to track cards styling */
.pagination-indicators {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0 10px;
  border-left: 1px solid var(--glass-border);
  border-right: 1px solid var(--glass-border);
  margin: 0 10px;
}

.dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot.active {
  background: #fff;
  width: 18px; /* The "pill" effect when active */
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Hover effect to show interactivity */
.dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

/* Ensure the control bar grows with the number of dots */
.carousel-controls {
  min-width: fit-content;
  max-width: 90vw;
}

/* Responsive Design */

/* Desktop / Large Screens (Spread them out to 90% of screen) */
@media (min-width: 1200px) {
  :root {
    --shift-x: 32vw;
  }
}
/* Tablets */
@media (max-width: 1024px) {
  :root {
    --shift-x: 35vw;
  }
}
/* Mobile (Keep cards closer so they don't fall off screen) */
@media (max-width: 600px) {
  :root {
    --shift-x: 38vw;
  }

  .carousel-card {
    width: 75vw; /* Almost full width on mobile */
    height: 450px;
  }

  .carousel-card.left {
    transform: translate3d(-45%, 0, -250px) rotateY(45deg) scale(0.8);
  }

  .carousel-card.right {
    transform: translate3d(45%, 0, -250px) rotateY(-45deg) scale(0.8);
  }
  .pagination-indicators {
    gap: 5px;
  }
  .dot {
    width: 4px;
    height: 4px;
  }
  .dot.active {
    width: 12px;
  }
}

/* Bottom Controls */
.carousel-controls {
  margin-top: 20px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  gap: 15px;
}











.slide[data-next] {
	transform: translateX(180px) scale(0.7);
}

.slide[data-previous] {
	transform: translateX(-180px) scale(0.7);
}



/* service page slider end */



/* all page titel hide start */
.site-title,
.site-description{
	display:none ;
}

/* all page titel hide end */




/* PREMIUM BUTTON */

.bttn-animation .elementor-button{
	position:relative;
	overflow:hidden;

	background:#6FB342 ;
	color:#fff ;

	border:none;
	border-radius:0;

	padding:16px 34px;

	font-weight:600;
	letter-spacing:0.5px;

	transition:all 0.4s ease;

	z-index:1;
}

/* HOVER COLOR */

.bttn-animation .elementor-button::before{
	content:"";

	position:absolute;

	top:0;
	left:0;

	width:0%;
	height:100%;

	background:#fff;

	transition:0.5s ease;

	z-index:-1;
}

/* HOVER EFFECT */

.bttn-animation .elementor-button:hover::before{
	width:100%;
}

/* BUTTON HOVER */

.bttn-animation .elementor-button:hover{
	color:#6FB342 ;
	transform:translateY(-3px);
}




/* .bttn2 .elementor-button{
	background:#6FB342 ;
	color:#fff ;
} */

.bttn2 .elementor-button:hover{
	color:#fff ;
	
}
.bttn2 .elementor-button::before{
	background:#6FB342;
}


/* button animation end */


/* menu animation start */


/* MENU LINK */

.menu-animation .ekit-menu-nav-link{
	position:relative;

	display:inline-block;

	padding:10px 0;

	color:#111 !important;

	font-weight:600;

	transition:0.4s ease;
}

/* UNDERLINE */

.menu-animation .ekit-menu-nav-link::before{
	content:"";

	position:absolute;

	left:0;
	bottom:-4px;

	width:0%;
	height:2px;

	background:#6FB342;

	transition:0.4s ease;
}

/* HOVER */

.menu-animation .ekit-menu-nav-link:hover{
	color:#6FB342 !important;
	transform:translateY(-2px);
}

/* HOVER UNDERLINE */

.menu-animation .ekit-menu-nav-link:hover::before{
	width:100%;
}

/* ACTIVE MENU */

.menu-animation .current-menu-item .ekit-menu-nav-link{
	color:#6FB342 !important;
}

/* REMOVE ACTIVE UNDERLINE */

.menu-animation .current-menu-item .ekit-menu-nav-link::before{
	width:0 !important;
}




/* menu animation end */


/* banner slider start */

/* SMOOTH CONTINUOUS SLIDER */

.img-slider .swiper-wrapper{
	transition-timing-function: linear !important;
}

/* IMAGE */

.img-slider .swiper-slide img{
	opacity:0.7;
	transition:0.4s ease;
	filter:grayscale(100%);
}

.img-slider .swiper-slide:hover img{
	opacity:1;
	filter:grayscale(0%);
	transform:scale(1.05);
}



/* banner slider end */


/* Footer from css start */


/* =========================
   FORM WRAPPER
========================= */

.ft-form .fluentform_wrapper_3{
	width:100%;
}

/* =========================
   FORM LAYOUT
========================= */

.ft-form form fieldset{
	display:flex;
	flex-direction:column;
	align-items:flex-start;
	gap:20px;

	border:none;
	padding:0;
	margin:0;
	background:transparent;
	box-shadow:none;
	outline:none;
}
.ft-form .fluentform .ff-el-group{
    margin-bottom: 0px;
}
/* =========================
   FULL WIDTH
========================= */

.ft-form .ff-el-group,
.ft-form .ff_submit_btn_wrapper{
	width:100%;
	margin-bottom:0;
}

/* =========================
   LABEL HIDE
========================= */

.ft-form .ff-el-input--label{
	display:none;
}

/* =========================
   INPUT FIELD
========================= */

.elementor-375 
.elementor-element.elementor-element-1ca91f0 
.ff-el-form-control{

	width:100% !important;

	height:55px !important;

	background:#fff !important;

	border:1px solid rgba(111,179,66,0.18) !important;

	border-radius:20px !important;

	padding:0 22px !important;

	font-size:16px !important;

	font-weight:500 !important;

	color:#111 !important;

	box-shadow:
	0 8px 30px rgba(111,179,66,0.08) !important;

	transition:all 0.35s ease !important;
}

/* =========================
   PLACEHOLDER
========================= */

.elementor-375 
.elementor-element.elementor-element-1ca91f0 
.ff-el-form-control::placeholder{
	color:#999 !important;
}

/* =========================
   INPUT FOCUS
========================= */

.elementor-375 
.elementor-element.elementor-element-1ca91f0 
.ff-el-form-control:focus{

	border-color:#6FB342 !important;

	box-shadow:
	0 0 0 4px rgba(111,179,66,0.12),
	0 12px 35px rgba(111,179,66,0.14) !important;

	outline:none !important;
}

/* =========================
   BUTTON
========================= */

.elementor-375 
.elementor-element.elementor-element-1ca91f0 
.fluentform-widget-wrapper 
.ff-btn-submit{

	width:100% !important;

	height:55px !important;

	background:#6FB342 !important;

	color:#fff !important;

	border:none !important;

	border-radius:20px !important;

	font-size:15px !important;

	font-weight:700 !important;

	letter-spacing:0.5px !important;

	text-transform:uppercase !important;

	display:flex !important;
	align-items:center !important;
	justify-content:center !important;

	cursor:pointer !important;

	transition:all 0.3s ease-in-out !important;

	box-shadow:
	0 12px 30px rgba(111,179,66,0.28) !important;
}

/* =========================
   BUTTON HOVER
========================= */

.elementor-375 
.elementor-element.elementor-element-1ca91f0 
.fluentform-widget-wrapper 
.ff-btn-submit:hover{

	background:#fff !important;

	color:#6FB342 !important;

	transform:translateY(-3px) !important;

	box-shadow:
	0 18px 40px rgba(111,179,66,0.36) !important;
}

/* =========================
   BUTTON FOCUS
========================= */

.elementor-375 
.elementor-element.elementor-element-1ca91f0 
.fluentform-widget-wrapper 
.ff-btn-submit:focus{
	outline:none !important;
}

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

@media(max-width:767px){

	.elementor-375 
	.elementor-element.elementor-element-1ca91f0 
	.ff-el-form-control,

	.elementor-375 
	.elementor-element.elementor-element-1ca91f0 
	.ff-btn-submit{

		width:100% !important;
	}
}
/* footer from css end */

/* INPUT WRAPPER */

.elementor-375 
.elementor-element.elementor-element-1ca91f0 
.ff-el-input--content{
	position:relative;
}

/* EMAIL ICON */

.elementor-375 
.elementor-element.elementor-element-1ca91f0 
.ff-el-input--content::before{
	content:"\f0e0";

	font-family:"Font Awesome 6 Free";
	font-weight:900;

	position:absolute;

	left:18px;
	top:15px;

	

	color:#6FB342;

	font-size:20px;

	z-index:2;
}

/* INPUT PADDING */

.elementor-375 
.elementor-element.elementor-element-1ca91f0 
.ff-el-form-control{
	padding-left:48px !important;
}

.elementor-375 
.elementor-element.elementor-element-1ca91f0 
.fluentform-widget-wrapper 
.ff-el-group 
.ff-btn-submit{
	background:#6FB342 !important;
	color:#fff !important;
	border:none !important;
}

.elementor-375 
.elementor-element.elementor-element-1ca91f0 
.fluentform-widget-wrapper 
.ff-el-group 
.ff-btn-submit:hover{
	background:#fff !important;
  color: #6FB342 !important;
}




/* Service client slider loop start */

.client-slider .swiper-wrapper{
	transition-timing-function: linear !important;
}

.client-slider .swiper{
	overflow:hidden;
}


/* Service client slider loop end */








/* home page */

.about-core{
  height: 330px;
  cursor: pointer;
}

.about-core {
    position: relative;
    overflow: hidden;
    background: #fff;
    z-index: 1;
}

.about-core::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: #6CB246;
    transition: all 0.5s ease;
    z-index: -1;
}

.about-core:hover::after {
    bottom: 0;
}

.about-core .elementor-widget,
.about-core .elementor-widget-container,
.about-core h3,
.about-core p,
.about-core svg {
    position: relative;
    z-index: 2;
}

.about-core:hover h3,
.about-core:hover p {
    color: #fff !important;
}

.about-core:hover svg path {
    fill: #fff !important;
}







/* contact us page start */
.animated-contact-logo {
    position: relative;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.animated-contact-logo img {
    width: 100%;
    height: auto;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(108,178,70,0.4));
    transition: 0.4s ease;
}

/* Blinking stars */
.animated-contact-logo::before,
.animated-contact-logo::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: #A4FF5A;
    border-radius: 50%;
    box-shadow: 0 0 15px #6CB246;
    animation: blink 1.2s infinite alternate;
}

.animated-contact-logo::before {
    top: 40px;
    left: 50px;
}

.animated-contact-logo::after {
    bottom: 80px;
    right: 60px;
    animation-delay: .5s;
}

/* Extra blinking stars */
.animated-contact-logo .star {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #A4FF5A;
    border-radius: 50%;
    box-shadow: 0 0 15px #6CB246;
    animation: blink 1.5s infinite alternate;
}

.star1 { top: 120px; right: 100px; }
.star2 { bottom: 120px; left: 80px; animation-delay: .7s; }

/* Float */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Pulse */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* Blink */
@keyframes blink {
    0% {
        opacity: 0.2;
        transform: scale(0.7);
    }
    100% {
        opacity: 1;
        transform: scale(1.4);
    }
}

/* Hover */
.animated-contact-logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(108,178,70,0.7));
}




















.contact-hero-logo svg {
    width: 100%;
    height: auto;
}

/* Envelope animation */
.contact-hero-logo #envelope {
    animation: float 3s ease-in-out infinite;
    transform-origin: center;
    filter: drop-shadow(0 0 12px rgba(107, 207, 63, .35));
}

/* Envelope colors */
.contact-hero-logo #path306 { fill: #6BCF3F !important; }
.contact-hero-logo #path326,
.contact-hero-logo #path330 { fill: #58B933 !important; }
.contact-hero-logo #path334 { fill: #8EEB5A !important; }

/* Paper */
.contact-hero-logo #path308 { fill: #ffffff !important; }

.contact-hero-logo #path310,
.contact-hero-logo #path312,
.contact-hero-logo #path314,
.contact-hero-logo #path316,
.contact-hero-logo #path318,
.contact-hero-logo #path320,
.contact-hero-logo #path322 {
    fill: #dcdcdc !important;
}

/* Stars */
.contact-hero-logo #star1,
.contact-hero-logo #star2,
.contact-hero-logo #star3,
.contact-hero-logo #star4,
.contact-hero-logo #star5,
.contact-hero-logo #star6 {
    animation: blink 1.5s ease-in-out infinite;
    fill: #9AEF63 !important;
}

.contact-hero-logo #star2 { animation-delay: .2s; }
.contact-hero-logo #star3 { animation-delay: .5s; }
.contact-hero-logo #star4 { animation-delay: .8s; }
.contact-hero-logo #star5 { animation-delay: .3s; }
.contact-hero-logo #star6 { animation-delay: .6s; }

/* Path animation */
.contact-hero-logo #path56 {
    stroke: #5BBE47 !important;
    stroke-dasharray: 10;
    animation: dash 4s linear infinite;
}

/* Plane animation */
.contact-hero-logo #path40 {
    animation: fly 4s ease-in-out infinite;
    transform-origin: center;
}

/* Background blobs */
.contact-hero-logo #path24 { fill: #EAF7DF !important; }
.contact-hero-logo #path28 { fill: #D8F0C7 !important; }
.contact-hero-logo #path32 { fill: #C8E8B2 !important; }
.contact-hero-logo #path36 { fill: #B8DFA0 !important; }

/* Leaves */
.contact-hero-logo #path60,
.contact-hero-logo #path66,
.contact-hero-logo #path74,
.contact-hero-logo #path114,
.contact-hero-logo #path156,
.contact-hero-logo #path162 {
    fill: #4FAF50 !important;
}

.contact-hero-logo #path80,
.contact-hero-logo #path84,
.contact-hero-logo #path88,
.contact-hero-logo #path92,
.contact-hero-logo #path96,
.contact-hero-logo #path100,
.contact-hero-logo #path104,
.contact-hero-logo #path108,
.contact-hero-logo #path120,
.contact-hero-logo #path124,
.contact-hero-logo #path128,
.contact-hero-logo #path132,
.contact-hero-logo #path136,
.contact-hero-logo #path140,
.contact-hero-logo #path144,
.contact-hero-logo #path148 {
    fill: #67C25C !important;
}

/* Plane cloud */
.contact-hero-logo #path40,
.contact-hero-logo #path44,
.contact-hero-logo #path48 {
    fill: #DFF5D2 !important;
}

/* Plane */
.contact-hero-logo #path52 {
    fill: #6BCF3F !important;
}

/* Badges */
.contact-hero-logo #path358,
.contact-hero-logo #path366 {
    fill: #72D44B !important;
}

/* Badge icons */
.contact-hero-logo #path362,
.contact-hero-logo #path370 {
    stroke: #fff !important;
    fill: none !important;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-18px); }
    100% { transform: translateY(0px); }
}

@keyframes blink {
    0% { opacity: .3; transform: scale(.8); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: .4; transform: scale(1); }
}

@keyframes dash {
    to { stroke-dashoffset: -100; }
}

@keyframes fly {
    0% { transform: translate(0,0) rotate(0deg); }
    50% { transform: translate(10px,-8px) rotate(6deg); }
    100% { transform: translate(0,0) rotate(0deg); }
}












/* Form box */
.contact-form .fluentform {
    background: #ffffff;
    padding: 25px 25px 5px 25px !important; /* কমানো হয়েছে */
    border-radius: 25px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06) !important;
}

/* Labels */
.contact-form label {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #222 !important;
    margin-bottom: 4px !important;
}

/* Input fields */
.contact-form .ff-el-form-control {
    background: transparent !important;
    border: none !important;
    border-bottom: 1.5px solid #dcdcdc !important;
    border-radius: 0 !important;
    padding: 10px 5px !important;  /* কমানো হয়েছে */
    font-size: 15px !important;
    color: #222 !important;
    box-shadow: none !important;
}

/* Focus */
.contact-form .ff-el-form-control:focus {
    border-bottom: 2px solid #6BCF3F !important;
    outline: none !important;
}

/* Placeholder */
.contact-form .ff-el-form-control::placeholder {
    color: #999 !important;
    font-size: 14px !important;
}

/* Textarea ছোট */
.contact-form textarea.ff-el-form-control {
    min-height: 70px !important;
    resize: none !important;
}

/* Field spacing কম */
.contact-form .ff-el-group {
    margin-bottom: 12px !important;
}

/* Button */
.contact-form .ff-btn-submit {
    width: 100% !important;
    background: transparent !important;
    color: #6BCF3F !important;
    border: 2px solid #6BCF3F !important;
    border-radius: 50px !important;
    padding: 12px 30px !important; /* কমানো হয়েছে */
    font-size: 16px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

/* Hover */
.contact-form .ff-btn-submit:hover {
    background: #6BCF3F !important;
    color: #fff !important;
}

/* Mobile */
@media(max-width:767px){
    .contact-form .fluentform {
        padding: 20px !important;
    }
}


/* Contact us page end */



/* Home popup  start */
 label{
    font-size: 30px;
}

/* Labels */
.popup-modify label {
    font-size: 22px !important;
}

/* Placeholder */
.popup-modify .ff-el-form-control::placeholder {
    font-size: 22px !important;
}
.popup-main .ekit-sidebar-widget{
  background: transparent !important;
}
.popup-main .ekit_close-side-widget{
  display: none !important;
}

/* hOME page popup end */






/* Blog page start */
.tag-con .tagcloud{
    display: flex;
    flex-wrap: wrap;
    /* flex-direction: column; */
    gap: 20px;

}
.tag-con .tagcloud a{
  background-color: #fff;
  color: #000;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  border-radius: 30px ;
  padding: 10px 30px 10px 30px;
  font-size: 16px !important;
  line-height: 16px !important;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ;

}
.tag-con .tagcloud a:hover{
  background-color: #58B933;
  color: #ffffff;
}





/* Search Box Main */
.srh-blog .search-form{
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 10px;
    border-radius: 50px;
    border: 2px solid #e5e5e5;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

/* Hover Effect */
.srh-blog .search-form:hover{
    border-color: #00c853;
    box-shadow: 0 10px 30px rgba(0,200,83,0.18);
    transform: translateY(-2px);
}

/* Input Field */
.srh-blog .search-field{
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 14px 18px;
    border-radius: 40px;
    background: #f7f7f7;
    color: #222;
}

/* Placeholder */
.srh-blog .search-field::placeholder{
    color: #888;
    font-weight: 500;
}

/* Search Button */
.srh-blog .search-submit{
    border: none;
    background: linear-gradient(135deg,#00c853,#64dd17);
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s ease;
}

/* Button Hover */
.srh-blog .search-submit:hover{
    transform: scale(1.05);
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(0,200,83,0.35);
}

/* Mobile Responsive */
@media(max-width:767px){
    
    .srh-blog .search-form{
        flex-direction: column;
        border-radius: 20px;
    }

    .srh-blog .search-submit{
        width: 100%;
    }
}
/* Blog page end */







/* =========================
   BLOG GRID
========================= */

.custom-blog-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:32px;
}

/* =========================
   BLOG CARD
========================= */

.custom-blog-card{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    background:#fff;
    transition:.4s ease;
    border:1px solid #ececec;
}

.custom-blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(0,0,0,0.12);
}

/* =========================
   IMAGE
========================= */

.custom-blog-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:.5s ease;
}

.custom-blog-card:hover img{
    transform:scale(1.05);
}

/* =========================
   DATE
========================= */

.blog-date{
    /* position:absolute;
    top:18px;
    left:18px; */
    z-index:2;
    margin:0;
    /* border-radius:50px;
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(10px); */
    color:#111;
    font-size:15px !important;
    font-weight:500;
    letter-spacing:1px;
    text-transform: capitalize;
    /* box-shadow:0 8px 20px rgba(0,0,0,0.12); */
    padding:0px 24px 10px 24px;
}

/* =========================
   CONTENT
========================= */

.custom-blog-card h5{
    margin:0;
    padding:24px 24px 10px 24px;
    line-height:1.45;
}

/* TITLE */

.custom-blog-card h5 a{
    text-decoration:none !important;
    color:#111 !important;
    font-size:22px;
    font-weight:700;
    line-height:1.45;
    transition:.3s ease;
    display:block;
}

/* HOVER */

.custom-blog-card h5 a:hover{
    color:#16a34a !important;
}

/* =========================
   PAGINATION
========================= */

.custom-pagination{
    margin-top:55px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.custom-pagination .page-numbers{
    min-width:48px;
    height:48px;
    padding:0 18px;
    border-radius:14px;
    background:#fff;
    border:1px solid #e7e7e7;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#111;
    font-weight:600;
    text-decoration:none;
    transition:.3s ease;
}

.custom-pagination .page-numbers:hover{
    background:#16a34a;
    border-color:#16a34a;
    color:#fff;
    transform:translateY(-4px);
}

.custom-pagination .current{
    background:#16a34a;
    border-color:#16a34a;
    color:#fff;
}

.custom-pagination .next{
    padding:0 22px;
    border-radius:50px;
}

/* =========================
   TABLET
========================= */

@media(max-width:1024px){

    .custom-blog-card img{
        height:260px;
    }

    .custom-blog-card h5 a{
        font-size:23px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:767px){

    .custom-blog-grid{
        grid-template-columns:1fr;
        gap:24px;
    }

    .custom-blog-card{
        border-radius:18px;
    }

    .custom-blog-card img{
        height:220px;
    }

    .blog-date{
        top:14px;
        left:14px;
        padding:7px 13px;
        font-size:11px;
    }

    .custom-blog-card h5{
        padding:18px 18px 22px;
    }

    .custom-blog-card h5 a{
        font-size:21px;
        line-height:1.4;
    }

    .custom-pagination{
        margin-top:40px;
        gap:10px;
    }

    .custom-pagination .page-numbers{
        min-width:42px;
        height:42px;
        font-size:14px;
        border-radius:12px;
    }

}
.blog-count {
    font-size: 18px;
    line-height: 28px;
    font-family: roboto;
    font-weight: 800;
}













.position-from #gform_wrapper_1{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.position-from .gfield_label{
    font-size:18px !important;
    font-weight:600 !important;
    color:#222 !important;
    margin-bottom:4px;
}
.position-from #gform_fields_1{
    row-gap: 20px;
}
.position-from input[type="text"],
.position-from input[type="email"],
.position-from input[type="tel"],
.position-from textarea{
    border:1px solid #e5e5e5 !important;
    border-radius:12px !important;
    background:#fafafa !important;
    padding:14px 18px !important;
    min-height:55px;
    box-shadow:none !important;
}

.position-from textarea{
    min-height:140px;
}

.position-from input:focus,
.position-from textarea:focus{
    border-color:#67b21b !important;
    box-shadow:0 0 0 4px rgba(103,178,27,.15) !important;
}

.position-from .gform_button{
    width:100% !important;
    height:58px;
    border:none !important;
    border-radius:50px !important;
    border: 1px solid #6BCF3F !important;
    background:linear-gradient(90deg,#5ca614,#7bc92a) !important;
    color:#fff !important;
    font-size:18px !important;
    font-weight:700 !important;
    cursor:pointer;
}

.position-from .gform_button:hover{
    transform:translateY(-2px);
    color: #67b21b !important;
    background: #ffffff !important;
}

.position-from input[type="file"]{
    border:1px solid #e5e5e5;
    border-radius:12px;
    padding:12px;
    background:#fafafa;
}

.position-from .gfield_required_text{
    color:#e53935;
    font-size:12px;
}

















@media only screen and (min-width: 1600px) and (max-width: 1799px) {
	html {
    	zoom: 0.80;
    	zoom: 80%;
	}
}
 
@media only screen and (min-width: 1440px) and (max-width: 1599px) {
	html {
    	zoom: 0.80;
    	zoom: 80%;
	}
 
}
 
@media only screen and (min-width: 1366px) and (max-width: 1439px) {
	html {
    	zoom: 0.75;
    	zoom: 75%;
	}
}
 
@media only screen and (min-width: 1201px) and (max-width: 1365px) {
	html {
    	zoom: 0.85;
    	zoom: 85%;
	}
}
