* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #a855f7;
    --text-light: #d1d5db;
    --text-lighter: #9ca3af;
    --bg-dark: #0a0e27;
    --bg-darker: #050810;
    --card-bg: #111827;
    --border-color: #1f2937;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 30px;
    animation: slideInDown 0.8s ease-out;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo {
    height: 45px;
    width: auto;
    border-radius: 5px;
}

.brand-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.brand-accent {
    color: var(--primary-color);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(12px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-12px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    flex: 1;
    justify-content: center;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-quote {
    padding: 10px 25px !important;
    background-color: var(--white);
    color: var(--bg-dark);
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.btn-quote:hover {
    background-color: var(--text-light);
}

/* Desktop Navigation - Vertical separator line */
@media (min-width: 769px) {
    .nav-menu::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 30px;
        background-color: var(--border-color);
    }

    .nav-toggle {
        display: none !important;
    }
}

/* Mobile Navigation */

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
        text-align: center;
    }

    .nav-menu li a {
        display: block;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-quote {
    padding: 10px 25px !important;
    background-color: var(--white);
    color: var(--bg-dark);
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.btn-quote:hover {
    background-color: var(--text-light);
}

/* Hero Section */
.hero {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(168, 85, 247, 0.03) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    animation: moveGradient 15s ease infinite;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

@keyframes moveGradient {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, 50px);
    }
    100% {
        transform: translate(0, 0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: slideInDown 0.8s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--white);
}

.gradient-text {
    background: linear-gradient(90deg, #2563eb, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientFlow 3s ease infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}

.hero-content p {
    font-size: 18px;
    color: var(--text-lighter);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: fadeInUp 0.9s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.hero-buttons .btn {
    animation: bounceIn 0.8s ease-out both;
}

.hero-buttons .btn:nth-child(1) {
    animation-delay: 0.4s;
}

.hero-buttons .btn:nth-child(2) {
    animation-delay: 0.6s;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    background-color: var(--white);
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.4);
    letter-spacing: 1px;
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-block {
    width: 100%;
}

.expertise-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-light);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 20px;
    animation: checkFloat 2s ease-in-out infinite;
}

.feature-item:nth-child(1) i {
    animation-delay: 0s;
}
.feature-item:nth-child(2) i {
    animation-delay: 0.2s;
}
.feature-item:nth-child(3) i {
    animation-delay: 0.4s;
}
.feature-item:nth-child(4) i {
    animation-delay: 0.6s;
}

@keyframes checkFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Portfolio Section */
.portfolio {
    padding: 80px 20px;
    background-color: var(--bg-darker);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.portfolio-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
}

.portfolio-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.portfolio-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.85);
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1);
}

.portfolio-card h3 {
    padding: 20px;
    padding-bottom: 10px;
    font-size: 20px;
    color: var(--white);
}

.portfolio-card p {
    padding: 0 20px 20px;
    color: var(--text-lighter);
    font-size: 14px;
}

/* Services Section */
.services {
    padding: 100px 20px;
    background-color: var(--bg-dark);
}

.services-top {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-lighter);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background-color: rgba(37, 99, 235, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    transition: all 0.3s;
    border-radius: 12px;
    opacity: 0;
}

.service-card:hover::before {
    opacity: 1;
    top: -30%;
    right: -30%;
}

.service-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(-10deg);
    transition: all 0.3s ease;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--white);
}

.service-card p {
    color: var(--text-lighter);
    font-size: 15px;
    line-height: 1.7;
}

/* Process Section */
.process {
    padding: 100px 20px;
    background-color: var(--bg-darker);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.process-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.process-card:hover {
    border-color: var(--primary-color);
    background-color: rgba(37, 99, 235, 0.05);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
}

.process-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.2);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.process-card:hover .process-number {
    color: var(--primary-color);
    transform: scale(1.2);
}

.process-card h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 15px;
}

.process-card p {
    color: var(--text-lighter);
    font-size: 15px;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background-color: var(--bg-dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-intro {
    font-size: 16px;
    color: var(--text-lighter);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-item i {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 5px;
    min-width: 30px;
}

.info-item h4 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item p {
    color: var(--text-lighter);
    font-size: 16px;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-light);
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--card-bg);
    color: var(--white);
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-lighter);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(37, 99, 235, 0.05);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background-color: var(--card-bg);
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 50px;
    width: auto;
    border-radius: 5px;
}

.footer-section h5 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section p {
    font-size: 14px;
    color: var(--text-lighter);
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-lighter);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-location {
    font-size: 13px;
    color: var(--text-lighter);
    margin-top: 20px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    color: var(--text-lighter);
}

.footer-bottom p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 30px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        flex-wrap: nowrap;
        gap: 15px;
    }

    .logo-section {
        flex-grow: 1;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-top: 1px solid var(--border-color);
        margin: 0;
        width: 100%;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        padding: 15px 20px;
        border-bottom: 1px solid var(--border-color);
        text-align: center;
    }

    .nav-menu li a {
        display: block;
        font-size: 14px;
    }

    .btn-quote {
        display: none;
    }

    .hero {
        padding: 80px 20px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 36px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 8px 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
    }

    .expertise-features {
        flex-wrap: wrap;
        gap: 15px;
    }

    .feature-item {
        flex: 0 0 calc(50% - 8px);
        font-size: 13px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-card {
        padding: 20px;
    }

    .portfolio-card h3 {
        font-size: 18px;
    }

    .portfolio-card p {
        font-size: 14px;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .process-card {
        padding: 25px;
    }

    .process-card h3 {
        font-size: 16px;
    }

    .process-card p {
        font-size: 13px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
        padding: 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section h5 {
        font-size: 16px;
    }

    .footer-section p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 12px;
        padding: 12px 0;
    }

    .logo-section {
        gap: 8px;
    }

    .logo {
        height: 35px;
    }

    .brand-name {
        font-size: 16px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        font-size: 12px;
        order: 3;
        width: 100%;
    }

    .btn-quote {
        order: 2;
        padding: 8px 16px !important;
        font-size: 12px;
        width: auto;
    }

    .hero {
        padding: 60px 15px;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 6px 12px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        padding: 12px 18px;
        font-size: 13px;
        width: 100%;
    }

    .btn-primary {
        padding: 14px 20px;
    }

    .expertise-features {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .feature-item {
        font-size: 12px;
        gap: 6px;
    }

    .feature-item i {
        font-size: 16px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card {
        padding: 20px;
    }

    .service-card h3 {
        font-size: 16px;
    }

    .service-card p {
        font-size: 13px;
    }

    .service-icon {
        font-size: 32px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .portfolio-card {
        padding: 15px;
    }

    .portfolio-card h3 {
        font-size: 16px;
    }

    .portfolio-card p {
        font-size: 13px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .process-card {
        padding: 20px;
    }

    .process-number {
        font-size: 28px;
    }

    .process-card h3 {
        font-size: 15px;
    }

    .process-card p {
        font-size: 12px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        padding: 0;
    }

    .info-item {
        margin-bottom: 25px;
    }

    .info-item h4 {
        font-size: 14px;
    }

    .info-item p {
        font-size: 13px;
    }

    .contact-form {
        padding: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 13px;
        padding: 10px;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .btn-block {
        width: 100%;
    }

    .footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-logo-section {
        gap: 8px;
    }

    .footer-logo {
        height: 35px;
    }

    .footer-section h5 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .footer-section p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 8px;
    }

    .footer-bottom {
        margin-top: 25px;
        padding-top: 20px;
        font-size: 12px;
    }
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(168, 85, 247, 0.1) 100%);
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    animation: slideInDown 0.8s ease-out;
}

.about-hero p {
    font-size: 20px;
    color: var(--text-lighter);
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.about-story {
    padding: 100px 20px;
    background-color: var(--bg-dark);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.story-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.story-content p {
    color: var(--text-lighter);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: var(--primary-color);
    background-color: rgba(37, 99, 235, 0.05);
    transform: translateY(-5px);
}

.stat-box h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-box p {
    color: var(--text-lighter);
    font-size: 14px;
}

.team-section {
    padding: 100px 20px;
    background-color: var(--bg-darker);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
}

.member-avatar {
    font-size: 80px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 5px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: var(--text-lighter);
    font-size: 14px;
    line-height: 1.6;
}

.values-section {
    padding: 100px 20px;
    background-color: var(--bg-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
    transform: scale(1.05);
}

.value-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.value-card h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-lighter);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== PORTFOLIO PAGE STYLES ===== */
.portfolio-hero {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(168, 85, 247, 0.1) 100%);
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.portfolio-hero p {
    font-size: 20px;
    color: var(--text-lighter);
}

.portfolio-section {
    padding: 100px 20px;
    background-color: var(--bg-dark);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--border-color);
    background: transparent;
    color: var(--text-light);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: var(--bg-dark);
}

.portfolio-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.portfolio-detailed-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-detailed-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
}

.portfolio-image-detailed {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.portfolio-image-detailed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.85);
}

.portfolio-detailed-card:hover .portfolio-image-detailed img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-detailed-card:hover .project-overlay {
    opacity: 1;
}

.view-project {
    padding: 12px 30px;
    background: var(--white);
    color: var(--bg-dark);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-project:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 8px;
}

.project-category {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.project-content p {
    color: var(--text-lighter);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.tech-stack {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tech-stack span {
    display: inline-block;
    background: rgba(37, 99, 235, 0.2);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(168, 85, 247, 0.1) 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 30px;
}

/* ===== POLICY PAGE STYLES ===== */
.policy-section {
    padding: 80px 20px;
    background-color: var(--bg-dark);
    min-height: 80vh;
}

.policy-section h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 50px;
    text-align: center;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 28px;
    color: var(--white);
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.policy-content h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.policy-content p {
    color: var(--text-lighter);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-content ul {
    list-style-position: inside;
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-content ul li {
    color: var(--text-lighter);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 36px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-content h2 {
        font-size: 32px;
    }

    .story-stats {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        width: 100%;
    }

    .portfolio-detailed-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        font-size: 12px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .brand-name {
        font-size: 16px;
    }

    .logo {
        height: 35px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
    }
}
