/*
 Theme Name:   Kadence Child
 Theme URI:    https://yourwebsite.com/
 Description:  Child theme for the Kadence theme
 Author:       Your Name
 Author URI:   https://yourwebsite.com/
 Template:     kadence
 Version:      1.0.0
 Text Domain:  kadence-child
*/



@font-face {
  font-family: 'Lastica';
  src: url('/wp-content/themes/kadence-child/fonts/lastica-webfont.woff2') format('woff2'),
       url('/wp-content/themes/kadence-child/fonts/lastica-webfont.woff') format('woff');
  }

@font-face {
  font-family: 'Lastica';
  src: url('/wp-content/themes/kadence-child/fonts/Lastica.ttf') format('truetype');
}

@font-face {
  font-family: 'Livvic';
  src: url('/wp-content/themes/kadence-child/fonts/Livvic-Medium.ttf') format('truetype'),
       url('/wp-content/themes/kadence-child/fonts/Livvic-Medium.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}





.custom-single-product {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Inter', sans-serif;
}

.product-top-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.product-gallery {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex: 1 1 15%;
}

.gallery-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gallery-thumbnails .thumb-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s;
}

.gallery-thumbnails .thumb-image:hover {
    border: 2px solid #007BFF;
}

.main-image-container {
    flex: 1;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-summary {
    flex: 1 1 50%;
}

.product-category {
    font-size: 22px;
    color: #333333;
    margin-bottom: 10px;
    font-weight: 500;
    font-family: 'Lato';
    color: rgba(0, 0, 0, 1);
}

.product-category a {
    font-family: 'Lato';
    color: rgba(0, 0, 0, 1);
    font-size: 22px;
    font-weight: 500;
    text-decoration: none;
}

.product-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: #222;
    font-family: 'Lato';
    font-weight: 600;
}
.product-excerpt {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #444;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: #F238A1;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #d12a8b;
}

.product-full-description {
    margin-top: 60px;
    font-size: 20px;
    line-height: 1.8;
    color: rgba(0, 0, 0, 1);
    font-weight: 500;
    font-family: 'Lato';
}






@media (max-width: 768px) {
    .product-top-section {
        flex-direction: column;
        gap: 30px;
	align-items: center !important;
    }

    .product-gallery {
        flex-direction: column;
        align-items: center;
    }

    .gallery-thumbnails {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }

    .main-image {
        width: 100%;
        max-width: 100%;
    }

    .product-summary {
        text-align: center;
    }

    .cta-button {
        margin-top: 20px;
    }
}








.recommended-products {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
}

.recommended-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.recommended-header h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.view-all {
    font-size: 14px;
    color: rgba(0, 0, 0, 1);
    text-decoration: none;
    font-weight: 500;
}

.view-all:hover {
    text-decoration: underline;
}

.recommended-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.recommended-card {
    background: white;
    border-radius: 12px;
    /* box-shadow: 0 0px 5px rgba(0, 0, 0, 0.4); */
    overflow: hidden;
    perspective: 1000px;
    height: 460px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border: 1px solid #a29e9e29;
}

.recommended-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
}

.card-back {
    background: #f8f9fa;
    transform: rotateY(180deg);
    padding: 20px;
}

.recommended-image img {
    width: 100%;
    object-fit: contain;
    padding: 10px;
}

.recommended-info {
    padding: 15px;
    text-align: center;
}

.recommended-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
}

.recommended-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.talk-expert {
    display: inline-block;
    padding: 10px 15px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.card-back {
    display: flex;
    align-items: center;
    justify-content: center;
}

.talk-expert:hover {
    background-color: #0056b3;
}

.recommended-info {
    text-align: left;
}
.card-cta {
    text-align: center;
    margin-top: auto;
}

@media (max-width: 480px) {
    .recommended-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .recommended-card {
        height: 450px;
    }
}








.main-image-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 8px;
}

.main-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.2s ease;
  cursor: crosshair;
  transform-origin: center center;
}

.main-image-container:hover .main-image {
  transform: scale(2); /* Adjust zoom level here */
}








.card-contents h3,.card-contents p {
    text-overflow: ellipsis;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.flip-card-front img {
    width: 100%;
}




/*  now ccss  */


.product-gallery {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* Thumbnail Slider Styles */
.gallery-thumbnails {
    width: 100px;
    margin: 0;
}


.gallery-thumbnails .thumb-image {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
    border: 2px solid transparent;
}

.gallery-thumbnails .thumb-image:hover,
.gallery-thumbnails .thumb-image.active {
    opacity: 1;
    border: 2px solid #f35669;
}

/* Main Image Styles */
.main-image-container {
    flex: 1;
    position: relative;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Slick Navigation Arrows */
.gallery-thumbnails .slick-prev,
.gallery-thumbnails .slick-next {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    color: black;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
}

.gallery-thumbnails .slick-prev {
    top: -35px;
}

.gallery-thumbnails .slick-next {
    top: 100%;
}


/* Product Summary Styles */
.product-summary {
    flex: 1;
    padding-left: 30px;
}

.product-title {
    font-size: 28px;
    margin: 0 0 15px;
    color: #333;
}

.product-excerpt {
    margin-bottom: 20px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 8px 55px;
    background: linear-gradient(90deg, rgba(255, 87, 87, 1) 0%, rgba(140, 82, 255, 1) 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s;
    font-size: 18px;
    font-family: 'Lato';
}

.cta-button:hover {
    background: linear-gradient(90deg, rgba(255, 87, 87, 1) 0%, rgba(140, 82, 255, 1) 100%);
    color: white !important;
}



.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
    opacity: 0 !important;
    display:none;
}

.slick-prev:before, .slick-next:before {
    opacity: 0 !important;
    display:none;
}


.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    color: #000 !important;
}




.blog-listing {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blog-card {
  display: flex;
  gap: 20px;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  flex: 0 0 300px;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-title {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin: 0 0 10px;
}

.blog-excerpt {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.blog-date {
  font-size: 14px;
  color: #999;
  margin-top: auto;
}





@media (max-width: 768px) {
  .blog-card {
    flex-direction: column;
  }

  .blog-image {
    width: 100%;
    height: 200px;
  }

  .blog-content {
    padding: 15px;
  }
}




.dgwt-wcas-suggestions-wrapp {
  background: transparent !important; /* Example */
  border: none !important;
}

span.dgwt-wcas-st-title {
  color: #fff !important; /* Example */
}

.dgwt-wcas-suggestion-selected {
    background-color: rgba(135, 135, 135, 1) !important;
}

.dgwt-wcas-suggestions-wrapp a,.dgwt-wcas-suggestions-wrapp a span{
   color:#fff !important;
}

.dgwt-wcas-suggestion-nores {
    color: #fff !important;
}


.overview-content h2.elementor-heading-title.elementor-size-default {
    font-family: lastica !important;
    letter-spacing:3px;
    margin-bottom: 0px !important;
}



.our-core-values h2.elementor-heading-title.elementor-size-default {
    font-family: 'Lastica' !important;
    letter-spacing: 3px;
}

.our-mission-vision h2.elementor-heading-title.elementor-size-default {
    font-family: 'Lastica' !important;
    letter-spacing: 3px;
}


.our-core-value-result .elementor-icon-box-wrapper {
    width: 150px;
}


.our-solution-services-icon .elementor-icon-box-wrapper {
    width: 170px;
}


.our-solution-services-icon h2.elementor-heading-title.elementor-size-default,.our-solution-services-icon h3.elementor-icon-box-title {
    font-family: 'Lastica' !important;
    letter-spacing: 3px;
    text-transform:uppercase;
}



.our-solution-services-icon h3.elementor-icon-box-title{
    font-family: 'Lastica' !important;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 11px !important;
}


.heading-font .elementor-heading-title.elementor-size-default {
    font-family: 'Lastica' !important;
    letter-spacing: 3px;
}

.why-choose-work .elementor-icon-box-title {
    font-family: 'Lastica' !important;
    letter-spacing: 2px;
}



.why-choose-work .elementor-widget-container {
    width: 165px;
}


section.core-services h2 {
    font-family: lastica;
    letter-spacing: 2px;
}


section.value-section h2 {
    font-family: 'Roboto';
    font-weight: 800 !important;
    letter-spacing: 0px;
}

section.steps-method p.descp span {
    color: #d40e59;
}

section.entry-hero.page-hero-section.entry-hero-layout-standard {
    height: 330px !important;
}

.faq_font_change h2.elementor-heading-title.elementor-size-default {
    font-family: 'Lastica' !important;
    letter-spacing: 3px;
}


/* product css */


.container {
	max-width: 1200px;
	margin: auto;
	padding: 20px;
}

.product-grid {
	display: flex;
	justify-content: center;
	gap: 30px;
        flex-wrap: wrap;
}

   .product-card {
	width: 320px;
	border-radius: 20px;
	box-shadow: 0 4px 20px rgb(0 0 0 / 10%);
	transition: transform 0.3s ease;
	position: relative;
        flex: 1 1 calc(20% - 20px);
        box-sizing: border-box;
        background: #fff;
        border: 1px solid #eee;
        padding: 20px;
        text-align: center;
        min-width: 250px;
    }

.product-card:hover {
	transform: translateY(-5px);
}

.product-title {
	font-family: 'Orbitron', sans-serif;
	text-transform: uppercase;
	font-size: 18px;
	margin-bottom: 12px;
	color: #000;
}

.product-excerpt {
	color: #333;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 15px;
	min-height: 70px;
}



@media screen and (max-width: 1024px) {
	.product-grid .product-card {
		flex: 1 1 calc(50% - 20px); /* 2 per row on tablets */
	}
}
@media screen and (max-width: 600px) {
	.product-grid .product-card {
		flex: 1 1 100%; /* 1 per row on mobile */
	}
}

.custom-video-wrapper {
	position: relative;
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 15px;
}

.custom-video {
	width: 100%;
	display: block;
	border-radius: 12px;
}

.fallback-image {
	width: 100%;
	border-radius: 12px;
	margin-bottom: 15px;
	display: block;
}

.play-toggle {
	position: absolute;
	bottom: 43px;
    	right: 93px;
	background: rgba(0, 0, 0, 0.6);
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	cursor: pointer;
	z-index: 2;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.play-toggle .play-icon {
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 0 10px 18px;
	border-color: transparent transparent transparent #fff;
	margin: auto;
	transform: translateX(-4px);
}

.play-toggle.paused .play-icon {
	border-width: 10px 0 10px 18px;
}

.play-toggle.playing .play-icon {
	width: 12px;
	height: 12px;
	background: #fff;
	clip-path: polygon(0 0, 40% 0, 40% 100%, 0% 100%, 0 0, 60% 0, 100% 0, 100% 100%, 60% 100%, 60% 0);
	border: none;
	transform: none;
	margin-left: -4px;
}

button.play-toggle.playing:hover,button.play-toggle.playing:active, button.play-toggle.playing:focus,button.play-toggle.paused:active,button.play-toggle.paused:hover {
    background: #00000066;
}
.custom-video-wrapper:hover .play-toggle {
	opacity: 1;
}
.button {
	display: inline-block;
	background-color: #4a0072;
	color: #fff;
	padding: 1px 25px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
	transition: background-color 0.3s ease;
	position: absolute;
    	left: 60px;
}

.button:hover {
	background-color: #330050;
	color:#fff !important;
}
a.button {
    font-size: 19px;
    font-weight: 500;
}
h3.product-title {
    font-family: 'Lastica';
    letter-spacing: 3px;
    font-size: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 43px;
}
p.product-excerpt {
    font-weight: 500;
    line-height: 1.6 !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.our_experts_ask a:hover {
    color: #fff !important;
}

/* Responsive */
@media (max-width: 1024px) {
	.product-card {
		width: 45%;
	}
}

@media (max-width: 768px) {
	.product-card {
		width: 100%;
	}
      .product-grid.shorcode-product {
          flex-direction: column;
        }
}

@media (max-width: 500px) {

   .play-toggle {
       bottom: 58px;
       right: 110px;
    }
    .shortcode a.button {
       left: 80px;
    }

}
.call-number-class a:hover,.call-number-class a:active,.call-number-class a:focus {
    color: #fff !important;
}

.free-demo span.elementor-button-text:hover,.free-demo span.elementor-button-text:focus {
    color: #fff !important;
}

.main-header-top .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp {
   border-radius:50px !important;
   padding: 0px !important;
}



.main-header-top{
   background:linear-gradient(to right, #e9e7fc, #a58be826, #ba77e140, #e4a26a33, #f4c77954, #ffffff);
}

.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
    margin: -9px !important;
}


@media only screen and (max-width: 768px) {
  .rev_slider_wrapper {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

@media (max-width: 480px) {
  .rev_slider_wrapper {
    padding: 0 !important;
    margin: 0 !important;
  }

  .rev_slider {
    margin: 0 !important;
  }
}


.srp_player_boxed.srp_player_grid {
    background: #ffffff !important;
    padding: 0px 20px 0px 20px; !important
}

.track-title,.srp_subtitle {
    display: none !important;
}








.solutions-cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}
.solution-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    overflow: hidden;
    /* background: #fff; */
    aspect-ratio: 1 / 1;
    transition: transform 0.3s;
	height: 245px !important;
    min-width: 100% !important;
	border-radius:0px !important;
	justify-content: center !important;
}

.card-overlay {
    position: relative;
    bottom: 8px;
    text-align: center;
}

.solution-card:hover {
    transform: translateY(-4px);
}
.card-image img {
    width: 100%;
    height: 216px;
    border-radius: 12px;
}
.card-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    padding: 5px 15px;
    background: #2b0870;
	border-radius: 5px;
}

/* ----------  CTA SECTION  ---------- */
.solutions-cta {
    background: #f5f0fb;
    text-align: center;
    padding: 40px 20px;
    margin-top: 20px;
}
.solutions-cta h2 {
    font-size: 64px;
    margin-bottom: 20px;
    font-family: sans-serif;
    font-weight: 700;
}
.solutions-cta p {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: bold;
}

/* ----------  PROCESS SECTION  ---------- */
.solutions-process {
    text-align: center;
    margin: 0px auto;
}
.solutions-process h2 {
    font-size: 32px;
    margin-bottom: 40px;
}
.solutions-process img {
    width: 100%;
    border-radius: 20px;
}

h2.section-heading {
    font-size: 32px !important;
    margin: 30px auto;
    font-family: lastica;
    letter-spacing: 3px;
	max-width: 40%;
}

.our_experts_ask {
    margin-top: 30px;
    text-align: center;
}

.our_experts_ask a {
    background: #af245f;
    padding: 4px 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    font-size: 19px;
}

/* ----------  RESPONSIVE FIXES  ---------- */
@media (max-width: 1200px) {
    .solutions-cards {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 16px;
    }
}
@media (max-width: 767px) {
    .hero-title {
        font-size: 32px;
    }
    .section-heading {
        font-size: 26px;
    }
    .solutions-cta h2 {
        font-size: 28px;
    }
    .card-title {
        font-size: 14px;
    }
    h2.section-heading {
        max-width: 100% !important;
    }
}


#mega-menu-wrap-primary .mega-menu-toggle {
    display: flex;
    justify-content: flex-start; /* Align to left */
}

#mega-menu-wrap-primary .mega-toggle-blocks-left {
    flex: 1; /* Ensure space for left alignment */
}

#mega-menu-wrap-primary .mega-toggle-blocks-right {
    order: -1; /* Move right block to left */
}

div#mega-menu-wrap-primary {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .solution-card {
        height: 260px !important;
        /* min-width: 240px !important; */
        margin: 0 auto;
    }

	.solutions-hero {
		min-height: 0 !important;
	}
}

#mega-menu-wrap-primary #mega-menu-primary {
    padding-left: 30px !important;
}

#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner, #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before, #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
    background-color: #625c5c !important;
}
