﻿.team-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    /* border: 3px solid var(--primary-orange-red); */
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}
/*         
        .glass-card:hover .team-img {
            transform: scale(1.1);
            border-color: #fff;
        } */

.team-role {
    color: var(--primary-orange-red);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}


/* Headings: Orange Red by default */
h2, h3, h4, h5, h6 {
    color: var(--primary-orange-red) !important;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

h2 {
    font-size: 28px;
}

@media(max-width:1280px) {
    h2 {
        font-size: 24px;
    }
}

h3 {
    font-size: 24px;
}

/* Paragraphs: White */
p {
    font-size: 16px!important;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: justify;
    margin-right: 8px;
}


/* --- HERO SECTION SPECIFICS --- */
.about-hero {
    padding: 140px 0 0px; /* Added top padding to clear fixed nav */
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.about-badge {
    background: rgba(255, 69, 0, 0.15);
    border: 1px solid var(--primary-orange-red);
    color: var(--primary-orange-red);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

/* Hero H1 specifically white, as requested */
.about-hero h1 {
    color: #ffffff !important;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

@media(max-width:1280px) {
    .about-hero h1 {
        font-size: 30px;
        text-align: left;
    }

    p {
        font-size: 16px;
    }
}
/* Ensure the span inside H1 keeps the gradient */
.about-hero h1 span {
    background: var(--tech-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* .hero-img-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            display: flex;
            justify-content: center; /* Center the image */
/* background: rgba(0,0,0,0.2);
            padding: 10px; 
        }
         */
.hero-img-wrapper img {
    width: 80%;
    /* Made the image smaller */
    /* border-radius: 12px; */
    transition: transform 0.5s ease;
    object-fit: cover;
    /* BOX SHADOW REMOVED */
}
/* Kept very subtle hover transform, removed other hovers per request */
/* .hero-img-wrapper:hover img { transform: scale(1.02); } */


/* --- CARDS & GLASS --- */
.glass-card {
    background: rgba(20, 20, 25, 0.171);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding-top: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
    height: 100%;
    position: relative;
    overflow: hidden;
    /* Removed extensive transition properties */
}

    /* Removed complex hover effects */
    .glass-card:hover {
        /* No transform, no border change */
    }

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-orange-red);
}

/* --- DIRECTOR SECTION --- */
.director-img {
    border-radius: 20px;
    /* border: 3px solid var(--primary-orange-red); */
    width: 100%;
    max-width: 300px; /* Constrain width slightly */
    object-fit: cover;
    /* BOX SHADOW REMOVED */
    margin: 0 auto; /* Center in col */
    display: block;
}

.director-quote {
    font-style: italic;
    /* border-left: 4px solid var(--primary-orange-red); */
    /* padding-left: 20px; */
    margin: 25px 0;
    color: #eee;
    font-size: 1.1rem;
}

/* --- CLIENTS MARQUEE --- */
.clients-section {
    padding: 60px 0;
    background: #0f1014;
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

    .clients-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--primary-orange-red), transparent);
        opacity: 0.5;
    }

.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin: 20px 0;
}

    .marquee-wrapper::-webkit-scrollbar {
        display: none;
    }

.marquee-content {
    display: inline-block;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.marquee-wrapper:nth-child(odd) .marquee-content {
    animation-name: scroll-right;
}

.marquee-wrapper:nth-child(even) .marquee-content {
    animation-name: scroll-left;
}

@keyframes scroll-right {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.client-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    margin: 0 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    white-space: nowrap;
    /* Removed transition */
}

/* Client Logo Styling */
.client-logo-img {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(150%);
    /* Removed transition */
}

/* Removed hover effects for client boxes */
.client-box:hover {
}

    .client-box:hover .client-logo-img {
    }

/* --- ANIMATIONS --- */
.reveal {
    opacity: 0;
    transition: all 1s ease;
}

.slide-up {
    transform: translateY(50px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* --- MEDIA QUERIES --- */
@media (max-width: 992px) {
    .about-hero h1 {
        font-size: 32px;
    }

    .hero-img-wrapper {
        margin-top: 40px;
    }

        .hero-img-wrapper img {
            max-width: 70%;
        }
}

@media (max-width: 768px) {
    .about-hero {
        padding-top: 150px;
        text-align: center;
    }

        .about-hero h1 {
            font-size: 26px;
        }

    h2 {
        font-size: 22px;
    }

    .client-box {
        padding: 10px 20px;
        margin: 0 10px;
    }

    .director-quote {
        font-size: 1rem;
    }

    .director-img {
        max-width: 200px;
    }

    /* Re-align flex items for mobile if needed */
    .about-hero .row {
    }

    .about-hero .d-flex {
        justify-content: center !important;
    }
}

/* Pyramid Steps Animation */
.pyramid-steps-wrapper {
    height: 500px;
    position: relative;
    padding: 20px;
    perspective: 1200px;
    overflow: hidden;
}

.pyramid-container {
    position: relative;
    height: 100%;
    width: 100%;
    transform-style: preserve-3d;
}

/* Pyramid Background */
.pyramid-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(45deg);
    width: 400px;
    height: 400px;
}

.pyramid-face {
    position: absolute;
    background: linear-gradient(to bottom, rgba(26, 6, 11, 0.8), rgba(255, 107, 0, 0.1));
    border: 1px solid rgba(255, 107, 0, 0.2);
}

    .pyramid-face.front {
        width: 100%;
        height: 100%;
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    }

    .pyramid-face.left {
        width: 100%;
        height: 100%;
        clip-path: polygon(50% 0%, 0% 100%, 50% 100%);
        opacity: 0.6;
    }

    .pyramid-face.right {
        width: 100%;
        height: 100%;
        clip-path: polygon(50% 0%, 100% 100%, 50% 100%);
        opacity: 0.4;
    }

/* Building Steps with Decreasing Size */
.building-steps {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(60deg);
    width: 350px;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.building-step {
    position: relative;
    margin-bottom: 8px;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
}

    /* Decreasing step sizes */
    .building-step.step-1 {
        width: 320px;
        height: 40px;
    }

    .building-step.step-2 {
        width: 290px;
        height: 38px;
    }

    .building-step.step-3 {
        width: 260px;
        height: 36px;
    }

    .building-step.step-4 {
        width: 230px;
        height: 34px;
    }

    .building-step.step-5 {
        width: 200px;
        height: 32px;
    }

    .building-step.step-6 {
        width: 170px;
        height: 30px;
    }

    .building-step.step-7 {
        width: 140px;
        height: 28px;
    }

    .building-step.step-8 {
        width: 110px;
        height: 26px;
    }

    .building-step.step-9 {
        width: 80px;
        height: 24px;
    }

.step-platform {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 107, 0, 0.25) 50%, rgba(214, 48, 49, 0.15) 100%);
    border: 2px solid rgba(255, 107, 0, 0.4);
    border-radius: 6px 6px 0 0;
    transform: translateZ(20px);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.1), 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.step-riser {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(90deg, rgba(214, 48, 49, 0.2) 0%, rgba(214, 48, 49, 0.3) 100%);
    border: 2px solid rgba(214, 48, 49, 0.5);
    border-top: none;
    border-radius: 0 0 6px 6px;
    transform: translateZ(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.step-content {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    transform: translateZ(30px);
}

.step-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .step-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(0 2px 3px rgba(0,0,0,0.5));
    }

.step-info h5 {
    color: white;
    font-size: 0.9rem;
    margin: 0 0 3px 0;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.step-year {
    color: #FF6B00;
    font-size: 0.8rem;
    font-weight: 500;
    display: block;
}

.step-progress {
    width: 0%;
    height: 2px;
    background: #FF6B00;
    margin-top: 4px;
    border-radius: 1px;
    transition: width 0.5s ease;
}

/* Active step styling */
.building-step.active .step-platform {
    background: linear-gradient(90deg, rgba(255, 107, 0, 0.4) 0%, rgba(255, 107, 0, 0.5) 50%, rgba(214, 48, 49, 0.4) 100%);
    border-color: #FF6B00;
    box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.2), 0 6px 20px rgba(255, 107, 0, 0.4), 0 0 20px rgba(255, 107, 0, 0.3);
    animation: stepPulse 2s infinite;
}

.building-step.active .step-riser {
    background: linear-gradient(90deg, rgba(214, 48, 49, 0.4) 0%, rgba(214, 48, 49, 0.5) 100%);
    border-color: #D63031;
    box-shadow: 0 4px 12px rgba(214, 48, 49, 0.3), inset 0 -2px 6px rgba(0, 0, 0, 0.3);
}

@keyframes stepPulse {
    0%, 100% {
        box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.2), 0 6px 20px rgba(255, 107, 0, 0.4), 0 0 20px rgba(255, 107, 0, 0.3);
    }

    50% {
        box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.2), 0 8px 25px rgba(255, 107, 0, 0.6), 0 0 30px rgba(255, 107, 0, 0.5);
    }
}

/* Climbing Human */
.climbing-human {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(60deg);
    z-index: 100;
    width: 40px;
    height: 80px;
}

.human-character {
    position: relative;
    width: 100%;
    height: 100%;
    animation: climbMovement 25s linear infinite;
}

/* Human Body Parts */
.head {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: #333;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.torso {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 30px;
    background: linear-gradient(to bottom, #4a4a4a, #333);
    border-radius: 8px;
    z-index: 9;
}

.arm {
    position: absolute;
    width: 6px;
    height: 25px;
    background: #333;
    border-radius: 3px;
    top: 20px;
    animation: armSwing 0.8s ease-in-out infinite alternate;
}

.left-arm {
    left: -8px;
    transform-origin: top center;
    animation-delay: 0s;
}

.right-arm {
    right: -8px;
    transform-origin: top center;
    animation-delay: 0.4s;
}

.leg {
    position: absolute;
    width: 8px;
    height: 30px;
    background: #222;
    border-radius: 4px;
    top: 46px;
    animation: legLift 1s ease-in-out infinite alternate;
}

.left-leg {
    left: 8px;
    animation-delay: 0s;
}

.right-leg {
    right: 8px;
    animation-delay: 0.5s;
}

.climbing-ropes {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
}

.rope {
    position: absolute;
    width: 2px;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255, 107, 0, 0.8), transparent);
    top: -100px;
    animation: ropeSwing 3s ease-in-out infinite;
}

.left-rope {
    left: -10px;
    animation-delay: 0s;
}

.right-rope {
    right: -10px;
    animation-delay: 1.5s;
}

.climbing-shadow {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) rotateX(90deg);
    width: 30px;
    height: 15px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    filter: blur(5px);
    animation: shadowPulse 2s ease-in-out infinite alternate;
}

/* Human Animations */
@keyframes climbMovement {
    0% {
        transform: translateY(200px) rotateZ(0deg);
    }

    10% {
        transform: translateY(160px) rotateZ(-5deg);
    }

    20% {
        transform: translateY(120px) rotateZ(5deg);
    }

    30% {
        transform: translateY(80px) rotateZ(-3deg);
    }

    40% {
        transform: translateY(40px) rotateZ(3deg);
    }

    50% {
        transform: translateY(0px) rotateZ(0deg);
    }

    60% {
        transform: translateY(-40px) rotateZ(-5deg);
    }

    70% {
        transform: translateY(-80px) rotateZ(5deg);
    }

    80% {
        transform: translateY(-120px) rotateZ(-3deg);
    }

    90% {
        transform: translateY(-160px) rotateZ(3deg);
    }

    100% {
        transform: translateY(-200px) rotateZ(0deg);
    }
}

@keyframes armSwing {
    0% {
        transform: rotate(-30deg);
    }

    100% {
        transform: rotate(30deg);
    }
}

@keyframes legLift {
    0% {
        transform: translateY(0) rotate(-10deg);
    }

    100% {
        transform: translateY(-10px) rotate(10deg);
    }
}

@keyframes ropeSwing {
    0%, 100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

@keyframes shadowPulse {
    0% {
        opacity: 0.4;
        transform: translateX(-50%) rotateX(90deg) scale(0.8);
    }

    100% {
        opacity: 0.6;
        transform: translateX(-50%) rotateX(90deg) scale(1.2);
    }
}

/* Progress Indicator */
.pyramid-progress {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: rgba(20, 20, 25, 0.9);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 0, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.current-climb-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.current-service {
    color: #FF6B00;
    font-weight: 600;
    font-size: 1.1rem;
}

.current-year {
    color: white;
    background: rgba(255, 107, 0, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
}

.climb-progress-bar {
    position: relative;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 15px;
}

.climb-track {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient( 90deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px );
}

.climb-fill {
    position: absolute;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #FF6B00, #D63031);
    border-radius: 3px;
    transition: width 0.5s ease;
    z-index: 2;
}

.progress-marker {
    position: absolute;
    left: 0%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    border: 3px solid #FF6B00;
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.8);
    z-index: 3;
    animation: markerPulse 2s infinite;
}

@keyframes markerPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 107, 0, 0.8);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 107, 0, 1);
    }
}

.climb-stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-value {
    display: block;
    color: #FF6B00;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.climb-stats small {
    color: #d1d1d1;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .pyramid-steps-wrapper {
        height: 450px;
    }

    .building-steps {
        width: 300px;
        height: 300px;
    }

    .building-step.step-1 {
        width: 280px;
    }

    .building-step.step-2 {
        width: 250px;
    }

    .building-step.step-3 {
        width: 220px;
    }

    .building-step.step-4 {
        width: 190px;
    }

    .building-step.step-5 {
        width: 160px;
    }

    .building-step.step-6 {
        width: 130px;
    }

    .building-step.step-7 {
        width: 100px;
    }

    .building-step.step-8 {
        width: 70px;
    }

    .building-step.step-9 {
        width: 40px;
    }
}

@media (max-width: 768px) {
    .pyramid-steps-wrapper {
        height: 400px;
        margin-top: 30px;
    }

    .building-steps {
        width: 250px;
        height: 250px;
    }

    .step-content {
        padding: 0 8px;
    }

    .step-info h5 {
        font-size: 0.8rem;
    }

    .step-year {
        font-size: 0.7rem;
    }

    .pyramid-progress {
        padding: 15px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: white;
}

    .hero-title span {
        color: var(--primary-orange);
    }

.hero-desc {
    font-size: 1rem;
    color: white;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 40px;
    text-align: justify;
}

/* --- Services Section --- */
.services-section {
    /* padding: 100px 0; */
    background-color: var(--bg-dark);
}

.section-header h2 {
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: red;
}

    .section-header h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 4px;
        background: var(--accent-gradient);
        border-radius: 2px;
    }

.service-row {
    /* background-color: var(--card-bg); */
    /* border: 1px solid rgba(255, 255, 255, 0.05); */
    /* border-radius: 16px; */
    padding: 10px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.3); */
    /* margin-bottom: 40px; */
    /* Professional Design: Minimal hover */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    /* .service-row:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border-color: rgba(255, 107, 0, 0.15);
        } */

    .service-row h3 {
        font-weight: 700;
        margin-bottom: 15px;
        color: orange;
        font-size: 1.5rem;
    }

    .service-row p {
        color: white;
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 0;
        text-align: justify;
    }

/* Image Styling for the Service Row */
.service-img-container img {
    /* border-radius: 12px; */
    width: 70%;
    height: auto;
    object-fit: cover;
    /* box-shadow: 0 4px 15px rgba(0,0,0,0.3); */
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-desc {
        font-size: 1rem;
    }
}

.itimage {
    width: 100%;
  /*  margin-left: 60px;*/
    margin-top: 35px;
}

@media(max-width:767px) {
    .itimage {
        width:100%;
        margin-left:1px;
    }
    
}

.btn-custom {
    background: var(--tech-gradient);
    border: none;
    padding: 8px 20px;
    color: white;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.2s ease;
    position: relative;
    z-index: 10;
}

h4 {
    color: white;
}

.text-center
{
    text-align:center;
    color:white;
}

.services-section {
    padding: 20px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-size: 36px;
        font-weight: 700;
    }

    .section-title p {
        color: #666;
        font-size: 16px;
    }

.service-card {
  padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    }

.service-icon {
    width: 70px;
    height: 70px;
    background: #ff5a00;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.service-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}


.service-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #ff5a00;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
}

    .service-btn:hover {
        background: #e04f00;
    }

.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 100px; /* Space for fixed header */
    overflow: hidden;
}

.hero-badge {
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-weight: 800;
    font-size: 32px; /* Adjusted for better scaling */
    line-height: 1.1;
    margin-bottom: 25px;
    color: white;
}

    .hero-title span {
        background: var(--tech-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.hero-desc {
    font-size: 16px;
    color: white;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 40px;
    text-align: justify;
}

/* --- ABOUT SECTION --- */
.about-section {
    padding: 80px 0;
    position: relative;
    /* background: rgba(255,255,255,0.01); */
}

.section-header h2 {
    font-weight: 800;
    font-size: 32px;
    /* margin-bottom: 20px; */
    position: relative;
    display: inline-block;
    color: #fa1313;
}

/* .section-header h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--primary-orange);
            margin-top: 10px;
            border-radius: 2px;
        } */

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: white;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.highlight-box {
    background: var(--card-bg);
    border-left: 4px solid var(--primary-orange);
    padding: 25px;
    border-radius: 0 8px 8px 0;
    margin-top: 30px;
}

/* --- SERVICES SECTION (UPDATED CSS) --- */
.services-section {
    /* padding: 100px 0; */
    position: relative;
}

.service-row-item {
    margin-bottom: 100px; /* Spacing between major services */
    position: relative;
    z-index: 1;
}

.service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.service-title {
    font-size: 28px;
    font-weight: 800;
    color: #fa1313;
    margin-bottom: 25px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

    .service-title i {
        color: var(--primary-orange);
    }

/* New CSS for Bullet Lists in Services */
.service-list {
    list-style: none;
    padding-left: 10px;
    margin-top: 10px;
}

    .service-list li {
        position: relative;
        padding-left: 35px; /* Space for the icon */
        margin-bottom: 15px;
        color: white;
        font-size: 1.05rem;
        line-height: 1.6;
        transition: transform 0.2s;
    }

        .service-list li:hover {
            transform: translateX(5px);
            /* color: white; */
        }

        /* Custom Icon for Bullet Points */
        .service-list li::before {
            content: "\F26E"; /* Bootstrap Icon: Check-circle-fill */
            font-family: "bootstrap-icons";
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--primary-orange);
            font-size: 1.2rem;
        }

.service-desc {
    font-size: 16px;
    color: white;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.service-img-main {
    width: 100%;
    max-width: 450px; /* Limit image width */
    height: auto;
    /* border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            border: 1px solid rgba(255,255,255,0.1); */
    transition: transform 0.3s;
}

/* .service-img-main:hover {
            transform: scale(1.02);
            border-color: var(--primary-orange);
        } */

/* --- ANIMATION REVEAL CLASS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* --- FOOTER (Simulating headerfooter.css) --- */



/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 991px) {
    .service-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .service-img-main {
        margin-bottom: 30px;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .service-row-item {
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding-top: 120px;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .d-flex.gap-3 {
        justify-content: center;
    }
}

.text-white {
    --bs-text-opacity: 1;
    color: rgb(250 19 19) !important;
    font-weight: 800;
}
/* --- HERO SECTION --- */
/* .hero-section {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            padding-top: 100px;
            overflow: hidden;
        } */

.hero-badge {
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-weight: 800;
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: white;
}

    .hero-title span {
        background: var(--tech-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.hero-desc {
    font-size: 16px;
    color: white;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 40px;
}

/* --- SERVICES SECTION --- */
.services-section {
    position: relative;
    margin-top: 15px;
}

.service-card {
    margin-bottom: 70px; /* Spacing between sections */
    position: relative;
}

.service-block {
    margin-bottom: 20px; /* Spacing between split blocks */
}

/* Glassmorphism Content Container */
.glass-container {
  
    height: 100%;
    padding-top: 20px;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-title {
    font-size: 28px;
    font-weight: 800;
    color: #e85224;
    margin-bottom: 25px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

    .service-title i {
        color: var(--primary-orange);
        font-size: 32px;
    }

.service-desc {
    font-size: 16px;
    color: white;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

/* Bullet Points Styling */
.service-list {
    list-style: none;
    padding-left: 5px;
    display: grid;
    gap: 20px;
}

    .service-list.single-col {
        grid-template-columns: 1fr;
    }

    .service-list li {
        position: relative;
        padding-left: 35px;
        color: white;
        font-size: 0.95rem;
        transition: all 0.3s;
    }

        .service-list li:hover {
            transform: translateX(5px);
        }

        .service-list li::before {
            content: "\F26E";
            font-family: "bootstrap-icons";
            position: absolute;
            left: 0;
            top: 2px;
            color: #e85224; /* Updated to orange/red theme */
            font-size: 1.2rem;
        }

/* Image Styling */
.service-img-container {
    position: relative;
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-img-main {
    width: 100%;
    transition: transform 0.5s ease;
}

/* --- SMOOTH SCROLL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-left {
    transform: translateX(-100px);
}

.slide-right {
    transform: translateX(100px);
}

.reveal.active {
    opacity: 1;
    transform: translateX(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .service-list {
        grid-template-columns: 1fr !important;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .glass-container {
        margin-bottom: 40px;
        padding: 25px;
        padding-left: 25px;
    }

    .service-title {
        font-size: 2rem;
    }

    .service-img-container {
        height: auto;
        min-height: 250px;
    }

    .service-img-main {
        max-width: 80%;
        margin: 0 auto;
    }
}

.feature-box {
    background: rgba(255,255,255,0.06);
    padding: 25px;
    border-radius: 16px;
    height: 100%;
    transition: 0.3s ease;
}

    .feature-box:hover {
        transform: translateY(-6px);
    }

    .feature-box i {
        font-size: 36px;
        color: #f37a35;
        margin-bottom: 10px;
    }

.print-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 12px;
}

    .print-grid span {
        background: rgba(255,255,255,0.06);
        padding: 12px 16px;
        border-radius: 12px;
        text-align: center;
        font-weight: 500;
        color:white;
    }

.printing-cta {
    background: linear-gradient(135deg,#4fd1c5,#2563eb);
    padding: 50px 20px;
    border-radius: 22px;
    color: #fff;
}

    .printing-cta .btn {
        margin-top: 15px;
        padding: 12px 32px;
        border-radius: 30px;
    }

.quote-split-section {
    padding: 80px 0;
}

.quote-container {
    display: flex;
    /*    min-height: 380px;*/
    overflow: hidden;
    border-radius: 16px;
    background: #2e1d2100;
    height: 300px;
    border: 1px solid #f0833f30
}

/* LEFT SIDE */
.quote-content {
    flex: 1;
    padding: 60px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .quote-content h2 {
        font-size: 34px;
        margin-bottom: 15px;
    }

    .quote-content p {
        font-size: 16px;
        opacity: 0.9;
        margin-bottom: 25px;
    }

/* RIGHT SIDE IMAGE */
.quote-image {
    flex: 1;
    clip-path: polygon(10% 0,100% 0,100% 100%,0 100%);
}

    .quote-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* RESPONSIVE */
@media(max-width:768px) {
    .quote-container {
        flex-direction: column;
        height:100%;
    }

    .quote-image {
        clip-path: none;
        height: 250px;
    }

    .quote-content {
        padding: 40px 25px;
        text-align: center;
    }

    .services-section {
        padding: 5px 0!important;
    }
}

.text-white {
    --bs-text-opacity: 1;
    color: #ff6600 !important;
    /* font-family: fantasy; */
    font-weight: 800;

    .text-white1 {
        color: white;
        font-weight: 800;
    }
}
/* --- HERO SECTION --- */
/* .hero-section {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            padding-top: 100px;
            overflow: hidden;
        } */

.hero-badge {
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-weight: 800;
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: white;
}

    .hero-title span {
        background: var(--tech-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.hero-desc {
    font-size: 16px;
    color: white;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 40px;
}

/* --- SERVICES SECTION --- */
.services-section {
    /* padding: 80px 0; */
    position: relative;
    margin-top: 15px;
}

.service-card {
    margin-bottom: 70px; /* Spacing between Official and Unofficial */
    position: relative;
}

.service-block {
    margin-bottom: 20px; /* Spacing between split blocks */
}

/* Glassmorphism Content Container */
.glass-container {
   
    /* border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.3); */
    height: 100%;
    padding-top: 20px;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-title {
    font-size: 28px;
    font-weight: 800;
    color: #e85224;
    margin-bottom: 16px!important;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

    .service-title i {
        color: #f37835;
        font-size: 32px;
    }

    .service-title.unofficial i {
        color: var(--primary-orange);
    }

.service-desc {
    font-size: 16px;
    color: white;
    line-height: 1.8;
    margin-bottom: 16px;
    text-align: justify;
}

/* Bullet Points Styling */
.service-list {
    list-style: none;
    padding-left: 5px;
    display: grid;
    gap: 16px;
}

    .service-list.single-col {
        grid-template-columns: 1fr;
    }

    .service-list li {
        position: relative;
        padding-left: 35px;
        color: white;
        font-size: 0.95rem;
        transition: all 0.3s;
    }

        .service-list li:hover {
            /* color: white; */
            transform: translateX(5px);
        }
/*
        .service-list li::before {
            content: "";
            font-family: "bootstrap-icons";
            position: absolute;
            left: 0;
            top: 2px;
            color: #f37a35;
            font-size: 1.2rem;
        }*/

        .service-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 2px;
            width: 18px; /* icon size */
            height: 18px; /* icon size */
            background-image: url('/assets/images/Aboutus/bullet.png'); /* your PNG path */
            background-size: contain;
            background-repeat: no-repeat;
        }

    .service-list.unofficial-list li::before {
        color: var(--primary-orange);
    }

/* Image Styling */
.service-img-container {
    position: relative;
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-img-main {
    width: 100%;
    transition: transform 0.5s ease;
}

/* --- SMOOTH SCROLL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-left {
    transform: translateX(-100px);
}

.slide-right {
    transform: translateX(100px);
}

.reveal.active {
    opacity: 1;
    transform: translateX(0);
}


/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .service-list {
        grid-template-columns: 1fr !important;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .glass-container {
        margin-bottom: 40px;
        padding: 25px;
        padding-left: 25px;
    }

    .service-title {
        font-size: 2rem;
    }

    .service-img-container {
        height: auto;
        min-height: 250px;
    }

    .service-img-main {
        max-width: 80%;
        margin: 0 auto;
    }
}

.page-header {
    padding: 190px 0 60px 0;
    text-align: center;
    position: relative;
}

.page-title {
    font-weight: 800;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.page-subtitle {
    color: #ccc;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Glassmorphism Card Style */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
  /*  backdrop-filter: blur(10px);*/
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    /*justify-content:center;*/
    align-items:center;
}

    .glass-card:hover {
        transform: translateY(-5px);
        border-color: rgba(255, 107, 0, 0.3);
    }

/* Contact Form Styling */
.form-label {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.form-control {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 15px;
    border-radius: 8px;
}

    .form-control:focus {
        background: rgba(0, 0, 0, 0.5);
        border-color: var(--primary-orange);
        box-shadow: 0 0 10px rgba(255, 107, 0, 0.2);
        color: white;
    }

    .form-control::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

.contact-btn {
    background: var(--tech-gradient);
    border: none;
    padding: 12px 30px;
    color: white;
    font-weight: 700;
    border-radius: 8px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

    .contact-btn:hover {
        transform: scale(1.02);
        box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
        color: white;
    }

/* Location Cards */
.location-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
    flex-shrink: 0;
}

.location-title {
    color: var(--primary-orange);
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.location-address {
    color: #ddd;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.location-contact {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 250px;
    width: 100%;
    margin-top: auto;
}

    .map-wrapper iframe {
        width: 100%;
        height: 100%;
        border: 0;
        filter: grayscale(100%) invert(92%) contrast(83%);
    }

/* Responsive adjustments */
@media (max-width: 991px) {
    .page-header {
        padding-top: 100px;
    }

    .glass-card {
        margin-bottom: 30px;
    }
}

.contact-modern .input-group-text {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.2);
    color: #ff8c00;
}

.contact-modern .btn-outline-light,
.contact-modern .btn-outline-success,
.contact-modern .btn-outline-warning {
    border-radius: 30px;
    padding: 8px 20px;
}

.contact-pro {
    padding: 0px 0;
}

.contact-card,
.office-card {
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

    .contact-card h2 {
        font-size: 34px;
        margin-bottom: 10px;
    }

.muted {
    opacity: .7;
    margin-bottom: 25px;
}

.field {
    width: 100%;
    background: rgba(0, 0, 0, 0.125);
    border: none;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 15px;
    color: #fff;
}

    .field:focus {
        outline: 2px solid #ff8c00;
    }

.btn-main {
    background: #ff8c00;
    color: #000;
    padding: 14px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
}

.office-card {
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(0,0,0,0.15);
}


.office {
    background: rgba(255,255,255,0.06);
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 18px;
    cursor: pointer;
    transition: 0.3s;
    border-left: 4px solid transparent;
}

    .office:hover {
        background: rgba(255,255,255,0.12);
        transform: translateY(-2px);
    }

    .office.active {
        border-left: 4px solid #f96208;
    }

    .office h5 {
        margin-bottom: 10px;
        color: #ffc107;
    }

.office-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 6px;
    color: #ddd;
}

    .office-line i {
        color: #ffffff;
        margin-top: 3px;
        border-radius: 1px solid black;
        border: 1px solid #ffffff;
        padding: 8px;
        border-radius: 50px;
    }

.map-box {
    height: 500px;
}

    .map-box iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }


@media(max-width:768px){
    .test {
        margin-top:-25px!important;
    }
    .test1 {
        margin-top:65px!important;
    }
    .about-test {
        margin-top:-8px;
    }
}

.service-card {
    
    padding-bottom:16px!important;
}

@media (max-width:768px){
    .core-msg {
        margin-bottom:0px!important;
    }
    .printing-solution {
        padding-top:0px!important;
    }
}

