/*
Theme Name: Twenty Thirteen
Theme URI: https://wordpress.org/themes/twentythirteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 4.4
Tested up to: 6.8
Requires at least: 3.6
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready, block-patterns
Text Domain: twentythirteen

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


/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Post Formats
 *   5.6 - Attachments
 *   5.7 - Post/Paging Navigation
 *   5.8 - Author Bio
 *   5.9 - Archives
 *   5.10 - Search Results/No posts
 *   5.11 - 404
 *   5.12 - Comments
 *   5.13 - Multisite
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */


/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}

html{
	scroll-behavior: smooth;
}

:root{
	--ancient-color: #E97B21;
	--secondary-color: #D62D49;
	--light-bg-color-primary: #ECF1F8;
	--light-bg-color-secondary: #FFF0E1;
	--dark-heading-color: #212B36;
	--white-color: #ffffff;
	--light-desc-color: #97918B;
	--transition-all: all 0.3s ease;
	--secondary-bg-color: #1B1B1B;
	--border-color: #323232;
	--footer-link-color: #D1D1D1;
    --blog-highlight-color: #49BBBD;
}

body{
	margin: 0;
	padding: 0;
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	background-color: var(--white-color);
	color: var(--light-desc-color);
}

a {
	text-decoration: none;
}

.bg-dark-asto{
	background: var(--secondary-bg-color);
}
.intro-heading {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    color: var(--ancient-color);
    font-weight: 600;
}

ul {
    list-style: none;
    padding: 0;
    line-height: 30px;
}
.highlight-text {
    color: var(--ancient-color);
}
/* Global css of button, headings */
.astonea-btn {
    background: var(--ancient-color);
    padding: 10px 20px;
	border: 1px solid var(--ancient-color);
	color: var(--white-color);
	transition: var(--transition-all);
	-webkit-transition: var(--transition-all);
}

.astonea-btn:hover {
    background: var(--white-color);
	border: 1px solid var(--ancient-color);
	color: var(--ancient-color);
}

.main-heading{
	font-size: 36px;
	font-weight: 500;
	color: var(--dark-heading-color);
}

/* Header Css */
header.site-header {
    padding: 15px 0;
	transition: var(--transition-all);
	-webkit-transition: var(--transition-all);
}

header.site-header.navbar-scrolled {
    position: fixed;
    z-index: 99;
    width: 100%;
    top: 0;
    padding: 5px 0;
    background: var(--white-color);
    border-bottom: 1px solid var(--light-desc-color);
}
header.site-header .logo-main {
    max-width: 70%;
}

/* Section Announcement */
.announcement {
	background-color: var(--light-bg-color-secondary);
	padding: 20px 0;
	overflow: hidden;
	position: relative;
  }
  .scrolling-text-container {
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
}

.scrolling-text {
	font-weight: 500;
    color: #000000;
	display: inline-block;
	animation: scroll 20s linear infinite;
}

.scrolling-text span {
	display: inline-block;
	padding-right: 50px;
}

@keyframes scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.scrolling-text:hover {
	animation-play-state: paused;
}

/* About us section */

section.about-us {
    padding: 6% 0 4%;
}

section.about-us .about-images {
    position: relative;
    display: flex;
}

section.about-us .left-image-wrapper {
    position: relative;
    z-index: 1;
    width: 50%;
    padding-right: 15px;
}

section.about-us .left-image {
    margin-top: 30px;
    border-radius: 10px;
    width: 100%;
    height: auto;
    display: block;
}

section.about-us .right-image-wrapper {
    position: relative;
    width: 50%;
    z-index: 0;
    padding-left: 15px;
}

section.about-us .right-image {
    margin-top: 120px;
    border-radius: 10px;
    width: 100%;
    height: auto;
    display: block;
}

section.about-us .overlay-text {
    position: absolute;
    top: -30px;
    left: 15px;
    background-color: var(--white-color);
    padding: 20px;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    z-index: 2;
    border-radius: 5px;
}

section.about-us .overlay-heading {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    color: var(--secondary-bg-color);
}

section.about-us .overlay-line {
    border: none;
    border-top: 2px solid var(--ancient-color);
    width: 100%;
    margin: 8px 0;
}

section.about-us .overlay-description {
    margin: 0;
    font-size: 14px;
    color: var(--light-desc-color);
}
section.about-us .text-and-image {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
section.about-us .overlay-image {
    max-width: 30px;
    height: auto;
}

@media (max-width: 1199.98px) {
    section.about-us .left-image {
        margin-top: 20px;
    }
    section.about-us .right-image {
        margin-top: 100px;
    }
}

@media (max-width: 991.98px) {
    section.about-us .left-image {
        margin-top: 15px;
    }
    section.about-us .right-image {
        margin-top: 80px;
    }
    section.about-us .overlay-text {
        padding: 15px;
        max-width: 85%;
    }
}

@media (max-width: 767.98px) {
    section.about-us .about-images {
        flex-direction: column;
        margin-bottom: 40px;
    }
	section.about-us  .left-image-wrapper,
    section.about-us .right-image-wrapper {
        width: 100%;
        padding: 0;
    }
    section.about-us .left-image {
        margin-top: 0;
    }
    section.about-us .right-image {
        margin-top: 20px;
    }
    section.about-us .overlay-text {
        position: relative;
        top: 0;
        left: 0;
        margin-top: 20px;
        max-width: 100%;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    }
    section.about-us .about-images {
        margin-top: 25px;
    }
}

@media (max-width: 575.98px) {
    section.about-us .about-us {
        padding: 40px 0;
    }
    section.about-us .overlay-text {
        padding: 30px;
    }
}
  
/* Product Section */

section.our-products {
    padding: 4% 0;
    background: var(--light-bg-color-secondary);
}
section.our-products .our-products {
	padding: 60px 0;
	position: relative;
}

section.our-products .product-item {
	padding: 15px;
}

section.our-products .product-info {
    background: var(--white-color);
    padding: 20px;
}

section.our-products .product-info-title {
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 8px;
	color: var(--dark-heading-color);
}

section.our-products .product-description {
    color: var(--light-desc-color);
    font-size: 14px;
    margin-bottom: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

section.our-products .product-mrp {
	font-weight: 700;
	color: var(--dark-heading-color);
	font-size: 18px;
	border-top: 2px solid var(--dark-heading-color);
	width: fit-content;
    margin: 10px auto 0;
}

section.our-products .owl-nav {
	position: absolute;
	bottom: -10px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}

section.our-products .owl-prev,
section.our-products .owl-next {
	color: var(--dark-heading-color) !important;
	display: flex !important;
	position: absolute;
	bottom: 10px;
}

section.our-products .owl-prev {
	left: 0;
}

section.our-products .owl-next {
	right: 0;
}

section.our-products .owl-dots {
	text-align: center;
	margin-top: 30px;
}

section.our-products .owl-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--light-desc-color) !important;
	margin: 0 5px;
	display: inline-block;
}

section.our-products .owl-dot.active {
	background: var(--ancient-color) !important;
}
  
/* Section Our Mission, Vision & Value */

section.mission-vision{
	padding: 4% 0;
}
section.mission-vision .inner-content-asto {
    background: var(--light-bg-color-primary);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}
section.mission-vision .inner-content-asto i {
    font-size: 46px;
	color: var(--ancient-color);
}
section.mission-vision .mission-content {
    color: var(--light-desc-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}
@media(max-width:767px){
    section.mission-vision {
        padding: 8% 0;
    }
}
/* Why Choose Us section */

section.why-choose {
    padding: 4% 0 8%;
    background: var(--light-bg-color-primary);
}

.why-choose-inner-heading {
    margin: 0;
    font-weight: 600;
    color: var(--dark-heading-color);
}

.why-choose-inner-description {
    margin: 0;
    color: var(--light-desc-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    display: inline-block;
}

section.why-choose i {
    font-size: 48px;
    color: var(--ancient-color);
}
.image-caption-sub-heading {
    margin: 0;
    color: var(--ancient-color);
}
.image-caption .main-heading {
    font-size: 26px;
    font-weight: 400;
}
.image-caption {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    border-radius: 25px;
    max-width: 600px;
    background: rgb(255 255 255);
    padding: 1rem;
    text-align: center;
}
.image-caption-desc {
    font-size: 14px;
}
@media (max-width: 768px) {
    .image-caption {
        width: 90%;
        padding: 0.75rem;
    }

    .image-caption h3 {
        font-size: 1.1rem;
    }

    .image-caption p {
        font-size: 0.9rem;
    }
    section.why-choose {
        padding: 8% 0 15%;
    }
    section.why-choose i {
        font-size: 38px;
    }
}
@media (max-width: 575.98px) {
    section.why-choose {
        padding: 8% 0 35% !important;
    }
}

/* section imapact css */
section.impact-section {
    position: relative;
    padding: 4% 0;
}
section.impact-section .description {
    margin-bottom: 40px;
}
section.impact-section .impact-inner-div {
    box-shadow: 3px 3px 13px 4px rgb(0 0 0 / 12%);
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}
section.impact-section .impact-main-heading {
    font-size: 42px;
    text-align: center;
    font-weight: 600;
	color: var(--ancient-color);
}
@media(max-width:767px){
	section.impact-section .description {
		width: 100%;
	}
}

/* Cta section */
section.cta {
    background: var(--light-bg-color-primary);
    padding: 4% 0 0;
}
section.cta .main-heading{
	font-size: 42px;
}
@media(max-width:767px){
    section.cta .main-heading {
        font-size: 36px;
    }
}


/* section overview */

section.overview {
	padding: 2% 0;
	background: var(--light-bg-color-primary);
}
section.overview i{
    font-size: 48px;
	color: var(--dark-heading-color);
}
section.overview .overview-inner-heading {
    font-weight: 500;
    margin: 0;
	color: var(--dark-heading-color);
}
section.overview .overview-inner-desc {
    margin: 0;
}

/* Section Blog */
section.blog {
    padding: 4% 0;
}
section.blog .blog-image-caption {
    position: absolute;
    bottom: 15px;
    right: 0;
    transform: translateX(-50%);
    border-radius: 20px;
    max-width: 600px;
    color: var(--white-color);
    background: var(--blog-highlight-color);
    padding: 5px 14px;
    text-align: center;
}
.blog-category-main {
    padding: 5px 20px;
    background: var(--blog-highlight-color);
    display: inline-block;
    border-radius: 15px;
    color: var(--white-color);
}
.blog-read-more {
    text-decoration: underline;
    color: var(--light-desc-color);
}
.blog-main-heading {
    font-weight: 500;
    color: var(--dark-heading-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog-main-description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog-secondary-main-description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blog-secondary-main-heading {
    color: var(--dark-heading-color);
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width:767px){
    section {
        overflow: hidden;
    }
}
/* Contact ssection css */
section.contact {
    padding: 4% 0;
    position: relative;
}
section.contact input.wpcf7-form-control.wpcf7-text {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px 20px;
    border: 1px solid var(--light-desc-color);
}
section.contact textarea.wpcf7-form-control.wpcf7-textarea {
    height: 100px;
    width: 100%;
    margin-bottom: 15px;
    padding: 10px 20px;
    border: 1px solid var(--light-desc-color);
}
section.contact textarea.wpcf7-form-control.wpcf7-textarea::placeholder {
    color: var(--light-desc-color);
}
section.contact input.wpcf7-form-control.wpcf7-submit {
    width: 100%;
    padding: 10px 0;
    border: 1px solid var(--ancient-color);
    background: var(--ancient-color);
    color: var(--white-color);
    transition: var(--transition-all);
}
section.contact input.wpcf7-form-control.wpcf7-submit:hover {
    background-color: var(--white-color);
    color: var(--ancient-color);
}

.contact-deatils i {
    font-size: 26px;
    color: var(--dark-heading-color);
}
.contact-deatils .contact-sub-footer-head {
    color: var(--dark-heading-color);
    font-weight: 500;
}
.contact-deatils .contact-sub-footer-desc a {
    color: var(--ancient-color);
}
section.contact iframe {
    height: 100%;
    width: 100%;
}
section.contact .map-background{
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background-color: var(--light-bg-color-primary);
    z-index: -1;
}
@media (min-width: 767px) and (max-width: 1400px) {
    .contact-deatils .contact-sub-footer-head {
        font-size: 14px;
    }
    .contact-sub-footer-desc {
        font-size: 14px;
    }
}
@media(max-width:567px){
    section.contact .map-background {
        background-color: var(--light-bg-color-primary);
        z-index: -1;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 40%;
        top: unset;
        right: unset;
    }
}

/* Footer css */

footer.footer-main{
	padding: 4%;
	background:var(--secondary-bg-color);
	color: var(--white-color);
}
footer.footer-main .footer-heading {
    font-size: 18px;
    font-weight: 500;
}
footer.footer-main .footer-list-item a, footer.footer-main .menu-item a {
    color: var(--footer-link-color);
}
footer.footer-main a{
	color: var(--white-color);
	transition: var(--transition-all);
	-webkit-transition: var(--transition-all);
}
footer.footer-main a:hover{
	color: var(--ancient-color);
}

footer.footer-main .copyright {
    border-top: 1px solid var(--border-color);
}
.footer-copyright-item {
	list-style: none;
  }
  
.footer-copyright-item a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--white-color);
	border-radius: 50%;
	color: var(--white-color);
	font-size: 18px;
	text-decoration: none;
}
.footer-list-item a i {
    margin-right: 8px;
}
@media(max-width:767px){
    footer.footer-main {
        padding: 8% 0 10% 0;
    }
    footer.footer-main .footer-list-item a {
        font-size: 14px;
    }
    .copyright-text {
        font-size: 14px;
        margin: 5px 0;
    }
	.inner-about-img img {
    margin: 15px 0px 15px 0px !important;
    border-radius: 4px;
    box-shadow: 0 3px 11px rgb(0 0 0 / 31%);
}
.quality-policy-img img {
    margin: 10px 0 15px 0 !important;
    border-radius: 4px;
}
}

/* Mobile footer menu */
#mobile-footer-menu {
	width: 100%;
	float: left;
	background: var(--ancient-color);
	position: fixed;
	bottom: 0px;
	z-index: 100;
	padding: 0;
	color: var(--white-color) !important;
	margin: 0 !important;
}

#mobile-footer-menu a {
	width: 33.3333%;
	float: left;
	text-align: center;
	padding: 5px 0;
	font-size: 15px;
	color: var(--white-color) !important;
	font-weight: 600;
	text-decoration: none !important;
}
#mobile-footer-menu a:not(:last-child) {
border-right: 1px solid;
}
/* modal from css */
div#contactModal input.wpcf7-form-control.wpcf7-text {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px 20px;
    border: 1px solid var(--light-desc-color);
}
div#contactModal textarea.wpcf7-form-control.wpcf7-textarea {
    height: 100px;
    width: 100%;
    margin-bottom: 15px;
    padding: 10px 20px;
    border: 1px solid var(--light-desc-color);
}
div#contactModal textarea.wpcf7-form-control.wpcf7-textarea::placeholder {
    color: var(--light-desc-color);
}
div#contactModal input.wpcf7-form-control.wpcf7-submit {
    width: 100%;
    padding: 10px 0;
    border: 1px solid var(--ancient-color);
    background: var(--ancient-color);
    color: var(--white-color);
    transition: var(--transition-all);
}
div#contactModal input.wpcf7-form-control.wpcf7-submit:hover {
    background-color: var(--white-color);
    color: var(--ancient-color);
}
.page-breadcrumb {
        background: linear-gradient(135deg, var(--ancient-color) 0%, var(--secondary-color) 100%);
        padding: 40px 0;
        color: #fff;
        position: relative;
        overflow: hidden;
    }
 
    .page-breadcrumb::before {
        content: "";
        position: absolute;
        top: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }
 
    .page-breadcrumb::after {
        content: "";
        position: absolute;
        bottom: -80px;
        left: -80px;
        width: 250px;
        height: 250px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }


    .page-breadcrumb span.breadcrumb_new a {
    color: #fff;
}
.page-breadcrumb span.breadcrumb_new {
    color: #fff;
}

.page-breadcrumb .extraa {
    margin: 54px 0;
}


.product-item img.img-fluid {
    background: var(--white-color);
    border-bottom: 1px solid var(--light-bg-color-primary);
}

/* aboutinner */
.about-section {
    padding: 60px 0;
}

.about-section .hero-image-container {
    max-height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-section .hero-image {
    width: 100%;
    object-fit: cover;
    transition: var(--transition-all);
}

.about-section .hero-image:hover {
    transform: scale(1.02);
}

.about-section .section-title {
    font-size: 2.8rem;
    color: var(--dark-heading-color);
    margin-bottom: 20px;
    font-weight: 700;
    background: linear-gradient(to right, var(--ancient-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-section .value-card {
    background: var(--white-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(42, 67, 101, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--ancient-color);
}

.about-section .value-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.about-section .value-list li:before {
    content: "•";
    color: var(--ancient-color);
    font-weight: bold;
    position: absolute;
    left: 10px;
}

.about-section .badge {
    display: inline-block;
    background: var(--light-bg-color-primary);
    color: var(--ancient-color);
    padding: 5px 12px;
    margin: 5px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.about-section .standards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.about-section .standard-item i {
    color: var(--ancient-color);
    margin-right: 10px;
}

.about-section .partner-benefits li {
    margin-bottom: 10px;
    font-weight: 500;
}
.about-section .cta-title {
    color: var(--dark-heading-color);
    margin-bottom: 15px;
}

.about-section .cta-text {
    color: var(--dark-heading-color);
    max-width: 700px;
    margin: 0 auto 25px;
}

.about-section .cta-button {
    background: var(--ancient-color);
    color: var(--white-color);
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: var(--transition-all);
}

.about-section .cta-button:hover {
    background: var(--ancient-color);
    color: var(--white-color);
}
.about-section .value-card h3{
    color: var(--dark-heading-color);
}
.partnership-cta {
    background: var(--light-bg-color-secondary);
    padding: 40px;
    border-radius: 8px;
    text-align: left;
    margin-top: 10px;
    border-left: 4px solid var(--ancient-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-section .partnership-cta .col-md-6 {
        padding-left: 15px !important;
    }
    .about-section .hero-image-container {
        max-height: 250px;
    }
}

.director-quote {
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark-heading-color);
    font-weight: 500;
    font-style: normal;
    position: relative;
}

.director-quote:before {
    content: '"';
    font-family: serif;
    font-size: 4rem;
    color: rgba(42, 67, 101, 0.1);
    position: absolute;
    left: -15px;
    top: -20px;
}

.highlight-phrase {
    color: var(--ancient-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .director-quote {
        font-size: 1.1rem;
    }
}

.quality-process {
    margin: 20px 0;
    padding-left: 20px;
}
.quality-process li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}
.quality-process li:before {
    content: "✓";
    color: var(--ancient-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}
.metric-item {
    background: rgba(42, 67, 101, 0.03);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 3px solid var(--ancient-color);
}
.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ancient-color);
    line-height: 1;
}
.metric-label {
    font-size: 0.9rem;
    color: var(--dark-heading-color);
    opacity: 0.9;
}

.marketing-promise-title {
    color: var(--dark-heading-color);
    border-bottom: 2px solid var(--ancient-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.verification-step {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.step-number {
    background: var(--ancient-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-weight: bold;
}

.step-title {
    color: var(--ancient-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.training-list {
    list-style-type: none;
    padding-left: 0;
}

.training-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.training-list li:before {
    content: "—";
    color: var(--ancient-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.verification-intro {
    font-weight: 500;
    margin-bottom: 25px;
}

/* 

00*/
.contact-card {
    background: var(--white-color);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.contact-header {
    margin-bottom: 20px;
}

.contact-header h3 {
    color: var(--dark-heading-color);
    margin-bottom: 5px;
}

.contact-header p {
    color: var(--text-color);
}

.contact-office {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.office-icon {
    color: var(--ancient-color);
    font-size: 1.5rem;
    margin-top: 3px;
}

.office-details h4 {
    color: var(--dark-heading-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

address {
    font-style: normal;
    color: var(--text-color);
    line-height: 1.5;
}

.contact-method {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.contact-method i {
    color: var(--ancient-color);
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.contact-method h5 {
    color: var(--dark-heading-color);
    margin-bottom: 2px;
    font-size: 1rem;
}

.contact-method p {
    margin: 0;
    color: var(--text-color);
}

.contact-page input.wpcf7-form-control.wpcf7-text {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px 20px;
    border: 1px solid var(--light-desc-color);
}
.contact-page textarea.wpcf7-form-control.wpcf7-textarea {
    height: 100px;
    width: 100%;
    margin-bottom: 15px;
    padding: 10px 20px;
    border: 1px solid var(--light-desc-color);
}
.contact-page textarea.wpcf7-form-control.wpcf7-textarea::placeholder {
    color: var(--light-desc-color);
}
.contact-page input.wpcf7-form-control.wpcf7-submit {
    width: 100%;
    padding: 10px 0;
    border: 1px solid var(--ancient-color);
    background: var(--ancient-color);
    color: var(--white-color);
    transition: var(--transition-all);
}
.contact-page input.wpcf7-form-control.wpcf7-submit:hover {
    background-color: var(--white-color);
    color: var(--ancient-color);
}
/* thank you page */
.thank-you{
    padding: 40px 0;
}
.thank-you-card {
    background:var(--white-color);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.checkmark-circle {
    color: #4CAF50;
    font-size: 5rem;
    margin-bottom: 20px;
    animation: bounceIn 1s;
}

.thank-you-card h1 {
    color: var(--ancient-color);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.thank-you-message p {
    color: var(--light-desc-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.back-home-btn, .contact-again-btn {
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.back-home-btn {
    background-color: var(--ancient-color);
    color: var(--white-color);
    border: 2px solid var(--ancient-color);
}

.contact-again-btn {
    background-color: var(--white-color);
    color: var(--ancient-color);
    border: 2px solid var(--ancient-color);
}

.back-home-btn:hover {
    background-color: var(--ancient-color);
    transform: translateY(-2px);
}

.contact-again-btn:hover {
    background-color: var(--footer-link-color);
    transform: translateY(-2px);
}

@keyframes bounceIn {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 576px) {
    .thank-you-card {
        padding: 30px 20px;
    }
    .action-buttons {
        flex-direction: column;
    }
    .back-home-btn, .contact-again-btn {
        width: 100%;
        justify-content: center;
    }
}
.description, label_info, .label_info, .function_info {
    color: var(--light-desc-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}