/* =============================================
   SGTYUG Private Limited – style.css
   oksgt.com | Creative Agency
   ============================================= */

/* ---------- RESET & ROOT ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --p: #7B3FE4;
    --p2: #9B6FF0;
    --p3: #5A1FB8;
    --p-light: rgba(123, 63, 228, 0.12);
    --p-glow: rgba(123, 63, 228, 0.25);
    --dark: #080810;
    --dark2: #0E0E18;
    --dark3: #141420;
    --card: #13131D;
    --card2: #1A1A28;
    --text: #F0EEFF;
    --muted: #8878AA;
    --muted2: #6A5E8A;
    --white: #FFFFFF;
    --border: rgba(123, 63, 228, 0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

::selection {
    background: var(--p);
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ---------- CUSTOM SCROLLBAR ---------- */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--p);
    border-radius: 4px;
}

/* ---------- CURSOR ---------- */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--p2);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--p-glow);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.15s, width 0.3s, height 0.3s, opacity 0.3s;
}

.cursor-follower.hovering {
    width: 50px;
    height: 50px;
    opacity: 0.5;
}

@media (max-width: 768px) {

    .cursor,
    .cursor-follower {
        display: none;
    }
}

/* ---------- PRELOADER ---------- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.logo-boxes {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 24px;
}

.preloader-logo {
    height: 60px;
    opacity: 0;
    animation: popIn 0.5s ease forwards;
}

.logo-boxes span {
    background: var(--p);
    color: #fff;
    font-weight: 900;
    font-size: 28px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    opacity: 0;
    animation: popIn 0.4s ease forwards;
}

.logo-boxes span:nth-child(1) {
    animation-delay: 0.1s;
}

.logo-boxes span:nth-child(2) {
    animation-delay: 0.25s;
}

.logo-boxes span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.preloader-bar {
    width: 160px;
    height: 2px;
    background: var(--card2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-fill {
    height: 100%;
    background: var(--p);
    animation: loadFill 1.8s ease-in-out forwards;
}

@keyframes loadFill {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* ---------- CONTAINER ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- SECTION COMMON ---------- */
section {
    position: relative;
    overflow: hidden;
}

.section {
    padding: 100px 0;
}

.section-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

section > .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--p2);
    background: var(--p-light);
    border: 1px solid var(--border);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(30px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-sub {
    color: var(--muted);
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--p);
    color: #fff;
}

.btn-primary:hover {
    background: var(--p2);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(123, 63, 228, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--p2);
    color: var(--p2);
    transform: translateY(-2px);
}

/* ---------- GRADIENT TEXT ---------- */
.gradient-text {
    background: linear-gradient(135deg, var(--p2) 0%, #C084FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- ANIMATE ON SCROLL ---------- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

#navbar.scrolled {
    background: rgba(8, 8, 16, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
}

.logo-boxes-sm {
    display: flex;
    gap: 3px;
}

.logo-boxes-sm span {
    background: var(--p);
    color: #fff;
    font-weight: 900;
    font-size: 14px;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-family: 'Space Grotesk', sans-serif;
}

.logo-yug {
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    position: relative;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--p2);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ---------- DROPDOWN ---------- */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--p-light);
    color: var(--p2);
}

.nav-link.has-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-cta {
    background: var(--p);
    color: #fff;
    padding: 9px 22px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--p2);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   HERO
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(123, 63, 228, 0.15) 0%, transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    animation: orbPulse 6s ease-in-out infinite alternate;
}

.hero-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(90, 31, 184, 0.12) 0%, transparent 70%);
    bottom: 0;
    right: 5%;
    animation: orbPulse 8s ease-in-out infinite alternate-reverse;
}

.hero-orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(155, 111, 240, 0.08) 0%, transparent 70%);
    bottom: 30%;
    left: 5%;
    animation: orbPulse 7s ease-in-out infinite alternate;
}

@keyframes orbPulse {
    from {
        opacity: 0.6;
        transform: scale(1) translateX(-50%);
    }

    to {
        opacity: 1;
        transform: scale(1.1) translateX(-50%);
    }
}

.hero-orb-2,
.hero-orb-3 {
    animation: orbPulseSm 7s ease-in-out infinite alternate;
}

@keyframes orbPulseSm {
    from {
        opacity: 0.5;
        transform: scale(1);
    }

    to {
        opacity: 1;
        transform: scale(1.15);
    }
}

#particleCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    animation: fadeInUp 1s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--p-light);
    border: 1px solid var(--border);
    color: var(--p2);
    font-size: 12px;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 30px;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--p2);
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

.hero-title {
    font-size: clamp(40px, 7vw, 84px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.hero-sub {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 40px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    padding: 0 28px;
}

.stat-num {
    font-size: 36px;
    font-weight: 900;
    color: var(--p2);
    display: inline-block;
}

.stat-plus {
    font-size: 24px;
    font-weight: 900;
    color: var(--p2);
    display: inline-block;
}

.stat-label {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--muted);
}

.scroll-indicator {
    width: 22px;
    height: 36px;
    border: 1.5px solid var(--muted2);
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 5px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    border-radius: 3px;
    background: var(--p2);
    animation: scrollDot 1.5s ease-in-out infinite;
}

@keyframes scrollDot {

    0%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }

    50% {
        opacity: 0.3;
        transform: translateY(8px);
    }
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-6px);
    }
}

/* =============================================
   MARQUEE
   ============================================= */
.marquee-section {
    overflow: hidden;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--dark2);
}

.marquee-track {
    display: flex;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    animation: marqueeScroll 20s linear infinite;
    padding-right: 40px;
}

.marquee-content span {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 1px;
}

.marquee-content .dot {
    color: var(--p2);
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* =============================================
   EXCELLENCE BANNER SECTION
   ============================================= */
.excellence-section {
    background: var(--dark);
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    margin-bottom: 0;
    border-top: 1px solid var(--border);
}

.exc-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: radial-gradient(circle at 80% 50%, rgba(123, 63, 228, 0.1) 0%, transparent 60%);
}

.exc-waves {
    position: absolute;
    right: -10%;
    top: -20%;
    height: 140%;
    width: 60%;
    background-image: repeating-radial-gradient(circle at 100% 50%, transparent, transparent 20px, rgba(123, 63, 228, 0.05) 21px, transparent 22px);
    opacity: 0.6;
}

.exc-content-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 60px;
}

.exc-text {
    flex: 1;
    max-width: 600px;
}

.exc-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.exc-sub {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.exc-btn {
    margin-bottom: 40px;
}

.exc-reviews {
    display: flex;
    align-items: center;
    gap: 40px;
}

.review-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rev-brand {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -1px;
}

.rev-stars {
    color: #FFB800;
    font-size: 22px;
    letter-spacing: 2px;
}

.rev-score {
    font-size: 13px;
    color: var(--muted);
}

.rev-score strong {
    color: var(--text);
    font-size: 16px;
    font-weight: 700;
}

.exc-image {
    flex: 1;
    max-width: 450px;
    position: relative;
    z-index: 1;
}

.exc-image img {
    width: 100%;
    display: block;
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.exc-cards-container {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 24px;
}

.exc-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.exc-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.exc-card.active, .exc-card:hover {
    background: var(--p);
    border-color: var(--p);
    transform: translateY(-10px);
}

.exc-card-icon {
    width: 52px;
    height: 52px;
    background: var(--p-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--p2);
    transition: var(--transition);
}

.exc-card.active .exc-card-icon, .exc-card:hover .exc-card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.exc-card-icon svg {
    width: 24px;
    height: 24px;
}

.exc-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
    line-height: 1.4;
}

.exc-card p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.exc-card.active p, .exc-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.exc-card-list {
    list-style: none;
    margin-top: auto;
}

.exc-card-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 8px;
}

.exc-card.active .exc-card-list li, .exc-card:hover .exc-card-list li {
    color: rgba(255, 255, 255, 0.9);
}

.exc-card-list li svg {
    width: 16px;
    height: 16px;
    color: var(--p2);
}

.exc-card.active .exc-card-list li svg, .exc-card:hover .exc-card-list li svg {
    color: #fff;
}

@media (max-width: 1024px) {
    .exc-content-wrap {
        flex-direction: column;
        padding-bottom: 40px;
    }
    .exc-cards-container {
        margin-top: 20px;
        padding: 0;
    }
    .excellence-section {
        padding-bottom: 60px;
    }
}

@media (max-width: 992px) {
    .exc-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .exc-cards-grid {
        grid-template-columns: 1fr;
    }
    .exc-reviews {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* =============================================
   TEAM EXPERTS SECTION
   ============================================= */
.team-section {
    background: var(--dark2); /* Contrast with the sections above and below */
    border-top: 1px solid var(--border);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
}

.team-img-wrap {
    position: relative;
    border-radius: 60px 16px 16px 16px;
    overflow: hidden;
    margin-bottom: 24px;
    aspect-ratio: 3/4;
    background: var(--card); /* Placeholder color if image fails */
}

.team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img-wrap img {
    transform: scale(1.05);
}

.team-hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
}

/* Hover graphic shapes mimicking the image */
.team-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 140px;
    height: 140px;
    background: var(--p);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    opacity: 0.9;
    transform: translate(-30px, -30px);
    transition: transform 0.4s ease;
}

.team-hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 140px;
    height: 140px;
    background: var(--p);
    clip-path: polygon(100% 100%, 100% 0, 0 100%);
    opacity: 0.9;
    transform: translate(30px, 30px);
    transition: transform 0.4s ease;
}

.team-card:hover .team-hover {
    opacity: 1;
}

.team-card:hover .team-hover::before,
.team-card:hover .team-hover::after {
    transform: translate(0, 0);
}

.team-hover .social-links {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 12px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.team-card:hover .social-links {
    transform: translateY(0);
}

.team-hover .social-links a {
    width: 40px;
    height: 40px;
    background: #fff;
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.team-hover .social-links a.social-fb { color: #1877F2; }
.team-hover .social-links a.social-tw { color: #1DA1F2; }
.team-hover .social-links a.social-in { color: #0A66C2; }
.team-hover .social-links a.social-pi { color: #E60023; }

.team-hover .social-links a:hover {
    background: var(--p2);
    color: #fff !important;
    transform: translateY(-3px);
}

.team-hover .social-links svg {
    width: 18px;
    height: 18px;
}

.team-role {
    display: block;
    font-size: 14px;
    color: var(--p2);
    margin-bottom: 8px;
    font-weight: 600;
}

.team-name {
    font-size: 20px;
    color: var(--text);
    font-weight: 700;
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   GLOBAL PARTNERS SECTION
   ============================================= */
.partners-section {
    background: var(--dark);
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.partners-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 40px;
    text-align: left;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: var(--transition);
    cursor: pointer;
}

.partner-logo:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.partner-logo svg {
    width: 32px;
    height: 32px;
}

.partner-logo span {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .partners-grid {
        justify-content: center;
        gap: 40px;
    }
}

/* =============================================
   ABOUT PREVIEW SECTION
   ============================================= */
.about-preview {
    background: var(--dark2); /* slightly different from dark to contrast with features */
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.about-images {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
}

.img-back {
    position: relative;
    border-radius: 120px 20px 20px 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.img-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.img-front {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 8px solid var(--dark2); /* Match section background */
}

.img-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}

.play-btn-wrapper {
    position: absolute;
    top: 20px;
    right: 0;
    z-index: 2;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: var(--p);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    transition: var(--transition);
}

.play-btn::before,
.play-btn::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px solid var(--p2);
    border-radius: 50%;
    animation: ripple 2s infinite linear;
    opacity: 0;
}

.play-btn::after {
    inset: -20px;
    animation-delay: 1s;
}

.play-btn:hover {
    transform: scale(1.05);
    background: var(--p2);
}

.play-btn svg {
    width: 24px;
    height: 24px;
    margin-left: 4px;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.about-desc {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-list {
    list-style: none;
    margin-bottom: 40px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}

.about-list li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-cta-row {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.about-contact {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border);
}

.contact-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info span {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 2px;
}

.contact-info strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

/* =============================================
   FEATURES (NEW SECTION)
   ============================================= */
.features-section {
    background: var(--dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feat-card {
    background: var(--card2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feat-card:hover {
    transform: translateY(-5px);
    border-color: var(--p2);
    box-shadow: 0 10px 30px rgba(123, 63, 228, 0.1);
}

.feat-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--p-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
}

.feat-icon::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--p2);
    border-radius: 50%;
    bottom: 10px;
    right: 10px;
    transition: var(--transition);
}

.feat-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--p2);
    transition: var(--transition);
}

.feat-card:hover .feat-icon {
    background: var(--p);
    border-color: var(--p);
}

.feat-card:hover .feat-icon::after {
    background: #fff;
}

.feat-card:hover .feat-icon svg {
    stroke: var(--white);
}

.feat-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}

.feat-divider {
    width: 40px;
    height: 2px;
    background: var(--p2);
    margin-bottom: 20px;
    border-radius: 2px;
    transition: var(--transition);
}

.feat-card:hover .feat-divider {
    width: 60px;
}

.feat-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.feat-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid var(--muted2);
    font-size: 14px;
    font-weight: 500;
    color: var(--p2);
    transition: var(--transition);
    background: transparent;
}

.feat-btn svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.feat-card:hover .feat-btn {
    border-color: var(--p2);
    color: var(--text);
    background: var(--p-light);
}

.feat-card:hover .feat-btn svg {
    transform: translateX(4px);
}

/* =============================================
   SERVICES
   ============================================= */
.services {
    background: var(--dark2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.svc-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--p), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.svc-card:hover {
    border-color: rgba(123, 63, 228, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(123, 63, 228, 0.2);
}

.svc-card:hover::before {
    opacity: 1;
}

.svc-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted2);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.svc-icon {
    width: 48px;
    height: 48px;
    background: var(--p-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.svc-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--p2);
}

.svc-card:hover .svc-icon {
    background: var(--p);
}

.svc-card:hover .svc-icon svg {
    stroke: #fff;
}

.svc-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.svc-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}

.svc-arrow {
    margin-top: 24px;
    font-size: 18px;
    color: var(--p2);
    opacity: 0;
    transition: var(--transition);
    transform: translateX(-8px);
}

.svc-card:hover .svc-arrow {
    opacity: 1;
    transform: translateX(0);
}

.svc-card-cta {
    background: linear-gradient(135deg, rgba(123, 63, 228, 0.15), rgba(90, 31, 184, 0.1));
    border-color: rgba(123, 63, 228, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-cta-inner {
    text-align: center;
}

.svc-cta-inner p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 12px;
}

.svc-cta-inner h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

/* =============================================
   PORTFOLIO
   ============================================= */
.portfolio {
    background: var(--dark);
}

.portfolio-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.filter-btn {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--p);
    border-color: var(--p);
    color: #fff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 20px;
}

.proj-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.proj-card:hover {
    border-color: rgba(123, 63, 228, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.proj-card-large {
    grid-column: span 2;
}

.proj-thumb {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.proj-card-large .proj-thumb {
    height: 220px;
}

.proj-thumb-visual {
    transition: transform var(--transition);
    z-index: 1;
}

.proj-card:hover .proj-thumb-visual {
    transform: scale(0.92);
}

.proj-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 16, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.proj-card:hover .proj-overlay {
    opacity: 1;
}

.proj-view-btn {
    background: var(--p);
    color: #fff;
    padding: 10px 22px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.proj-view-btn:hover {
    background: var(--p2);
    transform: translateY(-2px);
}

.proj-info {
    padding: 22px;
}

.proj-cat {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--p2);
    margin-bottom: 8px;
}

.proj-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.proj-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

.portfolio-cta {
    text-align: center;
    margin-top: 48px;
}

/* hidden project cards */
.proj-card.hidden {
    display: none;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
    background: var(--dark2);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.highlight-item:hover {
    border-color: var(--p);
    box-shadow: 0 10px 30px rgba(123, 63, 228, 0.15);
    transform: translateY(-3px);
}

.highlight-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: var(--p-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--p2);
}

.highlight-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
}

.highlight-item p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.about-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 20px;
}

.about-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 18px;
    transition: var(--transition);
}

.about-card:hover {
    border-color: var(--p);
    box-shadow: 0 10px 30px rgba(123, 63, 228, 0.2);
    transform: translateY(-5px);
}

.about-card-icon {
    width: 40px;
    height: 40px;
    background: var(--p-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.about-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--p2);
}

.about-card h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.about-card p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
}

.about-quote {
    background: linear-gradient(135deg, rgba(123, 63, 228, 0.1), rgba(90, 31, 184, 0.06));
    border: 1px solid rgba(123, 63, 228, 0.25);
    border-radius: var(--radius);
    padding: 24px 28px;
    position: relative;
}

.quote-mark {
    font-size: 60px;
}

/* Modern About Layout */
.about-modern-header {
    text-align: center;
    margin-bottom: 50px;
}
.about-modern-header .section-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
}
.about-text-wrap {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.about-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}
    font-weight: 900;
    color: var(--p2);
    opacity: 0.3;
    line-height: 0.8;
    margin-bottom: 8px;
}

.about-quote p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.75;
    font-style: italic;
}

/* =============================================
   INTERNSHIP
   ============================================= */
.internship {
    background: var(--dark);
}

.intern-roles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.role-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    position: relative;
    transition: var(--transition);
}

.role-card:hover {
    border-color: rgba(123, 63, 228, 0.45);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.role-card-featured {
    border-color: rgba(123, 63, 228, 0.4);
    background: linear-gradient(160deg, rgba(123, 63, 228, 0.1), var(--card));
}

.role-icon-wrap {
    width: 52px;
    height: 52px;
    background: var(--p-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.role-icon-wrap svg {
    width: 26px;
    height: 26px;
    stroke: var(--p2);
}

.role-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(46, 190, 100, 0.12);
    color: #2EBE64;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(46, 190, 100, 0.25);
}

.role-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.role-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 18px;
}

.role-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
}

.role-skills li {
    background: var(--p-light);
    color: var(--p2);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.benefits-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 60px;
}

.benefit-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--transition);
}

.benefit-item:hover {
    border-color: rgba(123, 63, 228, 0.4);
}

.benefit-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: var(--p-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--p2);
}

.benefit-item h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.benefit-item p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
}

.intern-cta-block {
    background: linear-gradient(135deg, rgba(123, 63, 228, 0.14), rgba(90, 31, 184, 0.07));
    border: 1px solid rgba(123, 63, 228, 0.28);
    border-radius: var(--radius-lg);
    padding: 64px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.intern-cta-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.intern-cta-content h3 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    margin: 12px 0 16px;
}

.intern-cta-content p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 28px;
}

.intern-cta-visual {
    position: relative;
    width: 180px;
    height: 180px;
    flex-shrink: 0;
}

.intern-cta-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(123, 63, 228, 0.25);
}

.c1 {
    width: 180px;
    height: 180px;
    top: 0;
    left: 0;
    animation: ctaSpin 12s linear infinite;
}

.c2 {
    width: 120px;
    height: 120px;
    top: 30px;
    left: 30px;
    animation: ctaSpin 8s linear infinite reverse;
}

.c3 {
    width: 60px;
    height: 60px;
    top: 60px;
    left: 60px;
    background: var(--p-light);
    animation: ctaSpin 5s linear infinite;
}

@keyframes ctaSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
    background: var(--dark2);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 28px 0;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.contact-icon {
    width: 38px;
    height: 38px;
    background: var(--p-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--p2);
}

.contact-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--muted);
    margin-bottom: 2px;
}

.contact-val {
    display: block;
    font-size: 14px;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link svg {
    width: 18px;
    height: 18px;
    stroke: var(--muted);
}

.social-link:hover {
    background: var(--p);
    border-color: var(--p);
}

.social-link:hover svg {
    stroke: #fff;
}

.contact-form-wrap {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: 0 0 40px rgba(123, 63, 228, 0.35);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--dark3);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    padding: 13px 20px;
    border-radius: 30px;
    transition: var(--transition);
    outline: none;
    appearance: none;
    box-shadow: 0 4px 15px rgba(123, 63, 228, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--p);
    box-shadow: 0 0 0 3px rgba(123, 63, 228, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
    border-radius: 20px;
}

.form-group select option {
    background: var(--dark3);
    color: var(--text);
}

.form-error {
    font-size: 11px;
    color: #f87171;
    min-height: 16px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 15px;
    border-radius: 30px;
    color: rgb(122, 61, 227);
    border: 1px solid var(--border);
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease;
}

.btn-submit::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -20%;
    width: 140%;
    height: 0%;
    background: rgb(122, 61, 227);
    transition: height 0.6s ease-in-out;
    z-index: -1;
}

.btn-submit:hover::before {
    height: 100%;
    animation: zigzagFill 0.6s ease-in-out forwards;
}

.btn-submit:hover {
    color: #fff !important;
    border-color: rgb(122, 61, 227) !important;
}

@keyframes zigzagFill {
    0% { transform: translateX(0); }
    20% { transform: translateX(-5%); }
    40% { transform: translateX(5%); }
    60% { transform: translateX(-5%); }
    80% { transform: translateX(5%); }
    100% { transform: translateX(0); }
}

.btn-loader {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(46, 190, 100, 0.1);
    border: 1px solid rgba(46, 190, 100, 0.25);
    color: #2EBE64;
    font-size: 14px;
    font-weight: 500;
    padding: 14px 18px;
    border-radius: 8px;
}

.form-success svg {
    width: 20px;
    height: 20px;
    stroke: #2EBE64;
    flex-shrink: 0;
}

/* =============================================
   MAP
   ============================================= */
.map-section {
    padding: 0;
    background: var(--dark);
    line-height: 0;
}

.map-container {
    height: 500px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-left: 120px;
    margin-right: 120px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    /* filter: invert(90%) hue-rotate(180deg); */
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
}

.footer-top {
    padding: 64px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 260px;
}

.footer-links-col h5 {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 1px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col a {
    font-size: 13px;
    color: var(--muted);
    transition: color var(--transition);
}

.footer-links-col a:hover {
    color: var(--p2);
}

.footer-newsletter {
    margin-top: 24px;
}
.newsletter-form {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 260px;
}
.newsletter-form input {
    width: 100%;
    background: var(--dark3);
    border: 1px solid rgb(122, 61, 227);
    color: var(--text);
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    padding: 10px 45px 10px 14px;
    border-radius: 6px;
    outline: none;
    transition: var(--transition);
}
.newsletter-form input::placeholder {
    color: var(--muted2);
}
.newsletter-form input:focus {
    border-color: var(--p);
}
.newsletter-form button {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    background: var(--p);
    color: #fff;
    border: none;
    border-radius: 4px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.newsletter-form button:hover {
    background: var(--p2);
}
.newsletter-form button svg {
    width: 14px;
    height: 14px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--muted);
}

.footer-bottom a {
    color: var(--p2);
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 44px;
    height: 44px;
    background: var(--p);
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(123, 63, 228, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--p2);
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ---------- FLOATING BUTTONS ---------- */
.floating-btn {
    position: fixed;
    right: 28px;
    z-index: 998;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.floating-btn:hover {
    transform: translateY(-3px);
}

.floating-wa {
    bottom: 80px;
    background: #25D366;
}

.floating-wa:hover {
    background: #128C7E;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.floating-mail {
    bottom: 132px;
    background: var(--p);
}

.floating-mail:hover {
    background: var(--p2);
    box-shadow: 0 4px 20px rgba(123, 63, 228, 0.4);
}

.floating-btn svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}
.floating-wa svg {
    stroke: none;
    fill: currentColor;
}

/* =============================================
   WORKING PROCESS SECTION
   ============================================= */
.process-section {
    background: var(--dark);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-card {
    background: var(--card2);
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.process-card:hover {
    background: var(--p); /* Theme primary color on hover */
    border-color: var(--p);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--p-glow);
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: 40px;
}

.process-bg-lines {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 4px,
        rgba(255,255,255,0.03) 4px,
        rgba(255,255,255,0.03) 6px
    );
    transition: var(--transition);
}

.process-card:hover .process-bg-lines {
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 4px,
        rgba(255,255,255,0.2) 4px,
        rgba(255,255,255,0.2) 6px
    );
}

.process-icon-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.process-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    min-width: 40px;
    max-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
}

.process-icon svg {
    width: 40px;
    height: 40px;
    display: block;
    stroke-width: 1.5;
}

.process-icon-title h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.process-content p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
    transition: var(--transition);
}

.process-card:hover .process-content p,
.process-card:hover .process-icon {
    color: #ffffff;
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- TRUST SECTION (ABOUT PAGE) ---------- */
.trust-section {
    background: var(--bg);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.trust-left {
    padding-right: 20px;
}

.trust-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.trust-label .dash {
    width: 24px;
    height: 2px;
    background: var(--p);
}

.trust-label span {
    color: var(--p);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.trust-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 40px;
}

.trustpilot-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-star-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-star-logo svg {
    width: 32px;
    height: 32px;
}

.trust-rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-rating-stars {
    display: flex;
    gap: 4px;
}

.tp-star {
    width: 28px;
    height: 28px;
    background: var(--p);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tp-star.half {
    background: linear-gradient(90deg, var(--p) 50%, var(--card) 50%);
}

.tp-star svg {
    width: 16px;
    height: 16px;
}

.trust-cards-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.trust-cards-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.trust-cards-scroll::-webkit-scrollbar {
    display: none;
}

.trust-card {
    flex: 0 0 calc(50% - 12px);
    min-width: 300px;
    scroll-snap-align: start;
    background: var(--card);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    border: 1px solid var(--border);
}

.trust-quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    line-height: 1;
    font-family: serif;
    color: rgba(255, 255, 255, 0.05);
}

.tc-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
}

.tc-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.tc-stars svg {
    width: 18px;
    height: 18px;
}

.tc-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 30px;
}

.tc-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tc-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.tc-user span {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
    background: var(--bg);
}

.testimonial-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 0;
    flex: 1;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    background: var(--card);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    border: 1px solid var(--border);
    border-left: 5px solid var(--p);
    box-shadow: var(--shadow);
}

.testi-image {
    flex: 0 0 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--border);
}

.testi-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-content {
    flex: 1;
}

.testi-stars {
    display: flex;
    gap: 4px;
    color: var(--p);
    margin-bottom: 16px;
}

.testi-stars svg {
    width: 20px;
    height: 20px;
}

.testi-quote {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 24px;
    font-weight: 500;
}

.testi-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--p2);
    margin: 0 0 4px 0;
}

.testi-role {
    font-size: 14px;
    color: var(--muted);
}

.slider-btn {
    flex: 0 0 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--p);
    color: #fff;
    border-color: var(--p);
}

.slider-btn svg {
    width: 24px;
    height: 24px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: var(--p);
    width: 24px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .testimonial-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .testi-stars {
        justify-content: center;
    }
    
    .slider-btn {
        display: none;
    }
}

/* ---------- SKILLS ---------- */
.skills {
    background: var(--bg);
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.skills-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    display: block;
    margin: 0 auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.skills-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.skill-bars {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.skill-item {
    width: 100%;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.skill-info span:last-child {
    color: var(--p);
}

.skill-progress {
    width: 100%;
    height: 8px;
    background: var(--card);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--p), var(--p2));
    border-radius: 4px;
    position: relative;
}

@media (max-width: 992px) {
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet: 1024px */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .proj-card-large {
        grid-column: span 1;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .intern-roles {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

/* Mobile: 768px */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(8, 8, 16, 0.97);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .nav-menu.open {
        max-height: 400px;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 14px 24px;
        font-size: 15px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 100px 20px 70px;
    }

    .hero-stats {
        flex-wrap: wrap;
        padding: 20px 16px;
        gap: 0;
    }

    .stat-item {
        padding: 12px 16px;
    }

    .stat-divider {
        display: none;
    }

    .section {
        padding: 70px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .proj-card-large {
        grid-column: span 1;
    }

    .about-card-grid {
        grid-template-columns: 1fr;
    }

    .intern-roles {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .intern-cta-block {
        flex-direction: column;
        padding: 40px 28px;
        text-align: center;
    }

    .intern-cta-visual {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-title {
        letter-spacing: -0.5px;
    }
}

/* Small mobile: 480px */
@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }

    .portfolio-filters {
        gap: 6px;
    }

    .filter-btn {
        padding: 7px 14px;
        font-size: 12px;
    }

    .back-to-top {
        bottom: 16px;
        right: 16px;
    }
}

/* =============================================
   MEGA MENU (NEW)
   ============================================= */
.mega-dropdown {
    position: static !important;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 20px;
}

.mega-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
}

.mega-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--p);
    transform: translateY(-2px);
}

.mega-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(155, 111, 240, 0.1);
    border-radius: 6px;
    color: var(--p);
}

.mega-icon svg {
    width: 24px;
    height: 24px;
}

.mega-content h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
}

.mega-content p {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.4;
}

/* ---------- PROCESS ---------- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.process-card {
    background: var(--card);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-5px);
    border-color: var(--p2);
    box-shadow: 0 10px 30px rgba(123, 63, 228, 0.3);
}

.process-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--p-glow) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.process-card:hover::before {
    opacity: 1;
}

.process-num {
    font-size: 48px;
    font-weight: 900;
    color: var(--p-light);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.process-card:hover .process-num {
    color: var(--p2);
}

.process-card:hover .process-title,
.process-card:hover .process-text {
    color: #fff;
}

.process-icon {
    width: 50px;
    height: 50px;
    background: var(--p-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--p2);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.process-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.process-text {
    font-size: 14px;
    color: var(--muted);
    position: relative;
    z-index: 1;
}

/* ---------- STATS ---------- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: var(--card2);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--border);
    background: var(--card);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(123, 63, 228, 0.3);
}

.stat-card:hover .stat-desc {
    color: #fff;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--p2);
    margin-bottom: 10px;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-desc {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- VALUES ---------- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: var(--dark2);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.value-card:hover {
    background: var(--card);
    border-color: var(--p);
    box-shadow: 0 10px 30px rgba(123, 63, 228, 0.3);
}

.value-icon {
    color: var(--p2);
    margin-bottom: 15px;
}

.value-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.value-text {
    font-size: 14px;
    color: var(--muted);
}

/* ---------- TEAM ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
    padding: 40px 30px;
    position: relative;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(123, 63, 228, 0.3);
    border-color: var(--p2);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--p);
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-avatar {
    transform: scale(1.05);
    border-color: var(--p2);
}

.team-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
}

.team-role {
    font-size: 14px;
    color: var(--p2);
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tc-text {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

/* ---------- PROJECTS SLIDER ---------- */
.projects-slider-wrap {
    position: relative;
    margin-top: 50px;
}

.projects-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 20px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.projects-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.project-slide-card {
    flex: 0 0 350px; /* Fixed width for slider cards */
    background: var(--card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.project-slide-card:hover {
    transform: translateY(-5px);
    border-color: var(--p2);
    box-shadow: 0 10px 30px rgba(123, 63, 228, 0.3);
}

.ps-thumb {
    height: 200px; /* Fixed height for the screen part at top */
    width: 100%;
    background: linear-gradient(135deg, #1a0a2e, #3d1080);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.ps-info {
    padding: 25px;
}

.ps-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.ps-text {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.ps-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 600;
    color: var(--p2);
    text-decoration: none;
    transition: var(--transition);
    align-self: flex-start; /* Don't stretch */
}

.ps-btn:hover {
    color: #fff;
    transform: translateX(5px);
}

/* Slider Nav */
.slider-nav {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--p2);
    color: #fff;
    border-color: var(--p2);
}

@media (max-width: 768px) {
    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        padding: 10px 20px;
        display: none; /* Hide in mobile or handle differently */
    }
    .mega-dropdown:hover .mega-menu {
        display: block;
    }
    .mega-menu-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }
}