body, html { overflow-x:hidden; }

body {
    background-color: #ffffff;
    font-family:  'Open Sans', Arial, Helvetice Neue, sans-serif;
    font-size: 12px;
	
	font-weight: 300; 
	font-style: normal; 
	-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
	-webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6, span, p { font-family: 'Open Sans', Arial, Helvetice Neue, sans-serif; }

* {
  -webkit-border-radius: 0 !important;
     -moz-border-radius: 0 !important;
          border-radius: 0 !important;
}

.templatemo_clear {
	clear: both;
}

.height30 {
	height: 30px;
}

.templatemo-top-bar {
    min-height: 40px;
    background-color:#eeeeee;
}

.templatemo-top-menu {
    min-height: 75px;
    background-color:#ffffff;
    z-index: 5000;
    width:100%;
}

.templatemo-top-menu .navbar-toggle {
    margin-top: 20px;
}

.templatemo-top-menu .navbar-brand {
    padding: 0;
    margin: 15px 0 0 0;
}

/* Logo Text Styling */
.logo-text {
    font-family: 'Open Sans', Arial, Helvetica Neue, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    padding: 0;
    display: inline-block;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ff7600 0%, #d35400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon {
    display: inline-block;
    margin-right: 8px;
    font-size: 28px;
    animation: toolRotate 3s ease-in-out infinite;
}

@keyframes toolRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-15deg); }
}

.logo-text:hover {
    letter-spacing: 0px;
    filter: brightness(1.1);
}

.service-icon {
    display: block;
    font-size: 48px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

/* ------ Carousel ----- */

#templatemo-carousel {
    background: url('../images/slider.jpg') no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    overflow-x: hidden;
    margin-bottom:0;
    height: 500px;
    position: relative;
}

#templatemo-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}

#templatemo-carousel .carousel-caption {
    z-index: 10;
}

#templatemo-carousel .carousel-caption h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
    animation: slideInDown 0.8s ease;
}

#templatemo-carousel .carousel-caption p {
    font-size: 18px;
    color: #ffffff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 25px;
    animation: slideInUp 0.8s ease 0.2s backwards;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#templatemo-carousel .item {
    height: 500px;
}
#templatemo-carousel .carousel-inner > .item > img {
    position: absolute;
    min-width: 100%;
    height: 500px;
    left: 0;
    top: 0;
}

@media (min-width: 768px) {
    #templatemo-carousel .carousel-caption p {
        margin-bottom: 20px;
        line-height: 1.4;
        font-size: 21px;
    }

    #templatemo-carousel .carousel-caption {
        padding-bottom: 140px;
        right: 20%;
        left: 20%;
    }
}

@media (max-width: 768px) {
    #templatemo-carousel .carousel-caption {
        padding-bottom: 120px;
    }
}

@media (max-width: 1024px) {
    #templatemo-carousel {
        background: url('../images/sliders.jpg') no-repeat center center; 
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        overflow-x: hidden;
        margin-bottom:0;
        height: 500px;
    }
}

/* ------ End of Carousel ----- */

/* ------ Welcome & Slogna ------ */
.templatemo-welcome {
    border-bottom: 1px solid #cccccc;
    min-height: 230px;
}

.templatemo-slogan {
    font-family:  'Open Sans', sans-serif;
    font-weight: normal;
    font-size: 42px;
    margin: 60px 0;
    color: #333333;
}

.templatemo-service {
    margin-bottom: 80px;
    margin-top: 80px;
    padding: 60px 0;
}

.templatemo-service-item {
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 30px;
    font-size: 20px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.templatemo-service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(255, 118, 0, 0.15);
    border-top: 3px solid #ff7600;
}

.templatemo-service-item:hover .service-icon {
    transform: scale(1.15) rotateY(10deg);
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1.15) rotateY(10deg); }
    50% { transform: scale(1.25) rotateY(-10deg); }
}

.templatemo-service-item div {
    margin-bottom: 15px;
}

.templatemo-service-item img {
    max-width: 60px;
    height: auto;
    margin-bottom: 15px;
    display: none;
}

.templatemo-service-item-header {
    margin-left: 0;
    padding: 0;
    font-weight: 600;
    display: block;
    font-size: 16px;
    color: #ff7600;
    letter-spacing: 0.5px;
}

.templatemo-service-item p {
    font-weight: 400;
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.subheader {
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;
    margin-top: 12px;
    font-size: 12px;
    color: #e67e22;
}

/* ------ About Us Section ------ */
.about-us-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-top: 1px solid #e0e0e0;
}

.about-header {
    margin-bottom: 60px;
}

.about-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.about-subtitle {
    font-size: 18px;
    color: #ff7600;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.about-text-content h3 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text-content > p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}

.feature-item {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #ff7600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0 6px 20px rgba(255, 118, 0, 0.15);
    transform: translateY(-5px);
}

.feature-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: #ff7600;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 10px 0 8px 0;
}

.feature-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.about-image-box {
    margin-bottom: 25px;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.about-image:hover {
    box-shadow: 0 12px 35px rgba(255, 118, 0, 0.2);
    transform: translateY(-5px);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    border-top: 3px solid #ff7600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.stat-card:hover {
    box-shadow: 0 8px 25px rgba(255, 118, 0, 0.15);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #ff7600;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .about-header h2 {
        font-size: 28px;
    }
    
    .about-text-content h3 {
        font-size: 22px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-us-section {
        padding: 50px 0;
    }
    
    .about-text-col {
        margin-bottom: 30px;
    }
}


.btn-orange {
    background-color: #ff7600;
    border: none;
    border-bottom: none;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    color: #ffffff;
    font-weight: 600;
    padding: 12px 28px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 118, 0, 0.3);
}

.btn-orange:hover, .btn-orange:focus, .btn-orange:active, .btn-orange.active, .open .dropdown-toggle.btn-orange {
    background-color: #d35400;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 118, 0, 0.4);
    text-decoration: none;
}

.btn-green {
    background-color:#2ecc71;
    border-bottom:2px solid #27ae60;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    color:#ffffff;
}

.btn-green:hover, .btn-green:focus, .btn-green:active, .btn-green.active, .open .dropdown-toggle.btn-green {
    background-color: #27ae60;
    color:#ffffff;
}

.nav > li > a {
    padding: 10px 20px;
}

.nav > li > a:hover,
.nav > li > a:focus {
    background-color: #ff7600;
    color:#fff;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    background-color: #ff7600;
    color:#fff;
}


.nav > li > a {
    color: #929292;
}
.navbar-default {
    background-color:#fff;
    border:none;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    background-color: #ff7600;
    color:#fff;
}

.navbar {
    margin-bottom: 0px;
}



.templatemo-header-orange {
    background-color:#ff7600;
    min-width: 298px;
    height: 67px;
    color: #fff; 

}

.team_hr {
    border: 1px solid #fff; 
    width: 39.5%; 
    float: left;
}

.team_hr_left {
    margin-right: 30px;
    margin-left: 15px; 
}

.team_hr_right {
    margin-left: 30px;
}

.hr_gray {
    border: 1px solid #cccccc; 
}

.templatemo-team {
    background: url('../images/background.png') center/cover;
    background-attachment: fixed;
    font-family: 'Open Sans', sans-serif;
    min-height: 590px;
    color: #ffffff;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 60px 0;
}
.templatemo-line-header {
    margin-top: 50px;
    margin-bottom: 40px;
    position: relative;
}

.section-icon-header {
    font-size: 32px;
    display: block;
    margin-top: 15px;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.member-thumb:hover .thumb-overlay {
    transition: all 0.3s ease-in-out 0s;
    visibility: visible;
    opacity: 1;
}

.member-thumb {
    position: relative;
    overflow: hidden;
}

.member-thumb .thumb-overlay {
    background-color: rgba(220, 157, 102, 0.8);
    position: absolute;
    visibility: hidden;
    padding-top: 35%;
    padding-left: 25%;
    height: 100%;
    width: 100%;
    opacity: 0;
    right: 0;
    top: 0;
}

.thumb-overlay a {
    float:left;
    margin-right: 5px;
}



.team-inner {
    margin-top:10px;
}

.team-inner-header {
    font-family: 'Open Sans', sans-serif;
    font-weight:600;
    font-size:16px;
}

.team-inner-subtext {
    font-weight:normal;
    font-size:12px;
}

.row_team {
    margin-left:-50px;
    margin-top:70px;
}

.row_team li {
    list-style: none;
}

.templatemo-project-box {
    background-size: cover;
    position: relative;
    overflow: hidden;
    cursor:pointer;
    height: 200px;
    width: 200px;
}

.templatemo-project-box:hover .project-overlay {
    transition: all 0.3s ease-in-out 0s;
    visibility: visible;
    opacity: 1;
}

.project-overlay {
    background : rgba(0,0,0,.75);
    border : 2px solid #ff7600;
    visibility: hidden;
    position: absolute;
    text-align:center;
    padding-top:40px;
    color: #ffffff;
    height: 100%;
    width: 100%;
    opacity: 0;
    right: 0;
    top: 0;
}


.project-overlay hr {
    width : 70%;
	
}

.templatemo-project-gallery li {
    margin:15px;
}

.txt_darkgrey {
    color: #333333;
}

.txt_orange {
    color: #e67e22;
}

.txt_slogan {
    font-size:14px; 
    color:#929292;
}

.templatemo-line-header span {
    font-size: 18px; 
    float :left; 
    margin-top: 10px;
}

.team_box  div {
    text-align: center; 
    padding-top: 100px;
}

.span_blog {
    margin-bottom: 80px;
}

.blog_post {
    color: #333333; 
    padding: 10px;
}

.blog_header {
    font-weight: bold; 
    font-size: 16px; 
}

.blog_text {
    text-align: justify; 
    font-size: 14px; 
    margin-top: 20px;
}

#templatemo-contact {
    margin-top: 40px;
    border-top: none;
    font-size: 14px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.templatemo-contact-map {
    margin-bottom: 30px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.templatemo-contact-map:hover {
    box-shadow: 0 8px 25px rgba(255, 118, 0, 0.15);
}

.templatemo-contact-map iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
}

.head_contact {
    padding-bottom: 80px;
    margin-bottom: 40px;
}

.contact_right {
    padding: 40px 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact_right:hover {
    box-shadow: 0 8px 25px rgba(255, 118, 0, 0.15);
    border-left: 4px solid #ff7600;
}

.contact_right p {
    margin: 15px 0;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.contact_right p:first-child {
    font-weight: 500;
    color: #ff7600;
    font-size: 16px;
    margin-bottom: 25px;
}

.contact_right img {
    margin-right: 12px;
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

.contact_right a {
    color: #ff7600;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact_right a:hover {
    color: #d35400;
    text-decoration: underline;
}

.contact_right form {
    padding-left: 0;
    padding-right: 0;
}

.location-info {
    margin-top: 20px;
    padding: 20px;
    background: #fff3e6;
    border-radius: 8px;
    border-left: 4px solid #ff7600;
}

.location-info h4 {
    color: #ff7600;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
}

.location-info p {
    color: #333;
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
}

.tweet_txt {
	border-left:2px solid #ffffff; 
	min-height:160px;
}

.twitter_user {
	color: #FFFF33; 
	font-size: 14px;
	float: right;
}

.templatemo-partners {
	border-top: 2px solid #cccccc;
}

.templatemo-partners .templatemo-partner-item {
    margin-bottom: 5px;
}

.templatemo-footer {
	border-top: 2px solid #cccccc; 
	margin-top: 100px;
}

.footer_container {
	margin-top:60px; 
	margin-bottom:20px;
}

.footer_bottom_content {
	margin: auto;
	margin-bottom: 30px;
	font-size: 14px;
	color:#333333;
}


ul.templatemo-project-gallery  li  a img:hover {
    border: 3px solid #ff7600;
}

.templatemo-gallery-category a {
	color:#333333; 
}

.templatemo-gallery-category a.active {
	color:#e67e22; 
	text-decoration:none;
}

.templatemo-gallery-category a:focus {
	color:#e67e22;
	text-decoration:none;	
}

.templatemo-gallery-category a:hover {
	color:#e67e22; 
	text-decoration:none;
}

.link_orange:hover {
    text-decoration:none;
}
.templatemo-project-gallery {         
    margin:0 0 0 0;
    margin-top:30px;
    margin-left: -40px;
}
.templatemo-project-gallery li {     
    list-style:none;
    margin-bottom:25px;           
}
.templatemo-project-gallery li img {
  cursor: pointer;
}

.templatemo-tweets {
    background-color: #8996a0;
    min-height:200px;
    font-family:  'Open Sans', sans-serif;
    font-size:20px;
    color:#ffffff;
    margin-top:100px;
}

.form-control {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    font-style: italic;
}

.btn_loadmore {
	margin-top:30px; 
	margin-bottom:80px;
}

.service-details-section {
    padding: 80px 0;
    background-color: #fff;
}

.service-details-section.alternate-bg {
    background-color: #f8f9fa;
}

.service-detail-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-item {
    padding-right: 20px;
}

.service-detail-item h3 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.3;
}

.service-detail-item p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 18px;
    text-align: justify;
}

.service-detail-item p:last-child {
    margin-bottom: 0;
}

.service-detail-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.service-detail-image:hover {
    box-shadow: 0 12px 35px rgba(255, 118, 0, 0.2);
    transform: translateY(-5px);
}

.cta-section-1,
.cta-section-2,
.cta-section-3 {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff3e6 0%, #ffe8cc 100%);
    text-align: center;
}

.cta-section-1 h3,
.cta-section-2 h3,
.cta-section-3 h3 {
    font-size: 26px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.cta-section-1 p,
.cta-section-2 p,
.cta-section-3 p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-section-1 .btn,
.cta-section-2 .btn,
.cta-section-3 .btn {
    margin-top: 10px;
}

@media (max-width: 768px) {
    .service-detail-col {
        margin-top: 30px;
    }
    
    .service-detail-item {
        padding-right: 0;
    }
    
    .service-detail-item h3 {
        font-size: 22px;
    }
    
    .service-details-section {
        padding: 50px 0;
    }
    
    .cta-section-1,
    .cta-section-2,
    .cta-section-3 {
        padding: 40px 0;
    }
    
    .cta-section-1 h3,
    .cta-section-2 h3,
    .cta-section-3 h3 {
        font-size: 20px;
    }
    
    .cta-section-1 p,
    .cta-section-2 p,
    .cta-section-3 p {
        font-size: 14px;
    }
}

@media (min-width:991px) and (max-width:1200px) {
    .templatemo-project-box, .project-overlay {
        height:170px;
        width:170px;
    }

    .templatemo-project-gallery {
        margin-left: -70px;
    }

    .templatemo-service-item-header {
        padding: 16px 10px 20px;
    }

    .templatemo-header-orange {
        min-width: 230px;
    }

    .team_box,  .team_box_over {
        height:220px;
        width:220px;
    }
	
}


@media (max-width:991px) {
    .team-inner {
        margin-top: 20px;
        margin-bottom: 20px;
    }
	
    .templatemo-btn-read-more {
        float:right;
        margin-bottom :40px; 
    }
}


@media (min-width:768px) and (max-width:990px) {
    .member-thumb .thumb-overlay {
        padding-left: 30%;
    }
    .templatemo-project-box , .project-overlay {
       height:130px;
       width:130px;
       padding-top: 0px;
    }

    .templatemo-project-gallery {
       margin-left: 10px; 
    }

    .blog_box{
       margin-right: -140px;
    }
}


@media (min-width: 768px) {
  .navbar-nav > li > a {
    padding-top: 9px;
    padding-bottom: 9px;
  } 
}

@media (max-width: 768px) {
    .member-thumb .thumb-overlay {
        padding-left: 40%;
       
    }
    .templatemo-btn-read-more {
            float:right;
            margin-bottom :40px; 
      }
}

@media (max-width: 380px) {
    .member-thumb .thumb-overlay {
            padding-left: 30%;

    }
	.templatemo-service-item-header {
		font-size: 16px;
		
		padding: 23px 10px 22px;
	}
	.templatemo-header-orange {
		min-width: 0px;
	}
	
}

@media (min-width:991px) and (max-width: 1200px) {
	 .team_hr {
		width: 37%; 
	}
}

@media (min-width:683px) and ( max-width: 991px) {
	 .team_hr {
		width: 33%;
	}
}

@media (min-width:585px) and ( max-width: 683px) {
        .member-thumb .thumb-overlay {
            padding-left: 25%;

        }
	 .team_hr {
		width: 30%;
	}
}

@media (min-width:536px) and ( max-width: 585px) {
	 .team_hr {
		width: 28%;
	}
}

@media  (min-width:410px) and  ( max-width: 536px) {
	 .team_hr {
		width: 21%;
	}
}

.faq-section {
    max-width: 800px;
    margin: 40px auto;
}

.faq-item {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-left: 4px solid #ff7600;
}

.faq-item h4 {
    color: #ff7600;
    margin-top: 0;
    font-weight: 600;
    font-size: 16px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.service-areas-content {
    padding: 20px 0;
}

.service-areas-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    text-align: center;
}

.service-areas-list li {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-left: 3px solid #ff7600;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.service-areas-list li:hover {
    background-color: #fff3e6;
    border-left-color: #ff7600;
    transform: translateY(-2px);
}

.service-areas-intro {
    text-align: center;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 30px auto;
    max-width: 900px;
}

.service-areas-cta {
    margin-top: 30px;
    margin-bottom: 40px;
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto;
}

.faq-panel {
    border: 1px solid #ddd;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 10px;
}

.faq-panel .panel-heading {
    padding: 0;
    background-color: #fff;
    border: none;
    border-bottom: 1px solid #eee;
}

.faq-panel .panel-title {
    font-size: 15px;
    font-weight: 600;
}

.faq-toggle {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-toggle:hover,
.faq-toggle:focus {
    color: #ff7600;
    background-color: #f9f9f9;
    text-decoration: none;
}

.faq-toggle[aria-expanded="true"] {
    color: #ff7600;
    background-color: #fff3e6;
}

.panel-collapse {
    border: none;
}

.faq-panel .panel-body {
    padding: 20px;
    background-color: #fafafa;
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.faq-panel .panel-body {
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .service-areas-list {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
        margin: 30px auto;
    }
    
    .service-areas-list li {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .faq-accordion {
        margin: 30px 15px;
    }
    
    .faq-toggle {
        padding: 12px 15px;
        font-size: 14px;
    }
}
