/*
Theme Name: customify-child
Author: techypedro
Description: Your description goes here
Version: 1.0
Template: customify

This is the child theme for Customify theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/
/*Sticky Header*/
.site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999 !important;
}
/* Add top padding to the body so content doesn't hide behind the header */
/*body {padding-top: 90px;}
/* Adjust this value based on your actual header height */

/*Move content inline with Header*/
#main{padding-top:1.85em!important}

/*Header Colours*/
.header-main .light-mode{
	background:#020202 !important;
}
.header-main .light-mode p,.header-main .light-mode a{
	color:#fdfdfd !important;
}

/*Hero Container*/
.hero-image-text-card{
	max-width:85%;
	margin:0 10%;
	padding:10px 5%;
    background-color: rgba(255, 255, 255, 0.8);
	border-radius:10px;
}
.hero-image-text-card h1,.hero-image-text-card p
{color:#2b2b2b;}

/*Contact Form*/
.contact-form{
	max-width:70%;
	margin:0 auto;
}
@media (max-width: 782px){
	.contact-form{max-width:95%;}
}


/*Recent Projects*/
.recent-projects-container {
    background: #fafafa;
    border: 1px solid #ececec;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);

}

/*Info Card Styling*/
.info-card {
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
	min-height:212px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.info-card h2,
.info-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #222;
}

.info-card p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

/*Main Page Features*/
.benefit-intro{display:none;}
	.site-content .benefits-mobile{display:none;}

@media (max-width: 782px){
	.site-content .benefits-desktop{display:none;}
	.site-content .benefits-mobile{display:flex;}
.benefits-mobile-text {
	background: #fafafa;
    border: 1px solid #ececec;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.4s ease,
                transform 0.4s ease,
                visibility 0.4s ease;
}

.benefits-mobile-text.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
	.homebutton {
  cursor: pointer;
  opacity: 0.6;
  transition: 0.2s;
}

.homebutton.active {
  opacity: 1;
  transform: scale(1.05);
}
.benefit-intro {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.benefit-intro.active {
  opacity: 1;
  visibility: visible;
  height: auto;
}
.benefit-content {
  margin-block-start:0;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.benefit-content.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: translateY(0);
}
.benefits-mobile{gap:5px;}
	
}

