/* ================= PROJECT HERO ================= */
body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica", "Arial", sans-serif;
}
.project-hero-full {
  width: 100%;
  height: 640px;
  background: url("project\ images/PROJECT.jpg") center/cover no-repeat;
  position: relative;
  /*border-radius: 0 0 35px 35px;*/
  overflow: hidden;
}
/* MOBILE FIX */
@media (max-width: 600px) {
  .project-hero-full {
    height: 450px;        /* 🔥 reduce height */
    background-size: cover;
    background-position: center;
  }
}



/* ===== SECTION LAYOUT ===== */
.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 5%;
    gap: 50px;
    background: #fbfbfd;
}

/* LEFT SIDE */
.project-left {
    flex: 1;
}

.project-left h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: "Helvetica", "Arial", sans-serif;
}

.project-left p {
    background:#fff;
    padding:30px;
    border-radius:16px;
    font-family: "Helvetica", "Arial", sans-serif;
    font-size:15px;
    color: #0b0a24;
    margin-bottom: 1em;
   line-height: 1.5;
}

/* RIGHT SIDE */
.project-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== CIRCLE SYSTEM ===== */
.logo-circle {
    position: relative;
    width: 380px;
    height: 380px;
}

/* CENTER LOGO */
.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 2;
}

.center-logo img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

/* TRACK */
.logo-track {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* CLIENT LOGOS */
.logo-track img {
    position: absolute;
    width: 85px;
    height: 85px;
    object-fit: contain;
    border-radius: 50%;
    padding: 8px;
    background: #fff;
    transition: all 0.2s linear, opacity 0.2s linear;
}

/* 🔥 PREMIUM HOVER */
.logo-track img:hover {
    transform: scale(1.25) rotate(5deg);
    z-index: 999;
    filter: drop-shadow(0 10px 25px rgba(255,94,0,0.6));
}

/* 🔥 SOFT GLOW */
.logo-track img {
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.15));
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .project-header {
        flex-direction: column;
        text-align: center;
    }

    .project-left p {
        margin: auto;
    }
}

@media (max-width: 600px) {

  .project-header {
    overflow: hidden;
  }

  .project-right {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
  }

  .logo-circle {
    margin: auto;
    transform: scale(0.82);
    transform-origin: center;
  }
}

/* 🔥 SECTION BASE (HIDDEN STATE) */
.project-header {
    opacity: 0;
    transform: translateY(120px) scale(0.92);
    filter: blur(8px);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 🔥 SECTION ACTIVE */
.project-header.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    box-shadow: 0 20px 80px rgba(0,0,0,0.15);
}

/* 🔥 LEFT (FAST + SHARP ENTRY) */
.project-left {
    opacity: 0;
    transform: translateX(-180px) scale(0.95);
    filter: blur(6px);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-left.show {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
}

/* 🔥 RIGHT (DELAY + DRAMA ENTRY) */
.project-right {
    opacity: 0;
    transform: translateX(200px) scale(0.9);
    filter: blur(10px);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.3s;
}

.project-right.show {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
}

/* ===== MAIN SERVICES BLOCK ===== */
.services-wrapper {
    margin-top: 0px;
    margin-left: 0;
    margin-right: 0;
}

/* Centered Block */
.services-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 40px;
    background: #fbfbfd;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s ease;
}

.services-container.show {
    opacity: 1;
    transform: translateY(0);
}
/* Main Heading */
.services-main-heading {
    text-align: center;
    font-size: 22px;
    margin-bottom: 30px;
    color: #0b0a24;
}

/* 4 Cards in One Line */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
/* ✅ TABLET */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ✅ MOBILE */
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Grid Layout ===== */
/* ===== Bottom 3 Cards ===== */

/* Make paragraph look like block */
.section-intro {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    font-family: "Helvetica", "Arial", sans-serif;
}

/* ===== Card ===== */
.card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
}

/* Left cards */
.card:nth-child(1),
.card:nth-child(3) {
    transform: translateX(-80px);
}

/* Right cards */
.card:nth-child(2),
.card:nth-child(4) {
    transform: translateX(80px);
}
@media (max-width: 600px) {
    .card:nth-child(1),
    .card:nth-child(2),
    .card:nth-child(3),
    .card:nth-child(4) {
        transform: translateX(0);
    }
}

.card.show {
    opacity: 1;
    transform: translateX(0) translateY(0);
    transition: all 0.8s ease;
}
.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Image */
.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover img {
    transform: scale(1.1);
}

/* Floating Icon */
.icon-box {
    position: absolute;
    top: 190px;
    left: 20px;
    background: #ff5e00;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Content */
.card-content {
    padding: 50px 20px 25px 20px;
}

.card-content h3 {
    margin-bottom: 12px;
    font-size: 22px;
    color: #0b0a24;
    font-family: "Helvetica", "Arial", sans-serif;
}

.card-content p {
    font-size: 15px;
    color: #0b0a24;
    margin-bottom: 20px;
    line-height: 1.5;
    font-family: "Helvetica", "Arial", sans-serif;
}

/* Link */
.card-content a {
    position: relative;
    display: inline-block;
    padding: 12px 30px;
    background: #ff5e00; /* ✅ solid original color */
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* TEXT + ARROW */
.card-content a span {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

/* GLASS SHINE LAYER (not full white) */
.card-content a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.25), /* 🔥 soft shine only */
        transparent
    );
    transition: 0.5s;
}

/* HOVER EFFECT */
.card-content a:hover::before {
    left: 120%;
}

/* KEEP COLOR SAME — only add glow */
.card-content a:hover {
    background: #ff5e00; /* ✅ SAME COLOR (important fix) */
    box-shadow: 0 8px 20px rgba(255,94,0,0.4);
}

/* ARROW MOVE */
.card-content a:hover span {
    transform: translateX(6px);
}

.slide-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #ff5e00;
    transition: 0.4s;
}
.slide-card:hover:before{
    width: 100%;
}

@media (max-width: 600px) {
    .services-container {
        padding: 40px 20px;
    }

    .card-content {
        padding: 40px 15px 20px;
    }

    .icon-box {
        width: 50px;
        height: 50px;
        font-size: 20px;
        top: 170px;
    }
}

/* card sliding section */
/* 🔥 BIGGER SECTION */
.project-slider-section {
    margin: 100px auto;        /* more top-bottom space */
    width: 95%;
    padding: 60px 20px;        /* add internal spacing */
    text-align: center;
    background: #fbfbfd;
    border-radius: 20px;       /* optional premium look */
    opacity: 0;
    transform: translateY(120px) scale(0.95);
    filter: blur(8px);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 🔥 WHEN VISIBLE */
.project-slider-section.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* 🔥 HEADING SPACING */
.project-slider-section h2 {
    font-size: 35px;
    margin-bottom: 40px;
}
/* 🔥 STOP SCROLL ON HOVER */
.slider-container:hover .slider-track {
    animation-play-state: paused;
}

/* 🔥 CONTAINER HEIGHT */
.slider-container {
    overflow: hidden;
    position: relative;
    padding: 20px 0;   /* gives breathing space */
}

.slider-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollSlider 25s linear infinite;
}

.slide-card {
    overflow: hidden;
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    transition:all 0.4s ease;
    animation: floatCard 6s ease-in-out infinite;
    min-width: 280px;
    max-width: 280px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.slide-card:hover {
    transform: scale(1.05) ;
    box-shadow: 0 20px 50px #7fa0de;
    z-index: 5;
}

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

/* COMPANY STYLE */
.slide-card .company {
    font-size: 15px;
    color: #ff5e00;
    font-weight: 600;
    margin: 6px 0;
}

/* 🔥 SMOOTH INFINITE SCROLL */
@keyframes scrollSlider {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ================= POPUP PREMIUM ================= */

.popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

/* popup animation */
.popup.show {
    display: flex;
}

.popup-content {
    background: #fff;
    padding: 30px;
    width: 380px;
    border-radius: 16px;
    text-align: left;
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.4s ease;
}

/* active popup animation */
.popup.show .popup-content {
    transform: scale(1);
    opacity: 1;
}

/* close button */
.popup span {
    float: right;
    font-size: 22px;
    cursor: pointer;
}

/* text styling */
#popupDesc {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #0b0a24;
}
.popup-btn {
    margin-top: 15px;
    padding: 10px 20px;
    background: #ff5e00;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.popup-btn:hover {
    box-shadow: 0 8px 20px rgba(255,94,0,0.4);
}