 :root {
            --primary-blue: #1e3a8a;
            --primary-pink: #e91e8c;
        }
		
		body {
            margin: 0;
            padding: 0;
			font-family: -apple-system, BlinkMacSystemFont, 'Nunito', Roboto, Oxygen, Ubuntu, sans-serif;
        }
        
        .hero-section {
            background-color: #1a1a1a;
            background-image: 
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 40px,
                    rgba(255, 255, 255, 0.05) 40px,
                    rgba(255, 255, 255, 0.05) 41px
                ),
                repeating-linear-gradient(
                    90deg,
                    transparent,
                    transparent 40px,
                    rgba(255, 255, 255, 0.05) 40px,
                    rgba(255, 255, 255, 0.05) 41px
                );
            color: white;
            padding: 80px 0;
        }
        
        .orange-text {
            color: #ff6b35;
            font-size: 0.9rem;
            letter-spacing: 2px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-description {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }
        
        .call-btn {
            background-color: #007bff;
            border: none;
            border-radius: 50px;
            padding: 12px 30px;
            font-size: 1rem;
            color: white;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: background-color 0.3s;
            cursor: pointer;
        }
        
        .call-btn:hover {
            background-color: #0056b3;
        }
        
        .star {
            color: #ffc107;
            font-size: 1.2rem;
        }
        
        .rating-text {
            font-size: 1rem;
            margin-left: 1rem;
        }
        
        .phone-icon-wrapper {
            background-color: white;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
        }
        
        .phone-number {
            font-size: 1.5rem;
            margin: 0;
        }
        
        .main-image {
            max-width: 450px;
            margin-left: auto;
            border-radius: 1.5rem;
            overflow: hidden;
           
        }
        
        .main-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .floating-card {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: white;
            border-radius: 1.5rem;
            padding: 1rem;
            width: 280px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }
        
        .floating-card img {
            border-radius: 0.75rem;
            width: 100%;
            height: auto;
        }
        
        .image-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.5rem;
        }
        
        .image-grid .full-width {
            grid-column: 1 / -1;
        }
        
        @media (max-width: 991px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .floating-card {
                position: static;
                margin-top: 2rem;
                margin-left: auto;
                margin-right: auto;
            }
        }
        
        @media (max-width: 576px) {
            .hero-section {
                padding: 40px 0;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .floating-card {
                width: 100%;
            }
        }
 
 
 /* Services Section */
        .services-section {
            background: #f8f9fa;
            padding: 60px 0;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 40px;
        }

        .services-subtitle {
            color: #6c757d;
            font-weight: 600;
            margin-bottom: 25px;
            font-size: 0.95rem;
        }

        .service-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 10px;
            background: white;
            border-radius: 10px;
            margin-bottom: 15px;
            cursor: pointer;
            transition: all 0.1s;
            border: 1px solid #e9ecef;
            position: relative;
        }

        .service-item:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transform: translateY(-2px);background: #FFFFE0;
        }

        .service-item i {
            font-size: 1.3rem;
            color: #6c757d;
            width: 24px;
        }

        .service-item span {
            color: #495057;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .service-badge {
            position: absolute;
            top: -8px;
            right: 10px;
            background: #8c1a1a;
            color: #FFFFE0;
            font-size: 0.6rem;
            padding: 1px 6px;
            border-radius: 10px;
            font-weight: 500;
			
        }

        .view-all {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-block;
            margin-top: 10px;
        }

        .view-all:hover {
            text-decoration: underline;
        }
		
		
		 /* CTA Section */
        .cta-section {
            background: var(--primary-blue);
            padding: 60px 0;
            text-align: center;
            color: white;
        }

        .cta-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-book-now {
            background: var(--primary-pink);
            color: white;
            border: none;
            padding: 12px 40px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 1rem;
			text-decoration:none;
        }

        .btn-request-quote {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 12px 40px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 1rem;
        }

        .btn-book-now:hover,
        .btn-request-quote:hover {
            opacity: 0.9;
        }



.map-section {
            background-color: #f8f9fa;
            padding: 60px 0;
        }

        .cont-area {
          
            padding: 20px;
			vertical-align:middle;
         
        }

        .sec-title {
            font-size: 2rem;
            font-weight: 400;
            color: #333;
            line-height: 1.4;
            margin-bottom: 30px;
        }

        .director-info {
            margin-top: 40px;
        }

        .director-name {
            font-size: 1.5rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }

        .director-title {
            color: #666;
            font-size: 1rem;
            margin-bottom: 20px;
        }

        .coverage-heading {
            font-size: 1.1rem;
            color: #333;
            font-weight: 500;
        }

        .map-container {
            background-color: white;
          
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            height: 100%;
            min-height: 500px;
            position: relative;
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            min-height: 500px;
            background-color: #e9ecef;
			
            display: flex;
            align-items: left;
            justify-content: left;
            color: #6c757d;
            position: relative;
        }

        .business-info-card {
            position: absolute;
            top: 20px;
            left: 20px;
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            z-index: 10;
            max-width: 280px;
        }

        .business-name {
            font-size: 1rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }

        .business-address {
            font-size: 0.875rem;
            color: #666;
            margin-bottom: 8px;
        }

        .rating-section {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }

        .rating-number {
            font-size: 1rem;
            font-weight: 600;
            color: #333;
        }

        .stars {
            color: #ffa500;
            font-size: 0.875rem;
        }

        .review-count {
            color: #1a73e8;
            font-size: 0.875rem;
            text-decoration: none;
        }

        .review-count:hover {
            text-decoration: underline;
        }

        .map-link {
            color: #1a73e8;
            font-size: 0.875rem;
            text-decoration: none;
            display: inline-block;
            margin-top: 5px;
        }

        .map-link:hover {
            text-decoration: underline;
        }

        .directions-icon {
            width: 24px;
            height: 24px;
            background-color: #4285f4;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.75rem;
            margin-right: 5px;
            vertical-align: middle;
        }

        @media (max-width: 991px) {
            .section-title {
                font-size: 1.5rem;
            }

            .content-area {
                padding: 30px 20px;
            }

            .map-container {
                margin-top: 30px;
            }
        }

        @media (max-width: 576px) {
            .map-section {
                padding: 40px 0;
            }

            .business-info-card {
                left: 10px;
                right: 10px;
                max-width: calc(100% - 20px);
            }
        }
		
		
		.property-services {
            padding: 60px 0;
            background-color: #f8f9fa;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-subtitle {
            color: #6c757d;
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        
        .section-title {
            color: #1e3a5f;
            font-size: 32px;
            font-weight: 600;
        }
        
        .service-card {
            border: 3px solid #FFFFFF;
            border-radius: 15px;
            padding: 20px;
            background: #EDF4FE;
            height: 100%;
            transition: transform 0.1s ease, box-shadow 0.1s ease;
        }
        
        .service-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .service-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
            margin-bottom: 20px;
        }
        
        .service-title {
            color: #2c3e50;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .service-description {
            color: #6c757d;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .learn-more {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        
        .learn-more:hover {
            color: #4a90e2;
        }
		
		 .pest-control-section {
            padding: 60px 0;
            background-color: #f5f5f5;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .section-subtitle {
            color: #6c757d;
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        
        .section-title {
            color: #2c3e50;
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 30px;
        }
        
        .section-description {
            color: #495057;
            font-size: 15px;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto 50px;
        }
        
        .section-description a {
            color: #2c3e50;
            text-decoration: underline;
        }
        
        .services-container {
            border: 2px solid #2c3e50;
            border-radius: 15px;
            overflow: hidden;
            background: white;
        }
        
        .service-column {
            padding: 40px 30px;
            position: relative;
        }
        
        .service-column:not(:last-child) {
            border-right: 2px solid #2c3e50;
        }
        
        .service-number {
            color: #6c757d;
            font-size: 13px;
            font-weight: 500;
            margin-bottom: 10px;
        }
        
        .service-title {
            color: #2c3e50;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .service-description {
            color: #6c757d;
            font-size: 14px;
            line-height: 1.7;
        }
        
        .service-description a {
            color: #6c757d;
            font-style: italic;
        }
        
        .service-divider {
            width: 80px;
            height: 2px;
            background-color: #2c3e50;
            margin-top: 30px;
        }
        
        @media (max-width: 991px) {
            .service-column:not(:last-child) {
                border-right: none;
                border-bottom: 2px solid #2c3e50;
            }
        }
		
		
		
.pest-control-section {
            padding: 60px 0;
            background-color: #f5f5f5;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .section-subtitle {
            color: #6c757d;
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        
        .section-title {
            color: #2c3e50;
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 30px;
        }
        
        .section-description {
            color: #495057;
            font-size: 15px;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto 50px;
        }
        
        .section-description a {
            color: #2c3e50;
            text-decoration: underline;
        }
        
        .services-container {
            border: 2px solid #2c3e50;
            border-radius: 15px;
            overflow: hidden;
            background: white;
        }
        
        .service-column {
            padding: 40px 30px;
            position: relative;
        }
        
        .service-column:not(:last-child) {
            border-right: 2px solid #2c3e50;
        }
        
        .service-number {
            color: #6c757d;
            font-size: 13px;
            font-weight: 500;
            margin-bottom: 10px;
        }
        
        .service-title {
            color: #2c3e50;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .service-description {
            color: #6c757d;
            font-size: 14px;
            line-height: 1.7;
        }
        
        .service-description a {
            color: #6c757d;
            font-style: italic;
        }
        
        .service-divider {
            width: 80px;
            height: 2px;
            background-color: #2c3e50;
            margin-top: 30px;
        }
        
        @media (max-width: 991px) {
            .service-column:not(:last-child) {
                border-right: none;
                border-bottom: 2px solid #2c3e50;
            }
        }		
		
		
		
		.reviews-section {
            padding: 60px 0;
            background-color: #f8f9fa;
        }
        
        .review-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            position: relative;
        }
        
        .image-collage {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            margin-bottom: 30px;
            max-width: 250px;
        }
        
        .collage-item {
            width: 100%;
            aspect-ratio: 1;
            border-radius: 50%;
            overflow: hidden;
            position: relative;
        }
        
        .collage-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .collage-item.solid {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        
        .collage-item.solid-orange {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }
        
        .collage-item.solid-blue {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }
        
        .collage-item.solid-peach {
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
        }
        
        .collage-item.large {
            grid-column: span 2;
            grid-row: span 2;
        }
        
        .review-text {
            color: #2c3e50;
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .reviewer-name {
            color: #2c3e50;
            font-weight: 600;
            font-size: 14px;
        }
        
        .quote-mark {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 60px;
            color: #e9ecef;
            font-family: Georgia, serif;
            line-height: 1;
        }
		
		
		
		
		 .sectors-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .section-intro {
            text-align: center;
            color: #555;
            font-size: 1.1rem;
            margin-bottom: 50px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        
        .sector-card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            background: white;
            padding: 30px 20px;
        }
        
        .sector-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        
        .sector-icon {
            font-size: 3rem;
            color: #0066cc;
            margin-bottom: 20px;
        }
        
        .sector-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 15px;
        }
        
        .sector-description {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .card-body {
            text-align: center;
            padding: 0;
        }
		
		
		.faq-section {
    background-color: #f8f9fa;
}








.accordion-item {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 1px;
}

.accordion-button {
    font-weight: 500;
    color: #2c3e50;
	padding-top:1px;
	padding-bottom:1px;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #28a745;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #28a745;
}

.accordion-body {
    padding: 1rem;
    color: #6c757d;
}

.faq-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 991px) {
    .faq-image-container {
        margin-top: 2px;
    }
}




/* Service Categories */
.servicez-categories {
	background: white;
	padding: 40px 0;
	border-top: 3px solid #e9ecef;
}

.servicez-item {
	text-align: center;
	padding: 20px 10px;
	cursor: pointer;
	transition: all 0.3s;
	border-bottom: 3px solid transparent;
}

.servicez-item:hover {
	background: #f8f9fa;
}

.servicez-item.active {
	border-bottom: 3px solid var(--primary-blue);
}

.servicez-item i {
	font-size: 1.2rem;
	color: #6c757d;
	margin-bottom: 4px;
}

.servicez-item.active i {
	color: var(--primary-blue);
}

.servicez-item span {
	display: block;
	color: #6c757d;
	font-weight: 500;
	font-size: 0.95rem;
}

.servicez-item.active span {
	color: var(--primary-blue);
}
		
		
		
.card-img-top {
    width: 600px; /* You can set the dimensions to whatever you want */
    height: 200px;
    object-fit: cover;
	margin-bottom:8px;
}



/* TV Grid Styles */
.tv-grid-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.tv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.tv-grid-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tv-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tv-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.tv-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tv-grid-item:hover .tv-thumbnail img {
    transform: scale(1.05);
}

.tv-content {
    padding: 20px;
}

.tv-title {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    line-height: 1.4;
}

.tv-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tv-title a:hover {
    color: #0073aa;
}

.tv-excerpt {
    margin-bottom: 15px;
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
}

.tv-read-more {
    display: inline-block;
    padding: 8px 20px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    transition: background 0.3s ease;
}

.tv-read-more:hover {
    background: #005177;
}

/* Pagination Styles */
.tv-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.tv-pagination a,
.tv-pagination span {
    padding: 10px 15px;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.tv-pagination a:hover {
    background: #0073aa;
    color: #fff;
}

.tv-pagination .current {
    background: #0073aa;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .tv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .tv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tv-grid-container {
        padding: 10px;
    }
}

.no-tv-posts {
    text-align: center;
    padding: 40px;
    color: #666;
}


.bgyellow
{
	background-color:#fffac3;
} 

 