/* ============================================
   ORANGE CASTLE PVT. LTD. - Custom Styles
   ============================================ */

/* -- Color Variables via CSS Custom Properties -- */
:root {
    --oc-orange: #f7941d;
    --oc-dark-orange: #e07c0e;
    --oc-dark: #1a1a2e;
    --oc-charcoal: #2d2d44;
    --oc-light-gray: #f5f5f5;
    --oc-white: #ffffff;
    --oc-text: #333333;
    --oc-text-light: #777777;
    --oc-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --oc-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* ============================================
   SMOOTH SCROLL BEHAVIOR
   ============================================ */
html {
    scroll-behavior: smooth;
}

/* ============================================
   ABOUT US SECTION
   ============================================ */
#about .section-content>.row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

#about .home-2-about-left-outer {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#about .home-2-about-left {
    flex: 1;
    display: flex;
}

#about .home-2-about-left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-right-content {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about-detail-block p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--oc-text);
    margin-bottom: 15px;
}

.about-detail-block strong {
    color: var(--oc-orange);
    font-weight: 600;
}

/* ============================================
   DIRECTOR SECTION
   ============================================ */
.oc-director-section {
    position: relative;
    overflow: hidden;
}

.oc-director-image-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--oc-shadow);
}

.oc-director-image {
    position: relative;
    overflow: hidden;
}

.oc-director-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.oc-director-image-wrap:hover .oc-director-image img {
    transform: scale(1.03);
}

.oc-director-name-card {
    background: linear-gradient(135deg, var(--oc-dark) 0%, var(--oc-charcoal) 100%);
    padding: 20px 25px;
    text-align: center;
}

.oc-director-name-card h3 {
    color: var(--oc-white);
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.oc-director-name-card span {
    color: var(--oc-orange);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.oc-director-info {
    padding-left: 10px;
}

.oc-director-intro p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--oc-text);
    margin-bottom: 15px;
}

.oc-director-intro strong {
    color: var(--oc-dark);
    font-weight: 600;
}

.oc-director-highlights {
    background: var(--oc-light-gray);
    padding: 25px 30px;
    border-radius: 8px;
    border-left: 4px solid var(--oc-orange);
}

.oc-landmark-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.oc-landmark-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--oc-text);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.oc-landmark-list li:last-child {
    border-bottom: none;
}

.oc-landmark-list li:hover {
    padding-left: 8px;
    color: var(--oc-orange);
}

.oc-landmark-list li i {
    color: var(--oc-orange);
    margin-right: 10px;
    font-size: 14px;
}

/* ============================================
   PROJECT CARDS (DELIVERED)
   ============================================ */

/* Equal height rows for project cards */
#projects .row {
    display: flex;
    flex-wrap: wrap;
}

#projects .row>[class*="col-"] {
    display: flex;
}

.oc-project-card {
    background: var(--oc-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--oc-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    width: 100%;
}

.oc-project-info {
    padding: 20px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.oc-project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--oc-shadow-hover);
}

.oc-project-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.oc-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.oc-project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.oc-delivered {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: var(--oc-white);
}

.oc-ongoing {
    background: linear-gradient(135deg, var(--oc-orange), var(--oc-dark-orange));
    color: var(--oc-white);
}

/* .oc-project-info already defined above with flexbox */

.oc-project-title {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    margin: 0 0 8px 0;
    color: var(--oc-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.oc-project-location {
    color: var(--oc-text-light);
    font-size: 14px;
    margin-bottom: 5px;
}

.oc-project-location i {
    color: var(--oc-orange);
    margin-right: 6px;
}

.oc-project-detail-small {
    font-size: 13px;
    color: var(--oc-text-light);
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.oc-project-detail-small strong {
    color: var(--oc-dark);
}

/* ============================================
   ONGOING PROJECT CARD
   ============================================ */
.oc-ongoing-section {
    position: relative;
}

.oc-ongoing-card {
    background: var(--oc-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--oc-shadow-hover);
    position: relative;
}

.oc-ongoing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--oc-orange), var(--oc-dark-orange), var(--oc-orange));
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.oc-ongoing-image {
    position: relative;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
}

.oc-ongoing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.oc-ongoing-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    color: var(--oc-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.oc-project-table {
    width: 100%;
    margin-top: 15px;
}

.oc-project-table td {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 15px;
    color: var(--oc-text);
}

.oc-project-table td:first-child {
    width: 100px;
}

.oc-project-table td strong {
    color: var(--oc-dark);
    font-weight: 600;
}

.oc-status-active {
    display: inline-block;
    background: linear-gradient(135deg, var(--oc-orange), var(--oc-dark-orange));
    color: var(--oc-white);
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.oc-contact-section {
    position: relative;
}

.oc-contact-info-card {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: var(--oc-white);
    border-radius: 8px;
    box-shadow: var(--oc-shadow);
    transition: all 0.3s ease;
}

.oc-contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--oc-shadow-hover);
}

.oc-contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--oc-orange), var(--oc-dark-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.oc-contact-icon i {
    color: var(--oc-white);
    font-size: 20px;
}

.oc-contact-detail h5 {
    font-family: 'Oswald', sans-serif;
    margin: 0 0 5px 0;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--oc-dark);
}

.oc-contact-detail p {
    margin: 0;
    color: var(--oc-text-light);
    font-size: 14px;
}

.oc-contact-detail a {
    color: var(--oc-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.oc-contact-detail a:hover {
    color: var(--oc-orange);
}

.oc-contact-form {
    border-radius: 8px;
}

.oc-contact-form .form-control {
    height: 48px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    padding: 10px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.oc-contact-form .form-control:focus {
    border-color: var(--oc-orange);
    box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.15);
}

.oc-contact-form textarea.form-control {
    height: auto;
    resize: vertical;
}

.oc-select {
    appearance: auto;
    -webkit-appearance: auto;
}

/* ============================================
   DOMAINS & REGIONS MAP SECTION
   ============================================ */
.oc-map-section {
    position: relative;
    overflow: hidden;
}

.oc-map-wrapper {
    margin-top: 20px;
    margin-bottom: 40px;
}

.oc-map-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.oc-map-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Map Markers */
.oc-map-marker {
    position: absolute;
    z-index: 10;
    cursor: pointer;
    transform: translate(-50%, -50%);
}

.oc-marker-dot {
    width: 14px;
    height: 14px;
    background: var(--oc-orange);
    border-radius: 50%;
    border: 3px solid var(--oc-white);
    box-shadow: 0 2px 8px rgba(247, 148, 29, 0.5);
    position: relative;
    z-index: 3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.oc-map-marker:hover .oc-marker-dot {
    transform: scale(1.4);
    box-shadow: 0 4px 16px rgba(247, 148, 29, 0.7);
}

.oc-marker-dot.oc-marker-hq {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #f7941d, #e07c0e);
    border: 3px solid var(--oc-white);
    box-shadow: 0 2px 12px rgba(247, 148, 29, 0.6);
}

/* HQ Pin Icon */
.oc-marker-pin {
    position: relative;
    z-index: 3;
    font-size: 32px;
    color: #e07c0e;
    filter: drop-shadow(0 2px 6px rgba(247, 148, 29, 0.6));
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1;
}

.oc-marker-pin i {
    display: block;
}

.oc-map-marker-hq {
    transform: translate(-50%, -100%);
}

.oc-map-marker-hq:hover .oc-marker-pin {
    transform: scale(1.3);
    color: #f7941d;
}

.oc-marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(247, 148, 29, 0.4);
    z-index: 1;
    animation: markerPulse 2s ease-out infinite;
}

.oc-marker-pulse.oc-pulse-hq {
    width: 18px;
    height: 18px;
    background: rgba(247, 148, 29, 0.5);
    animation: markerPulseHQ 1.8s ease-out infinite;
}

@keyframes markerPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(3.5);
        opacity: 0;
    }
}

@keyframes markerPulseHQ {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

/* Map Tooltips */
.oc-map-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--oc-white);
    border-radius: 8px;
    padding: 12px 16px;
    min-width: 180px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-top: 3px solid var(--oc-orange);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    z-index: 100;
    white-space: nowrap;
}

.oc-map-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--oc-white);
}

.oc-map-marker:hover .oc-map-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.oc-map-tooltip h6 {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--oc-dark);
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.oc-map-tooltip span {
    display: block;
    font-size: 12px;
    color: var(--oc-text-light);
}

.oc-map-tooltip span i {
    color: var(--oc-orange);
    margin-right: 4px;
}

.oc-tooltip-badge {
    display: inline-block !important;
    background: linear-gradient(135deg, var(--oc-orange), var(--oc-dark-orange));
    color: var(--oc-white) !important;
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 10px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 6px;
}

/* Map Legend */
.oc-map-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    padding: 15px 25px;
    background: var(--oc-white);
    border-radius: 50px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.oc-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--oc-text);
    font-weight: 500;
}

.oc-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.oc-legend-hq {
    background: linear-gradient(135deg, #f7941d, #e07c0e);
    box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.2);
}

.oc-legend-project {
    background: var(--oc-orange);
    box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.15);
}

/* Map Stats */
.oc-map-stats {
    margin-top: 10px;
}

.oc-stat-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--oc-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.oc-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--oc-orange), var(--oc-dark-orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.oc-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.oc-stat-card:hover::before {
    opacity: 1;
}

.oc-stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--oc-orange), var(--oc-dark-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 5px 0;
    line-height: 1;
}

.oc-stat-label {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--oc-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 4px 0;
}

.oc-stat-detail {
    font-size: 12px;
    color: var(--oc-text-light);
}

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

/* Tablet Landscape */
@media (max-width: 1199px) {
    .oc-director-info {
        padding-left: 0;
    }

    .about-right-content {
        padding-left: 0;
    }

    #about .section-content>.row {
        display: block;
    }

    .oc-map-container {
        max-width: 550px;
    }
}

/* Tablet Portrait */
@media (max-width: 991px) {
    .oc-director-image-wrap {
        max-width: 400px;
        margin: 0 auto 30px;
    }

    .oc-director-highlights {
        padding: 20px;
    }

    .oc-ongoing-image {
        min-height: 250px;
    }

    .oc-map-container {
        max-width: 450px;
    }

    .oc-marker-dot {
        width: 12px;
        height: 12px;
        border-width: 2px;
    }

    .oc-marker-dot.oc-marker-hq {
        width: 15px;
        height: 15px;
    }

    .oc-stat-number {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .oc-director-name-card h3 {
        font-size: 18px;
    }

    .oc-director-highlights h4 {
        font-size: 16px;
    }

    .oc-project-image {
        height: 180px;
    }

    .oc-ongoing-info h3 {
        font-size: 22px;
    }

    .oc-ongoing-image {
        min-height: 200px;
    }

    .oc-contact-info-card {
        padding: 18px;
    }

    .oc-contact-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .oc-contact-icon i {
        font-size: 16px;
    }

    .section-full.p-t80 {
        padding-top: 50px !important;
    }

    .section-full.p-b80 {
        padding-bottom: 50px !important;
    }

    .oc-map-container {
        max-width: 100%;
    }

    .oc-marker-dot {
        width: 10px;
        height: 10px;
        border-width: 2px;
    }

    .oc-marker-dot.oc-marker-hq {
        width: 13px;
        height: 13px;
    }

    .oc-marker-pulse,
    .oc-marker-pulse.oc-pulse-hq {
        width: 10px;
        height: 10px;
    }

    .oc-map-tooltip {
        min-width: 150px;
        padding: 10px 12px;
    }

    .oc-map-tooltip h6 {
        font-size: 12px;
    }

    .oc-map-tooltip span {
        font-size: 11px;
    }

    .oc-map-legend {
        gap: 20px;
        padding: 10px 20px;
    }

    .oc-legend-item {
        font-size: 12px;
    }

    .oc-stat-card {
        padding: 20px 15px;
        margin-bottom: 15px;
    }

    .oc-stat-number {
        font-size: 32px;
    }

    .oc-stat-label {
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .oc-project-info {
        padding: 15px 18px;
    }

    .oc-project-title {
        font-size: 17px;
    }

    .oc-landmark-list li {
        font-size: 13px;
    }

    .oc-ongoing-card .no-gutters .col-md-6 {
        width: 100%;
    }

    .oc-map-tooltip {
        min-width: 130px;
        padding: 8px 10px;
    }

    .oc-map-tooltip h6 {
        font-size: 11px;
    }

    .oc-stat-number {
        font-size: 28px;
    }

    .oc-stat-label {
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .oc-map-legend {
        gap: 15px;
        padding: 8px 15px;
        border-radius: 25px;
    }

    .oc-legend-item {
        font-size: 11px;
        gap: 5px;
    }

    .oc-legend-dot {
        width: 10px;
        height: 10px;
    }
}

/* ============================================
   OUR PHILOSOPHY SECTION - Icon Colors
   ============================================ */
.wt-icon-box-wraper .icon-cell i {
    font-size: 48px;
    color: #111111;
    transition: color 0.3s ease;
}

.block-bg-hover:hover .icon-cell i {
    color: #ffffff;
}

/* ============================================
   OUR PHILOSOPHY SECTION - Equal Height Cards
   ============================================ */
.oc-philosophy-section .wt-icon-box-wraper p {
    min-height: 90px;
}