/* Master Plan Builders Co - Fixed Professional Styles */

:root {
    --navy-blue: #2C3E50;
    --gold: #D4AF37;
    --dark-navy: #1a252f;
    --light-gold: #E8D5A3;
    --text-dark: #2d2d2d;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Fixed Header with Solid Background */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.header-top {
    background: var(--dark-navy);
    padding: 10px 0;
    border-bottom: 2px solid var(--gold);
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    padding: 5px 10px;
    border-radius: 20px;
}

.contact-info a:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.contact-info i {
    color: var(--gold);
    font-size: 14px;
}

.header-main {
    padding: 12px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 65px;
    width: auto;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

.logo-text {
    color: var(--white);
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 3px;
    letter-spacing: 1.5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.logo-text p {
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    color: var(--white);
    text-decoration: none;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.15);
}

/* Dropdown Styles */
.dropdown > a::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 5px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--white);
    min-width: 260px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s ease;
    border-radius: 10px;
    overflow: hidden;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: rgba(212, 175, 55, 0.1);
    padding-left: 25px;
    color: var(--navy-blue);
}

.dropdown-menu li a i {
    color: var(--gold);
    font-size: 16px;
    width: 20px;
}

.mobile-menu-toggle {
    display: none;
    background: var(--gold);
    color: var(--navy-blue);
    border: none;
    padding: 12px 16px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background: var(--light-gold);
    transform: scale(1.05);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Banner Slider */
.banner-slider {
    margin-top: 115px;
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: var(--navy-blue);
}

.slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.slide-content h2 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    animation: slideInDown 0.8s ease;
}

.slide-content p {
    font-size: 22px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    animation: slideInUp 0.8s ease 0.2s backwards;
}

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

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

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.slider-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot.active {
    background: var(--gold);
    border-color: var(--white);
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.8);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* Page Content Spacing */
.content-section {
    margin-top: 115px;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--navy-blue), var(--dark-navy));
    padding: 70px 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
}

.stat-item i {
    font-size: 52px;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 42px;
    color: var(--navy-blue);
    margin-bottom: 18px;
    font-weight: 800;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gold);
    margin: 20px auto 0;
}

.section-title p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
}

.section-title .highlight {
    color: var(--gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.service-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(44, 62, 80, 0.15);
    border-color: var(--gold);
}

.service-card i {
    font-size: 64px;
    color: var(--gold);
    margin-bottom: 25px;
    display: block;
}

.service-card h3 {
    font-size: 24px;
    color: var(--navy-blue);
    margin-bottom: 18px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.service-card a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-card a:hover {
    gap: 15px;
}

/* Buttons */
.btn {
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--navy-blue);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: var(--navy-blue);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--dark-navy);
    transform: translateY(-3px);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--navy-blue), var(--dark-navy));
    color: var(--white);
    padding: 140px 0 70px;
    text-align: center;
    margin-top: 115px;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    list-style: none;
    margin-top: 25px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--gold);
}

/* Content Page */
.content-page {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.content-page .container {
    max-width: 1000px;
}

.content-page h2 {
    color: var(--navy-blue);
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 800;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--gold);
}

.content-page h3 {
    color: var(--navy-blue);
    font-size: 26px;
    margin: 35px 0 18px;
    font-weight: 700;
}

.content-page p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 16px;
    text-align: justify;
}

.content-page ul {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.content-page ul li {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.9;
    padding-left: 35px;
    position: relative;
    font-size: 16px;
}

.content-page ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 16px;
}

.content-page .btn {
    margin-top: 30px;
    margin-right: 15px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info-box {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy-blue), var(--dark-navy));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--gold);
    font-size: 28px;
}

.contact-details h4 {
    color: var(--navy-blue);
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-details p,
.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    line-height: 1.7;
}

.contact-details a:hover {
    color: var(--gold);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--navy-blue);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--navy-blue), var(--dark-navy));
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    color: var(--white);
    padding: 80px 0 30px;
}

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

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 700;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    text-decoration: none;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 14px;
}

.footer-section ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.footer-section ul li a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-section ul li a i {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-5px);
}

.social-links a i {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 115px;
        left: 0;
        right: 0;
        background: var(--navy-blue);
        flex-direction: column;
        padding: 30px 20px;
        gap: 0;
        max-height: calc(100vh - 115px);
        overflow-y: auto;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 999;
        animation: slideDown 0.3s ease-out;
    }

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

    .nav-menu.active {
        display: flex;
    }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu > li:last-child {
        border-bottom: none;
    }

    .nav-menu > li > a {
        width: 100%;
        padding: 15px 20px;
        border-radius: 0;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .dropdown-menu li a {
        color: var(--white);
        padding: 12px 25px;
    }

    .dropdown-menu li a:hover {
        background: rgba(212, 175, 55, 0.2);
        color: var(--gold);
    }

    .mobile-menu-toggle {
        display: block;
    }

    .translate-menu-item {
        padding: 15px 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 10px;
    }

    .banner-slider {
        height: 400px;
    }

    .slide-content h2 {
        font-size: 32px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .header-top .container {
        flex-direction: column;
        gap: 10px;
    }

    .logo {
        height: 55px;
    }

    .logo-text h1 {
        font-size: 20px;
    }

    .banner-slider {
        height: 350px;
    }

    .slide-content h2 {
        font-size: 28px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .slider-arrow.prev {
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }
}

/* Google Translate */
#google_translate_element select {
    background: transparent;
    border: 1px solid #D4AF37;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 13px;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

@keyframes pulse-whatsapp {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Service Image Section */
.service-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
    margin: 0;
}

/* Client Portfolio */
.clients-portfolio {
    padding: 80px 0;
    background: #f8f9fa;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.client-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.client-card img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 968px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   IMAGE DISPLAY STYLING
   ======================================== */

/* Service Hero Image - Full Width */
.service-hero-image {
    width: 100%;
    padding: 0;
    margin: 0;
    background: #f8f9fa;
}

.service-hero-image .container {
    max-width: 100%;
    padding: 0;
}

.service-main-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    display: block;
    margin: 0;
}

/* Service Cards on Homepage */
.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

/* Clients Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.client-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.client-card img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Slider Images */
.banner-slider .slide {
    display: none;
    width: 100%;
    height: 600px;
    position: relative;
}

.banner-slider .slide.active {
    display: block;
}

.banner-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    background: rgba(44, 62, 80, 0.8);
    padding: 40px 60px;
    border-radius: 10px;
}

.slide-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #D4AF37;
}

.slide-content p {
    font-size: 24px;
    color: white;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.8);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 3;
    font-size: 24px;
    transition: all 0.3s;
}

.slider-arrow:hover {
    background: rgba(212, 175, 55, 1);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active,
.dot:hover {
    background: #D4AF37;
}

/* Responsive */
@media (max-width: 968px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .banner-slider .slide {
        height: 400px;
    }
    
    .slide-content h2 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .banner-slider .slide {
        height: 300px;
    }
    
    .service-main-image {
        max-height: 400px;
    }
    
    .slide-content {
        padding: 20px 30px;
    }
    
    .slide-content h2 {
        font-size: 24px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
}

/* Enhanced Service Pages CSS */
.equipment-category{margin:60px 0;}
.equipment-category h3{color:#2C3E50;font-size:32px;margin-bottom:30px;padding-bottom:15px;border-bottom:3px solid #D4AF37;}
.equipment-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:30px;margin-bottom:40px;}
.equipment-item{background:white;border-radius:10px;overflow:hidden;box-shadow:0 5px 15px rgba(0,0,0,0.1);transition:all 0.3s;cursor:pointer;}
.equipment-item:hover{transform:translateY(-10px);box-shadow:0 15px 30px rgba(0,0,0,0.2);}
.equipment-item img{width:100%;height:250px;object-fit:cover;display:block;}
.equipment-item h6{padding:20px;margin:0;text-align:center;color:#2C3E50;font-size:18px;font-weight:600;background:#f8f9fa;}
.portfolio-section{background:#2C3E50;padding:80px 0;margin-top:80px;}
.portfolio-section h3{color:#D4AF37;font-size:36px;text-align:center;margin-bottom:50px;}
.portfolio-slider{position:relative;overflow:hidden;padding:0 60px;}
.portfolio-track{display:flex;transition:transform 0.5s ease;gap:20px;}
.portfolio-item{min-width:calc(25% - 15px);flex-shrink:0;}
.portfolio-item img{width:100%;height:300px;object-fit:cover;border-radius:10px;border:3px solid #D4AF37;transition:all 0.3s;}
.portfolio-item:hover img{transform:scale(1.05);border-color:#fff;}
.portfolio-arrow{position:absolute;top:50%;transform:translateY(-50%);background:#D4AF37;color:white;border:none;width:50px;height:50px;border-radius:50%;cursor:pointer;font-size:20px;z-index:10;transition:all 0.3s;}
.portfolio-arrow:hover{background:white;color:#2C3E50;}
.portfolio-arrow.prev{left:0;}
.portfolio-arrow.next{right:0;}
.service-intro-text{font-size:18px;line-height:1.8;color:#555;margin:30px 0;padding:30px;background:#f8f9fa;border-left:5px solid #D4AF37;border-radius:5px;}
.quick-enquiry{background:linear-gradient(135deg,#2C3E50 0%,#34495e 100%);padding:60px 40px;border-radius:15px;margin:60px 0;color:white;}
.quick-enquiry h3{color:#D4AF37;font-size:32px;margin-bottom:30px;text-align:center;}
.enquiry-form{max-width:800px;margin:0 auto;}
.form-row{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;margin-bottom:20px;}
.enquiry-form input,.enquiry-form textarea{width:100%;padding:15px;border:2px solid rgba(212,175,55,0.3);border-radius:5px;background:rgba(255,255,255,0.1);color:white;font-size:16px;}
.enquiry-form input::placeholder,.enquiry-form textarea::placeholder{color:rgba(255,255,255,0.6);}
.enquiry-form input:focus,.enquiry-form textarea:focus{outline:none;border-color:#D4AF37;background:rgba(255,255,255,0.15);}
.enquiry-form textarea{grid-column:span 2;min-height:150px;}
@media (max-width:968px){.equipment-grid{grid-template-columns:repeat(3,1fr);gap:20px;}.portfolio-item{min-width:calc(33.33% - 14px);}.form-row{grid-template-columns:1fr;}.enquiry-form textarea{grid-column:span 1;}}
@media (max-width:768px){.equipment-grid{grid-template-columns:repeat(2,1fr);gap:15px;}.portfolio-item{min-width:calc(50% - 10px);}.equipment-category h3{font-size:24px;}.portfolio-section h3{font-size:28px;}}

/* Update logo text size to be smaller */
.logo-text h1 {
    font-size: 16px !important;
    color: #fff;
    font-weight: 700;
    margin-bottom: 3px;
    line-height: 1.2;
}

.logo-text p {
    font-size: 9px !important;
    color: #D4AF37;
    letter-spacing: 1.2px;
}

/* Client Section - Reference Website Style with Slider */
.clients-section {
    padding: 80px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.clients-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.clients-section .section-title h2 {
    font-size: 36px;
    color: #2C3E50;
    margin-bottom: 15px;
    font-weight: 700;
}

.clients-section .section-title .highlight {
    color: #D4AF37;
}

.clients-section .section-title p {
    font-size: 16px;
    color: #666;
}

/* Client Slider Container */
.clients-slider-container {
    position: relative;
    padding: 0 60px;
}

.clients-slider {
    overflow: hidden;
}

.clients-track {
    display: flex;
    gap: 30px;
    animation: slideClients 20s linear infinite;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-logo-item {
    flex: 0 0 auto;
    width: 200px;
    height: 150px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.client-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #D4AF37;
}

.client-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes slideClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Duplicate the track for seamless loop */
.clients-track::after {
    content: '';
    display: flex;
    gap: 30px;
}

/* Client Slider Arrows */
.client-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #D4AF37;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-arrow:hover {
    background: #2C3E50;
    transform: translateY(-50%) scale(1.1);
}

.client-arrow.prev {
    left: 0;
}

.client-arrow.next {
    right: 0;
}

/* Mobile Responsive for Clients */
@media (max-width: 768px) {
    .logo-text h1 {
        font-size: 14px !important;
    }
    
    .logo-text p {
        font-size: 8px !important;
    }
    
    .clients-slider-container {
        padding: 0 40px;
    }
    
    .client-logo-item {
        width: 150px;
        height: 120px;
    }
    
    .clients-track {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 12px !important;
    }
    
    .clients-slider-container {
        padding: 0 30px;
    }
    
    .client-logo-item {
        width: 120px;
        height: 100px;
        padding: 15px;
    }
}

/* Reference Website Style - Homepage Sections */

/* Section Subtitles */
.section-subtitle {
    color: #D4AF37;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-intro {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 15px auto 0;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 80px 0;
    background: #fff;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.why-choose-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #D4AF37;
    background: #fff;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4AF37, #c19a2e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.why-choose-item:hover .icon-box {
    transform: scale(1.1);
}

.icon-box i {
    font-size: 36px;
    color: #fff;
}

.why-choose-item h4 {
    font-size: 20px;
    color: #2C3E50;
    margin-bottom: 15px;
    font-weight: 700;
}

.why-choose-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #2C3E50, #1a2332);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
}

.cta-banner h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 25px;
    line-height: 1.4;
}

/* Statistics Section */
.statistics-section {
    background: #2C3E50;
    padding: 60px 0;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Quality Section */
.quality-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quality-text {
    padding-right: 20px;
}

.quality-intro {
    font-size: 18px;
    color: #D4AF37;
    font-style: italic;
    margin: 20px 0;
    font-weight: 600;
}

.quality-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.quality-text .btn {
    margin-top: 20px;
}

.quality-image {
    position: relative;
}

.quality-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Clients Section Update */
.clients-section {
    padding: 80px 0;
    background: #fff;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.client-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    border: 2px solid #f0f0f0;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #D4AF37;
}

.client-card img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

/* Responsive Design for New Sections */
@media (max-width: 968px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .quality-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .cta-banner h3 {
        font-size: 20px;
    }
    
    .quality-text {
        padding-right: 0;
    }
    
    .quality-image img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .client-card {
        min-height: 100px;
        padding: 15px;
    }
    
    .client-card img {
        max-height: 70px;
    }
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(44,62,80,0.95), rgba(26,35,50,0.95)), url('../images/slider/1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

.contact-cta-section .section-title h2,
.contact-cta-section .section-title p,
.contact-cta-section .section-subtitle {
    color: #fff;
}

.contact-cta-section .highlight {
    color: #D4AF37;
}

.btn-large {
    padding: 15px 45px;
    font-size: 16px;
    font-weight: 700;
}

/* Clients Grid for Homepage */
.clients-grid-home {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.clients-grid-home .client-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    border: 2px solid #f0f0f0;
}

.clients-grid-home .client-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #D4AF37;
}

.clients-grid-home .client-card img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.clients-grid-home .client-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Responsive Updates */
@media (max-width: 968px) {
    .clients-grid-home {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .clients-grid-home {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    .clients-grid-home .client-card {
        min-height: 120px;
        padding: 20px;
    }
    
    .clients-grid-home .client-card img {
        max-height: 80px;
    }
}

@media (max-width: 480px) {
    .clients-grid-home {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .clients-grid-home .client-card {
        min-height: 100px;
        padding: 15px;
    }
    
    .clients-grid-home .client-card img {
        max-height: 60px;
    }
}
