/*!
 * Bootstrap4 HTML5 Responsive Template
 */

 
/* ==========================
   IMPORTS / FONTS
========================== */
@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800');
 
/* ==========================
   GLOBAL / BASE STYLES
========================== */
body {
  padding-top: 54px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #1f1f1f;
}

/* ==========================
   RESPONSIVE: BODY PADDING
========================== */
@media (min-width: 992px) {
  body {
    padding-top: 0px;
  }
}

/* ==========================
   BUTTONS: PRIMARY
========================== */
a.btn-primary{
	background-color: #4eae3a;
	border-color: #4eae3a;
}
a.btn-primary:hover{
	background-color: #5ec549;
	border-color: #5ec549;
}
button.btn-primary{
	background-color: #4eae3a;
	border-color: #4eae3a;
}
button.btn-primary:hover{
	background-color: #5ec549;
	border-color: #5ec549;
}

/* ==========================
   BUTTONS: SECONDARY
========================== */
/* ===============================
   PRIMARY CTA BUTTON – PREMIUM
================================ */

a.btn-secondary,
button.btn-secondary{
  background: linear-gradient(135deg, #4eae3a, #5ec549);
  border: none;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 14px 28px;
  border-radius: 8px;
  box-shadow:
    0 6px 0 #3c8e2d,
    0 10px 20px rgba(0,0,0,0.25);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}

/* HOVER – lifts up */
a.btn-secondary:hover,
button.btn-secondary:hover{
  background: linear-gradient(135deg, #5ec549, #74dd5f);
  transform: translateY(-3px);
  box-shadow:
    0 8px 0 #3c8e2d,
    0 14px 26px rgba(0,0,0,0.35);
  color: #ffffff;
}

/* ACTIVE – real button press */
a.btn-secondary:active,
button.btn-secondary:active{
  transform: translateY(3px);
  box-shadow:
    0 2px 0 #3c8e2d,
    0 4px 10px rgba(0,0,0,0.25);
}

/* FOCUS – accessibility glow */
a.btn-secondary:focus,
button.btn-secondary:focus{
  outline: none;
  box-shadow:
    0 0 0 3px rgba(94, 197, 73, 0.45),
    0 6px 0 #3c8e2d;
}


/* ==========================
   TOP NAV / NAVBAR
========================== */

/* ==========================
   TOP NAV / NAVBAR
========================== */
.top-nav {
  background-color: #ffffff !important;
}

.navbar-expand-lg.top-nav .navbar-nav .nav-link {
  padding: 10px 15px;
  color: #4e3914;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
}

.navbar-expand-lg.top-nav .navbar-nav .nav-link:hover {
  background: #4eae3a;
  color: #ffffff;
  border-radius: 4.8px;
}

.navbar-expand-lg.top-nav .navbar-nav .nav-link.active {
  background: #4eae3a;
  color: #ffffff;
  border-radius: 4.8px;
}

/* Call styling (all sizes) */
.top-nav .header-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #25c12a;
  font-weight: bold;
}

.top-nav .header-call:hover,
.top-nav .header-call:focus {
  color: #1fa324;
  text-decoration: none;
}

.top-nav .header-call .call-lines {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.top-nav .header-call .call-text {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.top-nav .header-call .call-phone {
  font-size: 22px;
  font-weight: 700;
}

.top-nav .header-call .call-icon i {
  font-size: 36px;
  line-height: 1;
}




/* ───────────────────────────────────────
   DESKTOP LAYOUT: Use absolute positioning for perfect centering
   ─────────────────────────────────────── */
@media (min-width: 992px) {
  .top-nav .container {
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Logo - fixed reasonable size so center doesn't get pushed */
  .top-nav .navbar-brand {
    padding: 0;
    margin: 0;
  }

  .top-nav .navbar-brand img {
    width: 220px;           /* ← Adjust this number if needed */
    height: auto;
  }

  /* Center call perfectly in the middle of the navbar */
  .top-nav .header-call {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    z-index: 10;
    white-space: nowrap;
    max-width: 380px;       /* Prevents overflow on smaller desktops */
  }

  /* Right section */
  .top-nav .header-right {
    display: flex;
    align-items: center;
  }

  .top-nav .header-right .navbar-collapse {
    justify-content: flex-end;
  }
}


/* ==========================
   SLIDER / CAROUSEL
========================== */
.slider-main .carousel .carousel-inner .carousel-item:before{
	content: "";
	position: absolute;
	background: rgba(0,0,0,0.5);
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}
.carousel-item {
  height: 88vh;
  min-height: 300px;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/* ==========================
   PORTFOLIO / SERVICES CARDS
========================== */
.portfolio-item {
  margin-bottom: 30px;
}
.services-bar h1{
	font-weight: 600;
	font-size: 24px;
}
.services-bar .card{
	box-shadow: 3px 5px 15px rgba(0,0,0, .15);
	border: none;
}
.services-bar .card h4.card-header{
	background-color: #646469;
	color: #ffffff;
	font-size: 18px;
	font-weight: 400;
	text-align: center; 
}
.services-bar .card .card-img {
  width: 80%;            /* smaller square */
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin: 0 auto;  
         /* centers the image box */
}

.services-bar .card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  text-align: center; 
}

.services-bar .card .card-footer{
	background-color: #686764;
}

/* ==========================
   ABOUT SECTION
========================== */
.about-main{
	padding: 30px 0px;
}
.about-main h2{
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 20px;
}
.about-main h5{
	font-size: 18px;
}
.about-main p{
	font-size: 14px;
	text-transform: capitalize;
}
.about-main ul{
	padding-left: 20px;
}
.about-main ul li{
	position: relative;
	font-weight: 300;
	list-style: none;
	line-height: 29px;
}
.about-main ul li:before{
	content: "\f0da";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;	
	position: absolute;
	left: -15px;
	top: 0px;
	color: #4eae3a;
}

/* ==========================
   PORTFOLIO MAIN + OVERLAY
========================== */
.portfolio-main{
	padding: 30px 0px;
}
.portfolio-main h2{
	font-weight: 600;
	font-size: 24px;
	margin-bottom: 20px;
}
.portfolio-main .card {
	border: none;
	border-radius: 4px;
	overflow: hidden;
}
.portfolio-main .card .card-body .card-title{
	margin-bottom: 0px;
}
.portfolio-main .card .card-body .card-title a{
	font-size: 20px;
	font-weight: 400;
	text-transform: uppercase;
	color: #4eae3a;
}
.portfolio-main .card .card-body{
	background: #161616;
	padding: 10px 20px;
}
.card-img{
	overflow: hidden;
	position: relative;
}
.overlay{
	background: rgba(78,174,58,0.5);
	position: absolute;
	bottom: -100%;
	width: 100%;
	height: 100%;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.3s;
}
.overlay i{
	font-size: 35px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%);
	color: #242423;
}
.portfolio-main .card:hover .overlay{
	bottom: 0px;
}

/* ==========================
   LEGACY FOOTER STYLES (OLDER FOOTER)
========================== */
.footer { 
	width:100%; 
	background-color:#263238; 
	min-height:250px; 
	padding:10px 0px 25px 0px;
	}
.pt2 { 
	padding-top:40px ;
	margin-bottom:20px ;
	color: #ffffff;
	font-weight: 500;
	}
footer p { 
	font-size:13px; 
	color:#CCC; 
	padding-bottom:0px; 
	margin-bottom:8px;
	}
.mb10 { 
	padding-bottom:0px ;
	}
.footer_ul_amrc { 
	margin:0px ; 
	list-style-type:none ; 
	font-size:14px; 
	padding:0px 0px 10px 0px ; 
	}
.footer_ul_amrc li {
	padding:0px 0px 5px 0px;
	}
.footer_ul_amrc li a{ 
	color:#cccccc;
	font-size: 14px;
	font-weight: 300;
	}
.footer_ul_amrc li a:hover{ 
	color:#fff; 
	text-decoration:none;
	}
.footer_ul_amrc li .media-left{
	margin-right: 10px;
}
.footer_ul_amrc li .media-left img{
	max-width: 50px;
}
.footer_ul_amrc li .media-body p{
	font-size: 14px;
	font-weight: 500;
	color: #ffffff;
}
.footer_ul_amrc li .media-body span{
	color: #cccccc;
	font-size: 14px;
	font-weight: 400;
}
.fleft { 
	float:left;
	}
.padding-right { 
	padding-right:10px; 
	}
.footer_ul2_amrc {
	margin:0px; 
	list-style-type:none; 
	padding:0px;
	}
.footer_ul2_amrc li p { 
	display:table; 
	}
.footer_ul2_amrc li a:hover { 
	text-decoration:none;
	}
.footer_ul2_amrc li i { 
	margin-top:5px;
	}
.footer_ul2_amrc li a {
	color: #4eae3a;
}
.bottom_border { 
	border-bottom:1px solid #323f45; 
	padding-bottom:20px;
	}
.foote_bottom_ul_amrc {
	list-style-type:none;
	padding:0px;
	display:table;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
}
.foote_bottom_ul_amrc li { 
	display:inline;
	}
.foote_bottom_ul_amrc li a {
	color:#ffffff; 
	margin:0 12px;
	font-size: 16px;
	font-weight: 300;
	}
.footer-logo{
	padding: 20px 0px;
	text-align: center;
}
.copyright a{
	color: #4eae3a;
	text-decoration: underline;
}
.copyright a:hover{
	color: #ffffff;
	text-decoration: none;
}
.social_footer_ul { 
	display:table; 
	margin:15px auto 0 auto; 
	list-style-type:none;
	padding: 0;	
	}
.social_footer_ul li { 
	padding-left:20px; 
	padding-top:10px; 
	float:left; 
	}
.social_footer_ul li a { 
	color:#CCC; 
	border:2px solid #CCC; 
	padding:8px;
	border-radius:50%;
	}
.social_footer_ul li i {  
	width:20px; 
	height:20px; 
	text-align:center;
	}
.social_footer_ul li a:hover {
	color: #4eae3a; 
	border:2px solid #4eae3a; 
}

/* ==========================
   ALL PAGES CSS
========================== */
.full-title{
	padding: 80px 0px;
	background: url(../images/about\ us\ pic.png) no-repeat center;
	position: relative;
}
.full-title:before{
	content: "";
	background: rgba(0,0,0,0.5);
	top: 0px;
	left: 0px;
	position: absolute;
	width: 100%;
	height: 100%;
}
.full-title h1{
	position: relative;
	color: #ffffff;
}
.full-title h1 small{
	float: right;
	padding: 15px 0px;
	font-size: 14px;
}

.breadcrumb-main .breadcrumb{
	background: #4eae3a;
}
.breadcrumb-main .breadcrumb li a{
	color: #ffffff;
}
.breadcrumb-main .breadcrumb li{
	color: #4e3914;
}
.breadcrumb-main .breadcrumb-item + .breadcrumb-item::before{
	color: #4e3914;
}
.team-members-box{
	padding: 30px 0px;
}
.team-members-box h2{
	font-weight: 600;
	font-size: 24px;
	margin-bottom: 20px;
}
.team-members-box .card{
	box-shadow: 3px 5px 15px rgba(0,0,0, .15);
	border: none;	
}
.team-members-box .card .card-footer{
	background: #343b33;
}
.team-members-box .card .card-footer ul{
	margin: 0px;
	padding: 0px;
}
.team-members-box .card .card-footer ul li{
	display: inline-block;
}
.team-members-box .card .card-footer ul li a{
	width: 32px;
	height: 32px;
	line-height: 32px;
	background: #4e3914;
	color: #ffffff;
	display: inline-block;
	border-radius: 4.8px;
	font-size: 14px;
}
.customers-box h2{
	font-weight: 600;
	font-size: 24px;
	margin-bottom: 20px;
}

.project-inner h3{
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 30px;
}
.pagination_bar .pagination .page-item .page-link{
	font-size: 20px;
	background: #4e3914;
	border: 1px solid #4e3914;
	color: #ffffff;
	width: 35px;
	text-align: center;
}
.pagination_bar .pagination .page-item .page-link:hover{
	background: #4eae3a;
}
.portfolio-item h4.card-title a{
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 20px;
	color: #c38d2f;
}
.related-projects{
	padding: 30px 0px; 
}
.related-projects h3{
	font-weight: 600;
	font-size: 24px;
	margin: 0px;
	margin-bottom: 20px;
}
.blog-entries .card{
	box-shadow: 3px 5px 15px rgba(0,0,0, .15);
	border: none;
}
.blog-entries .card .card-body h2.card-title{
	font-size: 22px;
	font-weight: 500;
}
.blog-entries .card .card-footer{
	background-color: #4e3914;
}
.blog-entries .card .card-footer.text-muted{
	color: #ffffff !important;
}
.blog-entries .card .card-footer a{
	color: #4eae3a;
}
.blog-right-side .card{
	box-shadow: 3px 5px 15px rgba(0,0,0, .15);
	border: none;
}
.blog-right-side .card h5.card-header{
	background-color: #4e3914;
	color: #ffffff;
	font-size: 20px;
	font-weight: 400;
}
.blog-right-side .card .card-body ul li{
	margin-bottom: 2px;
}
.blog-right-side .card .card-body ul li a{
	border-radius: 4.8px;
	padding: 6px;
	background: #4e3914;
	color: #4eae3a;
	display: inline-block;
}
.pagination_bar_arrow .pagination .page-item .page-link{
	font-size: 20px;
	background: #4e3914;
	border: 1px solid #4e3914;
	color: #ffffff;
	width: 120px;
	text-align: center;
}
.pagination_bar_arrow .pagination .page-item .page-link:hover{
	background: #4eae3a;
}
.faq-main{
	padding: 30px 35px;
	background: #4e3914;
	margin: 30px 0px;
}
.accordion-single{
	border-radius: 0px;
	border: none;
	border-bottom: 1px solid #e4e8ed;
}
.accordion-single .card-header{
	background-color: transparent;
	padding: 0px;
	border: none;
}
.accordion-single .card-header h5 a{
	color: #202428;
	display: block;
	position: relative;
	padding: 21.28px 32px 26.56px 20px;
	font-size: 18px;
	text-transform: capitalize;
}
.accordion-single .card-header h5 a:hover{
	color: #4eae3a;
	text-decoration: none;
}
.accordion-single h5 a[aria-expanded="false"]::before {
    position: absolute;
    content: "\f0dd";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;	
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
	color: #4e3914;
}
.accordion-single h5 a[aria-expanded="true"]::before{
    position: absolute;
    content: "\f0de";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #4eae3a;
}
.error-contents{
	padding: 30px 0px;
	max-width: 980px;
	margin: 0 auto;
	text-align: center;
}
.error-contents{}
.pricing-box{
	padding: 30px 0px;
}
.pricing-box .card{
	position: relative;
	overflow: hidden;
	box-shadow: 3px 5px 15px rgba(0,0,0, .15);
	border: none;
}
.pricing-box .card h3.card-header{
	padding: 80px 15px;
	text-align: center;
	background: #4e3914;
	color: #ffffff;
}
.most_popular{
	position: absolute;
	top: 32px;
	font-size: 12px;
	text-align: center;
	width: 181px;
	padding: 4px 0;
	right: -36px;
	transform: rotate(40deg);
	background-color: #4eae3a;
	color: #4e3914;
}

.contact-left h3{
	font-weight: 600;
	font-size: 24px;
	margin-bottom: 20px;
}
.contact-right h3{
	font-weight: 600;
	font-size: 24px;
	margin-bottom: 20px;
}
.contact-right p abbr{
	font-weight: bold;
	font-size: 18px;
}

.help-block ul{
	margin: 0px;
	padding: 0px;
	list-style: none;
	background: red;
	color: #fff;
	padding: 0px 15px;
}

/* ==========================
   RESPONSIVE (TABLET / MOBILE)
========================== */
@media (min-width:768px) and (max-width:991px){
	.navbar-expand-lg.top-nav .navbar-nav .nav-link.dropdown-toggle::after{
		position: absolute;
		top: 18px;
		right: 6px;
	}
}

@media screen and (max-width:767px){
	.navbar-expand-lg.top-nav .navbar-nav .nav-link.dropdown-toggle::after{
		position: absolute;
		top: 18px;
		right: 6px;
	}
	.portfolio-main h2{
		text-align: center;
	}
	.customers-box{
		text-align: center;
	}
	.team-members-box h2{
		text-align: center;
	}
	.services-bar h1{
		text-align: center;
	}
	.social_footer_ul li{
		padding-left: 10px;
		padding-right: 10px;
	}
	.faq-main{
		padding: 20px 15px;
	}
	.accordion-single .card-header h5 a{
		font-size: 14px;
	}
}

@media (min-width:320px) and (max-width:575.98px){
	.navbar-expand-lg.top-nav .navbar-nav .nav-link.dropdown-toggle::after{
		position: absolute;
		top: 18px;
		right: 6px;
	}
	.portfolio-main h2{
		text-align: center;
	}
	.customers-box{
		text-align: center;
	}
	.team-members-box h2{
		text-align: center;
	}
	.services-bar h1{
		text-align: center;
	}
	.social_footer_ul li{
		padding-left: 10px;
		padding-right: 10px;
	}
	.faq-main{
		padding: 20px 15px;
	}
	.accordion-single .card-header h5 a{
		font-size: 14px;
	}
}

/* ==========================
   HERO CTA OVER CAROUSEL
========================== */

/* Make the carousel the positioning parent */
#carouselExampleIndicators{
  position: relative;
}

/* Force the carousel + slides to have real height */
#carouselExampleIndicators,
#carouselExampleIndicators .carousel-inner,
#carouselExampleIndicators .carousel-item{
  height: 88vh;
  min-height: 300px;
}

/* Ensure slides sit behind the CTA */
#carouselExampleIndicators .carousel-inner{
  position: relative;
  z-index: 1;
}

/* CTA overlay box */
#carouselExampleIndicators .hero-cta{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;

  width: min(90%, 420px);
  padding: 18px 22px;

  background: rgba(0, 0, 0, 0.45);
  border-radius: 12px;
  text-align: center;
}

/* CTA text styling */
#carouselExampleIndicators .hero-cta h2{
  color: #ffffff;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

#carouselExampleIndicators .hero-cta p{
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 15px;
}

/* CTA button spacing (uses your existing btn styles) */
#carouselExampleIndicators .hero-cta .btn{
  margin-top: 5px;
}

/* ==========================
   NEW RA FOOTER (DARK THEME)
========================== */
:root {
  --bg: #1f2a2f;
  --panel: #24343b;
  --text: #e9eef1;
  --muted: #b6c3c9;
  --accent: #35c46b;
  --border: rgba(255,255,255,0.1);
}

.ra-footer {
  background: var(--bg);
  color: var(--text);
  padding: 60px 20px 30px;
  font-family: Arial, Helvetica, sans-serif;
}

.ra-footer__inner {
  max-width: 1200px;
  margin: auto;
}

.ra-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.ra-footer__col {
  background: var(--panel);
  padding: 22px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.ra-footer__title {
  margin-bottom: 15px;
  font-size: 18px;
}

.ra-footer__quote {
  font-size: 14px;
  color: var(--muted);
  border-left: 4px solid var(--accent);
  padding-left: 12px;
  margin-bottom: 18px;
}

.ra-footer__quoteBy {
  color: var(--text);
  font-weight: bold;
}

.ra-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ra-footer__item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--muted);
}

.ra-footer__item a {
  color: var(--text);
  text-decoration: none;
}

.ra-footer__item a:hover {
  color: var(--accent);
}

.ra-footer__icon {
  font-size: 16px;
}

.ra-footer__cta {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 16px;
  background: var(--accent);
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.ra-footer__cta:hover {
  opacity: 0.9;
}

.ra-footer__links {
  list-style: none;
  padding: 0;
}

.ra-footer__links li {
  margin-bottom: 10px;
}

.ra-footer__links a {
  color: var(--text);
  text-decoration: none;
}

.ra-footer__links a:hover {
  color: var(--accent);
}

.ra-footer__divider {
  margin: 40px 0 20px;
  border: none;
  border-top: 1px solid var(--border);
}

.ra-footer__bottom {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

/* ==========================
   NAVBAR LAYOUT + CENTER CALL
========================== */

.top-nav {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.10);
}


.neon-phone-9xk72 i {
  color: #22ff38;
  font-size: 1.15em;
}

.yt-real-logo-92x{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.yt-real-logo-92x svg{
  width: 20px;
  height: 20px;
  display: block;
}

.fb-logo-x93p i {
  color: #1877F2; /* Official Facebook blue */
  font-size: 1.2em;
}

/* STACK ITEMS VERTICALLY */
.ra-footer__list {
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* ICON LEFT, TEXT RIGHT */
.ra-footer__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

/* KEEP ICON SIZE CONSISTENT */
.ra-footer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
}


/* ===============================
   FAQ QUESTIONS – CLEAN + PRO
   (CSS ONLY / SAFE ADD)
================================ */

/* ===============================
   FAQ – LIGHT, CLEAN, TRUSTED
================================ */

/* Reset common FAQ containers */
.faq,
.faq-section,
.faq-wrapper{
  margin: 40px 0;
}

/* FAQ list cleanup */
.faq ul,
.faq ol{
  list-style: none;
  padding: 0;
  margin: 0;
}


/* ===============================
   FAQ (SAFE: ONLY targets .faq-grid .faq-card)
================================ */

.faq .faq-grid .faq-card{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 20px 22px;
  margin-bottom: 6px;

  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
  color: #1f2937;

  position: relative;

  box-shadow:
    0 10px 24px rgba(0,0,0,0.14),
    0 3px 8px rgba(0,0,0,0.10);

  transition:
    box-shadow 0.15s ease,
    transform 0.15s ease,
    border-color 0.15s ease;
}

.faq .faq-grid .faq-card:hover{
  transform: translateY(-1px);
  box-shadow:
    0 16px 36px rgba(0,0,0,0.18),
    0 5px 14px rgba(0,0,0,0.12);
  border-color: rgba(78,174,58,0.35);
}

/* Accent bar ONLY on faq cards */
.faq .faq-grid .faq-card::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: linear-gradient(180deg, #4eae3a, #5ec549);
  border-radius: 10px 0 0 10px;
}

/* Bring answers closer (Question div then Answer p) */
.faq .faq-grid .faq-card + p{
  margin-top: 6px;
  margin-bottom: 14px;
  color: #374151;
  line-height: 1.55;
}

/* Make ONLY the first section title (the 'd') white */
.section-head .section-title:first-of-type{
  color: #ffffff;
}


/* Mobile */
@media (max-width: 768px){
  .faq .faq-grid .faq-card{
    padding: 22px 18px;
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .about-main {
    padding-left: 20px;
    padding-right: 20px;
  }
}


/* Make ONLY those placeholder "d" titles white */
.page-header .section-title:nth-of-type(1),
.page-header .section-title:nth-of-type(2),
.card .section-title{
  color: #ffffff !important;
}

/* Make the mobile hamburger visible on light navbar */
.navbar .navbar-toggler{
  border-color: rgba(0,0,0,0.25);
}

.navbar .navbar-toggler .fa-bars,
.navbar .navbar-toggler .fas{
  color: #1f2937 !important; /* dark gray */
  font-size: 26px;
}

/* Fix unintended uppercase inheritance */
.about-main,
.about-main p {
  text-transform: none;
}

.sig-pic {
  display: block;
  max-width: 200px;   /* adjust this smaller/larger as you like */
  height: auto;
  margin: 10px 0 5px; /* spacing above/below signature */
}

.white-text {
  color: #ffffff;
}
