/*
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.5
Tested up to: 6.9
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;
}

:root {
	--orange-color: #e58841;
	--black-color: #000;

}


h1,
h2,
h3,
h4,
h5 {
	font-family: 'Red Hat Text', sans-serif;
}

body {
	font-family: 'Poppins', sans-serif;
	scroll-behavior: smooth;
}

.container-fluid {
	width: 93%;
}
section{
	padding: 60px 0;
}
/* Navbar Styling */
.navbar {
	background-color: #000;
	padding: 5px 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
	color: #fff !important;
	font-weight: 800;
	font-size: 1.8rem;
}

.navbar-nav .nav-link {
	color: #fff !important;
	font-weight: 500;
	margin-left: 15px;
	transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
	color: var(--orange-color) !important;
}

.navbar-toggler {
	border-color: rgba(255, 255, 255, 0.5) !important;
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}




/* Hero Section Styling */
.hero-section {
	position: relative;
}

.banner-section {
	background-position: center;
	background-size: cover;
	/* padding: 60px 0; */
}

.banner-content {
    max-width: 740px;
    position: relative;
    z-index: 999;
    color: #ddd;
}
.banner-content h1 {
    font-size: 46px;
    font-weight: 600;
}

.banner-overlay {
    padding: 60px 0;
    background: linear-gradient(90deg, rgb(0 0 0 / 67%) 0%, rgb(0 0 0 / 50%) 50%, rgba(237, 221, 83, 0) 100%);
}


.box-form {
    background-color: #000000a8;
    color: #fff;
    padding: 30px 15px;
    position: sticky;
    top: 0;
    border-radius: 15px;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
	width: 100% !important;
	border: none;
	background-color: var(--orange-color);
	padding: 10px 0;
	border-radius: 5px;
	color: #fff;
}

.manufacture-section span.sub-title {
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--orange-color);
    font-weight: 600;
}
.manufacture-section .main-title {
    font-size: 40px;
    font-weight: 600;
}
.desc-text {
	font-family: var(--dm-sans-font);
	color: var(--body-color);
	line-height: 1.7;
}

.check-item {
	font-family: 'Red Hat Text', sans-serif;
	color: var(--dark-bl--black-color);
	font-weight: 600;
	display: flex;
	align-items: center;
}

.check-item i {
	color: var(--orange-color);
	background: rgb(152 123 74 / 24%);
	width: 25px;
	height: 25px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
}

.btn-main {
	background-color: var(--theme-color-2);
	color: #fff;
	padding: 15px 35px;
	display: inline-block;
	text-decoration: none;
	font-family: 'Red Hat Text', sans-serif;
	font-weight: 600;
	transition: 0.3s;
}



.custom-progress {
	height: 8px;
	background-color: #eee;
	border-radius: 0;
}

.custom-progress .progress-bar {
	background-color: var(--orange-color);
}

.skill-name {
	font-family: 'Red Hat Text', sans-serif;
	font-weight: 700;
	color: var(--orange-color);
}

.manufacture-img {
	border-radius: 15px;
}

.floating-card {
	position: absolute;
	bottom: 0px;
	right: 12px;
	background-color: #fff;
	width: 260px;
	z-index: 2;
	border-radius: 15px 0 !important;
}

.brand-icon img {
	width: 65%;
}

.floating-card h5 {
	font-family: 'Red Hat Text', sans-serif;
	font-weight: 600;
	color: var(--orange-color);
	font-size: 18px;
	line-height: 1.4;
}

a.btn-explore {
    background: var(--black-color);
    color: var(--orange-color);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
	border: 1px solid var(--black-color);
	transition: all 0.4s ease-in-out;
}
a.btn-explore:hover{
	background: transparent;
	color: var(--black-color);
}

/* Responsive Fixes */
@media (max-width: 991px) {
	.floating-card {

		display: none;
	}

	.main-title {
		font-size: 32px;
	}
}



#listing {
    background-color: #dadada;
}

#listing .styker {
    
    color: var(--black-color);
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}



#listing .nav-tabs {
    border-bottom: 2px solid var(--color-secondary);
    justify-content: center;
    margin-bottom: 2rem;
}

#listing .nav-link {
    
    color: var(--black-color);
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    transition: all 0.3s;
}

#listing .nav-link.active {
    color: var(--orange-color);
    border-bottom-color: var(--orange-color);
    background-color: transparent;
}

#listing .nav-link:hover:not(.active) {
    border-bottom-color: var(--orange-color);
	color: var(--orange-color);
}

.alengo {
    background-color: #fff;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.alengo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.alengo .row {
    align-items: center;
    justify-content: space-evenly;
}

.alengo .col-img img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid var(--black-color);
    margin: 0 auto;
    display: block;
}

.alengo .col-content {
    padding-left: 1rem;
}

.contempting-text h2 {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
    color: var(--black-color);
}

.spce-behind {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0.5rem;
}

.spce-behind h4 {
    font-size: 1rem;
    color: var(--orange-color);
    font-weight: 700;
    margin: 0;
    margin-right: 0.5rem;
}

.spce-behind span i {
    color: #FFC300;
    font-size: 0.9rem;
    margin-right: 2px;
}

.spce-behind h5 {
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 600;
    margin: 0;
    margin-left: 1rem;
}

.spce-behind h5 i {
    margin-right: 0.3rem;
}

.contempting-text h3 {
    font-size: 0.9rem;
    color: var(--color-text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contempting-text h3 i {
    color: var(--color-primary);
    margin-right: 0.5rem;
}

.contempting-text .turnig {
    color: var(--orange-color);
    font-weight: 700;
    margin-left: 0.5rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.tags p {
    font-size: 0.85rem;
/*     background-color: var(--color-secondary); */
    color: #024c0d;
    padding: 15px 3px;
    border-radius: 50px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.extesnions {
    margin-top: 1rem;
}

.extesnions a {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 0.5rem;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.extesnions .btn-call {
    background-color: var(--orange-color);
    color: #fff;
}

.extesnions .btn-call:hover {
    background-color: #16531c;
}

.extesnions .Whatsapp {
    background-color: #25D366;
    color: #fff;
}

.extesnions .Whatsapp:hover {
    background-color: #1ea94e;
}

.extesnions .Send-Enquiry {
    background-color: #bb3014;
    color: #fff;
}

.extesnions .Send-Enquiry:hover {
    background-color: #C53517;
}

@media (max-width: 767px) {
    .alengo {
        flex-direction: column;
        text-align: center;
        height: auto;
    }

    .alengo .col-img {
        flex: none;
        max-width: 100%;
        margin: 0 0 1rem 0;
    }

    .alengo .col-img img {
        max-width: 100px;
        margin: 0 auto;
    }

    .spce-behind {
        justify-content: center;
    }

    .tags {
        justify-content: center;
    }

    .extesnions {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .extesnions a {
        margin: 0.25rem;
    }

    .alengo .col-content {
        text-align: center;
        padding-left: 0;
    }
}


.animated-text {
    opacity: 0;
    animation: textSlideIn 0.8s ease-out both;
}

.highlight-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s;
    line-height: 1;
}

.section-light-green {
    background-color: var(--color-light-green-bg);
}

.section-secondary {
    background-color: var(--color-secondary);
}


.carousel-item-img:hover {
    transform: scale(1.03);
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textSlideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}







/* ===== FORM ===== */
.box-form-2{
	background-color: var(--black-color);
}


/* ===== PRODUCT SECTION ===== */
section.page-section {
    background: #242424;
}
.section-head {
    text-align: center;
}
.section-head span {
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--orange-color);
    font-weight: 600;
}

.section-head h2 {
    font-size: 40px;
    font-weight: 600;
    margin: 6px 0 40px;
    color: #fff;
}

.segment-card {
  background: #fff;
  padding: 28px 22px;
  border-radius: 14px;
  border: 1px solid #eee;
  height: 100%;
  position: relative;
  transition: 0.35s;
}

.segment-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: var(--orange-color);
  transform: scaleX(0);
  transition: 0.35s;
  border-radius: 14px;
}

.segment-card:hover::before {
  transform: scaleX(1);
}

.segment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.segment-icon {
  width: 56px;
  height: 56px;
  background: rgb(36 36 36);
  color: var(--orange-color);
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.segment-card h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--black-color);
}

.segment-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}



.growth-section .main-title {
    font-size: 40px;
    font-weight: 600;
}

.growth-section span.sub-title {
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--orange-color);
    font-weight: 600;
}
        .feature-item {
            transition: transform 0.3s ease;
        }

       .feature-icon i{
    width: 60px;
    height: 60px;
    background-color: var(--black-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 24px;
            color: var(--orange-color);
}


        .feature-text h4 {
            font-family: var(--outfit-font);
            color: var(--theme-color-3);
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .feature-text p {
            font-family: var(--dm-sans-font);
            color: var(--body-color);
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* Custom Separator Line */
        .border-top {
            border-color: #eee !important;
        }

        /* Image Wrapper */
        .growth-img-wrapper img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
      section.features-card-section {
    margin-top: -220px;
    position: relative;
    z-index: 99;
}
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .main-title {
                font-size: 32px;
            }

            .feature-item {
                margin-bottom: 10px;
            }

            .border-top {
                border-top: none !important;
                padding-top: 0 !important;
            }
        }





		/* about-section */
.about-content .small-heading {
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--orange-color);
    font-weight: 600;
}
.about-content h2 {
    font-size: 45px;
    color: var(--black-color);
    line-height: 48px;
}
/* .about-content p{
	color: #7A7A7A;
} */
.about-btn {
    display: inline-flex;
    background-color: var(--orange-color);
    padding: 8px 8px 8px 20px;
    align-items: center;
    color: var(--black-color);
    border-radius: 50px;
    transition: all 0.3s !important;
	text-decoration: none;
}
.about-btn:hover{
    background-color: #000;
    color: var(--orange-color);
}
.about-btn:hover.about-btn i{
     background-color: var(--orange-color);
     color: #000;
}
a.about-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #000;
    border-radius: 50%;
    color: var(--orange-color);
    margin-left: 10px;
    font-size: 20px;
    transform: rotate(320deg) !important;
    transition: all 0.3s !important;
}
.about-counter h2 {
    color: var(--black-color);
}
.counter-main {
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-box h2 {
    font-size: 45px;
	color: var(--black-color);
}
.counter-box p {
    font-weight: 500;
    font-size: 17px;
}

.mission-box {
    background-color: var(--black-color);
    padding: 30px 25px;
    border-radius: 25px;
    color: #fff;
	height: 100%;
}
.mission-box h2 {
    color: var(--orange-color);
    margin-bottom: 25px;
    font-size: 45px;
}





/* advantages section */


h2.advanture-heading {
    text-align: center;
    margin-bottom: 35px;
    font-size: 40px;
    font-weight: 600;
}
.disadvantages-box{
	background: var(--black-color);
    border-radius: 20px;
}
.disadvantages-box h3 {
    background: var(--orange-color);
    text-align: center;
    color: #fff;
    padding: 15px 0;
    border-radius: 20px 20px 0px 0;
}
.disadvantages-box ul {
    list-style: none;
    padding: 30px;
}
.disadvantages-box ul li {
    padding: 5px 0;
    color: #fff;
}
.disadvantages-box ul li i {
    color: red;
    margin-right: 15px;
}

.adv ul li i{
	color: #39a844 !important;
}

/* product section */
.small-badge{
	    font-size: 16px;
    letter-spacing: 1px;
    color: var(--orange-color);
    font-weight: 600;
}
.product-heading {
    font-size: 40px;
	font-weight: 600;
    margin-top: 15px;
}
.row.product-row {
    align-items: center;
    border-bottom: 3px solid var(--orange-color);
    padding-bottom: 15px;
}
.product-card {
    position: relative;
    display: flex;
    justify-content: center;
}
.product-card img{
	border-radius: 15px;
}
.product-name-box {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    bottom: 15px;
    padding: 10px 25px;
    color: #fff;
    background-color: #ffffff4d;
    backdrop-filter: blur(2px);
    width: 88%;
    margin: auto;
    border-radius: 20px;
    align-items: center;
}
.product-overlay {
    width: 100%;
    height: 100%;
    top: 0;
    border-radius: 15px;
    position: absolute;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgb(0 0 0 / 12%) 50%);
}
.product-name-box a i {
    width: 42px;
    height: 42px;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--orange-color);
    color: var(--orange-color);
    transform: rotate(320deg) !important;
}





 /* Footer */
        .custom-footer {
            background-color: var(--black-color);
            color: #ccc;
            padding: 60px 0 30px;
        }

        .custom-footer a {
            color: #fff;
            text-decoration: none;
        }

        .custom-footer a:hover {
            color: var(--accent-color);
        }

        .footer-title {
            color: var(--primary-red);
            font-weight: 700;
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        .footer-link-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-link-list li {
            margin-bottom: 0.5rem;
        }

        .footer-link {
            text-decoration: none;
            color: #adb5bd;
            transition: color 0.3s;
            font-size: 0.9rem;
        }

        .footer-link:hover {
            color: var(--primary-red);
        }

        .footer-social a {
            color: white;
            margin-right: 1rem;
            transition: color 0.3s;
        }

        .footer-social a:hover {
            color: var(--primary-red);
        }

        .footer-copy {
            border-top: 1px solid #343a40;
            padding-top: 1rem;
            margin-top: 1rem;
            font-size: 0.85rem;
            color: #adb5bd;
        }



@media (max-width: 991px) {
    body {
        font-size: 14px;
    }
    .banner-overlay {
    padding: 120px 0 60px 0;
}
.banner-content {
    max-width: 100%;
}
	.container-fluid{
		width: 97%;
	}
	section{
		padding: 40px 0;
	}
	.banner-section {
    background-position: bottom;
}
		.banner-content h1 {
    font-size: 26px;
}
.about-content h2 {
    font-size: 30px;
    line-height: 38px;
}
.counter-main {
    justify-content: start;
    flex-wrap: wrap;
    margin-top: 25px;
}
#listing {
    padding: 0;
}
section#listing .container-fluid {
    width: 93% !important;
}
.alengo {
    margin-bottom: 0;
}
.manufacture-section .main-title {
    font-size: 30px;
}
.section-head h2 {
    font-size: 30px;
    margin: 6px 0 25px;
}
.growth-section .main-title {
    font-size: 30px;
}
h2.advanture-heading {
    font-size: 29px;
}
.product-heading {
    font-size: 30px;
    margin-top: 15px;
}
.row.product-row {
    margin-bottom: 25px;
}
}


  #sequence a {
    width: 50%;
    float: left;
    text-align: center;
    padding: 5px 0;
    font-size: 15px;
    color: #fff !important;
    font-weight: 600;
    text-decoration: none !important;
 
}
#sequence a:not(:last-child) {
    border-right: 1px solid #fffdfd;
}
#sequence {
    width: 100%;
    float: left;
    background: var(--orange-color);
    position: fixed;
    bottom: 0px;
    z-index: 100;
    padding: 0;
    color: #fff !important;
    margin: 0 !important;
}
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.vm-form-control {
    width: 100%;
}
select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required.vm-form-control {
    width: 100%;
    color: #919191;
}
section#listing span.wpcf7-form-control-wrap textarea {
    width: 100%;
}


