@charset "UTF-8";
/* This Is created by : Kavide Bryan */

/* CSS Reset */
body,header, nav,main,footer,h1,h2,h3,p,ul,li{
	margin: 0;
	padding: 0;
	border:0;
	}
body{
	background-color: #f4f4f4;
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
	color: #333;
}

header{
	background: #12174A;
	justify-content: space-between;
	padding: 15px 30px;
	display: flex;
	align-items: center;
}

nav{
	display: flex;
}

nav ul{
	list-style: none;
	display: flex;
	gap: 50px;
	margin: 0;
	padding: 0;
}

nav a{
	color: white;
	text-decoration: none;
	font-family: Arial,  sans-serif;
	font-weight: 500;
	padding: 10px 15px;
	border-radius: 4px;
	font-size: 1.20em;
	transition: background-color 0.3s ease;
	}
nav a:hover{
	background-color:black;
}

#container{
	margin: 0 auto;
}
.logo-container {
	mix-blend-mode:multiply;
	width: auto;
	height: auto;
	
}

/* Main Content Styles */
        main {
            padding: 40px 20px;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 40px;
            color: #2c3e50;
        }
        
        .page-title h2 {
            font-size: 2.2rem;
            margin-bottom: 10px;
        }
        
        .page-title p {
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
        }
        

/* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit,minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .service-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .service-icon {
            background: #3498db;
            color: white;
            text-align: center;
            padding: 25px;
            font-size: 2.5rem;
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .service-content p {
            color: #7f8c8d;
            margin-bottom: 20px;
        }
        
        .price {
            font-size: 1.8rem;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .price-range {
            font-size: 1.4rem;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .btn {
            display: inline-block;
            background: #3498db;
            color: white;
            padding: 10px 20px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            transition: background 0.3s ease;
        }
        
        .btn:hover {
            background: #2980b9;
        }
        
        /* Call to Action Section */
        .cta-section {
            background: #2c3e50;
            color: white;
            padding: 50px 30px;
            text-align: center;
            border-radius: 8px;
            margin-bottom: 40px;
        }
        
        .cta-section h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            max-width: 600px;
            margin: 0 auto 25px;
            color: #ecf0f1;
        }
        
        .cta-btn {
            display: inline-block;
            background: #e74c3c;
            color: white;
            padding: 12px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: background 0.3s ease;
        }
        
        .cta-btn:hover {
            background: #c0392b;
        }
        

/* Hero section styling */
        .hero {
            position: relative;
            width: 100%;
            margin-bottom: 2rem;
        }
        
        .hero-img {
            width: 100%;
            height: auto;
            max-height: 500px;
            object-fit: cover;
        }

/* Content section styling */
        .content-section {
            padding: 2rem;
            text-align: center;
        }

/* Map Section */
        .map-section {
            margin-bottom: 50px;
        }
        
        .map-section h3 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 1.5rem;
            text-align: center;
        }
        
        .map-container {
            height: 400px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            background: #e9ecef;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #7f8c8d;
            font-size: 1.1rem;
        }
	
/* Social Media and Footer Styles */


footer {
	background-color: #34495e;
	color: white;
	padding: 40px 30px 20px;
	margin-top: 50px;
}

 .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

.footer-section h3 {
            color: #3498db;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .footer-section p {
            color: white;
            margin-bottom: 20px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: #2c3e50;
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: background 0.3s ease;
        }
        
        .social-links a:hover {
            background: #3498db;
        }
        
        .quick-links {
            list-style: none;
        }
        
        .quick-links li {
            margin-bottom: 10px;
        }
        
        .quick-links a {
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .quick-links a:hover {
            color: #3498db;
        }
        
        .contact-info {
            list-style: none;
        }
        
        .contact-info li {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: #3498db;
            width: 20px;
        }
        
        .contact-info a {
            color: #ecf0f1;
            text-decoration: none;
        }
        
        .contact-info a:hover {
            color: #3498db;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2c3e50;
            color: #bdc3c7;
            font-size: 0.9rem;
        }
        
/* Contact Form */
        .contact-form {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .contact-form h3 {
            color: #2c3e50;
            margin-bottom: 25px;
            font-size: 1.5rem;
            border-bottom: 2px solid #3498db;
            padding-bottom: 10px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #2c3e50;
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        
 /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .contact-details-section {
            background: #34495e;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .contact-info h3 {
            color: #2c3e50;
            margin-bottom: 25px;
            font-size: 1.5rem;
            border-bottom: 2px solid #3498db;
            padding-bottom: 10px;
        }
        
        .contact-details {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .contact-details li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            padding: 15px;
            background: white;
            border-radius: 6px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .contact-details li:hover {
            transform: translateX(5px);
        }
        
        .contact-details i {
            background: #3498db;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .contact-text h4 {
            color: #2c3e50;
            margin-bottom: 5px;
        }
        
        .contact-text p {
            color: #7f8c8d;
        }
        
        .business-hours {
            margin-top: 30px;
        }
        
        .business-hours h4 {
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .hours-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .hours-table tr {
            border-bottom: 1px solid #e9ecef;
        }
        
        .hours-table td {
            padding: 10px 5px;
        }
        
        .hours-table td:first-child {
            font-weight: 500;
            color: #2c3e50;
        }
        
        .hours-table td:last-child {
            color: #7f8c8d;
            text-align: right;
        }

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
	
	.logo-container {
                margin-bottom: 15px;
                justify-content: center;
            }
            
    
    nav ul {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }
    
    .services-grid {
        grid-template-columns:1fr;
    }
    
    .contact-container {
        grid-template-columns:1fr;
    }
    
    .footer-content {
        grid-template-columns:1fr;
    }

	.reviews-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
	nav ul {
                justify-content: center;
                flex-wrap: wrap;
            }
            
            nav li {
                margin: 5px;
            }
}
/* Reviews Display */
        .reviews-section h3 {
            color: #2c3e50;
            margin-bottom: 25px;
            font-size: 1.5rem;
            border-bottom: 2px solid #3498db;
            padding-bottom: 10px;
        }
        
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .review-card {
            background: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            border-left: 4px solid #3498db;
            transition: transform 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
        }
        
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .reviewer-info {
            flex: 1;
        }
        
        .reviewer-name {
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 5px;
        }
        
        .review-date {
            color: #7f8c8d;
            font-size: 0.85rem;
        }
        
        .review-rating {
            color: #f39c12;
        }
        
        .review-service {
            background: #e8f4fc;
            color: #3498db;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 0.8rem;
            display: inline-block;
            margin-bottom: 10px;
        }
        
        .review-text {
            color: #555;
            line-height: 1.6;
        }
        
        .no-reviews {
            text-align: center;
            padding: 40px;
            color: #7f8c8d;
            font-style: italic;
        }
        
        /* Statistics Section */
        .stats-section {
            background: #2c3e50;
            color: white;
            padding: 30px;
            border-radius: 8px;
            margin-bottom: 40px;
        }
        
        .stats-section h3 {
            text-align: center;
            margin-bottom: 25px;
            font-size: 1.5rem;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit,  minmax(200px, 1fr));
            gap: 20px;
            text-align: center;
        }
        
        .stat-item {
            padding: 15px;
        }
        
        .stat-value {
            font-size: 2.5rem;
            font-weight: bold;
            color: #3498db;
            margin-bottom: 5px;
        }
        
        .stat-label {
            color: #ecf0f1;
            font-size: 0.9rem;
        }

/* Review Form */
        .review-form-section {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 50px;
        }
        
        .review-form-section h3 {
            color: #2c3e50;
            margin-bottom: 25px;
            font-size: 1.5rem;
            border-bottom: 2px solid #3498db;
            padding-bottom: 10px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #2c3e50;
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        
        .rating-input {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
        }
        
        .rating-input input {
            display: none;
        }
        
        .rating-input label {
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        
        .rating-input label:hover,
        .rating-input input:checked ~ label {
            color: #f39c12;
        }
        
        .btn {
            display: inline-block;
            background: #3498db;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .btn:hover {
            background: #2980b9;
        }
        
        .btn-block {
            display: block;
            width: 100%;
        }
        


