/* custom.css - Grid Tech Electrical Services Ltd */

/* Global Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'DM Sans', sans-serif;
	color: #271736;
	background-color: #ffffff;
	overflow-x: hidden;
}

header.bg-dark{background:#000 !important;}
.header-content{min-height:120px;}
/* Hero Section */
.hero-section {
	position: relative;
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1)), 
		url('assets/banner-top.png') top right no-repeat #000;
	padding: 20px 0;	
}

.hero-about, .hero-contact {

}

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

.logo {
	max-width: 340px;
	height: auto;
}

/* Navigation */
.navbar {
	padding: 35px 0px;
}

.navbar-nav {
	gap: 60px;
}

.navbar-nav .nav-link {
	color: #ffffff !important;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
	color: #aef40d !important;
}

/* Hero Text */
.hero-text {
	padding: 120px 100px 40px;
	max-width: 800px;
}

.hero-text h1 {
	font-size: 45px;
	font-weight: 700;
	line-height: 1.3;
	color: #ffffff;
	margin-bottom: 20px;
}

.hero-subtitle {
	font-size: 25px;
	font-weight: 500;
	line-height: 1.6;
	color: #ffffff;
	margin-top: 30px;
}

/* CTA Bar */
.cta-bar {
	background: #ffffff;
	border-radius: 170px;
	padding: 25px 50px;
	margin: 40px 100px;
}

.cta-bar h2 {
	font-size: 28px;
	font-weight: 700;
	color: #000000;
	margin: 0;
	line-height: 1.2;
}

.btn-phone {
	background: #aef40d;
	border: none;
	border-radius: 60px;
	padding: 12px 30px;
	font-size: 30px;
	font-weight: 700;
	color: #000000;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: transform 0.3s;
}

.btn-phone:hover {
	transform: scale(1.05);
	color: #000000;
}

.phone-icon {
	width: 32px;
	height: 32px;
}

/* Section Styles */
.section-title {
	font-size: 40px;
	font-weight: 700;
	color: #000000;
	margin-bottom: 30px;
}

.section-divider {
	border: none;
	border-top: 1px solid #b9b9b9;
	margin: 40px 0;
}

/* Introduction Section */
.intro-section {
	padding: 80px 0;
}

.intro-text {
	font-size: 16px;
	line-height: 1.9;
	color: #271736;
	max-width: 1520px;
	margin: 0 auto;
}

.highlight-text {
	font-size: 30px;
	font-weight: 700;
	color: #aef40d;
	line-height: 1.4;
}

/* Buttons */
.btn-primary-green {
	background: #aef40d;
	border: none;
	border-radius: 60px;
	padding: 15px 45px;
	font-size: 18px;
	font-weight: 700;
	color: #000000;
	text-transform: uppercase;
	transition: transform 0.3s;
}

.btn-primary-green:hover {
	background: #9ed90b;
	color: #000000;
	transform: scale(1.05);
}

.btn-dark {
	background: #000000;
	border: none;
	border-radius: 60px;
	padding: 15px 45px;
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	text-transform: uppercase;
	transition: transform 0.3s;
}

.btn-dark:hover {
	background: #1a1a1a;
	transform: scale(1.05);
}

/* Why Choose Us Section */
.why-choose-section {
	padding: 80px 0;
}

.feature-card {
	background: #ffffff;
	border: 10px solid #f4f4f4;
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	height: 210px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-logo {
	max-width: 200px;
	max-height: 90px;
	margin-bottom: 15px;
}

.feature-icon {
	width: 80px;
	height: 80px;
	margin-bottom: 15px;
}

.feature-card h5 {
	font-size: 20px;
	font-weight: 700;
	color: #000000;
	margin: 0;
}

/* Services Section */
.services-section {
	background: url('assets/service.svg') center/cover;
	padding: 100px 0;
	position: relative;
}

.service-card {
	background: #ffffff;
	border-radius: 40px;
	overflow: hidden;
	transition: transform 0.3s;
	height: 100%;
	/* 	    width: 250px; */
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-img {

	width: 100%;
	height: 570px;
	object-fit: cover;
	object-position: center center;
}


/*  	 width: 250px;
height: 350px; 
object-fit: cover;  */


.service-content {
	padding: 40px 30px;
	background: #ffffff;
	border-radius: 0 0 40px 40px;
}

.service-content h4 {
	font-size: 30px;
	font-weight: 700;
	color: #000000;
	margin-bottom: 20px;
	text-align: center;
}

.learn-more {
	font-size: 15px;
	font-weight: 700;
	color: #aef40d;
	text-decoration: none;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.learn-more:hover {
	color: #9ed90b;
}

.arrow-icon {
	width: 22px;
	height: auto;
}

/* Gallery Section */
.gallery-section {
	padding: 80px 0;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	height: 600px;
	/* 	height: 350px; */
}

.gallery-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.gallery-item:hover .gallery-img {
	transform: scale(1.1);
}

/* Call Back Section */
.callback-section {
	padding: 80px 0;
}

.callback-box {
	background: #aef40d;
	border-radius: 20px;
	padding: 50px 60px;
	max-width: 1520px;
	margin: 0 auto;
}

.callback-box h2 {
	font-size: 40px;
	font-weight: 700;
	color: #000000;
}

.callback-box .form-control {
	background: #ffffff;
	border: none;
	border-radius: 5px;
	padding: 18px 20px;
	font-size: 15px;
}

/* Accreditations Section */
.accreditations-section {
	background: #000000;
	padding: 80px 0;
}

.accreditation-card {
	background: #ffffff;
	border-radius: 40px;
	padding: 25px;
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.accreditation-card img {
	max-width: 100%;
	max-height: 110px;
	object-fit: contain;
}

/* Testimonial Section */
.testimonial-section {
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.testimonial-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1)), 
		url('assets/testimonial.jpg') top center/cover;
	z-index: 0;
}

.testimonial-card {
	background: #ffffff;
	border-radius: 40px;
	padding: 60px 80px;
	max-width: 674px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.quote-icon {
	text-align: center;
}

.quote-icon img {
	width: 30px;
	height: 24px;
}

.testimonial-text {
	font-size: 20px;
	font-style: italic;
	line-height: 1.8;
	color: #000000;
	margin-bottom: 30px;
}

.testimonial-author {
	font-size: 25px;
	font-weight: 700;
	color: #ccb745;
	text-align: left;
}

/* About Page Styles */
.about-section {
	padding: 80px 0;
}

.about-intro {
	font-size: 25px;
	line-height: 1.6;
	color: #271736;
}

/* Mission Section */
.mission-section {
	padding: 80px 0;
}

.mission-card {
	background: #aef40d;
	border-radius: 50px;
	padding: 60px 80px;
	max-width: 1520px;
	margin: 0 auto;
	position: relative;
}

.mission-badge {
	background: #ffffff;
	border: 5px solid #aef40d;
	border-radius: 50px;
	padding: 25px 60px;
	display: inline-block;
	position: absolute;
	top: -40px;
	left: 65px;
}

.mission-badge h3 {
	font-size: 40px;
	font-weight: 700;
	color: #000000;
	margin: 0;
}

.mission-text {
	font-size: 25px;
	line-height: 1.3;
	color: #271736;
	margin-top: 40px;
	margin-bottom: 0;
}

/* Promise Section */
.promise-section {
	padding: 80px 0;
}

.promise-list {
	list-style: none;
	padding: 0;
}

.promise-list li {
	font-size: 25px;
	font-weight: 600;
	color: #271736;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	gap: 15px;
}

.check-icon {
	width: 25px;
	height: 25px;
}

/* About Images Section */
.about-images-section {
	padding: 80px 0;
}

.about-image-wrapper {
	position: relative;
	height: 450px;
	overflow: hidden;
}

.about-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
}

.cta-text {
	font-size: 40px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.3;
	margin-bottom: 30px;
}

/* Team Section */
.team-section {
	padding: 80px 0;
}

.team-image-card {
	background: #aef40d;
	border-radius: 40px;
	padding: 30px;
	height: 545px;
	overflow: hidden;
}

.team-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}

/* Areas Section */
.areas-section {
	padding: 80px 0;
}

.areas-list {
	list-style: none;
	padding: 0;
}

.areas-list li {
	font-size: 25px;
	color: #271736;
	text-decoration: underline;
	margin-bottom: 20px;
}

/* Contact Page Styles */
.contact-intro-section {
	padding: 80px 0;
}

.contact-details-section {
	padding: 40px 0;
}

.contact-info {
	background: #f0f0f0;
	border-radius: 50px;
	padding: 60px 80px;
}

.contact-label {
	font-size: 16px;
	font-weight: 800;
	color: #271736;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.contact-icon {
	width: 16px;
	height: 16px;
}

.contact-value {
	font-size: 16px;
	font-weight: 800;
	color: #271736;
	margin-bottom: 0;
}

.contact-value a {
	color: #271736;
	text-decoration: underline;
}

/* Contact Form Section */
.contact-form-section {
	padding: 80px 0;
}

.form-container {
	background: #f0f0f0;
	border-radius: 50px;
	padding: 60px 80px;
}

.form-container h3 {
	font-size: 40px;
	font-weight: 700;
	color: #000000;
}

.form-label {
	font-size: 16px;
	color: #000000;
	margin-bottom: 8px;
	text-transform: capitalize;
}

.form-control,
.form-select {
	background: #ffffff;
	border: none;
	border-radius: 10px;
	padding: 15px 20px;
	font-size: 15px;
}

.form-check-input:checked {
	background-color: #aef40d;
	border-color: #aef40d;
}

/* Business Hours Card */
.business-hours-card {
	background: #010101;
	border-radius: 50px;
	padding: 60px 40px;    
}

.business-hours-card h3 {
	font-size: 40px;
	font-weight: 700;
	color: #ffffff;
}

.hours-list {
	color: #ffffff;
}

.hours-list > div {
	font-size: 20px;
	font-weight: 600;
}

.emergency-note {
	font-size: 17px;
	font-weight: 700;
	color: #aef40d;
	line-height: 1.5;
	margin-bottom: 0;
}

/* Footer */
.footer {
	background: #000000;
	color: #ffffff;
}

.footer h5 {
	font-size: 30px;
	font-weight: 400;
	margin-bottom: 25px;
	color: #ffffff;
}

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

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: #ffffff;
	text-decoration: none;
	font-size: 15px;
	font-weight: 300;
	text-transform: capitalize;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: #aef40d;
}

.footer p {
	font-size: 15px;
	font-weight: 300;
	line-height: 1.8;
	color: #ffffff;
	margin-bottom: 5px;
}

.social-icons {
	display: flex;
	gap: 20px;
}

.social-icons a {
	display: inline-block;
	transition: transform 0.3s;
}

.social-icons a:hover {
	transform: scale(1.2);
}

.social-icons img {
	width: 24px;
	height: 24px;
	filter: invert(1);
}

.copyright {
	font-size: 15px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #000000 !important;
}

.copyright .fw-bold {
	color: #000000;
}


/****************************************************************/
.areas-section .team-image-card-new::before {
	right: auto;
	left: 0;
}
.team-image-card-new img {
	border-radius: 35px;
}
.areas-section .team-image-card-new {
	padding: 40px 0px 40px 40px;
}
.team-image-card-new {
	padding: 40px 40px 40px 0;
}
.team-image-card-new::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 55%;
	background-color: #aef40d;
	z-index: -1;
	border-radius: 35px;
}
/* adjust offcanvas width */
.offcanvas.offcanvas-end {
	max-width: 320px;
}

/* logo height */
.logo { height: 50px; }

.toggler-icon {
	display: block;
	width: 100%;
	height: 3px;
	background-color: #fff;
	border-radius: 2px;
	transition: all 0.3s ease;
}

/* Optional: simple animation when offcanvas is open */
.offcanvas.show + .navbar-toggler .top-bar {
	transform: rotate(45deg) translate(5px, 5px);
}
.offcanvas.show + .navbar-toggler .middle-bar {
	opacity: 0;
}
.offcanvas.show + .navbar-toggler .bottom-bar {
	transform: rotate(-45deg) translate(5px, -5px);
}

/****************************************************************/

/* Responsive Design */
@media (max-width: 1400px) {
	.navbar,
	.hero-text,
	.cta-bar {
		padding-left: 100px;
		padding-right: 100px;
	}
	.logo-container{
		padding-left: 10px;
		padding-right: 10px;
	}
	.navbar-nav {
		gap: 20px !important;
	}
}

@media (max-width: 992px) {
	.hero-section {
		min-height: 700px;
	}

	.logo-container,
	.navbar,
	.hero-text,
	.cta-bar {
		padding-left: 50px;
		padding-right: 50px;
	}

	.logo {
		width: 250px;
	}

	.hero-text h1 {
		font-size: 35px;
	}

	.hero-subtitle {
		font-size: 20px;
	}

	.cta-bar h2 {
		font-size: 25px;
		margin-bottom: 20px;
	}

	.btn-phone {
		font-size: 25px;
		padding: 10px 30px;
	}

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

	.navbar-nav {
		gap: 20px;
		margin-top: 20px;
	}

	.feature-card {
		height: auto;
		min-height: 180px;
	}

	.service-img {
		height: 570px;
	}

	.gallery-item {height: 500px;
		/* 		height: 250px; */
	}

	.callback-box {
		padding: 40px 30px;
	}

	.testimonial-card {
		padding: 40px 30px;
	}

	.mission-card,
	.form-container,
	.contact-info {
		padding: 40px 30px;
	}

	.mission-badge {
		position: relative;
		top: 0;
		left: 0;
		margin-bottom: 20px;
	}
}

@media (max-width: 768px) {
	.hero-section {
		min-height: 600px;
	}

	.navbar,
	.hero-text,
	.cta-bar {
		padding-left: 20px;
		padding-right: 20px;
		z-index:999;
	}
	.logo-container{
		padding-left: 120px;
		padding-right: 0px;
	}

	.logo-container .custom-logo {
		max-width: 240px;
		/* 		max-width: 350px; */
		height:auto;
	}

	.hero-text {
		padding-top: 80px;
	}

	.hero-text h1 {
		font-size: 28px;
	}

	.hero-subtitle {
		font-size: 18px;
	}

	.cta-bar {
		border-radius: 20px;
		margin: 20px;
		padding: 20px;
	}

	.cta-bar h2 {
		font-size: 20px;
		text-align: center;
	}

	.btn-phone {
		font-size: 20px;
		padding: 10px 25px;
		width: 100%;
		justify-content: center;
		margin-top: 15px;
	}

	.section-title {
		font-size: 28px;
	}

	.intro-text {
		font-size: 15px;
	}

	.highlight-text {
		font-size: 22px;
	}

	.feature-card h5 {
		font-size: 18px;
	}

	.service-content h4 {
		font-size: 24px;
	}

	.gallery-item {
		height: 500px;
		/* 		height: 200px; */
	}

	.callback-box h2 {
		font-size: 28px;
	}

	.testimonial-text {
		font-size: 16px;
	}

	.testimonial-author {
		font-size: 20px;
	}

	.about-intro {
		font-size: 18px;
	}

	.mission-badge h3 {
		font-size: 28px;
	}

	.mission-text {
		font-size: 18px;
	}

	.promise-list li {
		font-size: 18px;
	}

	.about-image-wrapper {
		height: 300px;
	}

	.cta-text {
		font-size: 28px;
	}

	.team-image-card {
		height: 400px;
		margin-bottom: 20px;
	}

	.areas-list li {
		font-size: 20px;
	}

	.form-container h3,
	.business-hours-card h3 {
		font-size: 28px;
	}

	.business-hours-card {
		margin-top: 20px;
	}

	.hours-list > div {
		font-size: 16px;
		flex-direction: column;
		text-align: center;
	}

	.emergency-note {
		font-size: 14px;
	}

	.footer h5 {
		font-size: 24px;
		margin-top: 30px;
	}

	.footer .col-md-6:first-child .copyright {
		text-align: center;
		margin-bottom: 10px;
	}

	.footer .col-md-6:last-child .copyright {
		text-align: center;
	}
	.header-content .position-absolute {
		position: inherit !important;
	}
	.navbar{
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

@media (max-width: 576px) {
	
	.logo-container {
		padding-left: 10px;
		padding-right: 0px;
	}
	.hero-text h1 {
		font-size: 24px;
	}

	.section-title {
		font-size: 24px;
	}

	.btn-primary-green,
	.btn-dark {
		padding: 12px 30px;
		font-size: 16px;
	}

	.service-img {
		height: 570px;
	}

	.accreditation-card {
		height: 120px;
	}

	.callback-box .form-control {
		margin-bottom: 10px;
	}

	.callback-box .btn-dark {
		width: 100%;
	}
}


.grecaptcha-badge {
	width: 70px !important;
	overflow: hidden !important;
	transition: all 0.3s ease !important;
	left: 4px !important;
}
.grecaptcha-badge:hover {
	width: 256px !important;
}

.grecaptcha-badge {

	visibility: hidden;

}

