/* ===== GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #0B1120;
    color: #F8FAFC;
    line-height: 1.6;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ===== HEADER (Premium Executive) ===== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 50px;
    background: #ffffff;  /* Pure white */
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e7eb;
}

/* .logo {
    font-size: 22px;
    font-weight: bold;
    background: linear-gradient(90deg, #7C3AED, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */
/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 120px;
    width: auto;
    transition: 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}
nav {
    display: flex;
}

nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #1e293b; /* dark text */
    font-weight: 500;
    transition: 0.3s ease;
}

nav a:hover {
    color: #00b3ff; /* your brand blue */
}

/* ===== STATS SECTION ===== */

.stats-section {
    background: linear-gradient(135deg, #111827, #0B1120);
}

.stats-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.stat-box {
    padding: 40px;
    background: #111827;
    border-radius: 20px;
    width: 220px;
    transition: 0.3s;
}

.stat-box:hover {
    transform: translateY(-10px);
    border: 1px solid #7C3AED;
}

.stat-box h2 {
    font-size: 42px;
    background: linear-gradient(90deg, #7C3AED, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== TESTIMONIALS ===== */

.testimonial-section {
    background: #0F172A;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
}

.testimonial-card {
    background: #111827;
    padding: 30px;
    border-radius: 20px;
    width: 320px;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    border: 1px solid #06B6D4;
}

.testimonial-card p {
    margin-bottom: 20px;
    color: #CBD5E1;
}

/* =========================================
   HOME – RECENT WORKS SECTION (FIXED)
========================================= */

.portfolio-section {
    background: #0F172A;
    padding: 140px 20px;
}

.portfolio-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

/* CARD */
.portfolio-item {
    position: relative;
    background: linear-gradient(145deg, #111827, #0F172A);
    border-radius: 24px;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-12px);
    border: 1px solid #7C3AED;
    box-shadow: 0 20px 40px rgba(124,58,237,0.15);
}

/* IMAGE */
.portfolio-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

/* OVERLAY */
.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: #ffffff;
}

.portfolio-overlay h4 {
    margin-bottom: 6px;
    font-size: 20px;
}

.portfolio-overlay p {
    font-size: 14px;
    color: #CBD5E1;
}

/* HERO */
.portfolio-hero-premium {
    padding: 160px 20px;
    text-align: center;
    background: radial-gradient(circle at top left, #1E1B4B, #0B1120);
}
 /* =========================================
   EXECUTIVE PORTFOLIO UPGRADE
========================================= */

/* HERO WITH DEPTH */
.portfolio-hero-exec {
    padding: 180px 20px;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at top left, #1E1B4B, #0B1120);
    overflow: hidden;
}

.portfolio-hero-exec::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.portfolio-hero-exec h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.portfolio-hero-exec p {
    max-width: 650px;
    margin: auto;
    color: #94A3B8;
}

/* SECTION */
.portfolio-section-premium {
    padding: 140px 20px;
}

/* FILTER */
.portfolio-filters-premium {
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-filters-premium .filter-btn {
    padding: 10px 22px;
    margin: 6px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #111827;
    color: #CBD5E1;
    cursor: pointer;
    transition: 0.3s;
}

.portfolio-filters-premium .filter-btn.active,
.portfolio-filters-premium .filter-btn:hover {
    background: linear-gradient(90deg, #7C3AED, #06B6D4);
    color: #fff;
}
 /* FILTER SECTION */
.portfolio-filter-section {
    padding: 80px 20px;
    text-align: center;
}

.portfolio-filter-box {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px);
    padding: 30px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    display: inline-block;
    transition: 0.3s;
}

.portfolio-filter-box:hover {
    border-color: #7C3AED;
}

.portfolio-filter-box label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #CBD5E1;
}

.portfolio-filter-box select {
    padding: 14px 24px;
    background: #1E293B;
    border: none;
    color: white;
    border-radius: 10px;
    font-size: 14px;
}

/* GRID */
.portfolio-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}
 /* GRID */
.portfolio-grid-section {
    padding: 120px 20px;
}

.portfolio-grid-exec {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 50px;
}

/* CARD */
.portfolio-card {
    background: #111827;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    border: 1px solid #7C3AED;
}

.portfolio-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.portfolio-content {
    padding: 25px;
}

.portfolio-content h3 {
    margin-bottom: 12px;
}

.portfolio-content p {
    color: #94A3B8;
    margin-bottom: 15px;
}

.portfolio-tag {
    font-size: 13px;
    padding: 6px 12px;
    background: rgba(124,58,237,0.2);
    border-radius: 20px;
    color: #7C3AED;
}
/* CARD UPGRADE */
.portfolio-card-exec {
    background: linear-gradient(145deg, #111827, #0F172A);
    border-radius: 24px;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.portfolio-card-exec:hover {
    transform: translateY(-12px);
    border: 1px solid #7C3AED;
    box-shadow: 0 20px 40px rgba(124,58,237,0.15);
}

.portfolio-card-exec img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: 0.4s;
}

.portfolio-card-exec:hover img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 30px;
}

.portfolio-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.portfolio-content p {
    color: #94A3B8;
    margin-bottom: 15px;
}

.portfolio-content span {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: #06B6D4;
}

.portfolio-content a {
    display: inline-block;
    margin-top: 15px;
    color: #7C3AED;
    font-weight: 600;
    text-decoration: none;
}

.portfolio-content a:hover {
    color: #06B6D4;
}
/* METRICS UPGRADE */
.portfolio-metrics {
    padding: 160px 20px;
    background: linear-gradient(135deg, #111827, #0B1120);
    text-align: center;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.metrics-grid div {
    background: rgba(255,255,255,0.04);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
}

.metrics-grid div:hover {
    border-color: #7C3AED;
}

.metrics-grid strong {
    font-size: 34px;
    color: #06B6D4;
    display: block;
    margin-bottom: 10px;
}

/* GLOBAL STATEMENT */
.portfolio-global {
    padding: 140px 20px;
    text-align: center;
}

.portfolio-global h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.portfolio-global p {
    max-width: 700px;
    margin: auto;
    color: #94A3B8;
}
/* CTA */
.portfolio-cta {
    padding: 140px 20px;
    text-align: center;
    background: linear-gradient(135deg, #1E1B4B, #0B1120);
}
.case-link {
    display: inline-block;
    margin-top: 10px;
    color: #06B6D4;
    font-weight: 600;
    text-decoration: none;
}

.case-link:hover {
    color: #7C3AED;
}
.case-hero {
    padding: 160px 20px;
    text-align: center;
    background: radial-gradient(circle at top left, #1E1B4B, #0B1120);
}

.case-content {
    padding: 120px 20px;
}

.case-content h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 26px;
}

.case-content p {
    color: #CBD5E1;
    margin-bottom: 20px;
}

.case-metrics {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.case-metrics div {
    background: #111827;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
}

.case-metrics strong {
    font-size: 28px;
    color: #06B6D4;
    display: block;
}

blockquote {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-left: 4px solid #7C3AED;
    border-radius: 10px;
    margin-top: 20px;
}

.case-cta {
    padding: 120px 20px;
    text-align: center;
    background: linear-gradient(135deg, #1E1B4B, #0B1120);
}
.portfolio-hero-exec {
    padding: 160px 20px;
    text-align: center;
    background: radial-gradient(circle at top left, #1E1B4B, #0B1120);
}

.portfolio-filter-box {
    background: #111827;
    padding: 25px;
    border-radius: 16px;
    display: inline-block;
}

.portfolio-filter-box select {
    padding: 12px 20px;
    background: #1E293B;
    border: none;
    color: white;
    border-radius: 8px;
}

.portfolio-grid-exec {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

/* .portfolio-card-exec {
    background: #111827;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
} */
.portfolio-card-exec {
    background: linear-gradient(145deg, #111827, #0F172A);
    border-radius: 24px;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
}
.portfolio-card-exec:hover {
    transform: translateY(-10px);
    border: 1px solid #7C3AED;
}

.portfolio-card-exec img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.portfolio-content {
    padding: 25px;
}

.portfolio-content span {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: #06B6D4;
}
.portfolio-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portfolio-content p {
    color: #94A3B8;
    margin-bottom: 15px;
}

.portfolio-content span {
    margin-bottom: 20px;
}

.portfolio-content a {
    margin-top: auto; /* THIS PUSHES BUTTON TO BOTTOM */
    display: inline-block;
    padding-top: 15px;
    color: #7C3AED;
    font-weight: 600;
    text-decoration: none;
}
.portfolio-metrics {
    padding: 140px 20px;
    text-align: center;
}

.metrics-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.metrics-grid strong {
    font-size: 28px;
    color: #7C3AED;
    display: block;
}
/* ===== BLOG PAGE ===== */

.blog-hero {
    text-align: center;
    background: linear-gradient(135deg, #1E1B4B, #0B1120);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 320px));
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.blog-card {
    background: #111827;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.blog-card:hover {
    transform: translateY(-12px);
    border: 1px solid #7C3AED;
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    margin-bottom: 10px;
}

.blog-content a {
    text-decoration: none;
    color: #F8FAFC;
}

.blog-content a:hover {
    color: #06B6D4;
}

.blog-content p {
    color: #94A3B8;
}

/* ===== BLOG SINGLE ===== */

.blog-single-hero {
    text-align: center;
    background: linear-gradient(135deg, #1E1B4B, #0B1120);
}

.blog-single-content {
    max-width: 800px;
    margin: auto;
}

.blog-single-content img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 30px;
}

.blog-single-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #7C3AED;
}

.blog-single-content p {
    margin-bottom: 20px;
    color: #CBD5E1;
    line-height: 1.8;
}
.blog-single img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 20px 0;
}
.blog-body {
    font-size: 16px;
    line-height: 1.8;
    color: #CBD5E1;
}

.blog-body h1,
.blog-body h2,
.blog-body h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    color: #7C3AED;
}

.blog-body p {
    margin-bottom: 20px;
}

.blog-body ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.blog-body a {
    color: #06B6D4;
}
/* ===== BLOG SINGLE REFINEMENT ===== */

.blog-single {
    padding: 120px 20px;
}

.blog-single-content {
    max-width: 800px;
    margin: auto;
}

.blog-single h1 {
    font-size: 36px;
    margin-bottom: 25px;
}

.blog-featured-image {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 30px;
}

.blog-body {
    font-size: 16px;
    line-height: 1.9;
    color: #CBD5E1;
}

.blog-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}

.blog-body h1,
.blog-body h2,
.blog-body h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #7C3AED;
}

.blog-meta {
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.7;
}
/* ===== BLOG FILTER BAR ===== */

.blog-search {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
    background: #111827;
    padding: 20px;
    border-radius: 16px;
}

.blog-search input,
.blog-search select {
    padding: 12px 16px;
    border-radius: 10px;
    border: none;
    background: #1E293B;
    color: #F8FAFC;
    font-size: 14px;
    min-width: 200px;
}

.blog-search input:focus,
.blog-search select:focus {
    outline: 2px solid #06B6D4;
}

.blog-search button {
    padding: 12px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    background: linear-gradient(90deg, #7C3AED, #06B6D4);
    color: white;
    font-weight: 600;
    transition: 0.3s;
}

.blog-search button:hover {
    transform: translateY(-2px);
}
/* ===== PAGINATION ===== */

.pagination {
    margin-top: 50px;
    text-align: center;
}

.pagination a {
    display: inline-block;
    padding: 10px 16px;
    margin: 6px;
    background: #1E293B;
    color: #F8FAFC;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}

.pagination a:hover {
    background: #06B6D4;
}

.pagination a.active {
    background: linear-gradient(90deg, #7C3AED, #06B6D4);
}
/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    background: linear-gradient(90deg, #7C3AED, #06B6D4);
    color: white;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid #06B6D4;
    color: #06B6D4;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at top left, #1E1B4B, #0B1120);
    padding: 20px;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    color: #94A3B8;
    margin-bottom: 35px;
}

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

/* ===== HERO ALIGNMENT FIX ===== */

.hero-inner {
    max-width: 900px;
    margin: auto;
}

.hero h1 {
    font-size: 54px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.gradient-text {
    background: linear-gradient(90deg, #7C3AED, #06B6D4);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.hero p {
    max-width: 700px;
    margin: auto;
    margin-bottom: 35px;
}

/* ===== SECTION TITLES ===== */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.section-title p {
    color: #94A3B8;
}

/* ===== HOME DIVISIONS ===== */

.division-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.division-box {
    background: #111827;
    padding: 40px;
    border-radius: 20px;
    width: 450px;
    text-align: center;
    transition: 0.4s;
}

.division-box:hover {
    transform: translateY(-12px);
    border: 1px solid #7C3AED;
}

.home-cta {
    text-align: center;
    background: linear-gradient(135deg, #1E1B4B, #0B1120);
}

.home-cta h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

/* ===== HERO BACKGROUND BLOBS ===== */

.hero {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 2;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 12s infinite ease-in-out;
}

.blob1 {
    width: 400px;
    height: 400px;
    background: #7C3AED;
    top: -100px;
    left: -100px;
}

.blob2 {
    width: 350px;
    height: 350px;
    background: #06B6D4;
    bottom: -120px;
    right: -80px;
    animation-delay: 3s;
}

.blob3 {
    width: 300px;
    height: 300px;
    background: #9333EA;
    top: 40%;
    left: 60%;
    animation-delay: 6s;
}

@keyframes float {
    0% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-30px) translateX(20px); }
    100% { transform: translateY(0px) translateX(0px); }
}




/* ===== CARDS ===== */
.cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
}

.card {
    background: #111827;
    padding: 35px;
    border-radius: 16px;
    width: 300px;
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.05);
}

.card:hover {
    transform: translateY(-12px);
    border: 1px solid #06B6D4;
}
.cards .card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 20px;
}

.cards .card {
    text-align: center;
}
/* ===== CORE EXPERTISE ICONS ===== */

/* .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7C3AED, #06B6D4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
}

.icon-box i {
    font-size: 32px;
    color: white;
} */
 .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    font-size: 32px;
    background: linear-gradient(90deg, #7C3AED, #06B6D4);
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.card:hover .icon-box {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
}
/* ===== SECTION SPACING ===== */
section {
    padding: 120px 20px;
}

/* ===== SERVICES PAGE ===== */
/* HERO */
.services-hero-premium {
    padding: 160px 20px;
    text-align: center;
    background: radial-gradient(circle at top left, #1E1B4B, #0B1120);
}

/* POSITIONING */
.services-positioning {
    padding: 120px 20px;
}

/* SERVICE BLOCK */
.service-block-premium {
    padding: 140px 20px;
}

.service-block-premium.alt {
    background: #0F172A;
}

.service-layout {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.service-layout.reverse {
    flex-direction: row-reverse;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #7C3AED, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-info p {
    margin-bottom: 20px;
    color: #CBD5E1;
}

.service-info ul {
    margin-bottom: 30px;
}

.service-info ul li {
    margin-bottom: 10px;
    color: #94A3B8;
}

.service-visual {
    flex: 1;
    text-align: center;
}

.service-visual img {
    width: 280px;
    transition: 0.3s ease;
}

.service-visual img:hover {
    transform: scale(1.05);
}

/* EXECUTION */
.execution-section {
    padding: 140px 20px;
    background: linear-gradient(135deg, #111827, #0B1120);
}

.execution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.execution-card {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 16px;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.08);
}

.execution-card:hover {
    transform: translateY(-8px);
    border: 1px solid #7C3AED;
}

.execution-card span {
    font-size: 28px;
    color: #06B6D4;
    font-weight: bold;
}

/* CTA */
.services-cta-premium {
    padding: 140px 20px;
    text-align: center;
    background: linear-gradient(135deg, #1E1B4B, #0B1120);
}

.image-placeholder {
    width: 450px;
    height: 300px;
    border-radius: 20px;
    background: linear-gradient(135deg, #1E293B, #0F172A);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    font-weight: bold;
}

.about-hero {
    padding: 180px 20px;
    text-align: center;
    background: linear-gradient(135deg, #1E1B4B, #0B1120);
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.narrow {
    max-width: 750px;
    margin: auto;
}

.center {
    text-align: center;
}

/* PHILOSOPHY */
.about-philosophy {
    padding: 120px 20px;
}

/* PILLARS */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pillar {
    background: #111827;
    padding: 40px;
    border-radius: 16px;
    transition: 0.3s;
}

.pillar:hover {
    transform: translateY(-10px);
}

/* ROADMAP */
.roadmap-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 60px;
}

.roadmap-item {
    background: #111827;
    padding: 40px;
    border-radius: 16px;
    width: 280px;
}

/* LEADERSHIP */
.leadership-grid,
.team-grid {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 60px;
}

.leader,
.team-member {
    text-align: center;
}

.leader img,
.team-member img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

/* TRUST */
.trust-logos {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 60px;
}

.trust-logos img {
    width: 120px;
    opacity: 0.6;
    transition: 0.3s;
}

.trust-logos img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* CTA */
.about-cta {
    padding: 150px 20px;
    background: linear-gradient(135deg, #1E1B4B, #0B1120);
}
/* ================= METRICS ================= */
.about-metrics {
    padding: 120px 20px;
    background: #0F172A;
}

.metrics-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    text-align: center;
}

.metric h3 {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(90deg, #7C3AED, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric p {
    margin-top: 10px;
    color: #94A3B8;
}

/* Smooth section spacing */
section {
    padding: 140px 20px;
}

/* Scroll animation */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Subtle floating background accent */
.about-hero::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124,58,237,0.25), transparent);
    top: -150px;
    right: -150px;
    filter: blur(100px);
}
/* ===== SUBTLE BACKGROUND GRID ===== */
.about-hero {
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 30s linear infinite;
    z-index: 0;
}

@keyframes gridMove {
    from { transform: translateY(0); }
    to { transform: translateY(60px); }
}

.about-hero .container {
    position: relative;
    z-index: 2;
}
.founder-message {
    padding: 140px 20px;
    text-align: center;
}

.quote {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.8;
    color: #CBD5E1;
    margin-top: 40px;
}

.founder-sign {
    margin-top: 25px;
    color: #7C3AED;
}
.leader-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.leader-modal-content {
    background: rgba(17,24,39,0.9);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
}

.close-modal {
    float: right;
    cursor: pointer;
    font-size: 24px;
}
.logo-slider {
    overflow: hidden;
    margin-top: 60px;
}

.logo-track {
    display: flex;
    gap: 80px;
    animation: scrollLogos 20s linear infinite;
}

.logo-track img {
    width: 120px;
    opacity: 0.7;
}

@keyframes scrollLogos {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.pillar {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.08);
}
.leadership-intro {
    max-width: 700px;
    margin: 20px auto 60px;
    text-align: center;
    color: #94A3B8;
}
section {
    position: relative;
}

section:not(.about-hero)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 80%;
    height: 1px;
    background: rgba(255,255,255,0.05);
    transform: translateX(-50%);
}
/* ===== CONTACT PAGE ===== */

.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    align-items: stretch;
}

.map-box {
    flex: 1;
    min-height: 450px;
    border-radius: 20px;
    overflow: hidden;
}

.contact-form {
    flex: 1;
    background: #111827;
    padding: 40px;
    border-radius: 20px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 18px;
    border-radius: 10px;
    border: none;
    background: #1E293B;
    color: white;
    font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid #06B6D4;
}

.success-msg {
    background: #065f46;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.error-msg {
    background: #7f1d1d;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
    }

    .map-box {
        min-height: 300px;
    }
}


/* ===== FOOTER ===== */

.main-footer {
    background: #0F172A;
    padding: 80px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 22px;
    font-weight: bold;
    background: linear-gradient(90deg, #7C3AED, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: #F8FAFC;
}

.footer-col p,
.footer-col li {
    color: #94A3B8;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-col ul {
    list-style: none;
}

.footer-col a {
    color: #94A3B8;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #06B6D4;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #64748B;
    font-size: 14px;
}

.social-icons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1E293B;
    color: #94A3B8;
    font-size: 15px;
    transition: 0.3s;
}
.footer-col:first-child {
    display: flex;
    flex-direction: column;
}

.footer-col:first-child .social-icons {
    justify-content: flex-start; /* change to flex-end if you want right inside column */
}
.social-icons a:nth-child(1):hover {
    background: #1877F2;
    color: white;
}

.social-icons a:nth-child(2):hover {
    background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
    color: white;
}

.social-icons a:nth-child(3):hover {
    background: #0A66C2;
    color: white;
}

.social-icons a:nth-child(4):hover {
    background: #FF0000;
    color: white;
}


/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ===== MOBILE ===== */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 768px) {

    nav {
        position: absolute;
        top: 80px;
        right: 20px;
        background: #111827;
        flex-direction: column;
        padding: 20px;
        border-radius: 10px;
        display: none;
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .service-grid {
        flex-direction: column;
    }

    .image-placeholder {
        width: 100%;
    }

    .hero h1 {
        font-size: 36px;
    }
}
/* ===== SCROLL FADE-IN ANIMATION ===== */

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

    /* ===== RENTALS SYSTEM ===== */

    .rentals-hero {
        padding: 140px 20px;
        text-align: center;
        background: linear-gradient(135deg,#1E1B4B,#0B1120);
    }

    .rentals-grid {
        display: flex;
        gap: 40px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .rental-card {
        background: linear-gradient(145deg,#111827,#0F172A);
        padding: 40px;
        border-radius: 20px;
        width: 300px;
        position: relative;
        transition: .3s;
    }

    .rental-card:hover {
        transform: translateY(-10px);
    }

    .rental-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: #22c55e;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 12px;
    }

    .rental-price {
        font-size: 26px;
        margin: 20px 0;
        color: #06B6D4;
    }

    .btn-outline {
        border: 2px solid #06B6D4;
        padding: 10px 20px;
        border-radius: 30px;
        text-decoration: none;
        color: #06B6D4;
    }

    .calendar-grid {
        display: grid;
        grid-template-columns: repeat(7,1fr);
        gap: 15px;
        margin-top: 40px;
    }

    .calendar-day {
        padding: 20px;
        border-radius: 12px;
        text-align: center;
    }

    .calendar-day.available {
        background: rgba(34,197,94,.15);
    }

    .calendar-day.booked {
        background: rgba(239,68,68,.15);
    }

    .rental-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .rental-form input,
    .rental-form select,
    .rental-form textarea {
        padding: 14px;
        border-radius: 10px;
        border: none;
        background: #1E293B;
        color: white;
    }

    .whatsapp-btn {
        background: linear-gradient(90deg,#25D366,#128C7E);
        padding: 12px;
        text-align: center;
        border-radius: 30px;
        text-decoration: none;
        color: white;
    }

    .success-msg {
        background: #065f46;
        padding: 10px;
        border-radius: 8px;
        margin-bottom: 15px;
    }
    /* ===== RENTALS ===== */

    .rentals-hero {
        padding: 140px 20px;
        text-align: center;
        background: linear-gradient(135deg,#1E1B4B,#0B1120);
    }

    .rentals-grid {
        display: flex;
        gap: 40px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .rental-card {
        background: linear-gradient(145deg,#111827,#0F172A);
        padding: 40px;
        border-radius: 20px;
        width: 280px;
        position: relative;
        transition: .3s;
    }

    .rental-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    }

    .badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: #22c55e;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 12px;
    }

    .price {
        font-size: 24px;
        color: #06B6D4;
        margin: 20px 0;
    }

    .calendar-grid {
        display: grid;
        grid-template-columns: repeat(7,1fr);
        gap: 15px;
        margin-top: 40px;
    }

    .calendar-day {
        padding: 20px;
        border-radius: 12px;
        text-align: center;
    }

    .calendar-day.available {
        background: rgba(34,197,94,.15);
    }

    .calendar-day.booked {
        background: rgba(239,68,68,.15);
    }

    .rental-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 500px;
    }

    .rental-form input,
    .rental-form select,
    .rental-form textarea {
        padding: 14px;
        border-radius: 10px;
        border: none;
        background: #1E293B;
        color: white;
    }

    .whatsapp-btn {
        background: linear-gradient(90deg,#25D366,#128C7E);
        padding: 12px;
        text-align: center;
        border-radius: 30px;
        text-decoration: none;
        color: white;
    }

    .success-msg {
        background: #065f46;
        padding: 10px;
        border-radius: 8px;
        margin-bottom: 20px;
    }