/*
Theme Name: My Custom Theme
Theme URI: https://example.com
Author: Abhishek Kumawat
Author URI: https://example.com
Description: A lightweight custom WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: my-custom-theme
*/




.hero_section {
    background-position: bottom;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    height: 280px;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

.aboutus_hero {
/*     background-image: url('https://www.shethgroup.net/wp-content/uploads/2025/10/about-us.png'); */
        background-position: center right;
		background-color : #f26a34;
}
.custom_padding {
    padding: 80px 0;
}

.about_sec .abt_img_1 {
    width: 100%;
    height: auto;
    max-width: 460px;
}

.hero_content h1.theme_title_lg {
    color: #ffffff;
}

.hero_content {
    position: relative;
    z-index: 1;
}

.about_sec .abt_img_1 {
    width: 100%;
    height: auto;
    max-width: 460px;
}

.about_sec .abt_img_2 {
    position: absolute;
    left: 70px;
    bottom: 0;
    max-width: 320px;
    width: 100%;
    height: auto;
    display: block;
}

.hero_image img {
    border-radius: 64px 0 64px 0;
    margin-bottom: 40px;
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.featured_box {
    padding: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    min-height: 360px;
    background-color: #fafafa;
    border-radius: 8px;
}

.featured_box img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 50px;
    min-height: 50px;
}

.featured_box .theme_title_md {
    font-size: 24px;
}

.trust_box {
    padding: 20px;
    box-shadow: rgb(0 0 0 / 10%) 0px 0px 8px 0px;
    display: flex;
    border-radius: 10px;
    margin-top: 50px;
    justify-content: start;
    align-items: center;
    gap: 20px;
    max-width: 340px;
}

.trust_box p {
    font-weight: 900;
    font-size: 34px;
    color: #e00;
    line-height: 32px;
}

.trust_box img {
    display: block;
    width: 100%;
    max-width: 100px;
}

.vision_mission_sec img.vision_banner {
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: right;
    border-radius: 8px;
}

.featured_box .theme_para {
    font-size: 16px;
}

.featured_box .icon_box {
    display: flex;
    justify-content: center;
    max-width: 80px;
    height: 80px;
    align-items: center;
    background: #ee00000d;
    border-radius: 50%;
}

.why_choose_sec img.whyus_img {
    display: block;
    width: 100%;
    border-radius: 10px;
    height: 380px;
    object-fit: cover;
}

.whyus_wrap {
    background: #e00;
    border-radius: 10px;
    height: 100%;
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.whyus_item p {
    color: #fafafa;
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 0px;
}

.whyus_item span {
    color: beige;
    font-size: 18px;
}

.whyus_bottom {
    margin-top: 30px;
}

.whyus_bottom p {
    color: #323232;
    font-size: 24px;
}

/* Service Page Specific Styles */
.service-hero {
    padding: 150px 0 100px;
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    margin-top: 0;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.service-hero-content {
    position: relative;
    z-index: 2;
}

/* Hero Background Images - Add these to your theme assets */
.it-support-hero {
    background-image: url('https://www.shethgroup.net/wp-content/uploads/2025/10/manu.jpg');
}

.network-security-hero {
    background-image: url('https://www.shethgroup.net/wp-content/uploads/2025/10/slide-3.jpeg');
}

.surveillance-hero {
    background-image: url('https://www.shethgroup.net/wp-content/uploads/2025/10/enterprice.webp');
}

.uc-hero {
    background-image: url('https://www.shethgroup.net/wp-content/uploads/2025/10/finance.jpg');
}

/* Service Cards */
.service-card {
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #f26a34;
}

.service-icon-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon {
    font-size: 2.5rem;
    color: #f26a34;
}

.benefit-item {
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
}

.benefit-item i {
    color: #f26a34;
    margin-right: 10px;
    margin-top: 3px;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(199px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.industry-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.industry-icon {
    font-size: 2rem;
    color: #1B365D;
    margin-bottom: 10px;
}

.step-process {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 40px 0;
    gap: 20px;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #f26a34;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-hero {
        padding: 120px 0 60px;
    }
    
    .service-hero-content h1 {
        font-size: 2rem;
    }
    
    .step-process {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        min-width: 100%;
        margin-bottom: 20px;
    }
    
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Contact Form Styling */
#contact-form {
    padding: 60px 0;
}

#contact-form .wpcf7-form {
    max-width: 800px;
    margin: 0 auto;
}

#contact-form .wpcf7-form-control {
    width: 100%;
    margin-bottom: 20px;
}

#contact-form .wpcf7-submit {
    background: #f26a34;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#contact-form .wpcf7-submit:hover {
    background: #1B365D;
}


.service-hero h3.mb-4 {
    color: #fff;
}

.service-hero h1.display-4.fw-bold {
    color: #fff;
}

.service-hero p.lead{
	color: #fff !important;
}

.services-template p.lead.mb-4 {
    text-align: center !important;
}

.services-template .step-process p {
    text-align: center !important;
}