:root {
    --brand-color: #7cb342;
    --brand-dark: #6a9e36;
    --dark-bg: #000000;
    --dark-bg-light: #0a0a0a;
    --dark-bg-lighter: #1a1a1a;
    --light-bg: #f4f4f4;
    --gold: #d4af37;
    --gold-light: #f4e4b8;
}

body {
    background: var(--dark-bg);
    color: #e5e7eb;
}

/* Transparent Header */
.project-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(24, 34, 61, 0.95);
    backdrop-filter: blur(10px);
    padding: 0px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.project-header.scrolled {
    background: rgba(24, 34, 61, 0.98);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.builder-logo-header {
    height: 75px;
    object-fit: contain;
}

.project-title-header h1 {
    font-size: 1.2rem;
    margin: 0;
    color: white;
    font-weight: 600;
}

.project-title-header p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(145deg, #d4af78, #ce8e2d, #b8914d);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    color: #1a1a2e;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(212, 175, 120, 0.4), inset 0 3px 6px rgba(255, 255, 255, 0.4);
}

.header-phone:hover {
    transform: translateY(-2px);
    color: #1a1a2e;
    box-shadow: 0 12px 30px rgba(212, 175, 120, 0.6);
}

.header-phone i {
    font-size: 1.1rem;
}

/* Full Viewport Banner */
.hero-banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 60px;
}

.carousel-item {
    height: 100vh;
}

.carousel-item img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.banner-info-bottom {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    z-index: 10;
}

.banner-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.banner-info-card {
    background: rgba(24, 34, 61, 0.95);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--gold);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.banner-info-card.highlight {
    background: linear-gradient(145deg, #d4af78, #ce8e2d, #b8914d);
    box-shadow: 0 10px 30px rgba(212, 175, 120, 0.4), inset 0 3px 6px rgba(255, 255, 255, 0.4);
}

.banner-info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
}

.banner-info-card.highlight .banner-info-label {
    color: #1a1a2e;
    font-weight: 600;
}

.banner-info-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.banner-info-card.highlight .banner-info-value {
    color: #1a1a2e;
}

/* Read More/Less */


.about-content.collapsed {
    max-height: 200px;
    overflow: hidden;
    position: relative;
}

.about-content.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, var(--dark-bg-light));
}

.read-more-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    background: linear-gradient(145deg, #d4af78, #ce8e2d, #b8914d);
    color: #1a1a2e;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(212, 175, 120, 0.4), inset 0 3px 6px rgba(255, 255, 255, 0.4);
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 120, 0.6);
}

/* CTA Sections */
.cta-brochure {
    background: var(--dark-bg);
    padding: 3rem 0;
    text-align: center;
    color: white;
}

.cta-brochure h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-brochure p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.8);
}

.btn-download-brochure {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(145deg, #d4af78, #ce8e2d, #b8914d);
    color: #1a1a2e;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(212, 175, 120, 0.4), inset 0 3px 6px rgba(255, 255, 255, 0.4);
}

.btn-download-brochure:hover {
    transform: scale(1.05);
    color: #1a1a2e;
    box-shadow: 0 12px 30px rgba(212, 175, 120, 0.6);
}

.btn-download-brochure i {
    font-size: 1.3rem;
}

/* Tools Section */
.tools-section {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.tool-card {
    background: var(--dark-bg-lighter);
    padding: 3rem 1rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid var(--gold);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #e5e7eb;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.tool-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--gold-light);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
    color: inherit;
}

.tool-card i.fas,
.tool-card i.far,
.tool-card i.fab {
    font-size: 2.5rem;
    color: var(--gold);
    margin: 0 auto 1rem auto;
    line-height: 1;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.tool-card:hover i.fas,
.tool-card:hover i.far,
.tool-card:hover i.fab {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.tool-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gold);
    line-height: 1.3;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-card .btn-tool {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
    padding: 10px 20px;
    background: linear-gradient(145deg, #d4af78, #ce8e2d, #b8914d);
    color: #1a1a2e;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    box-shadow: 0 8px 20px rgba(212, 175, 120, 0.4), inset 0 3px 6px rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}
.tool-card:hover .btn-tool {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 120, 0.6);
}
.btn-tool i{
    font-size: 1rem;
}
/* Amenities with Golden Theme */
.amenity-item {
    background: var(--dark-bg-lighter);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--gold);
    color: #e5e7eb;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.amenity-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--gold-light);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}

.amenity-item i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.amenity-item span {
    display: block;
    font-weight: 500;
    color: #e5e7eb;
}

/* Builder Profile */
.builder-profile-section {
    padding: 4rem 0;
    background: var(--dark-bg-light);
}

.builder-profile-card {
    background: var(--dark-bg-lighter);
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid var(--gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.builder-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.builder-logo-large {
    height: 100px;
    object-fit: contain;
}

.builder-info h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #e5e7eb;
}

.builder-info p {
    color: #9ca3af;
    font-size: 1.1rem;
}

.view-builder-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(145deg, #d4af78, #ce8e2d, #b8914d);
    color: #1a1a2e;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(212, 175, 120, 0.4), inset 0 3px 6px rgba(255, 255, 255, 0.4);
}

.view-builder-btn:hover {
    transform: translateY(-2px);
    color: #1a1a2e;
    box-shadow: 0 12px 30px rgba(212, 175, 120, 0.6);
}

/* Similar Projects */
.similar-projects-section {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.project-card {
    background: var(--dark-bg-lighter);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid var(--gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.project-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
    border-color: var(--gold-light);
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-card-body {
    padding: 1.5rem;
}

.project-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #e5e7eb;
}

.project-card p {
    color: #9ca3af;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.project-card .price {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1rem 0;
}

.project-card-link {
    display: inline-block;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.project-card-link:hover {
    color: var(--gold-light);
}

/* Final CTA Form */
.final-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2a3a5d 100%);
    color: white;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.final-cta-section .subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(255,255,255,0.8);
}
.final-cta-section h2{
  color: #e5e7eb;
}

.callback-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.2);
}

.callback-form .form-group {
    margin-bottom: 1.5rem;
}

.callback-form input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    color: white;
    font-size: 1rem;
}

.callback-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.callback-form input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.callback-form button {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(145deg, #d4af78, #ce8e2d, #b8914d);
    color: #1a1a2e;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(212, 175, 120, 0.4), inset 0 3px 6px rgba(255, 255, 255, 0.4);
}

.callback-form button:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(212, 175, 120, 0.6);
}

/* Section Titles */
.section-title-main {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-main h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #e5e7eb;
}

.section-title-main p {
    font-size: 1.1rem;
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
    .header-phone span {
        display: none;
    }

    .hero-banner {
        height: 70vh;
        margin-top: 65px;
    }

    .carousel-item,
    .carousel-item img {
        height: 70vh;
    }

    .banner-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .banner-info-card {
        padding: 1rem;
    }

    .banner-info-value {
        font-size: 1.3rem;
    }

    .builder-header {
        flex-direction: column;
        text-align: center;
    }

    .section-title-main h2 {
        font-size: 1.8rem;
    }

    .final-cta-section h2 {
        font-size: 1.8rem;
    }
}


.main-content h1{
    font-size: 30px !important;
    line-height: 35px !important;
    color: #e5e7eb !important;
}

.main-content h2{
    font-size: 25px !important;
    line-height: 30px !important;
    color: #e5e7eb !important;
}

.main-content h3{
    font-size: 20px !important;
    line-height: 25px !important;
    color: #e5e7eb !important;
}
.main-content h4{
    font-size: 18px !important;
    line-height: 22px !important;
    color: #e5e7eb !important;
}
.main-content h1, .main-content h2, .main-content h3, .main-content h4, .main-content h5, .main-content h6{
    text-align: left !important;
    color: #e5e7eb !important;
    margin:20px 0px 10px 0px;
}
.project-img{
    text-align: center;
    padding: 10px;
}
.project-img img{
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3) !important;
    border-radius: 5px;
}

.main-content p{
    margin:10px 0px;
    text-align: left;
}

.main-content ul li, .main-content ol li{
    font-size: inherit;
    padding: 5px 0px !important;
    font-size: 15px;
    line-height: 20px;
    text-align: left !important;
}
.main-content ul{
    margin-left: 25px !important;
    list-style: disc !important;
    text-align: left !important;
}

.main-content ol{
    margin-left: 5px !important;
    list-style: number !important;
    text-align: left !important;
}

.main-content ol li{
    display: list-item;
    text-align: left !important;
    list-style: number;
}

.main-content ul li{
    display: list-item;
    list-style: disc;
}
.main-content hr{
    color:#b7b7cd;
    background: #b7b7cd;
}

.main-content table{
    width: 100%;
    margin: 20px 5px;
    text-align: left;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    border: none;
}
.main-content table tbody tr th{
    font-weight: 600;
}
.main-content table th, .main-content table td{
    padding: 7px 15px;
    border: 1px solid #999;
    font-size: 15px;
    line-height: 20px;
    text-align: left;
    vertical-align: middle;
}
/* Custom scrollbar styles */
.main-content table::-webkit-scrollbar {
    height: 7px; /* Horizontal scrollbar height */
}

.main-content table::-webkit-scrollbar-track {
    background: #f0f0f0; /* Track color */
    border-radius: 5px;
}

.main-content table::-webkit-scrollbar-thumb {
    background: #777; /* Thumb (scrollbar handle) color */
    border-radius: 5px;
}

/* For Firefox */
.main-content table {
    scrollbar-color: #777 #f0f0f0; /* Thumb and track color */
    scrollbar-width: thin; /* Makes it thinner */
}

.main-content blockquote{
    margin: 20px 10px;
    padding: 15px 15px;
    border-left: 5px solid #aed36e;
    background: #FFF9F6;
}
.sug-bg-title{
    display: block;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    color: #143d7b;
}
.entry-blog{
    font-size: 12px;
    margin:5px;
}
.user-info h5{
    font-size: 18px;
    line-height: 24px;
}
.user-info p{
    font-size: 13px;
}
.blog-share-icon span {
    color:#138bff;
}
.blog-share-icon a{
    color: #fff;
    font-size: 25px;
    margin-right: 10px;
}
.ad-banner{
    width: 100%;
    height: auto;
    margin-bottom: 45px;
    border-radius: 10px;
}
.accordion-item .accordion-button{
    font-size: 16px !important;
}
.data-reqs, .data-reqs p{
    line-height: 24px;
    font-size: 14px;
}

@media only screen and (max-width: 768px) {
    .bread-title h1{
        font-size: 25px;
        line-height: 30px;
        margin-top: 10px;
    }
    .main-content h1{
        font-size: 25px;
        line-height: 30px;
    }

    .main-content h2{
        font-size: 20px;
        line-height: 30px;
    }

    .main-content h3{
        font-size: 18px;
        line-height: 25px;
    }

    .main-content h4{
        font-size: 15px;
        line-height: 20px;
    }
    .tool-card {
        padding: 1rem 1rem;
    }
}
.lg-outer{
    z-index: 999999 !important;
}

/* Enhanced CSS for dynamic blog pre and code elements */

pre {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border: 1px solid #475569;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    overflow-x: auto;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    font-family: 'JetBrains Mono', 'Fira Code', 'Monaco', 'Consolas', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #e2e8f0;
    transition: all 0.3s ease;
}

pre:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Add subtle gradient border effect */
pre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ef4444, #f59e0b);
    border-radius: 12px 12px 0 0;
}

code {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    padding: 0;
    border: none;
    word-wrap: break-word;
    white-space: pre-wrap;
}

/* Inline code styling (when code is not inside pre) */
:not(pre) > code {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 500;
    border: 1px solid rgba(99, 102, 241, 0.2);
    font-family: 'JetBrains Mono', 'Fira Code', 'Monaco', 'Consolas', monospace;
}

/* Custom scrollbar for code blocks */
pre::-webkit-scrollbar {
    height: 8px;
}

pre::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

pre::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 4px;
}

pre::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #2563eb, #7c3aed);
}

/* Responsive design */
@media (max-width: 768px) {
    pre {
        padding: 1rem;
        font-size: 0.8rem;
        margin: 1rem 0;
        border-radius: 8px;
    }
    
    :not(pre) > code {
        font-size: 0.8em;
        padding: 0.15rem 0.3rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    pre {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        border-color: #334155;
        color: #f1f5f9;
    }
    
    :not(pre) > code {
        background: rgba(148, 163, 184, 0.1);
        color: #94a3b8;
        border-color: rgba(148, 163, 184, 0.2);
    }
}

/* Light mode adjustments */
@media (prefers-color-scheme: light) {
    pre {
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        border-color: #cbd5e1;
        color: #334155;
    }
    
    pre::before {
        background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ef4444, #f59e0b);
    }
    
    :not(pre) > code {
        background: rgba(99, 102, 241, 0.08);
        color: #4338ca;
        border-color: rgba(99, 102, 241, 0.15);
    }
}

/* Animation for when code blocks come into view */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

pre {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus styles for accessibility */
pre:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    pre {
        background: white !important;
        color: black !important;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
        page-break-inside: avoid;
    }
    
    pre::before {
        display: none;
    }
}