/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    color: #222;
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Top Bar - Black Theme */
.top-bar {
    background: #222;
    color: #fff;
    padding: 18px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.top-bar-content a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
}

.top-bar-content a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Header & Navigation - Black Theme */
.header {
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: #222;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    padding: 12px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.nav-link:hover {
    color: #fff;
    background: #222;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(34, 34, 34, 0.2);
    border-color: #222;
}

.nav-link.active {
    color: #fff;
    background: #222;
    box-shadow: 0 8px 20px rgba(34, 34, 34, 0.2);
    transform: translateY(-2px);
    border-color: #222;
}

.mobile-menu-btn {
    display: none;
    background: #222;
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 26px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(34, 34, 34, 0.2);
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(34, 34, 34, 0.3);
}

/* Mobile Menu (VIP Card Style) - Black Theme */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    height: 100vh;
    background: #222;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    display: flex;
    flex-direction: column;
    border-radius: 0 0 0 30px;
    overflow: hidden;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 40px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-header h3 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.close-menu {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 24px;
}

.close-menu:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.mobile-menu-links {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 20px;
}

.mobile-menu-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-15px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mobile-menu-link i {
    font-size: 24px;
    width: 40px;
}

.mobile-menu-link span {
    font-size: 20px;
    font-weight: 600;
}

/* Main Content - More Spacious */
.main-content {
    padding: 60px 0 120px;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Slider Section - Bigger */
.slider-section {
    margin-bottom: 100px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.slider-container {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    border-radius: 25px;
}

.slider {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.slide {
    width: 33.333%;
    height: 100%;
    position: relative;
}

.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.slide:hover .slide-image {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 22px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Section Styles - Black Theme, Bigger */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-title {
    font-size: 48px;
    color: #222;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 50%;
    transform: translateX(50%);
    width: 120px;
    height: 5px;
    background: #222;
    border-radius: 3px;
}

.section-description {
    color: #666;
    font-size: 20px;
    max-width: 900px;
    margin: 40px auto 0;
    line-height: 1.8;
    font-weight: 400;
}

/* Services Section - Bigger Cards */
.services-grid, .all-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

/* Service Card - Black Theme, Bigger */
.service-card {
    perspective: 1200px;
    animation: cardAppear 0.8s ease-out;
}

@keyframes cardAppear {
    from { opacity: 0; transform: translateY(60px) rotateY(-20deg); }
    to { opacity: 1; transform: translateY(0) rotateY(0); }
}

.service-card:nth-child(even) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3n) {
    animation-delay: 0.4s;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    background: white;
    border: 2px solid #f0f0f0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card:hover .service-card-inner {
    transform: translateY(-15px) rotateX(5deg);
    border-color: #222;
    box-shadow: 0 30px 60px rgba(34, 34, 34, 0.15);
}

.service-card-inner::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #222, #444, #222);
    border-radius: 27px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover .service-card-inner::before {
    opacity: 1;
    animation: laserLight 2s linear infinite;
}

@keyframes laserLight {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.12);
}

.service-content {
    padding: 35px;
}

.service-title {
    font-size: 26px;
    color: #222;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.service-description {
    color: #666;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 400;
}

/* WhatsApp Button - Bigger */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25);
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.35);
}

.whatsapp-btn:active {
    transform: translateY(-2px);
}

/* View All Button - Black Theme, Bigger */
.view-all-btn-container {
    text-align: center;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.view-all-btn {
    display: inline-block;
    background: #222;
    color: white;
    padding: 22px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(34, 34, 34, 0.2);
    position: relative;
    overflow: hidden;
    border: 2px solid #222;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.view-all-btn:hover::before {
    left: 100%;
}

.view-all-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(34, 34, 34, 0.3);
    background: #333;
}

/* Reviews Section - Bigger */
.reviews-section {
    margin-top: 120px;
    background: #f9f9f9;
    padding: 100px 0;
    border-radius: 30px;
    animation: fadeIn 1s ease-out 0.6s both;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
}

.review-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    animation: cardAppear 0.8s ease-out;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.review-card:hover {
    transform: translateY(-15px);
    border-color: #222;
    box-shadow: 0 30px 60px rgba(34, 34, 34, 0.15);
}

.review-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.review-card:hover .review-image img {
    transform: scale(1.12);
}

.review-content {
    padding: 35px;
}

.review-text {
    color: #666;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid #222;
}

.reviewer-name {
    color: #222;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.review-rating {
    color: #FFD700;
    font-size: 20px;
    display: flex;
    gap: 5px;
}

/* Page Header - Black Theme, Bigger */
.page-header {
    margin-bottom: 100px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.8s ease-out;
}

.page-header-slider {
    position: relative;
    height: 450px;
}

.page-header-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(34, 34, 34, 0.85), rgba(0, 0, 0, 0.9));
}

.page-header .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 40px;
}

.page-title {
    font-size: 60px;
    color: white;
    margin-bottom: 30px;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 24px;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

/* Contact Section - Bigger */
.contact-section {
    animation: fadeInUp 0.8s ease-out;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
    margin-bottom: 80px;
}

.contact-card {
    perspective: 1200px;
    animation: cardAppear 0.8s ease-out;
}

.contact-card:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-card:nth-child(3) {
    animation-delay: 0.4s;
}

.contact-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    background: white;
    border: 2px solid #f0f0f0;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.contact-card:hover .contact-card-inner {
    transform: translateY(-15px) rotateX(5deg);
    border-color: #222;
    box-shadow: 0 30px 60px rgba(34, 34, 34, 0.15);
}

.contact-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    font-size: 48px;
    color: white;
    transition: all 0.3s ease;
    background: #222;
    box-shadow: 0 15px 35px rgba(34, 34, 34, 0.2);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 20px 45px rgba(34, 34, 34, 0.3);
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.call-icon {
    background: #222;
}

.visit-icon {
    background: linear-gradient(135deg, #444, #222);
}

.contact-card-title {
    font-size: 28px;
    color: #222;
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-card-description {
    color: #666;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 400;
}

.contact-btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: white;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    border: 2px solid transparent;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.call-btn {
    background: #222;
}

.visit-btn {
    background: linear-gradient(135deg, #444, #222);
}

.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: #222;
}

.contact-info {
    background: white;
    border-radius: 30px;
    padding: 60px;
    border: 2px solid #f0f0f0;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 45px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item i {
    font-size: 30px;
    color: #222;
    background: rgba(34, 34, 34, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover i {
    background: #222;
    color: white;
    transform: scale(1.1);
}

.contact-info-item h4 {
    color: #222;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-info-item p {
    color: #666;
    font-size: 18px;
    line-height: 1.7;
}

/* Footer - Black Theme, Bigger */
.footer {
    background: #222;
    color: white;
    padding: 100px 0 60px;
    margin-top: 150px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #444, #222, #444);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col {
    animation: fadeInUp 0.8s ease-out;
}



.footer-description {
    color: #bbb;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 300;
}

.footer-title {
    font-size: 26px;
    margin-bottom: 35px;
    color: white;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70px;
    height: 4px;
    background: #fff;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 20px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 300;
}

.footer-links a:hover {
    color: white;
    transform: translateX(-10px);
}

.footer-links a i {
    color: #fff;
    font-size: 20px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-contact i {
    color: #fff;
    font-size: 22px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact li:hover i {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.footer-contact a, .footer-contact span {
    color: #bbb;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    font-weight: 300;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    position: relative;
    z-index: 1;
}

.copyright {
    color: #bbb;
    font-size: 18px;
    font-weight: 300;
}

/* Fixed Buttons - Bigger */
.fixed-btn {
    position: fixed;
    z-index: 999;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    border: 3px solid white;
}

@keyframes pulse {
    0% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }
    50% { box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5); }
    100% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }
}

.whatsapp-fixed {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    bottom: 40px;
    left: 40px;
}

.call-fixed {
    background: #222;
    bottom: 40px;
    right: 40px;
}

.fixed-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 130px;
    right: 40px;
    width: 65px;
    height: 65px;
    background: #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 998;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid white;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: #222;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Design - Adjusted for Bigger Layout */
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
        padding: 0 40px;
    }
    
    .slider-container {
        height: 500px;
    }
    
    .section-title {
        font-size: 44px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        gap: 25px;
    }
    
    .nav-link {
        font-size: 17px;
        padding: 10px 20px;
    }
    
    .slider-container {
        height: 450px;
    }
    
    .services-grid, .all-services-grid, .reviews-grid, .contact-cards {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .page-title {
        font-size: 52px;
    }
    
    .fixed-btn {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .top-bar-content a {
        width: 100%;
        justify-content: center;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .slider-container {
        height: 400px;
    }
    
    .slide-content {
        padding: 30px;
    }
    
    .slide-title {
        font-size: 32px;
    }
    
    .services-grid, .all-services-grid, .reviews-grid, .contact-cards {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-description {
        font-size: 18px;
        margin-top: 30px;
    }
    
    .page-title {
        font-size: 44px;
    }
    
    .page-description {
        font-size: 20px;
    }
    
    .contact-info {
        padding: 40px;
    }
    
    .footer-grid {
        gap: 50px;
    }
    
    .fixed-btn {
        width: 65px;
        height: 65px;
        font-size: 24px;
        bottom: 30px;
    }
    
    .whatsapp-fixed {
        left: 30px;
    }
    
    .call-fixed {
        right: 30px;
    }
    
    .back-to-top {
        width: 60px;
        height: 60px;
        font-size: 22px;
        bottom: 110px;
        right: 30px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 25px;
    }
    
    .logo img {
        height: 65px;
    }
    
    .slider-container {
        height: 350px;
    }
    
    .slide-content {
        padding: 25px;
    }
    
    .slide-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 17px;
    }
    
    .service-content, .review-content {
        padding: 30px;
    }
    
    .page-header-slider {
        height: 400px;
    }
    
    .page-title {
        font-size: 38px;
    }
    
    .page-description {
        font-size: 18px;
    }
    
    .contact-card-inner {
        padding: 40px 30px;
    }
    
    .contact-info {
        padding: 35px;
    }
    
    .footer {
        padding: 80px 0 50px;
    }
    
    .footer-grid {
        gap: 40px;
    }
    
    .fixed-btn {
        width: 60px;
        height: 60px;
        font-size: 22px;
        bottom: 25px;
    }
    
    .whatsapp-fixed {
        left: 25px;
    }
    
    .call-fixed {
        right: 25px;
    }
    
    .back-to-top {
        width: 55px;
        height: 55px;
        font-size: 20px;
        bottom: 100px;
        right: 25px;
    }
}

/* Utility Classes for Spacing */
.mt-0 { margin-top: 0 !important; }
.mt-10 { margin-top: 10px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-50 { margin-top: 50px !important; }
.mt-60 { margin-top: 60px !important; }
.mt-70 { margin-top: 70px !important; }
.mt-80 { margin-top: 80px !important; }
.mt-90 { margin-top: 90px !important; }
.mt-100 { margin-top: 100px !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-50 { margin-bottom: 50px !important; }
.mb-60 { margin-bottom: 60px !important; }
.mb-70 { margin-bottom: 70px !important; }
.mb-80 { margin-bottom: 80px !important; }
.mb-90 { margin-bottom: 90px !important; }
.mb-100 { margin-bottom: 100px !important; }

.p-0 { padding: 0 !important; }
.p-10 { padding: 10px !important; }
.p-20 { padding: 20px !important; }
.p-30 { padding: 30px !important; }
.p-40 { padding: 40px !important; }
.p-50 { padding: 50px !important; }
.p-60 { padding: 60px !important; }
.p-70 { padding: 70px !important; }
.p-80 { padding: 80px !important; }
.p-90 { padding: 90px !important; }
.p-100 { padding: 100px !important; }

/* Ensure all elements are visible */
.service-card, .review-card, .contact-card {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Mobile menu button icon */
.mobile-menu-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Focus states for accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 3px solid #222;
    outline-offset: 3px;
}

/* Smooth transitions */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}












/* Fixed Background Slider Styles */
.fixed-slider-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    margin-bottom: 80px;
    overflow: hidden;
}

.fixed-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.fixed-slider-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    animation: zoomEffect 20s ease-in-out infinite alternate;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.fixed-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(243, 234, 234, 0.9) 0%, 
        rgba(218, 212, 212, 0.8) 50%, 
        rgba(230, 221, 221, 0.7) 100%);
}

.fixed-slider-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    color: white;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fixed-slider-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.fixed-slider-description {
    font-size: 22px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 60px;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Service Links Grid */
.service-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.service-link-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px 30px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-link-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-link-card:hover::before {
    opacity: 1;
}

.electrician-card:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.3);
}

.plumber-card:hover {
    background: rgba(139, 69, 19, 0.15);
    border-color: rgba(139, 69, 19, 0.3);
}

.combined-card:hover {
    background: rgba(210, 105, 30, 0.15);
    border-color: rgba(210, 105, 30, 0.3);
}

.service-link-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: white;
    transition: all 0.3s ease;
}

.service-link-card:hover .service-link-icon {
    transform: scale(1.1) rotate(10deg);
    background: rgba(255, 255, 255, 0.25);
}

.electrician-card .service-link-icon {
    background: rgba(37, 211, 102, 0.2);
}

.plumber-card .service-link-icon {
    background: rgba(139, 69, 19, 0.2);
}

.combined-card .service-link-icon {
    background: rgba(210, 105, 30, 0.2);
}

.service-link-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.service-link-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.9;
    min-height: 80px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.service-features span {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-link-card:hover .service-features span {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.service-features i {
    color: #FFD700;
    font-size: 12px;
}

.service-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: white;
    color: #222;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.electrician-card .service-link-btn {
    background: #25D366;
    color: white;
}

.plumber-card .service-link-btn {
    background: #8B4513;
    color: white;
}

.combined-card .service-link-btn {
    background: #D2691E;
    color: white;
}

.service-link-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: #222;
    color: white;
    border-color: white;
}

/* Contact Info */
.slider-contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    min-width: 250px;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-info-item i {
    font-size: 28px;
    color: white;
    background: rgba(255, 255, 255, 0.15);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-info-item:hover i {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
}

.contact-info-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.contact-info-item a,
.contact-info-item span {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-info-item a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .fixed-slider-title {
        font-size: 46px;
    }
    
    .fixed-slider-description {
        font-size: 20px;
        max-width: 700px;
    }
    
    .service-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .fixed-slider-section {
        height: auto;
        min-height: auto;
        padding: 60px 0;
    }
    
    .fixed-slider-background {
        background-attachment: scroll;
        animation: none;
    }
    
    .fixed-slider-content {
        padding: 60px 0;
    }
    
    .fixed-slider-title {
        font-size: 40px;
    }
    
    .fixed-slider-description {
        font-size: 18px;
        margin-bottom: 50px;
    }
    
    .service-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .fixed-slider-title {
        font-size: 34px;
    }
    
    .fixed-slider-description {
        font-size: 17px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .service-links-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 40px;
    }
    
    .service-link-card {
        padding: 35px 25px;
    }
    
    .slider-contact-info {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .contact-info-item {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .fixed-slider-title {
        font-size: 30px;
        padding: 0 15px;
    }
    
    .fixed-slider-description {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .service-link-card {
        padding: 30px 20px;
    }
    
    .service-link-title {
        font-size: 24px;
    }
    
    .service-link-description {
        font-size: 15px;
    }
    
    .service-link-btn {
        padding: 14px 25px;
        font-size: 15px;
    }
}

/* Fixed Background Slider Styles - White Theme */
.fixed-slider-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    margin-bottom: 80px;
    overflow: hidden;
    background: #ffffff;
}

.fixed-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.fixed-slider-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    animation: zoomEffect 20s ease-in-out infinite alternate;
    opacity: 0.3; /* Reduced opacity for white background */
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.fixed-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85); /* White overlay */
}

.fixed-slider-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    color: #222; /* Black text for white background */
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fixed-slider-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #222;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.fixed-slider-description {
    font-size: 22px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #666;
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Service Links Grid - White Cards */
.service-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.service-link-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 40px 30px;
    border: 2px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(34, 34, 34, 0.05) 0%, 
        rgba(34, 34, 34, 0.02) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-link-card:hover {
    transform: translateY(-15px);
    border-color: #222;
    box-shadow: 0 20px 40px rgba(34, 34, 34, 0.15);
}

.service-link-card:hover::before {
    opacity: 1;
}

.electrician-card:hover {
    border-color: #25D366;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.15);
}

.plumber-card:hover {
    border-color: #8B4513;
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
}

.combined-card:hover {
    border-color: #D2691E;
    box-shadow: 0 20px 40px rgba(210, 105, 30, 0.15);
}

.service-link-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: #222;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.service-link-card:hover .service-link-icon {
    transform: scale(1.1) rotate(10deg);
    background: #222;
    color: white;
}

.electrician-card .service-link-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.plumber-card .service-link-icon {
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
}

.combined-card .service-link-icon {
    background: rgba(210, 105, 30, 0.1);
    color: #D2691E;
}

.electrician-card:hover .service-link-icon {
    background: #25D366;
    color: white;
}

.plumber-card:hover .service-link-icon {
    background: #8B4513;
    color: white;
}

.combined-card:hover .service-link-icon {
    background: #D2691E;
    color: white;
}

.service-link-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.service-link-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #666;
    min-height: 80px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.service-features span {
    background: #f8f9fa;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    color: #555;
    border: 1px solid #e9ecef;
}

.service-link-card:hover .service-features span {
    background: #222;
    color: white;
    transform: translateY(-3px);
    border-color: #222;
}

.service-features i {
    color: #25D366;
    font-size: 12px;
}

.service-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #222;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #222;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.electrician-card .service-link-btn {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.plumber-card .service-link-btn {
    background: #8B4513;
    color: white;
    border-color: #8B4513;
}

.combined-card .service-link-btn {
    background: #D2691E;
    color: white;
    border-color: #D2691E;
}

.service-link-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: white;
    color: #222;
}

.electrician-card .service-link-btn:hover {
    background: white;
    color: #25D366;
    border-color: #25D366;
}

.plumber-card .service-link-btn:hover {
    background: white;
    color: #8B4513;
    border-color: #8B4513;
}

.combined-card .service-link-btn:hover {
    background: white;
    color: #D2691E;
    border-color: #D2691E;
}

/* Contact Info - White Theme */
.slider-contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 15px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-item:hover {
    transform: translateY(-5px);
    background: #f8f9fa;
    border-color: #222;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-item i {
    font-size: 28px;
    color: #222;
    background: #f8f9fa;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.contact-info-item:hover i {
    transform: scale(1.1);
    background: #222;
    color: white;
    border-color: #222;
}

.contact-info-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #222;
}

.contact-info-item a,
.contact-info-item span {
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-info-item a:hover {
    color: #222;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .fixed-slider-title {
        font-size: 46px;
    }
    
    .fixed-slider-description {
        font-size: 20px;
        max-width: 700px;
    }
    
    .service-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .fixed-slider-section {
        height: auto;
        min-height: auto;
        padding: 60px 0;
    }
    
    .fixed-slider-background {
        background-attachment: scroll;
        animation: none;
        opacity: 0.2;
    }
    
    .fixed-slider-content {
        padding: 60px 0;
    }
    
    .fixed-slider-title {
        font-size: 40px;
    }
    
    .fixed-slider-description {
        font-size: 18px;
        margin-bottom: 50px;
    }
    
    .service-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .fixed-slider-title {
        font-size: 34px;
    }
    
    .fixed-slider-description {
        font-size: 17px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .service-links-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 40px;
    }
    
    .service-link-card {
        padding: 35px 25px;
    }
    
    .slider-contact-info {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .contact-info-item {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .fixed-slider-title {
        font-size: 30px;
        padding: 0 15px;
    }
    
    .fixed-slider-description {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .service-link-card {
        padding: 30px 20px;
    }
    
    .service-link-title {
        font-size: 24px;
    }
    
    .service-link-description {
        font-size: 15px;
    }
    
    .service-link-btn {
        padding: 14px 25px;
        font-size: 15px;
    }
    
    .contact-info-item {
        padding: 18px 25px;
        min-width: auto;
    }
    
    .contact-info-item i {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* Animation for elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optional: Add subtle pattern to white background */
.fixed-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="1" cy="1" r="1" fill="rgba(0,0,0,0.03)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

/* Ensure content is above pattern */
.fixed-slider-content {
    z-index: 3;
}

/* Header Logo */
.header .logo img {
    height: 75px;
    width: auto;
    transition: all 0.3s ease;
    max-height: 75px;
    object-fit: contain;
}

.header .logo:hover img {
    transform: scale(1.05);
}

/* Footer Logo */
.footer .footer-logo img {
    height: 90px;
    width: auto;
    margin-bottom: 30px;
    max-height: 90px;
    object-fit: contain;
}

.footer .footer-logo:hover img {
    transform: scale(1.05);
}

/* Footer Logo - CORRECT VERSION */
.footer-logo img {
    height: 90px;
    width: auto;
    margin-bottom: 30px;
    display: block;
    max-width: 100%;
    object-fit: contain;
    /* REMOVE FILTER PROPERTIES */
    filter: none !important;
    -webkit-filter: none !important;
}

.footer-logo:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Alternative: If you want white logo in footer */
.footer-logo img.white-logo {
    filter: brightness(0) invert(1);
}

.footer-logo img.colored-logo {
    filter: none;
}

/* اضافی اسٹائلز جو آپ اپنی CSS فائل میں شامل کر سکتے ہیں */

/* مالک کی معلومات کے لئے اسٹائل */
.owner-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.owner-info p {
    margin: 10px 0;
    font-size: 16px;
    color: #333;
}

.owner-info strong {
    color: #2c3e50;
    font-weight: 600;
}

/* موبائل مینیو میں بہتری */
.mobile-menu {
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu-link span {
    font-size: 16px;
    font-weight: 500;
}

/* سروس کارڈز میں بہتری */
.service-link-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* واٹس ایپ بٹن کے لئے */
.whatsapp-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.05);
}

/* ٹاپ بار میں بہتری */
.top-bar {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.top-bar-content a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar-content a:hover {
    color: #3498db;
}

/* فکسڈ بٹنز کے لئے */
.fixed-btn {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.fixed-btn:hover {
    transform: scale(1.1);
}

.whatsapp-fixed {
    background: #25D366;
}

.call-fixed {
    background: #3498db;
}

/* فونٹ بہتری */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ریزپانسیو ڈیزائن کے لئے */
@media (max-width: 768px) {
    .owner-info {
        padding: 15px;
        margin-top: 20px;
    }
    
    .owner-info p {
        font-size: 14px;
    }
    
    .fixed-slider-title {
        font-size: 24px;
    }
    
    .fixed-slider-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .top-bar-content {
        flex-direction: column;
        gap: 5px;
    }
    
    .nav-menu a {
        font-size: 13px;
        padding: 8px 12px;
    }
}