/* 
* Rebyt Data Recovery Solutions
* Main Stylesheet
*/

/* ===== Base Styles ===== */
:root {
    --primary-color: #f39c12;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --light-color: #f8f9fa;
    --dark-color: #1a1a1a;
    --text-color: #333333;
    --text-light: #777777;
    --border-color: #e1e1e1;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 5px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-color);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
}

.section-subtitle:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn:hover:before {
    left: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-light {
    background-color: #ffffff;
    color: var(--secondary-color);
}

.btn-light:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid var(--border-color);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ===== Header ===== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #ffffff;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.header-top {
    background-color: var(--secondary-color);
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: #ffffff;
    margin-right: 20px;
    font-size: 14px;
}

.contact-info a i {
    margin-right: 5px;
}

.social-links a {
    color: #ffffff;
    margin-left: 15px;
    font-size: 14px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.header-main {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 60px;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-right: 30px;
}

.main-nav ul li:last-child {
    margin-right: 0;
}

.main-nav ul li a {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

.main-nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-nav ul li a:hover:after,
.main-nav ul li a.active:after {
    width: 100%;
}

.main-nav ul li a.quote-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: var(--border-radius);
}

.main-nav ul li a.quote-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.main-nav ul li a.quote-btn:after {
    display: none;
}

.header-contact {
    display: flex;
    align-items: center;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    transition: var(--transition);
}

.contact-icon:hover {
    transform: rotate(360deg);
    background-color: var(--secondary-color);
}

.contact-icon i {
    color: #ffffff;
    font-size: 20px;
}

.contact-info span {
    display: block;
    font-size: 14px;
    color: var(--text-light);
}

.contact-info a {
    font-weight: 700;
    color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--secondary-color);
    margin-bottom: 5px;
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu-toggle span:last-child {
    margin-bottom: 0;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    padding: 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    text-align: right;
    margin-bottom: 30px;
}

.close-menu i {
    font-size: 24px;
    color: var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
}

.close-menu i:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu ul li a {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 16px;
    display: block;
    padding: 5px 0;
    transition: var(--transition);
}

.mobile-menu ul li a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.mobile-contact {
    margin-top: 30px;
}

.mobile-contact a {
    display: block;
    color: var(--text-color);
    margin-bottom: 15px;
    transition: var(--transition);
}

.mobile-contact a:hover {
    color: var(--primary-color);
}

.mobile-contact a i {
    margin-right: 10px;
    color: var(--primary-color);
}

.mobile-social {
    margin-top: 30px;
    display: flex;
}

.mobile-social a {
    width: 35px;
    height: 35px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.mobile-social a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
}

/* ===== Hero Section with Animated Slider ===== */
.hero-section {
    padding-top: 0px;
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-slide-bg:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    max-width: 600px;
    padding: 100px 0;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 10px;
}

.slider-nav {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.slider-prev,
.slider-next {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--primary-color);
}

.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url('../images/wave-shape.png');
    background-size: cover;
    background-position: center;
}

/* ===== About Section ===== */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.experience-badge .years {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    text-align: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(243, 156, 18, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: rotateY(180deg);
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===== How It Works Section ===== */
.process-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 0;
}

.process-timeline {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--primary-color);
}

.process-step {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-content {
    width: 45%;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.process-step:nth-child(odd) .step-content {
    margin-right: auto;
}

.process-step:nth-child(even) .step-content {
    margin-left: auto;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(243, 156, 18, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 24px;
    transition: var(--transition);
}

.step-content:hover .step-icon {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: rotateY(180deg);
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
}

.step-content p {
    color: var(--text-light);
    text-align: center;
}

.process-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===== Counter Section ===== */
.counter-section {
    background-image: url('../images/counter-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.counter-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.9);
}

.counter-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.counter-item {
    text-align: center;
    color: #ffffff;
}

.counter-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.counter-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.counter-text {
    font-size: 18px;
    font-weight: 500;
}

/* ===== Services Section ===== */
/* Services Section Styling */
.services-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.section-description {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    color: #666;
    font-size: 18px;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #f39c12;
    opacity: 0.05;
    z-index: -1;
    transition: all 0.3s ease;
}

.service-item:hover:before {
    height: 100%;
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(243, 156, 18, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    transition: all 0.5s ease;
}

.service-icon i {
    font-size: 36px;
    color: #f39c12;
    transition: all 0.5s ease;
}

.service-item:hover .service-icon {
    background-color: #f39c12;
    transform: rotateY(180deg);
}

.service-item:hover .service-icon i {
    color: #ffffff;
    transform: rotateY(180deg);
}

.service-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.service-item:hover h3 {
    color: #f39c12;
}

.service-item p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link {
    color: #f39c12;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #e67e22;
}

.service-link:hover i {
    transform: translateX(5px);
}

.services-cta {
    text-align: center;
    margin-top: 30px;
}

.services-cta .btn {
    margin: 0 10px;
    padding: 12px 30px;
    font-weight: 500;
}

.btn-primary {
    background-color: #f39c12;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1a2530;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-description {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-item {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .service-icon i {
        font-size: 30px;
    }
    
    .service-item h3 {
        font-size: 20px;
    }
    
    .services-cta .btn {
        display: block;
        margin: 10px auto;
        max-width: 80%;
    }
}

/* ===== Why Choose Us Section ===== */
.why-choose-us-section {
    background-image: url('../images/why-choose-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.why-choose-us-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
}

.why-choose-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-choose-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
}

.why-choose-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(243, 156, 18, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    color: var(--primary-color);
    font-size: 24px;
    flex-shrink: 0;
    transition: var(--transition);
}

.why-choose-item:hover .why-choose-icon {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: rotateY(180deg);
}

.why-choose-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.why-choose-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

.why-choose-cta {
    text-align: center;
    margin-top: 50px;
    position: relative;
}

/* ===== Service Details Section ===== */
.service-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-detail-item {
    display: flex;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-detail-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-detail-image {
    flex: 1;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-detail-item:hover .service-detail-image img {
    transform: scale(1.1);
}

.service-detail-content {
    flex: 1;
    padding: 30px;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-detail-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* ===== FAQ Section ===== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 18px;
    margin-bottom: 0;
    transition: var(--transition);
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background-color: rgba(243, 156, 18, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 20px;
    max-height: 1000px;
}

.faq-answer p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===== Quote Section ===== */
.quote-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.quote-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.quote-form .form-group {
    flex: 1;
    margin-bottom: 20px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--text-color);
    transition: var(--transition);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.1);
}

.quote-form textarea {
    height: 150px;
    resize: none;
}

.char-count {
    font-size: 14px;
    color: var(--text-light);
    text-align: right;
    margin-top: 5px;
}

/* Testimonials Section Styling */
.testimonials-section {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.testimonials-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
}

.google-badge {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #444;
    font-size: 18px;
}

.google-badge i {
    color: #4285F4;
    font-size: 24px;
    margin-right: 8px;
}

.star-rating {
    margin-top: 10px;
}

.star-rating i {
    color: #FFC107;
    font-size: 18px;
    margin-right: 2px;
}

.star-rating span {
    font-size: 14px;
    color: #666;
    margin-left: 10px;
}

.write-review-btn {
    background-color: #f39c12;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.write-review-btn i {
    margin-right: 8px;
}

.write-review-btn:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-item {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    margin-bottom: 15px;
}

.testimonial-stars i {
    color: #FFC107;
    font-size: 16px;
    margin-right: 2px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content p:before {
    content: '\201C';
    font-size: 60px;
    font-family: Georgia, serif;
    color: rgba(243, 156, 18, 0.2);
    position: absolute;
    left: -20px;
    top: -20px;
    z-index: -1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(243, 156, 18, 0.1);
    color: #f39c12;
}

.author-avatar i {
    font-size: 30px;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px;
    color: #2c3e50;
}

.author-info span {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.review-date {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
}

.review-date i {
    margin-right: 5px;
    font-size: 12px;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

.testimonial-prev,
.testimonial-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #2c3e50;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: #f39c12;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-dots {
    display: flex;
    margin: 0 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #f39c12;
    transform: scale(1.2);
}

.testimonials-cta {
    text-align: center;
    margin-top: 30px;
}

.testimonials-cta .btn {
    margin: 0 10px;
    padding: 12px 25px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.testimonials-cta .btn i {
    margin-right: 8px;
}

/* JavaScript for Testimonial Slider */
.testimonial-item {
    display: none;
}

.testimonial-item:first-child {
    display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .write-review-btn {
        margin-top: 20px;
    }
    
    .testimonial-item {
        padding: 20px;
    }
    
    .testimonials-cta .btn {
        display: block;
        margin: 10px auto;
        max-width: 80%;
    }
}

/* ===== Contact Section ===== */
.contact-container {
    display: flex;
    gap: 30px;
}

.contact-info {
    flex: 1;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.contact-info-header {
    margin-bottom: 30px;
}

.contact-info-header h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.contact-info-header p {
    color: var(--text-light);
}

.contact-info-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: var(--primary-color);
    transition: var(--transition);
}

.contact-info-item:hover .icon {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: rotateY(180deg);
}

.contact-social {
    margin-top: 30px;
}

.contact-social h4 {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px) rotate(360deg);
}

.contact-form-container {
    flex: 1;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.contact-form-header {
    margin-bottom: 30px;
}

.contact-form-header h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.contact-form-header p {
    color: var(--text-light);
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    flex: 1;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--text-color);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.1);
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

/* Contact Section Styling */
.contact-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.section-description {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
    color: #666;
    font-size: 18px;
    line-height: 1.6;
}

.contact-container {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

/* Contact Info Card */
.contact-info-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    padding: 40px;
    height: 100%;
}

.contact-info-header {
    margin-bottom: 30px;
    border-bottom: 2px solid #f39c12;
    padding-bottom: 15px;
}

.contact-info-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.contact-info-header p {
    color: #666;
    font-size: 16px;
}

.contact-info-content {
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(243, 156, 18, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: #f39c12;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover .info-icon {
    background-color: #f39c12;
    color: #ffffff;
    transform: rotateY(180deg);
}

.info-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.info-details p {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.5;
}

.info-details a {
    color: #f39c12;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.info-details a:hover {
    color: #e67e22;
}

.direction-link {
    margin-top: 8px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}

.direction-link i {
    margin-right: 5px;
}

/* Social Connect */
.social-connect {
    margin-bottom: 30px;
}

.social-connect h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #f39c12;
    color: #ffffff;
    transform: translateY(-5px);
}

/* Business Hours */
.business-hours {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.business-hours h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.business-hours h4 i {
    margin-right: 8px;
    color: #f39c12;
}

.business-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-hours ul li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 14px;
    color: #666;
}

.business-hours ul li:last-child {
    border-bottom: none;
}

.business-hours ul li span {
    font-weight: 600;
    color: #2c3e50;
}

/* Contact Form Card */
.contact-form-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.form-header {
    margin-bottom: 30px;
    border-bottom: 2px solid #f39c12;
    padding-bottom: 15px;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.form-header p {
    color: #666;
    font-size: 16px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
    font-size: 14px;
}

.form-group .required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #f39c12;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
    outline: none;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
}

.form-checkbox input {
    width: auto;
    margin-right: 10px;
    margin-top: 3px;
}

.form-checkbox label {
    font-size: 13px;
    color: #666;
    margin-bottom: 0;
}

.form-checkbox a {
    color: #f39c12;
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.form-submit {
    margin-top: 30px;
}

.submit-btn {
    background-color: #f39c12;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.submit-btn i {
    margin-right: 8px;
}

.submit-btn:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Map Section */
.map-section {
    padding-bottom: 80px;
}

.map-container {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info-card,
    .contact-form-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .map-container {
        height: 350px;
    }
}

/* ===== Map Section ===== */
.map-section {
    padding-bottom: 80px;
}

.map-container {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* ===== CTA Section ===== */
.cta-section {
    background-color: var(--secondary-color);
    padding: 80px 0;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-content {
    max-width: 600px;
}

.cta-content h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

.cta-button .btn {
    padding: 15px 30px;
    font-size: 18px;
}

.cta-button .btn i {
    margin-right: 10px;
}

/* ===== Footer Section ===== */
.footer-section {
    background-color: #1a1a1a;
    color: rgba(255, 255, 255, 0.8);
    padding-top: 80px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    max-height: 60px;
}

.footer-contact {
    display: flex;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.footer-contact-item i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-middle {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-widget ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    margin-bottom: 20px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px) rotate(360deg);
}

.whatsapp-button a {
    display: inline-flex;
    align-items: center;
    background-color: #25d366;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.whatsapp-button a:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-button a i {
    margin-right: 10px;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-bottom a {
    color: var(--primary-color);
}

/* ===== Floating Buttons ===== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 99;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #ffffff;
}

.call-float {
    position: fixed;
    bottom: 170px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 99;
    transition: var(--transition);
}

.call-float:hover {
    transform: scale(1.1);
    color: #ffffff;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-5px);
}

/* ===== Responsive Styles ===== */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .counter-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .header-top {
        display: none;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-contact {
        display: none;
    }
    
    .hero-section {
        height: auto;
        min-height: 500px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 100px 0 150px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-details-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .cta-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-button {
        margin-top: 30px;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 30px;
    }
    
    .footer-contact {
        flex-direction: column;
    }
    
    .footer-contact-item {
        margin-right: 0;
        margin-bottom: 15px;
        justify-content: center;
    }
    
    .footer-middle {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        left: 30px;
    }
    
    .step-number {
        left: 30px;
    }
    
    .process-step {
        padding-left: 60px;
    }
    
    .step-content {
        width: 100%;
    }
    
    .process-step:nth-child(odd) .step-content,
    .process-step:nth-child(even) .step-content {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .footer-middle {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 24px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .quote-form-container,
    .contact-info,
    .contact-form-container {
        padding: 30px;
    }
    
    .reviews-container {
        padding: 30px;
    }
    
    .counter-container {
        grid-template-columns: 1fr;
    }
    
    .why-choose-item {
        flex-direction: column;
        text-align: center;
    }
    
    .why-choose-icon {
        margin: 0 auto 20px;
    }
}

/* Complete Header Redesign - Replace all existing header CSS with this */

/* Reset header styles */
#header, .header-top, .header-main, 
.container, .header-top-inner, .header-main-inner,
.logo, .main-nav, .header-buttons, .header-contact,
.contact-info, .social-links {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main header container */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: auto;
}

/* Top bar */
.header-top {
    background: #2c3e50;
    height: 36px;
    display: flex;
    align-items: center;
}

.header-top .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Contact info in top bar */
.contact-info {
    display: flex;
    align-items: center;
}

.contact-info a {
    color: #fff;
    font-size: 12px;
    margin-right: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.contact-info a i {
    margin-right: 5px;
    font-size: 12px;
}

/* Social links in top bar */
.social-links {
    display: flex;
    align-items: center;
}

.social-links a {
    color: #fff;
    font-size: 12px;
    margin-left: 10px;
    text-decoration: none;
}

/* Main navigation bar */
.header-main {
    height: 70px;
    background: #fff;
}

.header-main .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    height: 100%;
}

.header-main-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo */
.logo {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 45px;
    width: auto;
}

/* Main navigation */
.main-nav {
    height: 100%;
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.main-nav ul li {
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0;
}

.main-nav ul li a {
    color: #2c3e50;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 0 12px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    transition: color 0.3s;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: #f39c12;
}

.main-nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #f39c12;
    transition: width 0.3s;
}

.main-nav ul li a:hover:after,
.main-nav ul li a.active:after {
    width: 100%;
}

/* Header buttons and contact */
.header-buttons {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-buttons .btn {
    background: #f39c12;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    margin-right: 15px;
    transition: background 0.3s;
}

.header-buttons .btn:hover {
    background: #e67e22;
}

/* WhatsApp contact */
.header-contact {
    display: flex;
    align-items: center;
}

.contact-icon {
    width: 32px;
    height: 32px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.contact-icon i {
    color: #fff;
    font-size: 16px;
}

.header-contact .contact-info {
    display: flex;
    flex-direction: column;
}

.header-contact .contact-info span {
    font-size: 10px;
    color: #777;
    line-height: 1.2;
}

.header-contact .contact-info a {
    font-size: 12px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    line-height: 1.2;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: #2c3e50;
    border-radius: 2px;
}

/* Body padding to account for fixed header */
body {
    padding-top: 20px; /* 36px top bar + 70px main header */
}

/* Sticky header */
#header.sticky .header-top {
    display: none;
}

#header.sticky {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#header.sticky + body {
    padding-top: 70px;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .main-nav ul li a {
        padding: 0 8px;
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    body {
        padding-top: 70px;
    }
    
    .header-top {
        display: none;
    }
    
    .main-nav {
        display: none;
    }
    
    .header-contact {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-buttons {
        margin-left: auto;
    }
    
    .header-buttons .btn {
        margin-right: 15px;
    }
}

@media (max-width: 576px) {
    .header-buttons .btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .logo img {
        max-height: 40px;
    }
}

I see the issue now - the content is aligned to the left instead of being centered. This is likely because the container width or centering is not properly set up. Let me fix that with CSS that will center all your content properly:

```css
/* Fix content alignment - add this to your CSS */

/* Center all containers */
.container {
    width: 100% !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* Ensure header is centered */
#header .container,
.header-top .container,
.header-main .container {
    width: 100% !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Fix any section containers */
section .container {
    width: 100% !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Fix hero section alignment */
.hero-section .container,
.about-section .container,
.services-section .container,
.why-choose-us-section .container,
.contact-section .container,
.faq-section .container,
.reviews-section .container,
.quote-section .container {
    width: 100% !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Fix any row or grid layouts */
.row, 
.grid,
.about-content,
.services-grid,
.why-choose-grid,
.contact-container {
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Ensure full width sections have proper padding */
section {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Fix any potential float issues */
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

/* Ensure body has no unexpected margins */
body {
    margin: 0 !important;
    overflow-x: hidden !important;
}

/* Fix any potential box-sizing issues */
*, *:before, *:after {
    box-sizing: border-box !important;
}
```
/* CRITICAL FOOTER CENTERING FIX - ADD THIS TO YOUR CSS */
#footer .container,
.footer-main .container,
.footer-top .container,
.footer-bottom .container {
    width: 100% !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
    display: block !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
}

/* Force the row to be centered */
#footer .row {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Force columns to have equal width */
#footer .col-md-2,
#footer .col-md-3,
#footer .col-md-4 {
    flex: 1 !important;
    float: none !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
}

/* Top contact bar centering */
.footer-contact-bar {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
}

.footer-contact-bar > div {
    display: flex !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 1200px !important;
}

/* Override any Bootstrap or other framework grid settings */
@media (min-width: 768px) {
    #footer .container {
        width: 750px !important;
    }
}

@media (min-width: 992px) {
    #footer .container {
        width: 970px !important;
    }
}

@media (min-width: 1200px) {
    #footer .container {
        width: 1170px !important;
    }
}

/* Force copyright text to center */
.footer-bottom p {
    text-align: center !important;
    width: 100% !important;
}

/* Emergency fix for any potential float issues */
#footer:after {
    content: "" !important;
    display: table !important;
    clear: both !important;
}
.footer-middle

 {
    display: flex
;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: space-between;
    justify-content: space-around;
    align-items: stretch;
}
.footer-top

 {
    display: flex
;
    align-items: center;
    padding-bottom: 50px;
    padding-left: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    align-content: center;
}
This CSS focuses specifically on fixing the alignment issues by:

1. Ensuring all containers have proper width, max-width, and auto margins on left and right
2. Targeting specific sections to make sure they're centered
3. Fixing any potential float or box-sizing issues
4. Removing any unexpected margins or padding that might be causing the offset
5. Using !important to override any existing styles that might be causing the problem


Add this CSS to your stylesheet and it should center all your content properly without affecting the other styling improvements we've made to the header.



/* About Us Section Mobile Responsiveness */
@media only screen and (max-width: 767px) {
    #about .container {
        padding: 0 15px;
    }
    
    #about .row {
        flex-direction: column;
    }
    
    #about .col-md-6 {
        width: 100%;
        padding: 0;
    }
    
    #about .about-image {
        margin-bottom: 30px;
        height: 250px;
    }
    
    #about .about-image img {
        height: 100%;
        object-fit: cover;
    }
    
    #about .about-content {
        padding: 0;
    }
    
    #about .section-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    #about .about-text {
        font-size: 15px;
    }
    
    #about .about-features {
        margin-top: 20px;
    }
    
    #about .feature-item {
        margin-bottom: 15px;
    }
}

/* Our Services Section Mobile Responsiveness */
@media only screen and (max-width: 767px) {
    #services .container {
        padding: 0 15px;
    }
    
    #services .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    #services .service-item {
        width: 100%;
        margin-bottom: 30px;
    }
    
    #services .service-icon {
        margin-bottom: 15px;
    }
    
    #services .service-title {
        font-size: 18px;
    }
    
    #services .service-description {
        font-size: 14px;
    }
    
    /* Fix for service grid */
    #services .row {
        display: block;
    }
    
    #services .col-md-4, 
    #services .col-lg-4, 
    #services .col-sm-6 {
        width: 100%;
        float: none;
    }
}

/* General Mobile Responsiveness Fixes */
@media only screen and (max-width: 767px) {
    /* Fix container padding */
    .container {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        max-width: 100%;
    }
    
    /* Fix section padding */
    section {
        padding: 50px 0;
    }
    
    /* Fix headings */
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    /* Fix buttons */
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Fix row and column layout */
    .row {
        margin-left: -15px;
        margin-right: -15px;
    }
    
    [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Fix images */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Fix header for mobile */
    #header {
        padding: 15px 0;
    }
    
    .logo {
        max-width: 120px;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Fix all sliders */
    .slider-container {
        overflow: hidden;
        width: 100%;
    }
}

/* Logo Size Increase */
.logo img {
    max-height: 60px !important;
    width: auto !important;
}

.footer-logo {
    font-size: 36px !important;
    font-weight: 700 !important;
}

/* Mobile logo adjustments */
@media (max-width: 767px) {
    .logo img {
        max-height: 45px !important;
    }
    
    .footer-logo {
        font-size: 28px !important;
    }
}

.service-link
 {
    color: #f39c12;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex
;
    transition: all 0.3s ease;
    padding-right: 10rem;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}