/*
 Theme Name:   e:artisan
 Theme URI:    https://www.eartisan.co.uk
 Description:  GeneratePress child theme
 Author:       Pradeep Maheepala
 Template:     generatepress
 Tested up to: WordPress 6.8.1
 Tested up to: GeneratePress 3.5.1
 Text Domain:  eartisan
 Version:      0.2
*/

/*contact us form css*/

/* Form container styling */
.contact-form.blue-form {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

/* Form title */
.contact-form.blue-form h2 {
    color: #333;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: left;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

/* Grid layout for form fields */
.cf7-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* Full width fields */
.cf7-full {
    margin-bottom: 20px;
}

/* Individual field styling */
.cf7-field.half,
.cf7-full {
    position: relative;
}

.contact-form.blue-form textarea.wpcf7-textarea {
    min-height: 120px !important;
    height: 120px !important;
    max-height: 300px;
}


/* Input and textarea styling */
.wpcf7-form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #2d2c2f;
    border-radius: 6px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;

}

/* Placeholder styling */
.wpcf7-form-control::placeholder {
    color: #999;
    opacity: 1;
}

/* Focus states */
.wpcf7-form-control:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.2);
}

/* Required field indicators */
.wpcf7-validates-as-required {
    background-image: none;
    position: relative;
}

/* Textarea specific */
.wpcf7-textarea {
    min-height: 80px;
    resize: vertical;
}

/* Select dropdown styling */
.wpcf7-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

/* Submit button */
.cf7-actions {
    text-align: center;
    margin-top: 25px;
}

.wpcf7-submit {
    background-color: #32c0cc;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
}

.wpcf7-submit:hover {
    background-color: #005a87;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 124, 186, 0.3);
}

.wpcf7-submit:active {
    transform: translateY(0);
}

input[type="button"], input[type="reset"], input[type="submit"], a.button, a.wp-block-button__link:not(.has-background) {
    color: #ffffff;
    background-color: #33c0cd;
    width: 45%;
    text-align: center;
    display: block;
}

/* Error and validation styling */
.wpcf7-not-valid {
    border-color: #dc3232 !important;
}

.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.wpcf7-response-output {
    padding: 15px;
    border-radius: 6px;
    margin: 20px 0 !important;
    font-size: 15px;
}

.wpcf7-mail-sent-ok {
    border-color: #46b450;
    background-color: #f0f9f1;
    color: #2e7d32;
}

.wpcf7-validation-errors,
.wpcf7-spam-blocked {
    border-color: #dc3232;
    background-color: #fdf3f3;
    color: #dc3232;
}

/* Responsive design */
@media (max-width: 768px) {
    .cf7-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-form.blue-form {
        padding: 20px;
    }

    .contact-form.blue-form h2 {
        font-size: 24px;
    }

    .wpcf7-form-control {
        padding: 12px 14px;
        font-size: 15px;
    }

    .wpcf7-submit {
        padding: 14px 30px;
        font-size: 16px;
        width: 45%;
        min-width: auto;
    }
}

/* Spinner animation */
.wpcf7-spinner {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.wpcf7-spinner:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-top-color: #007cba;
    border-radius: 50%;
    animation: wpcf7-spinner 0.8s linear infinite;
}

@keyframes wpcf7-spinner {
    to {
        transform: rotate(360deg);
    }
}

/* Field alignment and spacing */
.cf7-field.half p,
.cf7-full p {
    margin: 0;
}

.wpcf7-form-control-wrap {
    display: block;
}

/* Select dropdown option styling */
.wpcf7-select option {
    padding: 8px;
}

/* Make sure all form elements are properly aligned */
.wpcf7-form-control {
    line-height: 1.5;
}


/*end contact us form css*/
/*gallery css*/
.portfolio-content {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

/* Overlay */
.portfolio-content::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 12px;

    background: rgba(51, 192, 205, 0.88);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
}

.portfolio-content:hover::before {
    opacity: 1;
}

/* Plus icon */
.portfolio-content::after {
    content: "+";
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 110px;
    font-weight: 300;
    color: #ffffff;
    opacity: 0;
    transition: all 0.35s ease;
    z-index: 2;
}

.portfolio-content:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.portfolio-hover-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 20px;
    z-index: 3;

    opacity: 0;
    transform: translateY(15px);
    transition: all 0.35s ease;
}

.portfolio-content:hover .portfolio-hover-card {
    opacity: 1;
    transform: translateY(0);
}

/* Subtitle */
.portfolio-hover-card .subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #33c0cd;
    text-transform: uppercase;
    margin-bottom: 7px;
    font-family: Yantramanav, sans-serif;
}


/* Title */
.portfolio-hover-card .title {
    font-size: 24px;
    font-weight: 700;
    color: #020202;
    font-family: Yantramanav, sans-serif;
}

/*gallery css end*/
.feature-icon {
    line-height: 95px;
    text-align: center;
    color: var(--color-white);
    font-size: 60px;
}

.feature-item .gb-shape {
    width: 100px;
    height: 100px;
    line-height: 95px;
    border-radius: 50%;
    text-align: center;
    color: var(--color-white);
    font-size: 60px;
    background: var(--theme-color);
    margin-bottom: 25px;
    box-shadow: 5px 5px 0 var(--theme-bg-light);
    position: relative;
    transition: all 0.5s ease-out;
}

.feature-item:hover .feature-icon, .feature-item:hover .gb-shape {
    transform: rotateY(360deg);
}

a {
    color: var(--color-dark);
    display: inline-block;
}

a, a:active, a:focus, a:hover {
    outline: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-decoration: none;
}

a:hover {
    color: var(--color-blue);
}


.testimonial-single::before {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: -12px;
    height: 12px;
    background: var(--theme-color);
    border-radius: 0 0 15px 15px;
}

/** Sticky Navigation */
.sticky-enabled .main-navigation.is_stuck {
    box-shadow: 0 2px 2px -2px rgba(0, 0, 0, .2);
    background-color: white;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Page Headers */
.rank-math-breadcrumb {
    font-weight: 500;
    text-transform: capitalize;
}

.rank-math-breadcrumb a {
    color: var(--color-white);
    transition: all .5s ease-in-out;
    text-decoration: none;
}

.rank-math-breadcrumb .separator {
    color: var(--color-white);
    font-size: 21px;
}

.rank-math-breadcrumb .last {
    color: var(--theme-color);
}

.site-title span, .hero-title span {
    color: var(--theme-color);
}

/* Services, FAQs and Posts */
.single .site-content, .archive .site-content {
    max-width: var(--gb-container-width);
    margin: 0 auto;
}

.dynamic-featured-image.wp-post-image {
    border-radius: 10px;
}



/*Home form css*/

.appointment {
    background: #38c1c9;
    padding: 40px 30px;
}

.appointment p {
    margin: 0;
}

.appointment-form form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
}

.appointment-form .col-lg-4 {
    width: 100%;
    padding: 0;
}

.appointment-form input[type="text"],
.appointment-form input[type="email"],
.appointment-form select {
    width: 100%;
    height: 56px;
    padding: 0 18px;
    border-radius: 10px;
    border: none;
    font-size: 15px;
    background: #ffffff;
    color: #222;
}

.appointment-form ::placeholder {
    color: #555;
}

.appointment-form input[type="submit"] {
    height: 56px;
    width: 100%;
    border-radius: 10px;
    border: none;
    background: #2b2b2b;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.appointment-form input[type="submit"]:hover {
    background: #000000;
}

@media (max-width: 991px) {
    .appointment-form form {
        grid-template-columns: 1fr;
    }
}

/* Gallery Image Animation*/

.gb-element-8b6cbd82.portfolio-content {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gb-element-8b6cbd82 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gb-element-8b6cbd82:hover img {
    transform: scale(1.05);
}

.gb-element-8b6cbd82::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(51, 192, 205, 0.85);
    /* teal */
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gb-element-8b6cbd82:hover::before {
    opacity: 1;
}

.gb-element-8b6cbd82::after {
    content: "+";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 64px;
    font-weight: 300;
    color: #ffffff;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.gb-element-8b6cbd82:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gb-element-8b6cbd82 .hover-title {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: #ffffff;
    color: #212121;
    padding: 15px 18px;
    border-radius: 10px;
    font-family: Yantramanav, sans-serif;
    font-size: 20px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
    z-index: 3;
}

.gb-element-8b6cbd82:hover .hover-title {
    opacity: 1;
    transform: translateY(0);
}

.gb-element-8b6cbd82 .hover-title::before {
    content: "Electrical Services";
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #33c0cd;
    margin-bottom: 6px;
}

.gb-element-8b6cbd82 .hover-title::after {
    content: "Hitches & Glitches";
}

/*booking-form css*/

.option-container .input {
    width: 30%;
}

.tab {
    display: none;
    animation: fadeIn 0.5s;
}

/* Show first tab */
.tab.current {
    display: block;
}

/* Progress bar styling */
.softheights-progress-bar .step.active .circle {
    background: #0073aa;
    color: white;
}

.softheights-progress-bar .step.finish .circle {
    background: #4CAF50;
    color: white;
}

/* Form navigation */
.options-wrapper {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
}

.btn {
    padding: 10px 20px;
    margin: 0 10px;
}

.error {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/*contact form css*/

.ev-site-title {
    font-weight: 800;
    text-transform: capitalize;
    font-size: 55px;
    color: var(--color-dark);
    margin-top: 10px;
    margin-bottom: 0;
    position: relative;
}


/**
 * CSS copied from the previous theme*/

.feature-icon {
  line-height: 95px;
  text-align: center;
  color: var(--color-white);
  font-size: 60px;
}

.feature-item .gb-shape {
  width: 100px;
  height: 100px;
  line-height: 95px;
  border-radius: 50%;
  text-align: center;
  color: var(--color-white);
  font-size: 60px;
  background: var(--theme-color);
  margin-bottom: 25px;
  box-shadow: 5px 5px 0 var(--theme-bg-light);
  position: relative;
  transition: all 0.5s ease-out;
}

.feature-item:hover .feature-icon, .feature-item:hover .gb-shape {
  transform: rotateY(360deg);
}

a {
  color: var(--color-dark);
  display: inline-block;
}
a, a:active, a:focus, a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
}
a:hover {
  color: var(--color-blue);
}


.testimonial-single::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -12px;
  height: 12px;
  background: var(--theme-color);
  border-radius: 0 0 15px 15px;
}

/** Sticky Navigation */
.sticky-enabled .main-navigation.is_stuck {
  box-shadow: 0 2px 2px -2px rgba(0, 0, 0, .2);
  background-color: white;
  padding-top: 0px;
  padding-bottom: 0px;
}

.navigation-branding img, .site-logo.mobile-header-logo img {
    height: auto;
    width: 200px;
}


/* Page Headers */
.rank-math-breadcrumb {
	font-weight: 500;
	text-transform: capitalize;
}
.rank-math-breadcrumb a {
  color: var(--color-white);
	transition: all .5s ease-in-out;
	text-decoration: none;
}

.rank-math-breadcrumb .separator {
  color: var(--color-white);
	font-size: 21px;
}

.rank-math-breadcrumb .last {
	color: var(--theme-color);
}

.site-title span, .hero-title span {
  color: var(--theme-color);
}

/* Services, FAQs and Posts */
.single .site-content, .archive .site-content {
  max-width: var(--gb-container-width);
  margin: 0 auto;
}

.dynamic-featured-image.wp-post-image {
  border-radius: 10px;
}

.mobile-floating-btn .gb-text-74dee796 {
	background-color: #2b2b2b;
	}
.mobile-floating-btn .gb-text-a7f7b227{
	background-color:#33c0cd;
	}

.gb-element-4ae3e275 .header-btn-ge {
	background-color: #2b2b2b!important;
		}

/*faq css*/

/* FAQ Main Container */
.faq-acc {
    background: white;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin: 40px auto;
   /* max-width: 1200px; */
}

/* FAQ Title Section */
.faq-title-wrapper {
    text-align: lef;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.faq-title-wrapper h2 {
    color: #333;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.faq-title-wrapper h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #32c0cc;
    border-radius: 2px;
}

.faq-title-wrapper p {
    color: #666;
    font-size: 16px;
    margin-top: 15px;
    line-height: 1.6;
}

/* FAQ List Container */
.faq-list-container {
    font-family: 'Yantramanav', sans-serif;
}

/* FAQ List Styling */
.rank-math-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: faq-counter;
}

/* FAQ List Item */
.rank-math-list-item {
    background: #f9fafc;
    border: 1px solid #e8ecef;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    counter-increment: faq-counter;
}

.rank-math-list-item:hover {
    border-color: #007cba;
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.1);
}

.rank-math-list-item:last-child {
    margin-bottom: 0;
}

/* FAQ Question */
.rank-math-question {
    margin: 0;
    padding: 20px 60px 20px 50px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    position: relative;
    background: #ffffff;
    transition: all 0.3s ease;
}

.rank-math-question:before {
    content: counter(faq-counter);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: #32c0cc;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.rank-math-question:after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 300;
    color: #32c0cc;
    transition: transform 0.3s ease;
}

/* Active question state */
.rank-math-list-item.active .rank-math-question {
    background: #f0f9ff;
    color: #020202;
}

.rank-math-list-item.active .rank-math-question:after {
    content: '−';
    transform: translateY(-50%) rotate(0deg);
}

/* FAQ Answer */
.rank-math-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #f9fafc;
}

.rank-math-list-item.active .rank-math-answer {
    padding: 20px 20px 20px 50px;
    max-height: 500px;
}

.rank-math-answer p {
    margin: 0 0 15px 0;
    color: #555;
    line-height: 1.7;
    font-size: 16px;
}

.rank-math-answer p:last-child {
    margin-bottom: 0;
}

.rank-math-answer a {
    color: #007cba;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.rank-math-answer a:hover {
    border-bottom-color: #007cba;
}

.rank-math-answer mark {
    background: transparent;
    color: #007cba;
    padding: 0;
}

/* FAQ Section Divider */
.faq-section-divider {
    margin: 40px 0 30px;
    text-align: center;
    position: relative;
}

.faq-section-divider h3 {
    display: inline-block;
    background: white;
    padding: 0 20px;
    color: #007cba;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.faq-section-divider:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #e0e0e0, transparent);
    z-index: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-acc {
        padding: 05px;
        margin: 20px auto;
    }

    .faq-title-wrapper h2 {
        font-size: 26px;
    }

    .rank-math-question {
        padding: 16px 50px 16px 45px;
        font-size: 16px;
    }

    .rank-math-question:before {
        left: 15px;
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .rank-math-question:after {
        right: 15px;
        font-size: 20px;
    }

    .rank-math-list-item.active .rank-math-answer {
        padding: 15px 15px 15px 45px;
    }
}
/*gallery css*/
.portfolio-content {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

/* Overlay */
.portfolio-content::before {
    content: "";
    position: absolute;
	 top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
	border-radius:12px;

    background: rgba(51, 192, 205, 0.88);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
}

.portfolio-content:hover::before {
    opacity: 1;
}

/* Plus icon */
.portfolio-content::after {
    content: "+";
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 110px;
    font-weight: 300;
    color: #ffffff;
    opacity: 0;
    transition: all 0.35s ease;
    z-index: 2;
}

.portfolio-content:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.portfolio-hover-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 20px;
    z-index: 3;

    opacity: 0;
    transform: translateY(15px);
    transition: all 0.35s ease;
}

.portfolio-content:hover .portfolio-hover-card {
    opacity: 1;
    transform: translateY(0);
}

/* Subtitle */
.portfolio-hover-card .subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #33c0cd;
    text-transform: uppercase;
    margin-bottom: 7px;
    font-family: Yantramanav, sans-serif;
}


/* Title */
.portfolio-hover-card .title {
    font-size: 24px;
    font-weight: 700;
    color: #020202;
    font-family: Yantramanav, sans-serif;
}

/*gallery css end*/

/*Home form css*/
.wpcf7-spinner {
    display: contents;
}
.gb-element-f5aa3e5f{
	min-height:180px;
}
.gb-element-5e62aebe{
	top:-93px;
}
.appointment {
  background: #38c1c9;
	padding-top:40px;
	padding-left:30px;
	padding-right:30px;
}

.appointment p {
    margin: 0;
}

.appointment-form form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
}

.appointment-form .col-lg-4 {
    width: 100%;
    padding: 0;
}

.appointment-form input[type="text"],
.appointment-form input[type="email"],
.appointment-form select {
    width: 100%;
    height: 56px;
    padding: 0 18px;
    border-radius: 10px;
    border: none;
    font-size: 15px;
    background: #ffffff;
    color: #222;
}

.appointment-form ::placeholder {
    color: #555;
}

.appointment-form input[type="submit"] {
    height: 56px;
    width: 100%;
    border-radius: 10px;
    border: none;
    background: #2b2b2b;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.appointment-form input[type="submit"]:hover {
    background: #000000;
}

@media (max-width: 991px) {
    .appointment-form form {
        grid-template-columns: 1fr;
	}
}

		/* Gallery Image Animation*/

		.gb-element-8b6cbd82.portfolio-content {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

		.gb-element-8b6cbd82 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gb-element-8b6cbd82:hover img {
    transform: scale(1.05);
}

	.gb-element-8b6cbd82::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(51, 192, 205, 0.85); /* teal */
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gb-element-8b6cbd82:hover::before {
    opacity: 1;
}

	.gb-element-8b6cbd82::after {
    content: "+";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 64px;
    font-weight: 300;
    color: #ffffff;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.gb-element-8b6cbd82:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

		.gb-element-8b6cbd82 .hover-title {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: #ffffff;
    color: #212121;
    padding: 15px 18px;
    border-radius: 10px;
    font-family: Yantramanav, sans-serif;
    font-size: 20px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
    z-index: 3;
}

.gb-element-8b6cbd82:hover .hover-title {
    opacity: 1;
    transform: translateY(0);
}

		.gb-element-8b6cbd82 .hover-title::before {
    content: "Electrical Services";
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #33c0cd;
    margin-bottom: 6px;
}

.gb-element-8b6cbd82 .hover-title::after {
    content: "Hitches & Glitches";
}

		/*booking-form css*/

.option-container .input { width: 30%; }
.tab {
    display: none;
    animation: fadeIn 0.5s;
}

/* Show first tab */
.tab.current {
    display: block;
}

/* Progress bar styling */
.softheights-progress-bar .step.active .circle {
    background: #0073aa;
    color: white;
}

.softheights-progress-bar .step.finish .circle {
    background: #4CAF50;
    color: white;
}

/* Form navigation */
.options-wrapper {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
}

.btn {
    padding: 10px 20px;
    margin: 0 10px;
}

.error {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


		/*contact form css*/
.ev-site-title{
	font-weight: 800;
    text-transform: capitalize;
    font-size: 55px;
    color: var(--color-dark);
    margin-top: 10px;
    margin-bottom: 0;
    position: relative;
}
