

                  .nice-select .list {
max-height: 250px;
overflow-y: auto !important;
overflow-x: hidden;
}

/* Scrollbar Design */
.nice-select .list::-webkit-scrollbar {
width: 6px;
}

.nice-select .list::-webkit-scrollbar-track {
background: #f1f1f1;
}

.nice-select .list::-webkit-scrollbar-thumb {
background: #999;
border-radius: 10px;
}

.nice-select .list::-webkit-scrollbar-thumb:hover {
background: #666;
}
.select-box i {
    color: #ECA90D !important;
}
                               
/* ============================================
   5. BORDER FRAME DESIGN
   ============================================ */
.design-border-frame {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.design-border-frame .auto-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-justify {
    text-align: justify;
    text-justify: inter-word;
}

/* Main Wrapper with Border Frame */
.design-border-frame .main-wrapper {
    position: relative;
    padding: 40px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(1, 41, 94, 0.06);
    transition: all 0.3s ease;
}

.design-border-frame .main-wrapper::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid rgba(236, 169, 13, 0.15);
    border-radius: 16px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.design-border-frame .main-wrapper:hover {
    box-shadow: 0 30px 80px rgba(1, 41, 94, 0.12);
}

.design-border-frame .main-wrapper:hover::before {
    border-color: rgba(236, 169, 13, 0.3);
}

/* Image Box */
.design-border-frame .image-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(1, 41, 94, 0.08);
}

.design-border-frame .image-box img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.design-border-frame .image-box:hover img {
    transform: scale(1.03);
}

/* Frame Border Overlay */
.design-border-frame .frame-border {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 3px solid rgba(236, 169, 13, 0.2);
    border-radius: 12px;
    z-index: 2;
    pointer-events: none;
    transition: all 0.3s ease;
}

.design-border-frame .image-box:hover .frame-border {
    border-color: rgba(236, 169, 13, 0.5);
}

/* Floating Badge */
.design-border-frame .floating-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 22px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(1, 41, 94, 0.12);
    border: 1px solid rgba(236, 169, 13, 0.15);
    z-index: 3;
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.design-border-frame .floating-badge i {
    color: #ECA90D;
    font-size: 24px;
    flex-shrink: 0;
}

.design-border-frame .floating-badge strong {
    display: block;
    font-size: 15px;
    color: #01295E;
    font-weight: 700;
}

.design-border-frame .floating-badge span {
    display: block;
    font-size: 11px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Content */
.design-border-frame .content {
    padding-left: 40px;
}

.design-border-frame .content .number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(236, 169, 13, 0.08);
    line-height: 1;
    margin-bottom: -15px;
    letter-spacing: -2px;
}

.design-border-frame .content h5 {
    color: #ECA90D;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.design-border-frame .content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #01295E;
    margin-bottom: 15px;
    line-height: 1.2;
}

.design-border-frame .content h2 span {
    color: #ECA90D;
    position: relative;
}

.design-border-frame .content h2 span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ECA90D;
    opacity: 0.3;
    border-radius: 2px;
}

.design-border-frame .content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* Mission Box */
.design-border-frame .mission {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #f8f9fc;
    padding: 20px 25px;
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
    position: relative;
}

.design-border-frame .mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #ECA90D;
    border-radius: 4px 0 0 4px;
}

.design-border-frame .mission:hover {
    border-color: #ECA90D;
    box-shadow: 0 8px 25px rgba(236, 169, 13, 0.1);
    transform: translateY(-2px);
}

.design-border-frame .mission-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #ECA90D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(236, 169, 13, 0.3);
}

.design-border-frame .mission-text h4 {
    color: #01295E;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 3px;
}

.design-border-frame .mission-text p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.7;
}

/* Find Plot Heading */
.design-border-frame .content h3 {
    font-size: 26px;
    font-weight: 700;
    color: #01295E;
    margin: 15px 0 20px;
    position: relative;
    display: inline-block;
}

.design-border-frame .content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ECA90D;
    border-radius: 2px;
}

/* Buttons */
.design-border-frame .buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.design-border-frame .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border:none;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.design-border-frame .btn-primary {
    background: #ECA90D;
    color: #fff;
    box-shadow: 0 8px 25px rgba(236, 169, 13, 0.3);
}

.design-border-frame .btn-primary:hover {
    background: #d49a0c;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(236, 169, 13, 0.4);
    color: #fff;
}

.design-border-frame .btn-primary i {
    transition: transform 0.3s ease;
}

.design-border-frame .btn-primary:hover i {
    transform: translateX(4px);
}

.design-border-frame .btn-outline {
    background: transparent;
    color: #01295E;
    border: 2px solid #01295E;
}

.design-border-frame .btn-outline i {
    color: #ECA90D;
    transition: color 0.3s ease;
}

.design-border-frame .btn-outline:hover {
    background: #01295E;
    color: #fff;
    transform: translateY(-3px);
}

.design-border-frame .btn-outline:hover i {
    color: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .design-border-frame {
        padding: 60px 0;
    }
    
    .design-border-frame .content {
        padding-left: 0;
        padding-top: 35px;
    }
    
    .design-border-frame .content h2 {
        font-size: 32px;
    }
    
    .design-border-frame .main-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .design-border-frame {
        padding: 50px 0;
    }
    
    .design-border-frame .content h2 {
        font-size: 28px;
    }
    
    .design-border-frame .content h3 {
        font-size: 22px;
    }
    
    .design-border-frame .mission {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 18px 20px;
    }
    
    .design-border-frame .mission::before {
        width: 100%;
        height: 4px;
        top: 0;
        left: 0;
        border-radius: 0 0 4px 4px;
    }
    
    .design-border-frame .mission-text p {
        text-align: justify;
    }
    
    .design-border-frame .floating-badge {
        padding: 12px 18px;
        bottom: 20px;
        left: 20px;
    }
    
    .design-border-frame .floating-badge i {
        font-size: 20px;
    }
    
    .design-border-frame .floating-badge strong {
        font-size: 14px;
    }
    
    .design-border-frame .floating-badge span {
        font-size: 10px;
    }
    
    .design-border-frame .btn {
        padding: 12px 28px;
        font-size: 14px;
    }
    
    .design-border-frame .buttons {
        justify-content: center;
    }
    
    .design-border-frame .content .number {
        font-size: 36px;
        margin-bottom: -12px;
    }
}

@media (max-width: 480px) {
    .design-border-frame {
        padding: 30px 0;
    }
    
    .design-border-frame .main-wrapper {
        padding: 15px;
    }
    
    .design-border-frame .main-wrapper::before {
        top: 8px;
        left: 8px;
        right: 8px;
        bottom: 8px;
        border-width: 1.5px;
    }
    
    .design-border-frame .content h2 {
        font-size: 24px;
    }
    
    .design-border-frame .content h3 {
        font-size: 20px;
    }
    
    .design-border-frame .content p {
        font-size: 14px;
    }
    
    .design-border-frame .mission {
        padding: 16px;
    }
    
    .design-border-frame .mission-text h4 {
        font-size: 16px;
    }
    
    .design-border-frame .mission-text p {
        font-size: 14px;
    }
    
    .design-border-frame .mission-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .design-border-frame .floating-badge {
        padding: 8px 14px;
        bottom: 15px;
        left: 15px;
        gap: 8px;
        border-radius: 10px;
    }
    
    .design-border-frame .floating-badge i {
        font-size: 16px;
    }
    
    .design-border-frame .floating-badge strong {
        font-size: 12px;
    }
    
    .design-border-frame .floating-badge span {
        font-size: 9px;
    }
    
    .design-border-frame .btn {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
    
    .design-border-frame .buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .design-border-frame .frame-border {
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-width: 2px;
    }
    
    .design-border-frame .content .number {
        font-size: 28px;
        margin-bottom: -10px;
    }
}


/* ============================================
   FEATURED PROJECTS SECTION
   ============================================ */
.featured-projects-section {
    padding: 80px 0;
    background: #f8faff;
    position: relative;
}

.featured-projects-section .auto-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-justify {
    text-align: justify;
    text-justify: inter-word;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.header-left h5 {
    color: #ECA90D;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.header-left h2 {
    font-size: 38px;
    font-weight: 700;
    color: #01295E;
    margin-bottom: 8px;
}

.header-left h2 span {
    color: #ECA90D;
}

.header-left p {
    font-size: 16px;
    color: #666;
    max-width: 500px;
    margin: 0;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: #01295E;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.view-all-btn:hover {
    background: #ECA90D;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(236, 169, 13, 0.35);
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

.mobile-view-all {
    display: none;
    text-align: center;
    margin-top: 30px;
}

/* ============================================
   TAB NAVIGATION - BUTTON STYLE
   ============================================ */
.tab-navigation {
    display: flex;
    gap: 12px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: #ffffff;
    border: 2px solid #e0e6ef;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #888;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.tab-btn i {
    font-size: 15px;
}

.tab-btn:hover {
    border-color: #ECA90D;
    color: #01295E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 169, 13, 0.12);
}

.tab-btn.active {
    background: #ECA90D;
    border-color: #ECA90D;
    color: #fff;
    box-shadow: 0 8px 25px rgba(236, 169, 13, 0.35);
}

.tab-btn.active i {
    color: #fff;
}

.tab-btn.active:hover {
    background: #d49a0c;
    border-color: #d49a0c;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(236, 169, 13, 0.45);
}

/* ============================================
   TAB CONTENT
   ============================================ */
.tab-panel {
    display: none;
    animation: fadeSlide 0.5s ease forwards;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeSlide {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ============================================
   PROJECTS GRID
   ============================================ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

/* ============================================
   PROJECT CARD
   ============================================ */
.project-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(1, 41, 94, 0.06);
    transition: all 0.4s ease;
    border: 1px solid #eef2f7;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(1, 41, 94, 0.12);
    border-color: rgba(236, 169, 13, 0.2);
}

/* Card Image */
.card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .card-image img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ECA90D;
    color: #fff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-badge {
    background: #01295E;
}

/* Card Body */
.card-body {
    padding: 20px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.card-meta span {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-meta i {
    color: #ECA90D;
    font-size: 13px;
}

.card-body h4 {
    font-size: 18px;
    font-weight: 700;
    color: #01295E;
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-body p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   CARD ACTIONS - 3 BUTTONS
   ============================================ */
.card-actions {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 14px;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 70px;
    text-decoration: none;
    text-align: center;
}

.action-btn i {
    font-size: 13px;
}

/* Price Button */
.price-btn {
     background: #2e7d32;
    color: #fff;
}

.price-btn:hover {
    
    background: #e8f5e9;
    color: #2e7d32;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

/* SqFt Button */
.sqft-btn {
    
     background: #0d47a1;
    color: #fff;
}

.sqft-btn:hover {
    background: #e3f2fd;
    color: #0d47a1;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 71, 161, 0.3);
}

/* Brochure Button */
.brochure-btn {
    
     background: #c62828;
    color: #fff;
}

.brochure-btn:hover {
   background: #fce4ec;
    color: #c62828;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(198, 40, 40, 0.3);
}

.brochure-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.brochure-btn.disabled:hover {
    transform: none;
    box-shadow: none;
    background: #fce4ec;
    color: #c62828;
}

/* ============================================
   DETAILS BUTTON
   ============================================ */
.details-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ECA90D;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
}

.details-btn i {
    transition: transform 0.3s ease;
    font-size: 13px;
}

.details-btn:hover {
    color: #01295E;
}

.details-btn:hover i {
    transform: translateX(5px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .featured-projects-section {
        padding: 60px 0;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .header-left h2 {
        font-size: 32px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 20px;
    }
    
    .tab-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .featured-projects-section {
        padding: 50px 0;
    }
    
    .header-left h2 {
        font-size: 28px;
    }
    
    .header-left p {
        font-size: 14px;
    }
    
    .view-all-btn {
        padding: 10px 22px;
        font-size: 14px;
    }
    
    .tab-navigation {
        gap: 10px;
        justify-content: center;
    }
    
    .tab-btn {
        padding: 10px 22px;
        font-size: 14px;
        flex: 1;
        justify-content: center;
        min-width: 120px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .card-body {
        padding: 16px 18px 18px;
    }
    
    .card-body h4 {
        font-size: 16px;
    }
    
    .card-meta span {
        font-size: 12px;
    }
    
    .card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .card-actions {
        gap: 6px;
    }
    
    .action-btn {
        padding: 6px 10px;
        font-size: 11px;
        min-width: 60px;
    }
    
    .action-btn i {
        font-size: 11px;
    }
    
    .mobile-view-all {
        display: block;
    }
    
    .section-header .view-all-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .featured-projects-section {
        padding: 30px 0;
    }
    
    .header-left h2 {
        font-size: 24px;
    }
    
    .header-left p {
        font-size: 13px;
    }
    
    .tab-navigation {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
        min-width: unset;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .card-body h4 {
        font-size: 15px;
    }
    
    .card-body p {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
    
    .card-actions {
        gap: 5px;
    }
    
    .action-btn {
        padding: 6px 8px;
        font-size: 10px;
        min-width: 50px;
        flex: 1;
    }
    
    .action-btn i {
        font-size: 10px;
    }
    
    .details-btn {
        font-size: 13px;
    }
    
    .view-all-btn {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   SMALL SCREEN EXTRA
   ============================================ */
@media (max-width: 380px) {
    .card-meta span {
        font-size: 11px;
    }
    
    .card-badge {
        font-size: 9px;
        padding: 3px 10px;
        top: 10px;
        right: 10px;
    }
    
    .tab-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .action-btn {
        font-size: 9px;
        padding: 5px 6px;
        min-width: 40px;
    }
    
    .action-btn i {
        font-size: 9px;
    }
}



/* ============================================
   PROJECT HIGHLIGHTS SECTION
   ============================================ */
.project-highlights-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.project-highlights-section .auto-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ============================================
   SECTION TITLE
   ============================================ */
.sec-title {
    text-align: center;
    margin-bottom: 45px;
}

.sec-title h5 {
    color: #ECA90D;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.sec-title h2 {
    font-size: 38px;
    font-weight: 700;
    color: #01295E;
    margin-bottom: 10px;
}

.sec-title h2 span {
    color: #ECA90D;
}

.sec-title p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   HIGHLIGHTS GRID
   ============================================ */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ============================================
   HIGHLIGHT ITEM
   ============================================ */
.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 20px;
    background: #f8faff;
    border-radius: 12px;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: #ffffff;
    border-color: #ECA90D;
    box-shadow: 0 8px 25px rgba(236, 169, 13, 0.1);
    transform: translateY(-3px);
}

.highlight-item .icon-box {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #ECA90D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    margin-top: 2px;
}

.highlight-item .text-box h4 {
    font-size: 16px;
    font-weight: 700;
    color: #01295E;
    margin-bottom: 2px;
}

.highlight-item .text-box p {
    font-size: 13px;
    color: #888;
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet Large */
@media (max-width: 992px) {
    .project-highlights-section {
        padding: 60px 0;
    }
    
    .sec-title h2 {
        font-size: 32px;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

/* Tablet Small */
@media (max-width: 768px) {
    .project-highlights-section {
        padding: 50px 0;
    }
    
    .sec-title h2 {
        font-size: 28px;
    }
    
    .sec-title p {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .highlight-item {
        padding: 15px 16px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .highlight-item .icon-box {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .highlight-item .text-box h4 {
        font-size: 15px;
    }
    
    .highlight-item .text-box p {
        font-size: 12px;
    }
}

/* Mobile Large */
@media (max-width: 576px) {
    .project-highlights-section {
        padding: 40px 0;
    }
    
    .sec-title h2 {
        font-size: 24px;
    }
    
    .sec-title p {
        font-size: 13px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .highlight-item {
        padding: 14px 14px;
        border-radius: 10px;
        gap: 10px;
    }
    
    .highlight-item .icon-box {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    .highlight-item .text-box h4 {
        font-size: 14px;
    }
    
    .highlight-item .text-box p {
        font-size: 11px;
        display: none;
    }
}

/* Mobile Small */
@media (max-width: 400px) {
    .project-highlights-section {
        padding: 30px 0;
    }
    
    .sec-title h2 {
        font-size: 22px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .highlight-item {
        padding: 12px 10px;
        border-radius: 8px;
    }
    
    .highlight-item .icon-box {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .highlight-item .text-box h4 {
        font-size: 12px;
    }
}

/* Extra Small */
@media (max-width: 340px) {
    .highlights-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .highlight-item {
        padding: 10px 8px;
    }
    
    .highlight-item .icon-box {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
    
    .highlight-item .text-box h4 {
        font-size: 11px;
    }
}



/* ============================================
   GALLERY PREVIEW - UNIQUE CLASSES
   ============================================ */
.tp-gallery-section {
    padding: 80px 0;
    background: #f8faff;
    position: relative;
}

.tp-auto-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section Title */
.tp-sec-title {
    text-align: center;
    margin-bottom: 40px;
}

.tp-gallery-subtitle {
    color: #ECA90D;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.tp-gallery-title {
    font-size: 38px;
    font-weight: 700;
    color: #01295E;
    margin-bottom: 10px;
}

.tp-gallery-span {
    color: #ECA90D;
}

.tp-gallery-desc {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Tabs */
.tp-gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.tp-tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: #ffffff;
    border: 2px solid #e0e6ef;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.tp-tab-btn i {
    font-size: 18px;
}

.tp-tab-btn .tp-count {
    background: #eef2f7;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 12px;
    color: #666;
    transition: all 0.3s ease;
}

.tp-tab-btn:hover {
    border-color: #ECA90D;
    color: #01295E;
    transform: translateY(-2px);
}

.tp-tab-btn.tp-active {
    background: #ECA90D;
    border-color: #ECA90D;
    color: #fff;
    box-shadow: 0 8px 25px rgba(236, 169, 13, 0.35);
}

.tp-tab-btn.tp-active .tp-count {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Grid */
.tp-tab-panel {
    display: none;
    animation: tpFadeSlide 0.4s ease forwards;
}

.tp-tab-panel.tp-active {
    display: block;
}

@keyframes tpFadeSlide {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

.tp-gallery-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tp-empty-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #888;
    font-size: 16px;
}

/* Gallery Item */
.tp-gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    box-shadow: 0 8px 30px rgba(1, 41, 94, 0.06);
    transition: all 0.4s ease;
    border: 1px solid #eef2f7;
}

.tp-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(1, 41, 94, 0.12);
    border-color: rgba(236, 169, 13, 0.2);
}

.tp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tp-gallery-item:hover img {
    transform: scale(1.05);
}

/* Video Play Button */
.tp-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(236, 169, 13, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    border: 3px solid #fff;
    box-shadow: 0 0 30px rgba(236, 169, 13, 0.4);
    transition: all 0.3s ease;
    pointer-events: none;
}

.tp-video-item:hover .tp-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: #01295E;
}

/* View All Button */
.tp-view-all-wrap {
    text-align: center;
    margin-top: 40px;
}

.tp-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: #01295E;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tp-view-btn:hover {
    background: #ECA90D;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(236, 169, 13, 0.35);
}

.tp-view-btn i {
    transition: transform 0.3s ease;
}

.tp-view-btn:hover i {
    transform: translateX(5px);
}

/* Lightbox Modal */
.tp-lightbox-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.tp-lightbox-modal.tp-active {
    display: flex;
}

.tp-lightbox-modal .tp-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.tp-lightbox-modal .tp-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

/* Video Modal */
.tp-video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.tp-video-modal.tp-active {
    display: flex;
}

.tp-video-modal .tp-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
}

.tp-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.tp-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Close Button */
.tp-close-btn {
    position: absolute;
    top: -45px;
    right: 0;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease;
    line-height: 1;
}

.tp-close-btn:hover {
    transform: rotate(90deg);
    color: #ECA90D;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .tp-gallery-section { padding: 60px 0; }
    .tp-gallery-title { font-size: 32px; }
    .tp-gallery-items { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .tp-tab-btn { padding: 10px 24px; font-size: 15px; }
}

@media (max-width: 768px) {
    .tp-gallery-section { padding: 50px 0; }
    .tp-gallery-title { font-size: 28px; }
    .tp-gallery-desc { font-size: 14px; padding: 0 15px; }
    .tp-gallery-items { grid-template-columns: 1fr 1fr; gap: 15px; }
    .tp-play-btn { width: 50px; height: 50px; font-size: 20px; }
    .tp-view-btn { padding: 12px 28px; font-size: 14px; }
    .tp-close-btn { top: -35px; font-size: 30px; }
    .tp-video-modal { padding: 10px; }
}

@media (max-width: 576px) {
    .tp-gallery-section { padding: 40px 0; }
    .tp-gallery-title { font-size: 24px; }
    .tp-gallery-desc { font-size: 13px; }
    .tp-gallery-tabs { gap: 10px; }
    .tp-tab-btn { padding: 8px 16px; font-size: 13px; gap: 6px; }
    .tp-tab-btn i { font-size: 14px; }
    .tp-tab-btn .tp-count { font-size: 10px; padding: 1px 8px; }
    .tp-gallery-items { grid-template-columns: 1fr 1fr; gap: 12px; }
    .tp-gallery-item { border-radius: 10px; }
    .tp-play-btn { width: 40px; height: 40px; font-size: 16px; border-width: 2px; }
    .tp-view-all-wrap { margin-top: 30px; }
    .tp-view-btn { padding: 10px 20px; font-size: 13px; width: 100%; justify-content: center; }
    .tp-close-btn { top: -30px; font-size: 28px; }
    .tp-video-modal { padding: 8px; }
    .tp-video-wrapper { border-radius: 8px; }
}

@media (max-width: 400px) {
    .tp-gallery-section { padding: 30px 0; }
    .tp-gallery-title { font-size: 22px; }
    .tp-gallery-items { grid-template-columns: 1fr 1fr; gap: 10px; }
    .tp-tab-btn { padding: 6px 12px; font-size: 12px; gap: 4px; }
    .tp-tab-btn i { font-size: 12px; }
    .tp-tab-btn .tp-count { font-size: 9px; padding: 1px 6px; }
    .tp-play-btn { width: 34px; height: 34px; font-size: 14px; border-width: 2px; }
}



/* ============================================
   PARTNER WITH US SECTION - SCOPED .tp-partner-
   ============================================ */

/* ------------------------------------------------
   SECTION WRAPPER
   ------------------------------------------------ */
.tp-partner-section {
    padding: 50px 0;
    background: #ffffff;
}

.tp-partner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ------------------------------------------------
   HEADER
   ------------------------------------------------ */
.tp-partner-header {
    text-align: center;
    margin-bottom: 45px;
}

.tp-partner-badge {
    display: inline-block;
    background: rgba(236, 169, 13, 0.12);
    color: #ECA90D;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 22px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.tp-partner-title {
    font-size: 38px;
    font-weight: 800;
    color: #01295E;
    margin-bottom: 8px;
    line-height: 1.2;
}

.tp-partner-title span {
    color: #ECA90D;
}

.tp-partner-subtitle {
    font-size: 16px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ------------------------------------------------
   TWO-COLUMN LAYOUT
   ------------------------------------------------ */
.tp-partner-layout {
    display: flex;
    gap: 50px;
    align-items: center;
}

.tp-partner-left {
    flex: 0 0 48%;
    max-width: 48%;
}

.tp-partner-right {
    flex: 1;
    min-width: 0;
}

/* ------------------------------------------------
   IMAGE BOX
   ------------------------------------------------ */
.tp-partner-image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(1, 41, 94, 0.08);
}

.tp-partner-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.tp-partner-image-box:hover img {
    transform: scale(1.02);
}

.tp-partner-image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 14px 22px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(1, 41, 94, 0.12);
    border-left: 4px solid #ECA90D;
}

.tp-partner-image-badge i {
    color: #ECA90D;
    font-size: 24px;
}

.tp-partner-image-badge span {
    font-size: 15px;
    font-weight: 700;
    color: #01295E;
}

/* ------------------------------------------------
   CONTENT
   ------------------------------------------------ */
.tp-partner-content {
    padding-left: 10px;
}

.tp-partner-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
}

.text-justify {
    text-align: justify;
    text-justify: inter-word;
}

/* ------------------------------------------------
   WHO CAN JOIN
   ------------------------------------------------ */
.tp-partner-who h4 {
    font-size: 18px;
    font-weight: 700;
    color: #01295E;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tp-partner-who h4 i {
    color: #ECA90D;
}

.tp-partner-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}

.tp-partner-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #4a5568;
    padding: 6px 0;
    font-weight: 500;
}

.tp-partner-list li i {
    color: #ECA90D;
    font-size: 16px;
    flex-shrink: 0;
}

/* ------------------------------------------------
   BUTTON
   ------------------------------------------------ */
.tp-partner-btn-wrap {
    margin-top: 5px;
}

.tp-partner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: #ECA90D;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(236, 169, 13, 0.3);
}

.tp-partner-btn:hover {
    background: #d49a0c;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(236, 169, 13, 0.4);
    color: #fff;
}

.tp-partner-btn i {
    transition: transform 0.3s ease;
}

.tp-partner-btn:hover i {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
    .tp-partner-section {
        padding: 60px 0;
    }

    .tp-partner-title {
        font-size: 32px;
    }

    .tp-partner-layout {
        flex-direction: column;
        gap: 35px;
    }

    .tp-partner-left {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .tp-partner-content {
        padding-left: 0;
    }

    .tp-partner-list {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .tp-partner-section {
        padding: 50px 0;
    }

    .tp-partner-title {
        font-size: 28px;
    }

    .tp-partner-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }

    .tp-partner-header {
        margin-bottom: 35px;
    }

    .tp-partner-badge {
        font-size: 11px;
        padding: 4px 16px;
    }

    .tp-partner-description {
        font-size: 14px;
    }

    .tp-partner-who h4 {
        font-size: 16px;
    }

    .tp-partner-list {
        grid-template-columns: 1fr 1fr;
        gap: 6px 14px;
    }

    .tp-partner-list li {
        font-size: 14px;
        padding: 4px 0;
    }

    .tp-partner-image-badge {
        bottom: 20px;
        left: 20px;
        padding: 12px 18px;
        gap: 10px;
    }

    .tp-partner-image-badge i {
        font-size: 20px;
    }

    .tp-partner-image-badge span {
        font-size: 13px;
    }

    .tp-partner-btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .tp-partner-section {
        padding: 40px 0;
    }

    .tp-partner-title {
        font-size: 24px;
    }

    .tp-partner-subtitle {
        font-size: 13px;
    }

    .tp-partner-list {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .tp-partner-list li {
        font-size: 14px;
    }

    .tp-partner-image-badge {
        bottom: 15px;
        left: 15px;
        padding: 10px 14px;
        gap: 8px;
    }

    .tp-partner-image-badge i {
        font-size: 16px;
    }

    .tp-partner-image-badge span {
        font-size: 12px;
    }

    .tp-partner-btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}

/* Extra Small */
@media (max-width: 360px) {
    .tp-partner-title {
        font-size: 22px;
    }

    .tp-partner-description {
        font-size: 13px;
    }

    .tp-partner-list li {
        font-size: 13px;
    }
}



/* ============================================
   TESTIMONIALS SECTION - INFINITE AUTO LOOP
   ============================================ */

.tp-testimonials-section {
    padding: 50px 0;
    background: #f8faff;
}

.tp-testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.tp-testimonials-header {
    text-align: center;
    margin-bottom: 35px;
}

.tp-testimonials-badge {
    display: inline-block;
    background: rgba(236, 169, 13, 0.12);
    color: #ECA90D;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 22px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.tp-testimonials-title {
    font-size: 36px;
    font-weight: 800;
    color: #01295E;
    margin-bottom: 8px;
    line-height: 1.2;
}

.tp-testimonials-title span {
    color: #ECA90D;
}

.tp-testimonials-subtitle {
    font-size: 16px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Rating */
.tp-testimonials-rating {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #eef2f7;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.tp-rating-stars {
    display: inline-flex;
    gap: 4px;
    margin-bottom: 6px;
}

.tp-rating-stars i {
    color: #ECA90D;
    font-size: 22px;
}

.tp-rating-text {
    font-size: 18px;
    color: #01295E;
}

.tp-rating-text strong {
    font-weight: 700;
    color: #ECA90D;
}

.tp-rating-desc {
    font-size: 14px;
    color: #888;
    margin-top: 4px;
}

/* Slider */
.tp-testimonials-slider {
    position: relative;
    overflow: hidden;
    margin: 0 -10px;
}

.tp-testimonials-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

/* Testimonial Item */
.tp-testimonial-item {
    flex: 0 0 33.333%;
    padding: 0 10px;
    box-sizing: border-box;
}

.tp-testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px 24px;
    border: 1px solid #eef2f7;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tp-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    border-color: rgba(236, 169, 13, 0.15);
}

.tp-testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.tp-testimonial-stars i {
    color: #ECA90D;
    font-size: 16px;
}

.tp-testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    flex: 1;
    margin-bottom: 16px;
    font-style: italic;
}

.tp-testimonial-text::before {
    content: '"';
    color: #ECA90D;
    font-size: 20px;
    font-weight: 700;
    margin-right: 2px;
}

.tp-testimonial-text::after {
    content: '"';
    color: #ECA90D;
    font-size: 20px;
    font-weight: 700;
    margin-left: 2px;
}

.tp-testimonial-author h4 {
    font-size: 16px;
    font-weight: 700;
    color: #01295E;
    margin: 0 0 2px 0;
}

.tp-testimonial-author span {
    font-size: 13px;
    color: #888;
}

/* Arrows */
.tp-testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #eef2f7;
    background: #ffffff;
    color: #4a5568;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.tp-testimonial-arrow:hover {
    background: #ECA90D;
    border-color: #ECA90D;
    color: #fff;
    box-shadow: 0 4px 20px rgba(236, 169, 13, 0.3);
}

.tp-arrow-prev {
    left: 5px;
}

.tp-arrow-next {
    right: 5px;
}

/* Dots */
.tp-testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.tp-testimonials-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #e0e6ef;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.tp-testimonials-dots button.active {
    background: #ECA90D;
    border-color: #ECA90D;
    transform: scale(1.2);
}

.tp-testimonials-dots button:hover {
    border-color: #ECA90D;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .tp-testimonials-section { padding: 60px 0; }
    .tp-testimonials-title { font-size: 30px; }
    .tp-testimonial-item { flex: 0 0 50%; }
    .tp-testimonial-arrow { width: 38px; height: 38px; font-size: 15px; }
    .tp-arrow-prev { left: 0; }
    .tp-arrow-next { right: 0; }
}

@media (max-width: 768px) {
    .tp-testimonials-section { padding: 50px 0; }
    .tp-testimonials-title { font-size: 26px; }
    .tp-testimonials-subtitle { font-size: 14px; padding: 0 10px; }
    .tp-rating-stars i { font-size: 18px; }
    .tp-rating-text { font-size: 16px; }
    .tp-testimonial-item { flex: 0 0 100%; }
    .tp-testimonial-card { padding: 22px 18px; }
    .tp-testimonial-text { font-size: 14px; }
    .tp-testimonial-arrow { width: 34px; height: 34px; font-size: 14px; }
}

@media (max-width: 480px) {
    .tp-testimonials-section { padding: 40px 0; }
    .tp-testimonials-title { font-size: 22px; }
    .tp-testimonials-badge { font-size: 11px; padding: 4px 16px; }
    .tp-testimonial-card { padding: 18px 14px; }
    .tp-testimonial-text { font-size: 13px; }
    .tp-testimonial-author h4 { font-size: 15px; }
    .tp-testimonial-author span { font-size: 12px; }
    .tp-rating-desc { font-size: 13px; }
    .tp-testimonial-arrow { width: 30px; height: 30px; font-size: 12px; }
    .tp-arrow-prev { left: 0; }
    .tp-arrow-next { right: 0; }
}



/* ============================================
   FAQ SECTION - SCOPED .tp-faq-
   ============================================ */

/* ------------------------------------------------
   SECTION WRAPPER
   ------------------------------------------------ */
.tp-faq-section {
    padding: 50px 0;
    background: #ffffff;
}

.tp-faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ------------------------------------------------
   HEADER
   ------------------------------------------------ */
.tp-faq-header {
    text-align: center;
    margin-bottom: 45px;
}

.tp-faq-badge {
    display: inline-block;
    background: rgba(236, 169, 13, 0.12);
    color: #ECA90D;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 22px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.tp-faq-title {
    font-size: 38px;
    font-weight: 800;
    color: #01295E;
    margin-bottom: 8px;
    line-height: 1.2;
}

.tp-faq-title span {
    color: #ECA90D;
}

.tp-faq-subtitle {
    font-size: 16px;
    color: #6c757d;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ------------------------------------------------
   ACCORDION
   ------------------------------------------------ */
.tp-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 45px;
}

.tp-faq-item {
    border: 1px solid #eef2f7;
    border-radius: 14px;
    background: #f8faff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tp-faq-item:hover {
    border-color: rgba(236, 169, 13, 0.15);
}

.tp-faq-item.active {
    border-color: #ECA90D;
    background: #ffffff;
    box-shadow: 0 6px 25px rgba(236, 169, 13, 0.08);
}

.tp-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.tp-faq-question:hover {
    background: rgba(236, 169, 13, 0.04);
}

.tp-faq-item.active .tp-faq-question {
    background: rgba(236, 169, 13, 0.06);
}

.tp-faq-number {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 700;
    color: #ECA90D;
    background: rgba(236, 169, 13, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tp-faq-item.active .tp-faq-number {
    background: #ECA90D;
    color: #fff;
}

.tp-faq-text {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #01295E;
    line-height: 1.4;
}

.tp-faq-icon {
    flex-shrink: 0;
    color: #b0b8c4;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tp-faq-item.active .tp-faq-icon {
    color: #ECA90D;
    transform: rotate(180deg);
}

.tp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 22px;
}

.tp-faq-item.active .tp-faq-answer {
    max-height: 300px;
    padding: 2px     22px 20px 22px;
}

.tp-faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

/* ------------------------------------------------
   HELP SECTION
   ------------------------------------------------ */
.tp-faq-help {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8faff;
    border-radius: 16px;
    padding: 28px 32px;
    border: 1px solid #eef2f7;
    flex-wrap: wrap;
}

.tp-faq-help-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #ECA90D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.tp-faq-help-text {
    flex: 1;
    min-width: 180px;
}

.tp-faq-help-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #01295E;
    margin: 0 0 2px 0;
}

.tp-faq-help-text p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.tp-faq-help-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: #25D366;
    color: #fff !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.tp-faq-help-btn:hover {
    background: #1eba57;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: #fff !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
    .tp-faq-section {
        padding: 60px 0;
    }

    .tp-faq-title {
        font-size: 32px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .tp-faq-section {
        padding: 50px 0;
    }

    .tp-faq-title {
        font-size: 28px;
    }

    .tp-faq-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }

    .tp-faq-header {
        margin-bottom: 35px;
    }

    .tp-faq-badge {
        font-size: 11px;
        padding: 4px 16px;
    }

    .tp-faq-question {
        padding: 14px 16px;
        gap: 10px;
    }

    .tp-faq-text {
        font-size: 14px;
    }

    .tp-faq-number {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .tp-faq-item.active .tp-faq-answer {
        padding: 2px 16px 16px 16px;
    }

    .tp-faq-answer p {
        font-size: 14px;
    }

    .tp-faq-help {
        padding: 20px;
        gap: 16px;
        flex-direction: column;
        text-align: center;
    }

    .tp-faq-help-text {
        min-width: unset;
    }

    .tp-faq-help-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .tp-faq-section {
        padding: 40px 0;
    }

    .tp-faq-title {
        font-size: 24px;
    }

    .tp-faq-subtitle {
        font-size: 13px;
    }

    .tp-faq-question {
        padding: 12px 14px;
        gap: 8px;
    }

    .tp-faq-text {
        font-size: 13px;
    }

    .tp-faq-number {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .tp-faq-item.active .tp-faq-answer {
        padding: 2px 14px 14px 14px;
    }

    .tp-faq-answer p {
        font-size: 13px;
    }

    .tp-faq-help {
        padding: 16px;
        border-radius: 12px;
    }

    .tp-faq-help-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .tp-faq-help-text h4 {
        font-size: 15px;
    }

    .tp-faq-help-text p {
        font-size: 13px;
    }
}
.tp-faq-question {
    cursor: pointer;
}

.tp-faq-answer {
    cursor: pointer;
}


/* ============================================
   RECENT BLOGS SECTION - SCOPED .tp-recent-blogs-
   ============================================ */

/* ------------------------------------------------
   SECTION WRAPPER
   ------------------------------------------------ */
.tp-recent-blogs {
    padding: 50px 0;
    background: #f8faff;
}

.tp-recent-blogs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ------------------------------------------------
   HEADER
   ------------------------------------------------ */
.tp-recent-blogs-header {
    text-align: center;
    margin-bottom: 45px;
}

.tp-recent-blogs-badge {
    display: inline-block;
    background: rgba(236, 169, 13, 0.12);
    color: #ECA90D;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 22px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.tp-recent-blogs-title {
    font-size: 38px;
    font-weight: 800;
    color: #01295E;
    margin-bottom: 8px;
    line-height: 1.2;
}

.tp-recent-blogs-title span {
    color: #ECA90D;
}

.tp-recent-blogs-subtitle {
    font-size: 16px;
    color: #6c757d;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ------------------------------------------------
   BLOGS GRID
   ------------------------------------------------ */
.tp-recent-blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* ------------------------------------------------
   BLOG CARD
   ------------------------------------------------ */
.tp-recent-blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eef2f7;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tp-recent-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(236, 169, 13, 0.15);
}

.tp-recent-blog-image {
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.tp-recent-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tp-recent-blog-card:hover .tp-recent-blog-image img {
    transform: scale(1.05);
}

.tp-recent-blog-content {
    padding: 20px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tp-recent-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 10px;
}

.tp-recent-blog-meta span {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tp-recent-blog-meta i {
    color: #ECA90D;
    font-size: 14px;
}

.tp-recent-blog-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #01295E;
    margin: 0 0 8px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tp-recent-blog-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #6c757d;
    flex: 1;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tp-recent-blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ECA90D;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.tp-recent-blog-btn i {
    transition: transform 0.3s ease;
}

.tp-recent-blog-btn:hover {
    color: #01295E;
}

.tp-recent-blog-btn:hover i {
    transform: translateX(4px);
}

/* ------------------------------------------------
   VIEW ALL BUTTON
   ------------------------------------------------ */
.tp-recent-blogs-footer {
    text-align: center;
}

.tp-recent-blogs-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: #01295E;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(1, 41, 94, 0.2);
}

.tp-recent-blogs-view-all:hover {
    background: #ECA90D;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 169, 13, 0.3);
}

.tp-recent-blogs-view-all i {
    transition: transform 0.3s ease;
}

.tp-recent-blogs-view-all:hover i {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
    .tp-recent-blogs {
        padding: 60px 0;
    }

    .tp-recent-blogs-title {
        font-size: 32px;
    }

    .tp-recent-blogs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .tp-recent-blogs {
        padding: 50px 0;
    }

    .tp-recent-blogs-title {
        font-size: 28px;
    }

    .tp-recent-blogs-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }

    .tp-recent-blogs-header {
        margin-bottom: 35px;
    }

    .tp-recent-blogs-badge {
        font-size: 11px;
        padding: 4px 16px;
    }

    .tp-recent-blogs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .tp-recent-blog-content {
        padding: 16px 18px 18px;
    }

    .tp-recent-blog-content h4 {
        font-size: 16px;
    }

    .tp-recent-blog-content p {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }

    .tp-recent-blog-meta span {
        font-size: 12px;
    }

    .tp-recent-blogs-view-all {
        padding: 12px 28px;
        font-size: 15px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .tp-recent-blogs {
        padding: 40px 0;
    }

    .tp-recent-blogs-title {
        font-size: 24px;
    }

    .tp-recent-blogs-subtitle {
        font-size: 13px;
    }

    .tp-recent-blogs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tp-recent-blog-content h4 {
        font-size: 16px;
    }

    .tp-recent-blog-content p {
        font-size: 13px;
    }

    .tp-recent-blog-meta {
        gap: 10px;
    }

    .tp-recent-blogs-view-all {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}


/* ============================================
   CTA SECTION - SCOPED .tp-cta-
   ============================================ */

/* ------------------------------------------------
   SECTION WRAPPER
   ------------------------------------------------ */
.tp-cta-section {
    padding: 50px 0;
    background: #ffffff;
}

.tp-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ------------------------------------------------
   HEADER
   ------------------------------------------------ */
.tp-cta-header {
    text-align: center;
    margin-bottom: 40px;
}

.tp-cta-badge {
    display: inline-block;
    background: rgba(236, 169, 13, 0.12);
    color: #ECA90D;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 22px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.tp-cta-title {
    font-size: 38px;
    font-weight: 800;
    color: #01295E;
    margin-bottom: 8px;
    line-height: 1.2;
}

.tp-cta-title span {
    color: #ECA90D;
}

.tp-cta-subtitle {
    font-size: 16px;
    color: #6c757d;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ------------------------------------------------
   CTA BUTTONS
   ------------------------------------------------ */
.tp-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.tp-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.tp-cta-btn i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.tp-cta-btn:hover i {
    transform: scale(1.1);
}

.tp-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* WhatsApp Button */
.tp-cta-whatsapp {
    background: #25D366;
    color: #fff !important;
    border-color: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.tp-cta-whatsapp:hover {
    background: #1eba57;
    border-color: #1eba57;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: #fff !important;
}

/* Call Now Button */
.tp-cta-call {
    background: #01295E;
    color: #fff !important;
    border-color: #01295E;
    box-shadow: 0 4px 15px rgba(1, 41, 94, 0.25);
}

.tp-cta-call:hover {
    background: #001f47;
    border-color: #001f47;
    box-shadow: 0 8px 25px rgba(1, 41, 94, 0.35);
    color: #fff !important;
}

/* Book a Site Visit Button */
.tp-cta-visit {
    background: #ECA90D;
    color: #fff !important;
    border-color: #ECA90D;
    box-shadow: 0 4px 15px rgba(236, 169, 13, 0.3);
}

.tp-cta-visit:hover {
    background: #d49a0c;
    border-color: #d49a0c;
    box-shadow: 0 8px 25px rgba(236, 169, 13, 0.4);
    color: #fff !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
    .tp-cta-section {
        padding: 60px 0;
    }

    .tp-cta-title {
        font-size: 32px;
    }

    .tp-cta-btn {
        padding: 14px 30px;
        font-size: 15px;
        min-width: 150px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .tp-cta-section {
        padding: 50px 0;
    }

    .tp-cta-title {
        font-size: 28px;
    }

    .tp-cta-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }

    .tp-cta-header {
        margin-bottom: 32px;
    }

    .tp-cta-badge {
        font-size: 11px;
        padding: 4px 16px;
    }

    .tp-cta-buttons {
        flex-direction: column;
        gap: 14px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .tp-cta-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
        min-width: unset;
        justify-content: center;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .tp-cta-section {
        padding: 40px 0;
    }

    .tp-cta-title {
        font-size: 24px;
    }

    .tp-cta-subtitle {
        font-size: 13px;
    }

    .tp-cta-btn {
        padding: 12px 20px;
        font-size: 14px;
        gap: 10px;
    }

    .tp-cta-btn i {
        font-size: 18px;
    }
}

