/* Section Header */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #000;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}
section.banner_dir {
    background: #f7f7f7;
    padding: 50px 0;
    display: flex;
    align-items: center;
    color: #000;
}
.img_box_banner img {
    border-radius: 30px;
}
section.banner_dir h1 {
    color: #000;
}
section.banner_dir .row {
   
    align-items: center;
    
}
/* Landscape Company Card */
.company-card-landscape {
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    display: flex;
    align-items: stretch;
    min-height: 280px;
    margin-bottom: 2rem;
    position: relative;
}

.company-card-landscape:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--accent);
}

/* Card Sections */
.card-left-section {
    flex: 0 0 300px;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-right: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-center-section {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-right-section {
    flex: 0 0 250px;
    padding: 2rem;
    background: linear-gradient(135deg, #fafbfc 0%, #f8fafc 100%);
    border-left: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Company Header */
.company-header {
  
    margin-bottom: 1.5rem;
    position: relative;
}

.company-logo {
    width: 100%;
    background: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    padding: 20px 20px;
    margin-bottom: 30px;
}

.company-basic-info {
    flex: 1;
    min-width: 0;
}

.company-name {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.company-location {
    font-size: 16px;
    color: #000;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.company-location i {
    color: var(--accent);
     font-size: 16px;
}

.verification-badge {
    position: absolute;
    top: 0;
    right: 0;
    color: #10b981;
    font-size: 1.375rem;
}

/* Rating and Badges Section */
.rating-badges-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    display: flex;
    gap: 0.125rem;
}

.stars i {
    color: #fbbf24;
    font-size: 16px;
}

.stars .far {
    color: #d1d5db;
}

.rating-count {
    font-size: 16px;
    color: #000;
    font-weight: 500;
}

.badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f1f5f9;
    color: #000;
    padding: 0.5rem 0.75rem;
    border-radius: 5px;
     font-size: 16px;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    width: fit-content;
}

.badge-item i {
    font-size: 14px;
    color: var(--accent);
}

/* Company Description */
.company-description {
     font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

/* Highlights */
.highlights {
    flex: 1;
}

.highlights-title {
     font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlights-title::before {
    content: '';
    width: 3px;
    height: 18px;
    background: var(--accent);
    border-radius: 2px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 16px;
    color: #4b5563;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 5px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.highlight-item:hover {
    background: #eff6ff;
    border-color: var(--accent);
    transform: translateY(-1px);
}

.highlight-item i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f8fafc;
    font-size: 12px;
    flex-shrink: 0;
    background: var(--accent);
    border-radius: 50%;
}

.highlight-item span {
    font-weight: 500;
}

/* Contact Actions */
.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.btn-call {
    background: var(--accent);
    border: none;
    border-radius: 5px;
    padding: 10px 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    color: white;
}

.btn-call:hover {
    background: #010735;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    color: white;
}
.btn-outline-secondary {
    border: 1px solid #e2e8f0;
    color: #000;
    background: white;
    border-radius: 5px;
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
}

.btn-outline-secondary:hover {
    border-color: #010735;
    color: var(--accent);
    background: #eff6ff;
    transform: translateY(-1px);
}

.help-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
     font-size: 16px;
    color: #000;
    padding: 10px;
    background: white;
    border-radius: 5px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.help-stats i {
    color: #10b981;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .card-left-section {
        flex: 0 0 280px;
        padding: 1.5rem;
    }
    
    .card-right-section {
        flex: 0 0 220px;
        padding: 1.5rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .company-card-landscape {
        flex-direction: column;
        min-height: auto;
    }
    
    .card-left-section,
    .card-center-section,
    .card-right-section {
        flex: none;
        border: none;
    }
    
    .card-left-section {
        border-bottom: 1px solid #e2e8f0;
    }
    
    .card-center-section {
        border-bottom: 1px solid #e2e8f0;
    }
    
    .company-header {
        margin-bottom: 1rem;
    }
    
    .rating-badges-section {
        flex-direction: row;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .badges {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-actions {
        flex-direction: row;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .company-logo {
    width: 243px;
    
}
    .section-title {
        font-size: 2rem;
    }
    
    .company-card-landscape {
        margin-bottom: 1.5rem;
    }
    
    .card-left-section,
    .card-center-section,
    .card-right-section {
        padding: 1.25rem;
    }
    
    .company-name {
        font-size: 1.25rem;
    }
    
    .rating-badges-section {
        flex-direction: column;
        gap: 1rem;
    }
    
    .badges {
        gap: 0.375rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-actions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .company-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    
    
    .badge-item {
        font-size: 0.6875rem;
        padding: 0.375rem 0.5rem;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.company-card-landscape {
    animation: fadeInUp 0.6s ease-out;
}

.company-card-landscape:nth-child(1) { animation-delay: 0.1s; }
.company-card-landscape:nth-child(2) { animation-delay: 0.2s; }
.company-card-landscape:nth-child(3) { animation-delay: 0.3s; }

/* Focus states for accessibility */
.btn:focus,
.company-card-landscape:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .company-card-landscape {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #e2e8f0;
    }
}


/*css below banner cards*/
/* Section Header */
.prt-section_title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.prt-section_subtitle {
    font-size: 1.125rem;
    color: #64748b;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Company Card */
.prt-company_card {
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.prt-company_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--accent);
}

/* Card Header */
.prt-card_header {
    padding: 1.5rem 1.5rem 0;
    background: transparent;
    border: none;
}

.prt-company_info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
}

.prt-company_logo {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 12px;
    display: flex
;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}
section.below_banner_cards
 {
    padding-top: 70px;
}
.prt-company_details {
    flex: 1;
    min-width: 0;
}

.prt-company_name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.prt-company_location {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.prt-company_location i {
    color: #94a3b8;
    font-size: 0.75rem;
}

.prt-verification_badge {
    position: absolute;
    top: 0;
    right: 0;
    color: #10b981;
    font-size: 1.25rem;
}

/* Card Body */
.prt-card_body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Rating Section */
.prt-rating_section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prt-stars {
    display: flex;
    gap: 0.125rem;
}

.prt-stars i {
    color: #fbbf24;
    font-size: 0.875rem;
}

.prt-stars .far {
    color: #d1d5db;
}

.prt-rating_count {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

/* Badges */
.prt-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.prt-badge_item {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: #f1f5f9;
    color: #475569;
    padding: 0.375rem 0.75rem;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

.prt-badge_item i {
    font-size: 0.625rem;
    color: #64748b;
}

/* Company Description */
.prt-company_description {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Highlights */
.prt-highlights {
    flex: 1;
}

.prt-highlights-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prt-highlights-title::before {
    content: '';
    width: 3px;
    height: 16px;
    background: var(--accent);
    border-radius: 2px;
}

.prt-highlights-list {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.prt-highlights-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #4b5563;
    padding: 0.5rem 0;
}

.prt-highlights-list i {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    color: var(--accent);
    border-radius: 4px;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Card Footer */
.prt-card_footer {
    padding: 1.5rem;
    background: #f8fafc;
    border: none;
    margin-top: auto;
}

.prt-contact_actions {
    margin-bottom: 1rem;
}

.prt-btn_call {
    width: 100%;
    background: var(--accent);
    border: none;
    border-radius: 12px;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.prt-btn_call:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.prt-secondary_actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.btn-outline-secondary {
    border: 1px solid #e2e8f0;
    color: #64748b;
    background: white;
    border-radius: 5px;
    padding: 0.625rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
}

.btn-outline-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: #eff6ff;
    transform: translateY(-1px);
}

.prt-help_stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #64748b;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 5px;
    border: 1px solid #e2e8f0;
}

.prt-help_stats i {
    color: #10b981;
    font-size: 0.875rem;
}

ul.prt-prt-highlights_list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.prt-highlights h4 {
    color: #1a202c;
    font-size: 20px;
}
ul.prt-prt-highlights_list li
 {
    padding-bottom: 10px;
}
ul.prt-prt-highlights_list i {
    color: var(--accent);
    margin-right: 10px;
}
/* Responsive Design */
@media (max-width: 768px) {
    .prt-section_title {
        font-size: 2rem;
    }
    
    .prt-company_card {
        margin-bottom: 1.5rem;
    }
    
    .prt-company_info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .prt-verification_badge {
        position: static;
        align-self: flex-end;
        margin-top: -2rem;
    }
    
    .prt-secondary_actions {
        grid-template-columns: 1fr;
    }
    
    .prt-highlights-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    .prt-section_title {
        font-size: 1.75rem;
    }
    
    .prt-section_subtitle {
        font-size: 1rem;
    }
    
    .prt-card_header,
    .prt-card_body,
    .prt-card_footer {
        padding: 1.25rem;
    }
    
    .prt-company_name {
        font-size: 1.125rem;
    }
    
    .prt-badges {
        gap: 0.375rem;
    }
    
    .prt-badge_item {
        font-size: 0.6875rem;
        padding: 0.25rem 0.5rem;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.prt-company_card {
    animation: fadeInUp 0.6s ease-out;
}

.prt-company_card:nth-child(1) { animation-delay: 0.1s; }
.prt-company_card:nth-child(2) { animation-delay: 0.2s; }
.prt-company_card:nth-child(3) { animation-delay: 0.3s; }

/* Focus states for accessibility */
.btn:focus,
.prt-company_card:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .prt-company_card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #e2e8f0;
    }
}








