/*
 Theme Name:   Technogen
 Description:  Child theme for Royal Elementor Kit created for Technogen Enterprise
 Author:       Technogen
 Template:     royal-elementor-kit
 Version:      1.0.0
 Text Domain:  technogen
*/

/* Add your custom CSS below */


/* .blogs-archive article {
    background: #fff;
    border-radius: 15px !important;
    margin: 40px 0 !important;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
} */


.elementor-widget-sidebar > .widget {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
	padding: 20px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.footer-top .elementor-widget-sidebar > .widget {
	box-shadow: none;
	padding: 0;
	margin-bottom: 20px;
}
/* .elementor a, */
.elementor[data-elementor-type="wp-page"] .elementor-element a {
	color: #5CB950 !important;
}

.elementor-widget-sidebar > .widget a{
	color: #0B2545;
}

/* Target the specific list */
.elementor-widget-sidebar > .widget ul {
    list-style: none;
    padding-left: 0;
}

.footer-top .wpr-nav-menu li,
.footer-top .wpr-nav-menu-horizontal>.wpr-nav-menu>li:first-child,
.elementor-widget-sidebar > .widget ul li {
    position: relative;
    padding-left: 25px !important; /* Adjust space for the icon */
    margin-bottom: 10px; /* Spacing between items */
}

.footer-top .wpr-nav-menu li::before,
.elementor-widget-sidebar > .widget ul li::before {
    content: '\00BB'; /* Hex code for double angle quote (») */
    position: absolute;
    left: 0;
    color: #5CB950; /* Change to your brand color */
	font-size: 18px;
	line-height: 34px;
    font-weight: bold;
    font-family: Arial, sans-serif; /* Ensures the character renders correctly */
}

.wpcf7 .iti{
	width: 100%;
}

.wpcf7 input[type="submit"]{
	background: #0B2545;
	color: #fff;
	border-color: #0B2545;
	text-transform: uppercase;
}

.wpcf7 input[type="submit"]:hover{
	background: #5CB950;
	color: #0B2545;
	border-color: #5CB950;
}

/* .product-row{
	display: flex; 
	margin-bottom: 30px; 
	align-items: flex-start;
}

.product-row .product-image{
	flex: 0 0 25%; 
	padding-right: 20px;
}
.product-row .product-image img{
	width:100%; 
	height:auto; 
	border-radius:8px;
}

.product-row .product-content{
	flex: 0 0 75%;
} */

/* Container setup */
.products {
    display: grid;
    grid-template-columns: 1fr; /* Single column for mobile by default */
    gap: 20px;
    padding: 10px;
}

/* Base Product Row styling */
.product-row {
    display: flex;
    flex-direction: column; /* Stacked for mobile */
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
	padding: 10px;
    overflow: hidden; /* Ensures image corners match border-radius */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Image styling for mobile (Full Width) */
.product-row .product-image {
    width: 100%;
}
.product-row .product-content a{
	color: #0B2545;
	position: relative;
	transition: all 0.3s;
}

.product-row .product-content a.more-link{
	color: #5CB950;
	font-weight: bold;
}
.product-row .product-content a:after{
	content: '';
	height: 2px;
	width: 0;
	background: #5CB950;
	position: absolute;
	left: 0;
	bottom: -4px;
	transition: all 0.3s;
}

.product-row .product-content a:hover{
	color: #5CB950;
}
.product-row .product-content a:hover:after{
	width: 100%;
}

.product-row .product-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Content styling */
.product-row .product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.product-row h3 {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    color: #333;
}

.product-row .description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* .more-link {
    display: inline-block;
    font-weight: bold;
} */

/* --- Desktop Adjustments (Screens wider than 768px) --- */
@media (min-width: 768px) {
    .products {
        grid-template-columns: 1fr 1fr; /* Two columns */
        gap: 30px;
    }

    .product-row {
        flex-direction: row; /* Horizontal layout on desktop */
        align-items: stretch;
    }

    .product-row .product-image {
        flex: 0 0 35%; /* Adjust width for the side image */
    }

    .product-row .product-content {
        flex: 1;
    }
}


.elementor hr{
	background: #ccc;
	margin-top: 20px;
	margin-bottom: 20px;
}