/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #000;
}

/* Hero Background Image - REPLACES VIDEO */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url('/static/website/images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translateZ(0);
}

/* For direct img tag method */
.hero-image-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
}

/* REMOVE OR COMMENT OUT .hero-video SECTION */
/* .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    transform: translateZ(0);
    will-change: transform;
} */

/* Parallax overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
}

.hero-center {
    text-align: center;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: opacity 0.1s linear;
    will-change: transform, opacity;
}

.hero-logo-wrapper{
position:relative;
display:inline-flex;
}

.hero-logo{
font-size:52px;
font-weight:600;
letter-spacing:6px;
font-family:'Poppins', 'Segoe UI', sans-serif;
color:#000;
text-shadow:0 0 20px rgba(0,0,0,0.2);
}

.hero-logo span{
display:inline-block;
opacity:0;
animation:letterAppear 0.1s forwards;
transition:transform 0.2s ease;
}

.hero-logo span:nth-child(1){animation-delay:0.05s}
.hero-logo span:nth-child(2){animation-delay:0.1s}
.hero-logo span:nth-child(3){animation-delay:0.15s}
.hero-logo span:nth-child(4){animation-delay:0.2s}
.hero-logo span:nth-child(5){animation-delay:0.25s}
.hero-logo span:nth-child(6){animation-delay:0.3s}
.hero-logo span:nth-child(7){animation-delay:0.35s}
.hero-logo span:nth-child(8){animation-delay:0.4s}
.hero-logo span:nth-child(9){animation-delay:0.45s}
.hero-logo span:nth-child(10){animation-delay:0.5s}
.hero-logo span:nth-child(11){animation-delay:0.55s}
.hero-logo span:nth-child(12){animation-delay:0.6s}

.hero-logo span:hover{
transform:translateY(-12px);
}

@keyframes letterAppear{
to{opacity:1}
}

.hero-tagline{
font-size:24px;
color:#000;
margin-top:15px;
margin-bottom:30px;
letter-spacing:3px;
font-weight:300;
}

.hero-buttons{
display:flex;
gap:20px;
justify-content:center;
flex-wrap:wrap;
}

.primary-btn{
background:#000;
color:#fff;
padding:14px 32px;
border-radius:30px;
text-decoration:none;
font-weight:500;
transition:0.3s;
}

.primary-btn:hover{
background:#333;
transform:translateY(-2px);
}

.secondary-btn{
border:2px solid #000;
color:#000;
padding:14px 32px;
border-radius:30px;
text-decoration:none;
font-weight:500;
transition:0.3s;
}

.secondary-btn:hover{
background:#000;
color:#fff;
transform:translateY(-2px);
}

.tertiary-btn{
border:2px solid #000;
color:#000;
padding:14px 32px;
border-radius:30px;
text-decoration:none;
font-weight:500;
transition:0.3s;
background:transparent;
}

.tertiary-btn:hover{
background:#f5f5f5;
transform:translateY(-2px);
}

.claim-btn{
background:#ff6b35;
color:#fff;
padding:14px 32px;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:0.3s;
box-shadow:0 4px 15px rgba(255,107,53,0.3);
}

.claim-btn:hover{
background:#e55a2b;
transform:translateY(-2px);
box-shadow:0 6px 20px rgba(255,107,53,0.4);
}

/* ABOUT SECTION */
.about-section{
min-height:100vh;
padding:100px 50px;
display:flex;
justify-content:center;
align-items:center;
background:#fff5f5;
}

[data-theme="dark"] .about-section {
    background: #0a0a0a;
}

.about-container{
display:flex;
align-items:center;
gap:80px;
max-width:1200px;
margin:0 auto;
opacity:0;
transform:translateY(50px);
transition:all 0.8s ease;
}

.about-container.visible{
opacity:1;
transform:translateY(0);
}

.about-image{
    flex:1;
    width: 100%;
}

.about-img-wrapper{
position:relative;
overflow:hidden;
border-radius:24px;
box-shadow:0 30px 60px rgba(0,0,0,0.2);
cursor:pointer;
height:400px;
}

.about-img-wrapper img{
width:100%;
height:100%;
border-radius:24px;
display:block;
object-fit:cover;
transition:transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
}

.about-img-wrapper:hover img{
transform:scale(1.05);
filter:brightness(0.5);
}

.about-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
opacity:0;
transition:opacity 0.5s ease;
display:flex;
align-items:center;
justify-content:center;
border-radius:24px;
}

.about-img-wrapper:hover .about-overlay{
opacity:1;
}

.about-overlay-content{
text-align:center;
transform:translateY(30px) scale(0.9);
transition:all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-img-wrapper:hover .about-overlay-content{
transform:translateY(0) scale(1);
}

.about-overlay-content h3{
font-size:42px;
font-weight:700;
color:#fff;
margin-bottom:15px;
letter-spacing:4px;
text-shadow:0 4px 20px rgba(0,0,0,0.3);
}

.about-overlay-content p{
font-size:18px;
color:#fff;
opacity:0.95;
letter-spacing:3px;
text-transform:uppercase;
}

.about-overlay-content .about-cta{
display:inline-block;
margin-top:25px;
padding:14px 35px;
background:#fff;
color:#000;
border-radius:50px;
font-weight:600;
font-size:14px;
letter-spacing:1px;
transform:translateY(20px);
opacity:0;
transition:all 0.5s ease 0.15s;
}

.about-img-wrapper:hover .about-cta{
transform:translateY(0);
opacity:1;
}

.about-cta:hover{
background:#000;
color:#fff;
}

.about-text{
flex:1;

}

.about-text h2{
font-size:42px;
font-weight:600;
margin-bottom:30px;
color:#000;

}

[data-theme="dark"] .about-text h2 {
    color: #fff;
}

.about-text p{
font-size:18px;
color:#444;
line-height:1.8;
margin-bottom:20px;
text-align: justify;
}

[data-theme="dark"] .about-text p {
    color: #b0b0b0;
}

/* TEAM SECTION */
.team-section{
padding:120px 50px;
background:#fff5f5;
}

.team-scroll-container{
overflow-x: auto;
-webkit-overflow-scrolling: touch;
scrollbar-width: thin;
scrollbar-color: #ccc #f0f0f0;
}

.team-scroll-container::-webkit-scrollbar{
height: 8px;
}

.team-scroll-container::-webkit-scrollbar-track{
background: #f0f0f0;
border-radius: 4px;
}

.team-scroll-container::-webkit-scrollbar-thumb{
background: #bbb;
border-radius: 4px;
}

.team-scroll-container::-webkit-scrollbar-thumb:hover{
background: #999;
}

[data-theme="dark"] .team-scroll-container{
scrollbar-color: #444 #1a1a1a;
}

[data-theme="dark"] .team-scroll-container::-webkit-scrollbar-track{
background: #1a1a1a;
}

[data-theme="dark"] .team-scroll-container::-webkit-scrollbar-thumb{
background: #444;
}

[data-theme="dark"] .team-scroll-container::-webkit-scrollbar-thumb:hover{
background: #555;
}

.team-header{
text-align:center;
margin-bottom:80px;
opacity:0;
transform:translateY(40px);
transition:all 0.8s ease;
}

.team-header.visible{
opacity:1;
transform:translateY(0);
}

.team-header h2{
font-size:48px;
font-weight:700;
color:#000;
margin-bottom:15px;
letter-spacing:-1px;
white-space: nowrap;
}

[data-theme="dark"] .team-header h2 {
    color: #fff;
}

.team-header p{
font-size:18px;
color:#888;
max-width:500px;
margin:0 auto;
}

[data-theme="dark"] .team-header p {
    color: #888;
}

.team-grid{
display:flex;
justify-content: flex-start;
gap:40px;
flex-wrap: nowrap;
max-width:1200px;
margin:0 auto;
padding-bottom: 20px;
}

.team-card{
width:300px;
flex-shrink: 0;
opacity:0;
transform:translateY(50px);
transition:all 0.6s ease;
cursor:pointer;
}

.team-card.visible{
opacity:1;
transform:translateY(0);
}

.team-card:nth-child(1){transition-delay:0.1s}
.team-card:nth-child(2){transition-delay:0.2s}
.team-card:nth-child(3){transition-delay:0.3s}

.team-card.visible:hover{
transform:translateY(-8px);
}

.team-image{
position:relative;
overflow:hidden;
border-radius:20px;
margin-bottom:20px;
}

.team-image img{
width:100%;
height:320px;
object-fit:cover;
transition:transform 0.5s ease, filter 0.5s ease;
}

.team-card:hover .team-image img{
transform:scale(1.08);
filter:brightness(0.7);
}

.team-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.9) 100%);
opacity:0;
transition:opacity 0.4s ease;
display:flex;
align-items:flex-end;
justify-content:center;
padding-bottom:40px;
}

.team-card:hover .team-overlay{
opacity:1;
}

.team-overlay-content{
text-align:center;
}

.view-profile{
display:inline-block;
padding:12px 30px;
background:#fff;
color:#000;
font-weight:600;
font-size:14px;
border-radius:50px;
transform:translateY(20px);
opacity:0;
transition:all 0.4s ease 0.1s;
}

.team-card:hover .view-profile{
transform:translateY(0);
opacity:1;
}

.team-info{
text-align:center;
}

.team-info h3{
font-size:22px;
font-weight:600;
color:#000;
margin-bottom:5px;
}

[data-theme="dark"] .team-info h3 {
    color: #fff;
}

.team-info > p{
font-size:14px;
color:#888;
letter-spacing:1px;
margin-bottom:12px;
}

[data-theme="dark"] .team-info > p {
    color: #888;
}

.team-stats{
display:flex;
justify-content:center;
gap:20px;
}

.team-stats span{
font-size:12px;
color:#666;
display:flex;
align-items:center;
gap:6px;
}

.team-stats i{
color:#000;
}

[data-theme="dark"] .team-stats i {
    color: #fff;
}

/* TEAM MODAL */
.team-modal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
z-index:9999;
justify-content:center;
align-items:center;
isolation: isolate;
}

.team-modal.active{
display:flex;
}

.modal-backdrop{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;

z-index:9998;
}

@keyframes fadeIn{
from{opacity:0}
to{opacity:1}
}

.modal-content{
background:#fff;
border-radius:24px;
padding:50px;
max-width:800px;
width:95%;
position:relative;
animation:slideUp 0.4s ease, scaleIn 0.4s ease;
}

@keyframes slideUp{
from{transform:translateY(100px);opacity:0}
to{transform:translateY(0);opacity:1}
}

@keyframes scaleIn{
from{transform:scale(0.9)}
to{transform:scale(1)}
}

.modal-close{
position:absolute;
top:20px;
right:20px;
width:44px;
height:44px;
border-radius:50%;
background:#f5f5f5;
border:none;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
color:#666;
transition:all 0.3s ease;
}

.modal-close:hover{
background:#000;
color:#fff;
transform:rotate(90deg);
}

.modal-body{
display:flex;
gap:50px;
align-items:flex-start;
}

.modal-image-wrapper{
position:relative;
flex-shrink:0;
}

.modal-image{
width:180px;
height:180px;
border-radius:20px;
object-fit:cover;
position:relative;
z-index:1;
}

.modal-image-border{
position:absolute;
top:10px;
left:10px;
width:180px;
height:180px;
border-radius:20px;
border:3px solid #000;
z-index:0;
}

.modal-info{
flex:1;
padding-top:10px;
}

.modal-header{
margin-bottom:25px;
}

.modal-name{
font-size:36px;
font-weight:700;
color:#000;
margin-bottom:8px;
letter-spacing:-0.5px;
}

.modal-role{
font-size:14px;
color:#666;
font-weight:500;
letter-spacing:3px;
text-transform:uppercase;
}

.modal-stats{
display:flex;
gap:40px;
margin-bottom:25px;
}

.stat-item{
text-align:center;
}

.stat-value{
display:block;
font-size:28px;
font-weight:700;
color:#000;
}

.stat-label{
font-size:12px;
color:#888;
text-transform:uppercase;
letter-spacing:2px;
}

.modal-divider{
width:60px;
height:3px;
background:linear-gradient(90deg, #000, #666);
border-radius:2px;
margin:25px 0;
}

.modal-bio{
font-size:15px;
color:#555;
line-height:1.8;
margin-bottom:25px;
}

.modal-skills{
margin-bottom:25px;
}

.skills-label{
font-size:12px;
color:#999;
text-transform:uppercase;
letter-spacing:2px;
margin-bottom:12px;
}

.skills-list{
display:flex;
flex-wrap:wrap;
gap:10px;
}

.skill-tag{
padding:8px 18px;
background:#f5f5f5;
border-radius:50px;
font-size:13px;
font-weight:500;
color:#333;
transition:all 0.3s ease;
}

.skill-tag:hover{
background:#000;
color:#fff;
}

.modal-profiles{
margin-bottom:30px;
}

.profile-label{
font-size:12px;
color:#999;
text-transform:uppercase;
letter-spacing:2px;
margin-bottom:15px;
}

.profile-links{
display:flex;
flex-wrap:wrap;
gap:12px;
}

.profile-link{
display:inline-flex;
align-items:center;
gap:10px;
padding:12px 20px;
border-radius:50px;
font-size:14px;
font-weight:500;
text-decoration:none;
transition:all 0.3s ease;
}

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

.profile-link.linkedin{
background:#0077b5;
color:#fff;
}

.profile-link.twitter{
background:#1da1f2;
color:#fff;
}

.profile-link.github{
background:#333;
color:#fff;
}

.profile-link.dribbble{
background:#ea4c89;
color:#fff;
}

.modal-read-more{
display:inline-flex;
align-items:center;
gap:10px;
padding:16px 32px;
background:#000;
color:#fff;
text-decoration:none;
font-weight:600;
font-size:15px;
border-radius:50px;
transition:all 0.3s ease;
}

.modal-read-more:hover{
background:#333;
transform:translateY(-2px);
box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.modal-read-more svg{
transition:transform 0.3s ease;
}

.modal-read-more:hover svg{
transform:translateX(5px);
}

/* SERVICES SECTION */
.services-section{
padding:120px 0;
background:#fff5f5;
overflow:hidden;
}

[data-theme="dark"] .services-section {
    background: #0a0a0a;
}

.services-header{
text-align:center;
margin-bottom:60px;
opacity:0;
transform:translateY(40px);
transition:all 0.8s ease;
}

.services-header.visible{
opacity:1;
transform:translateY(0);
}

.services-header h2{
font-size:48px;
font-weight:700;
color:#000;
margin-bottom:15px;
letter-spacing:-1px;
}

[data-theme="dark"] .services-header h2 {
    color: #fff;
}

.services-header p{
font-size:18px;
color:#888;
max-width:500px;
margin:0 auto;
}

.services-track-wrapper{
overflow:hidden;
mask-image:linear-gradient(to right, transparent, black 10%, black 90%, transparent);
-webkit-mask-image:linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.services-track{
display:flex;
gap:30px;
animation:scroll-left 20s linear infinite;
width:max-content;
}

.services-track:hover{
animation-play-state:paused;
}

@keyframes scroll-left{
0%{
transform:translateX(0);
}
100%{
transform:translateX(-50%);
}
}

.service-item{
flex:0 0 320px;
background:#fff;
border-radius:20px;
padding:30px 25px;
text-align:center;
box-shadow:0 10px 40px rgba(0,0,0,0.06);
border-bottom:3px solid transparent;
transition:all 0.3s ease;
}

[data-theme="dark"] .service-item {
    background: #1a1a1a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.service-item:hover{
transform:translateY(-5px);
box-shadow:0 20px 50px rgba(0,0,0,0.12);
border-bottom-color:#000;
}

[data-theme="dark"] .service-item:hover {
    border-bottom-color: #fff;
}

.service-number{
font-size:32px;
font-weight:700;
color:#e0e0e0;
margin-bottom:12px;
}

[data-theme="dark"] .service-number {
    color: #333;
}

.service-content h3{
font-size:18px;
font-weight:600;
color:#000;
margin-bottom:8px;
}

[data-theme="dark"] .service-content h3 {
    color: #fff;
}

.service-content p{
font-size:13px;
color:#666;
line-height:1.5;
margin-bottom:12px;
}

[data-theme="dark"] .service-content p {
    color: #888;
}

.service-tags{
display:flex;
gap:6px;
justify-content:center;
flex-wrap:wrap;
}

.service-tags span{
padding:4px 10px;
background:#f5f5f5;
border-radius:15px;
font-size:11px;
color:#555;
font-weight:500;
}

[data-theme="dark"] .service-tags span {
    background: #2a2a2a;
    color: #b0b0b0;
}

/* PROJECTS SECTION */
.projects-section{
    padding:120px 0;
    background:#fff5f5;
    position:relative;
    overflow:hidden;
}

[data-theme="dark"] .projects-section {
    background: #0a0a0a;
}

.projects-header{
    text-align:center;
    margin-bottom:60px;
    opacity:0;
    transform:translateY(40px);
    transition:all 0.8s ease;
}

.projects-header.visible{
    opacity:1;
    transform:translateY(0);
}

.projects-header h2{
    font-size:48px;
    font-weight:700;
    color:#000;
    margin-bottom:15px;
    letter-spacing:-1px;
}

[data-theme="dark"] .projects-header h2 {
    color: #fff;
}

.projects-header p{
    font-size:18px;
    color:#888;
    max-width:500px;
    margin:0 auto;
}

.projects-track-wrapper {
    max-width:1400px;
    margin:0 auto;
    padding:0 50px;
    overflow:hidden;
}

.projects-viewport {
    overflow:hidden;
}

.projects-track {
    display:flex;
    gap:30px;
    transition:transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    width:max-content;
}

.project-card {
    flex:0 0 400px;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 4px 30px rgba(0,0,0,0.06);
    border:1px solid rgba(0,0,0,0.04);
    transition:all 0.4s ease;
    cursor:pointer;
}

[data-theme="dark"] .project-card {
    background: #1a1a1a;
    border-color: #2a2a2a;
}

.project-card:hover {
    transform:translateY(-5px) scale(1.01);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    border-color:rgba(0,0,0,0.05);
}

[data-theme="dark"] .project-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.project-content {
    display:flex;
    flex-direction:column;
}

.project-image {
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
    transition:transform 0.5s ease;
}

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

.project-image-wrapper {
    overflow:hidden;
    position:relative;
}

.project-image-wrapper .view-full-project-btn {
    position:absolute;
    bottom:16px;
    right:16px;
    display:flex;
    align-items:center;
    gap:8px;
    padding:10px 20px;
    background:#fff;
    color:#000;
    text-decoration:none;
    border-radius:50px;
    font-size:12px;
    font-weight:600;
    box-shadow:0 6px 20px rgba(0,0,0,0.15);
    transition:all 0.3s ease;
    opacity:0;
    transform:translateY(10px);
}

.project-card:hover .view-full-project-btn {
    opacity:1;
    transform:translateY(0);
}

.view-full-project-btn:hover {
    background:#000;
    color:#fff;
}

[data-theme="dark"] .view-full-project-btn {
    background: #fff;
    color: #000;
}

[data-theme="dark"] .view-full-project-btn:hover {
    background: #e0e0e0;
}

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

.view-full-project-btn:hover i {
    transform:translateX(4px);
}

.project-info {
    padding:24px;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.project-category {
    display:inline-block;
    font-size:10px;
    font-weight:600;
    color:#888;
    text-transform:uppercase;
    letter-spacing:2px;
    padding:3px 10px;
    background:#f5f5f5;
    border-radius:20px;
    align-self:flex-start;
}

[data-theme="dark"] .project-category {
    background: #2a2a2a;
    color: #b0b0b0;
}

.project-title {
    font-size:20px;
    font-weight:700;
    color:#111;
    line-height:1.25;
    letter-spacing:-0.3px;
    display:flex;
    align-items:center;
    gap:8px;
}

[data-theme="dark"] .project-title {
    color: #fff;
}

.project-link-icon {
    color:#000;
    font-size:14px;
    opacity:0.5;
    transition:all 0.3s ease;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
}

.project-link-icon:hover {
    opacity:1;
    transform:scale(1.2);
}

.project-description {
    font-size:13px;
    color:#666;
    line-height:1.6;
}

[data-theme="dark"] .project-description {
    color: #888;
}

.project-meta {
    display:flex;
    align-items:center;
    gap:12px;
}

.project-status {
    padding:4px 12px;
    background:#e8f0e8;
    color:#2c5f2d;
    border-radius:20px;
    font-size:11px;
    font-weight:600;
}

[data-theme="dark"] .project-status {
    background: #1a2a1a;
    color: #7cc57c;
}

.project-date {
    color:#999;
    font-size:12px;
}

[data-theme="dark"] .project-date {
    color: #666;
}

.project-tech-list {
    display:flex;
    gap:6px;
    flex-wrap:wrap;
}

.tech-tag {
    padding:4px 12px;
    background:#f0e8e8;
    color:#5a3a3a;
    border-radius:20px;
    font-size:11px;
    font-weight:500;
}

[data-theme="dark"] .tech-tag {
    background: #2a1a1a;
    color: #d4a5a5;
}

/* Projects Navigation */
.projects-nav {
    display:flex;
    justify-content:center;
    align-items:center;
    gap:16px;
    margin-top:50px;
}

.projects-nav-btn {
    width:48px;
    height:48px;
    border-radius:50%;
    border:2px solid #e0e0e0;
    background:#fff;
    color:#333;
    font-size:16px;
    cursor:pointer;
    transition:all 0.3s ease;
    display:flex;
    align-items:center;
    justify-content:center;
}

[data-theme="dark"] .projects-nav-btn {
    border-color: #333;
    background: #1a1a1a;
    color: #fff;
}

.projects-nav-btn:hover {
    border-color:#000;
    color:#000;
    transform:scale(1.1);
    box-shadow:0 8px 25px rgba(0,0,0,0.1);
}

[data-theme="dark"] .projects-nav-btn:hover {
    border-color: #fff;
}

.projects-dots {
    display:flex;
    gap:8px;
}

.projects-dot {
    width:10px;
    height:10px;
    border-radius:50%;
    background:#ddd;
    cursor:pointer;
    transition:all 0.3s ease;
}

[data-theme="dark"] .projects-dot {
    background: #333;
}

.projects-dot.active {
    background:#000;
    transform:scale(1.3);
}

[data-theme="dark"] .projects-dot.active {
    background: #fff;
}

.no-projects {
    text-align:center;
    padding:60px 20px;
}

.no-projects p {
    font-size:18px;
    color:#999;
}

/* Responsive */
@media (max-width: 1024px) {
    .project-card {
        flex:0 0 340px;
    }
}

@media (max-width: 768px) {
    .projects-section {
        padding:80px 0;
    }

    .projects-header h2 {
        font-size:32px;
    }

    .projects-track-wrapper {
        padding:0 30px;
    }

    .project-card {
        flex:0 0 280px;
    }

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

@media (max-width: 480px) {
    .projects-header {
        padding:0 20px;
    }

    .projects-track-wrapper {
        padding:0 20px;
    }

    .project-card {
        flex:0 0 280px;
    }

    .projects-nav {
        margin-top:30px;
    }
}

/* FAQ SECTION */
.faq-section {
    padding: 120px 20px;
    background: #fff5f5;
}

[data-theme="dark"] .faq-section {
    background: #0a0a0a;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.faq-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

[data-theme="dark"] .faq-header h2 {
    color: #fff;
}

.faq-header p {
    color: #888;
    font-size: 18px;
}

[data-theme="dark"] .faq-header p {
    color: #888;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    cursor: pointer;
}

[data-theme="dark"] .faq-item {
    background: #1a1a1a;
    border-color: #2a2a2a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

[data-theme="dark"] .faq-question {
    background: #1a1a1a;
}

.faq-question:hover {
    background: rgba(99, 102, 241, 0.03);
}

[data-theme="dark"] .faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    padding-right: 20px;
    pointer-events: none;
}

[data-theme="dark"] .faq-question h3 {
    color: #fff;
}

.faq-question i {
    color: #6366f1;
    transition: transform 0.3s ease;
    font-size: 14px;
    pointer-events: none;
}

[data-theme="dark"] .faq-question i {
    color: #8b9dff;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: #666;
    line-height: 1.7;
}

[data-theme="dark"] .faq-answer p {
    color: #b0b0b0;
}

@media (max-width: 480px) {
    .faq-header h2 {
        font-size: 32px;
    }

    .faq-question h3 {
        font-size: 14px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-primary-btn, .cta-secondary-btn {
        width: 100%;
        justify-content: center;
    }

    .trust-logo-item {
        font-size: 14px;
    }

    .trust-logos {
        gap: 20px;
    }
}

/* ===== TRUST SECTION ===== */
.trust-section {
    padding: 60px 20px;
    background: #fff5f5;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.trust-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.trust-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 30px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-logo-item {
    font-size: 18px;
    font-weight: 600;
    color: #ccc;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.trust-logo-item:hover {
    color: #888;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 120px 50px;
    background: #fff5f5;
}

[data-theme="dark"] .process-section {
    background: #0a0a0a;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

[data-theme="dark"] .process-header h2 {
    color: #fff;
}

.process-header p {
    font-size: 17px;
    color: #888;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .process-card {
    background: #1a1a1a;
    border-color: #2a2a2a;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .process-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.process-number {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 13px;
    font-weight: 700;
    color: #ddd;
}

.process-icon {
    width: 50px;
    height: 50px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin: 0 auto 16px;
}

.process-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

[data-theme="dark"] .process-card h3 {
    color: #fff;
}

.process-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

[data-theme="dark"] .process-card p {
    color: #999;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 50px;
    background: #000;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 17px;
    color: #888;
    margin-bottom: 36px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #000;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.cta-primary-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.cta-primary-btn i {
    transition: transform 0.3s ease;
}

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

.cta-secondary-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-secondary-btn:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-section {
    padding: 120px 50px;
    background: #fff5f5;
}

[data-theme="dark"] .why-section {
    background: #0a0a0a;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.why-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

[data-theme="dark"] .why-header h2 {
    color: #fff;
}

.why-header p {
    font-size: 18px;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
}

[data-theme="dark"] .why-header p {
    color: #888;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .why-card {
    background: #1a1a1a;
    border-color: #2a2a2a;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .why-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 24px;
}

[data-theme="dark"] .why-icon {
    background: #fff;
    color: #000;
}

.why-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

[data-theme="dark"] .why-card h3 {
    color: #fff;
}

.why-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

[data-theme="dark"] .why-card p {
    color: #b0b0b0;
}

/* ===== FINAL CTA SECTION ===== */
.cta-final-section {
    padding: 120px 50px;
    background: #000;
    text-align: center;
}

[data-theme="dark"] .cta-final-section {
    background: #050505;
}

.cta-final-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-final-container h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.cta-final-container p {
    font-size: 18px;
    color: #888;
    margin-bottom: 40px;
    line-height: 1.6;
}

[data-theme="dark"] .cta-final-container p {
    color: #666;
}

.cta-final-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

[data-theme="dark"] .cta-final-section .secondary-btn {
    border-color: #444;
    color: #fff;
}

[data-theme="dark"] .cta-final-section .secondary-btn:hover {
    border-color: #fff;
    background: #fff;
    color: #000;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .about-container, .mission-container, .intro-container {
        gap: 40px;
    }

    .hero-logo { font-size: 42px; }
    .hero-tagline { font-size: 20px; }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
        min-height: 500px;
        background-attachment: scroll;
    }

    .hero-logo { font-size: 32px; letter-spacing: 4px; }
    .hero-tagline { font-size: 16px; letter-spacing: 2px; }

    .about-section, .team-section, .services-section, .projects-section, .faq-section, .process-section, .why-section, .cta-final-section {
        padding: 80px 20px;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .about-text h2 { font-size: 32px; }

    .team-header h2, .services-header h2, .projects-header h2, .faq-header h2, .process-header h2, .why-header h2 {
        font-size: 32px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .trust-track {
        gap: 30px;
    }

    .trust-logo-item {
        font-size: 15px;
    }

    .team-grid {
        gap: 30px;
    }

    .team-card {
        width: 100%;
        max-width: 340px;
    }

    .service-item {
        flex: 0 0 280px;
    }

    .modal-content {
        padding: 30px;
        width: 95%;
    }

    .modal-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .modal-divider { margin: 20px auto; }
    .modal-stats { justify-content: center; }
    .skills-list, .profile-links { justify-content: center; }

    .cta-final-container h2 {
        font-size: 32px;
    }

    .cta-final-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero { height: 100vh; }
    .hero-logo { font-size: 24px; letter-spacing: 2px; }
    .hero-tagline { font-size: 14px; margin-top: 10px; }
    .hero-buttons { flex-direction: column; width: 85%; gap: 12px; }
    .primary-btn, .secondary-btn { width: 100%; text-align: center; padding: 12px 24px; font-size: 14px; }
    
    .about-section { padding: 60px 20px; }
    .about-img-wrapper { height: 250px; }
    .about-text h2 { font-size: 28px; margin-bottom: 20px; }
    .about-text p { font-size: 15px; line-height: 1.6; }

    .team-header p, .services-header p, .projects-header p { font-size: 14px; }
    .faq-header h2 { font-size: 28px; }
    .why-card { padding: 30px 20px; }

    .service-item { flex: 0 0 260px; padding: 25px 20px; }
    .service-content h3 { font-size: 16px; }
    
    .project-card { flex: 0 0 280px; }
    .projects-track-wrapper { padding: 0 15px; }
    
    .footer-content { gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-logo { font-size: 20px; }
    .hero-tagline { font-size: 12px; }
}


/* ===== REUSABLE CAPSULE LABEL ===== */
.section-label-capsule {
    display: inline-block;
    padding: 10px 24px;
    background: #000;
    color: #fff;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

[data-theme="dark"] .section-label-capsule {
    background: #fff;
    color: #000;
}

/* ===== REDESIGNED TRUST SECTION ===== */
.trust-section {
    padding: 80px 0;
    background: #fff5f5;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-track-wrapper {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.trust-track {
    display: flex;
    gap: 100px;
    width: max-content;
    animation: scroll-trust 40s linear infinite;
    align-items: center;
    padding: 20px 0;
}

@keyframes scroll-trust {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.trust-logo-item {
    font-size: 24px;
    font-weight: 800;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 4px;
    transition: all 0.3s ease;
    cursor: default;
    user-select: none;
    white-space: nowrap;
}

.trust-logo-item:hover {
    color: #000;
    transform: scale(1.1);
}

[data-theme="dark"] .trust-section { background: #0a0a0a; border-color: #1a1a1a; }
[data-theme="dark"] .trust-logo-item { color: #333; }
[data-theme="dark"] .trust-logo-item:hover { color: #fff; }

/* ===== HERO SCROLL INDICATOR ===== */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid #000;
    border-radius: 20px;
    position: relative;
}

[data-theme="dark"] .mouse {
    border-color: #fff;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #000;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

[data-theme="dark"] .wheel {
    background: #fff;
}

@keyframes scroll-wheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 25px; opacity: 0; }
}

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    margin: -5px;
    animation: arrow-bounce 1.5s infinite;
}

[data-theme="dark"] .arrow span {
    border-color: #fff;
}

.arrow span:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes arrow-bounce {
    0% { opacity: 0; transform: rotate(45deg) translate(-10px, -10px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(10px, 10px); }
}
