/* =========== CSS RESET & BASE STYLES =========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* NEW COLOR SCHEME - Deep Navy Foundation */
    --deep-navy: #0F172A;
    --sky-blue: #38BDF8;
    --teal: #2DD4BF;
    --off-white: #F8FAFC;
    --off-white-muted: #CBD5E1;
    
    /* Supporting colors */
    --primary-color: var(--sky-blue);
    --primary-dark: #0ea5e9;
    --primary-light: #7dd3fc;
    --secondary-color: var(--teal);
    --accent-color: var(--teal);
    
    /* Text colors */
    --text-dark: var(--off-white);
    --text-light: var(--off-white-muted);
    --text-white: var(--off-white);
    
    /* Backgrounds */
    --bg-dark: var(--deep-navy);
    --bg-light: #1E293B;
    --card-bg: #1E293B;
    --border-color: #334155;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    
    /* Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;  /* ADDED: Fix for fixed header */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--off-white);
    line-height: 1.6;
    background-color: var(--deep-navy);
    overflow-x: hidden;  /* ADDED: Prevent horizontal scroll */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--off-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

/* =========== BUTTONS =========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Poppins', sans-serif;
    gap: 8px;
}

.btn-primary {
    background-color: var(--sky-blue);
    color: var(--deep-navy);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.25);
}

.btn-primary:hover {
    background-color: #0ea5e9;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(56, 189, 248, 0.4);
}

.btn-secondary {
    background-color: var(--teal);
    color: var(--deep-navy);
}

.btn-secondary:hover {
    background-color: #14b8a6;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--sky-blue);
    border: 2px solid var(--sky-blue);
}

.btn-outline:hover {
    background-color: var(--sky-blue);
    color: var(--deep-navy);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 18px;
}

/* =========== HEADER & NAVIGATION =========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
    transition: var(--transition);
}

.header.scrolled {
    background-color: var(--deep-navy);
    box-shadow: var(--shadow-md);
    border-bottom-color: rgba(45, 212, 191, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 20px;  /* ADDED: Better spacing */
}

/* CHANGED: Logo bigger */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 24px;
    background: linear-gradient(135deg, var(--sky-blue), var(--teal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-icon {
    height: 65px;  /* CHANGED: 50px to 65px - Logo Bigger */
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: none;  /* ADDED: Hide text, show only image */
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 500;
    font-size: 16px;
    color: var(--off-white);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--sky-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--sky-blue);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--off-white);
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: rgba(56, 189, 248, 0.1);
    color: var(--sky-blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--sky-blue);
    cursor: pointer;
    padding: 8px;
}

/* =========== PAGE HEADER - FIXED (No Zooming) =========== */
.page-header {
    position: relative;
    width: 100%;
    height: 45vh;  /* CHANGED: 80vh/60vh to 45vh - Banner Smaller */
    min-height: 300px;  /* CHANGED: 400px to 300px */
    max-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-header .banner-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.page-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(56, 189, 248, 0.4));
    z-index: 2;
}

.page-header-content {
    position: relative;
    z-index: 3;
    color: var(--off-white);
    max-width: 700px;
    padding: 20px;
}

.page-header-content h1 {
    font-size: 36px;  /* CHANGED: 48px to 36px - Heading Smaller */
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, var(--sky-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-header-content p {
    font-size: 16px;
    color: var(--off-white-muted);
    display: none;  /* ADDED: Hide banner content text */
}

@media (max-width: 768px) {
    .page-header {
        height: 35vh;
        min-height: 250px;
    }
    .page-header-content h1 {
        font-size: 28px;
    }
    .page-header-content p {
        font-size: 14px;
    }
}

/* =========== HERO SECTION =========== */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(145deg, var(--deep-navy) 0%, #0a0f1f 100%);
    color: var(--off-white);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 40px;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--sky-blue), var(--teal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--off-white-muted);
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.hero-image {
    position: relative;
}

.tech-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky-blue), var(--teal));
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    right: 20%;
}

.shape-2 {
    width: 120px;
    height: 120px;
    bottom: 15%;
    left: 10%;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    right: 5%;
}

.hero-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

/* =========== SECTION STYLES =========== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    background-color: rgba(45, 212, 191, 0.15);
    color: var(--teal);
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    border: 1px solid rgba(45, 212, 191, 0.3);
}

.section-title {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: var(--off-white);
    font-family: 'Poppins', sans-serif;
}

.section-description {
    font-size: 1rem;
    color: var(--off-white-muted);
    font-family: 'Poppins', sans-serif;
}

/* =========== ABOUT SECTION =========== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

.about-text h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    color: var(--sky-blue);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--off-white-muted);
    font-family: 'Poppins', sans-serif;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
    font-family: 'Poppins', sans-serif;
}

.stat {
    text-align: center;
    padding: 20px;
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--sky-blue);
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: var(--off-white-muted);
    font-family: 'Poppins', sans-serif;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

/* =========== SERVICES SECTION =========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal);
}

.service-icon {
    width: 56px;
    height: 56px;
    border: 2px solid var(--teal);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--teal);
    font-size: 28px;
    background: rgba(45, 212, 191, 0.05);
}

.service-title {
    font-size: 20px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    color: var(--off-white);
}

.service-description {
    color: var(--off-white-muted);
    margin-bottom: 20px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--sky-blue);
}

.service-link:hover {
    gap: 12px;
    color: var(--teal);
}

/* Service Page Specific */
.service-features {
    margin: 20px 0;
    padding-left: 20px;
}

.service-features li {
    margin-bottom: 8px;
    color: var(--off-white-muted);
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: -20px;
    color: var(--teal);
    font-weight: bold;
}

.service-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.service-process {
    margin-top: 80px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid var(--border-color);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--sky-blue), var(--teal));
    color: var(--deep-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--off-white);
}

.process-step p {
    color: var(--off-white-muted);
    font-size: 15px;
}

/* =========== SERVICE DETAIL PAGE =========== */
.service-detail {
    padding: 80px 0;
}

.service-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.service-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.service-feature-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--teal);
    background: rgba(45, 212, 191, 0.05);
    color: var(--teal);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.detailed-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.detailed-service {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--teal);
}

.detailed-service h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--off-white);
}

.detailed-service h3 i {
    color: var(--teal);
}

.tech-stack {
    margin: 60px 0;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.tech-category {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.tech-category h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--teal);
}

.tech-category ul {
    padding-left: 20px;
}

.tech-category li {
    margin-bottom: 10px;
    color: var(--off-white-muted);
    position: relative;
}

.tech-category li::before {
    content: '•';
    position: absolute;
    left: -15px;
    color: var(--teal);
}

.development-process {
    margin: 60px 0;
}

.dev-process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.dev-step {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.dev-step-icon {
    width: 70px;
    height: 70px;
    border: 2px solid var(--teal);
    background: rgba(45, 212, 191, 0.05);
    color: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.dev-step h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--off-white);
}

.dev-step p {
    color: var(--off-white-muted);
    font-size: 15px;
}

/* =========== DIGITAL MARKETING ADDITIONS =========== */
.strategy-steps {
    margin-top: 40px;
}

.strategy-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.strategy-step .step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--sky-blue), var(--teal));
    color: var(--deep-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.strategy-step .step-content h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--off-white);
}

.strategy-step .step-content p {
    color: var(--off-white-muted);
    line-height: 1.6;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.metric-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--border-color);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(45, 212, 191, 0.1);
    color: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.metric-item h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--off-white);
}

.metric-item p {
    color: var(--off-white-muted);
    line-height: 1.6;
}

/* =========== SEO SMO ADDITIONS =========== */
.process-phases {
    margin-top: 40px;
}

.process-phase {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.phase-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--sky-blue), var(--teal));
    color: var(--deep-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.strategy-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--border-color);
}

.strategy-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(45, 212, 191, 0.1);
    color: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.benefit h3 {
    margin-bottom: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--off-white);
}

.benefit h3 i {
    color: var(--teal);
}

.benefit p {
    color: var(--off-white-muted);
    line-height: 1.6;
}

/* =========== WEB DESIGN ADDITIONS =========== */
.process-timeline {
    margin-top: 40px;
}

/* =========== ERROR STYLES =========== */
.error {
    border-color: #ef4444 !important;
}

.error-message {
    color: #ef4444;
    font-size: 14px;
    margin-top: 5px;
}

/* =========== WHY CHOOSE US =========== */
.choose-section {
    background-color: var(--bg-light);
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.choose-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.choose-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--teal);
}

.choose-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--teal);
    color: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    background: rgba(45, 212, 191, 0.05);
}

.choose-item h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--off-white);
}

.choose-item p {
    color: var(--off-white-muted);
    font-size: 15px;
}

/* =========== TECHNOLOGIES SECTION =========== */
.tech-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.tech-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.tech-logo:hover {
    transform: translateY(-5px);
}

.tech-logo i {
    font-size: 48px;
    color: var(--teal);
}

.tech-logo span {
    font-weight: 600;
    color: var(--off-white);
}

/* =========== CALL TO ACTION =========== */
.cta-section {
    background: linear-gradient(135deg, #0F172A 0%, #111827 100%);
    color: var(--off-white);
    text-align: center;
    border-top: 1px solid rgba(56, 189, 248, 0.2);
    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
}

.cta-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--off-white);
    font-family: 'Poppins', sans-serif;
}

.cta-content p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
    color: var(--off-white-muted);
}

/* =========== ABOUT PAGE STYLES =========== */
.about-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 80px;
}

.mission-section {
    background-color: var(--bg-light);
    padding: 10px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.mission-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--teal);
    color: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    background: rgba(45, 212, 191, 0.05);
}

.mission-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
    color: var(--off-white);
}

.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    text-align: center;
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid var(--border-color);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 20px;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    color: var(--off-white);
}

.member-role {
    color: var(--sky-blue);
    font-weight: 500;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.member-bio {
    color: var(--off-white-muted);
    margin-bottom: 20px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(56, 189, 248, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sky-blue);
    transition: var(--transition);
}

.member-social a:hover {
    background-color: var(--sky-blue);
    color: var(--deep-navy);
}

.expertise-section {
    background-color: var(--bg-light);
    padding: 30px 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.expertise-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.expertise-item h3 {
    margin-bottom: 20px;
    color: var(--teal);
}

.expertise-item ul {
    padding-left: 20px;
}

.expertise-item li {
    margin-bottom: 10px;
    color: var(--off-white-muted);
    position: relative;
}

.expertise-item li::before {
    content: '•';
    position: absolute;
    left: -15px;
    color: var(--teal);
}

/* =========== PORTFOLIO PAGE =========== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 25px;
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    color: var(--off-white);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--sky-blue);
    color: var(--deep-navy);
    border-color: var(--sky-blue);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal);
}

.portfolio-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.9), rgba(45, 212, 191, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.view-project {
    padding: 12px 30px;
    background-color: var(--deep-navy);
    color: var(--sky-blue);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
}

.view-project:hover {
    background-color: var(--sky-blue);
    color: var(--deep-navy);
}

.portfolio-content {
    padding: 25px;
}

.portfolio-category {
    display: inline-block;
    background-color: rgba(45, 212, 191, 0.15);
    color: var(--teal);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.portfolio-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--off-white);
}

.portfolio-description {
    color: var(--off-white-muted);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.portfolio-tech span {
    background-color: rgba(56, 189, 248, 0.1);
    color: var(--sky-blue);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.testimonials-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.testimonial-content {
    margin-bottom: 25px;
    font-style: italic;
    color: var(--off-white-muted);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details h4 {
    margin-bottom: 5px;
    font-size: 16px;
    color: var(--off-white);
}

.author-details p {
    color: var(--off-white-muted);
    font-size: 14px;
}

/* =========== BLOG PAGE =========== */
.blog-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.category-btn {
    padding: 10px 25px;
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    color: var(--off-white);
}

.category-btn:hover, .category-btn.active {
    background-color: var(--sky-blue);
    color: var(--deep-navy);
    border-color: var(--sky-blue);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal);
}

.blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--teal);
    color: var(--deep-navy);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--off-white-muted);
}

.blog-meta i {
    color: var(--teal);
    margin-right: 5px;
}

.blog-title {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--off-white);
}

.blog-excerpt {
    color: var(--off-white-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--sky-blue);
}

.read-more:hover {
    gap: 12px;
    color: var(--teal);
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background-color: var(--card-bg);
    color: var(--off-white);
    font-weight: 500;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.page-link:hover, .page-link.active {
    background-color: var(--sky-blue);
    color: var(--deep-navy);
    border-color: var(--sky-blue);
}

.page-link.next {
    width: auto;
    padding: 0 20px;
}

.newsletter-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    margin-bottom: 20px;
    color: var(--off-white);
}

.newsletter-content p {
    color: var(--off-white-muted);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    background-color: var(--card-bg);
    color: var(--off-white);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--sky-blue);
}

.newsletter-note {
    font-size: 14px;
    color: var(--off-white-muted);
}

/* =========== CONTACT PAGE =========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--off-white);
}

.contact-info p {
    color: var(--off-white-muted);
    margin-bottom: 30px;
    font-size: 16px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(45, 212, 191, 0.1);
    color: var(--teal);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    border: 1px solid var(--teal);
}

.contact-details h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--off-white);
}

.contact-details p {
    margin: 0;
    color: var(--off-white-muted);
}

.office-hours {
    margin-bottom: 30px;
}

.office-hours h3 {
    margin-bottom: 15px;
    color: var(--off-white);
}

.office-hours ul {
    padding-left: 20px;
}

.office-hours li {
    margin-bottom: 10px;
    color: var(--off-white-muted);
}

.office-hours strong {
    color: var(--off-white);
}

.social-contact h3 {
    margin-bottom: 15px;
    color: var(--off-white);
}

.contact-form-container {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.contact-form-container h2 {
    margin-bottom: 30px;
    color: var(--off-white);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--off-white);
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: var(--transition);
    background-color: rgba(15, 23, 42, 0.6);
    color: var(--off-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--sky-blue);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.map-section {
    padding: 80px 0 0;
}

.map-container {
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 30px;
    box-shadow: var(--shadow-md);
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-container i {
    font-size: 48px;
    color: var(--teal);
    margin-bottom: 15px;
}

.map-container div {
    text-align: center;
}

.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    margin-bottom: 15px;
    color: var(--teal);
}

.faq-item p {
    color: var(--off-white-muted);
    line-height: 1.7;
}

/* =========== FOOTER =========== */
.footer {
    background: linear-gradient(135deg, #0A0F1A 0%, var(--deep-navy) 100%);
    color: var(--off-white);
    padding: 80px 0 30px;
    font-family: 'Poppins', sans-serif;
    border-top: 1px solid rgba(56, 189, 248, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo .logo-icon {
    height: 50px;
    width: auto;
}

.footer-logo .logo-text {
    display: none;
}

.footer-description {
    margin: 20px 0;
    color: var(--off-white-muted);
    font-size: 15px;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sky-blue);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--sky-blue);
    color: var(--deep-navy);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--off-white);
    font-family: 'Poppins', sans-serif;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--off-white-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--sky-blue);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--off-white-muted);
    font-family: 'Poppins', sans-serif;
}

.footer-contact i {
    color: var(--teal);
    margin-top: 4px;
    font-family: 'Poppins', sans-serif;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--off-white-muted);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--sky-blue);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.gradient-icon {
    font-size: 40px;
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--teal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* =========== RESPONSIVE ADJUSTMENTS =========== */
@media (max-width: 992px) {
    .hero .container,
    .about-content,
    .contact-grid,
    .service-overview,
    .about-overview {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .services-grid,
    .portfolio-grid,
    .blog-grid,
    .testimonials-grid,
    .choose-grid,
    .team-grid,
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .process-steps,
    .dev-process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .about-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        overflow-x: hidden;
    }
    
    .navbar {
        flex-wrap: wrap;
    }
    
    .nav-actions {
        order: 2;
        margin-left: auto;
    }
    
    .logo {
        order: 1;
        flex-shrink: 0;
    }
    
    .logo-icon {
        height: 50px;
    }
    
    .nav-menu {
        order: 3;
        width: 100%;
    }
    
    .nav-list {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--deep-navy);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 0;
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        border-bottom: 1px solid rgba(56, 189, 248, 0.3);
    }
    
    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .dropdown {
        width: 100%;
    }
    
    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        cursor: pointer;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .dropdown-toggle i {
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        display: none;
        width: 100%;
        background-color: var(--bg-light);
        border-radius: var(--radius-sm);
        margin-top: 5px;
        margin-bottom: 10px;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-item {
        padding: 12px 20px;
        padding-left: 30px;
        font-size: 14px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .services-grid,
    .portfolio-grid,
    .blog-grid,
    .testimonials-grid,
    .choose-grid,
    .team-grid,
    .mission-grid,
    .detailed-services,
    .dev-process-steps,
    .faq-grid,
    .metrics-grid,
    .benefits-list,
    .strategy-grid,
    .tech-categories {
        grid-template-columns: 1fr !important;
    }
    
    .process-steps {
        grid-template-columns: 1fr !important;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 30px 25px;
    }
    
    .service-overview {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .service-feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .detailed-service {
        text-align: center;
    }
    
    .process-phase,
    .strategy-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .portfolio-filters,
    .blog-categories {
        gap: 10px;
    }
    
    .filter-btn,
    .category-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 12px 28px;
    }
    
    .cta-content h2 {
        font-size: 24px !important;
    }
    
    .cta-content p {
        font-size: 14px !important;
        padding: 0 20px;
    }
    
    .map-container {
        height: 250px;
    }
    
    img, iframe, video {
        max-width: 100% !important;
        height: auto !important;
    }
    
    .hero-image, .about-image, .service-image {
        overflow: hidden;
    }
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
}

.whatsapp-btn img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .whatsapp-btn img {
        width: 50px;
        height: 50px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-item, .blog-card, .service-card {
    animation: fadeIn 0.5s ease;
}