* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: linear-gradient(to bottom,
        #000000 0%,
        #00114a 10%,
        #001d85 20%,
        #0037f9 30%,
        #001d85 40%,
        #00114a 50%,
        #000000 60%,
        #00114a 70%,
        #001d85 80%,
        #0037f9 70%,
        #001d85 80%,
        #00114a 90%,
        #000000 100%
    );
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}
/* favicon next to brand */
.logo img,
.logo .logo-icon {
    height: 1.2em;
    width: auto;
    margin-right: 0.5rem;
    vertical-align: middle;
    display: inline-block;
}
/* make header favicon white without changing the source asset */
.navbar .logo-icon {
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.7;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: transparent;
    padding: 120px 30px 2rem 4rem;
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: stretch;
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.quick-edit-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: background 0.3s;
}

.quick-edit-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.1;
}

.hero-subtitle {
    margin-top: 4rem;
    font-size: 1.6rem;
    margin-bottom: auto;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.4rem;
    max-width: 400px;
    line-height: 1.5;
    opacity: 0.8;
    margin-bottom: 1rem;
    margin-top: auto;
}

.learn-more-btn {
    background: #fff;
    color: #1a237e;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-weight: 500;
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    width: 100%;
    aspect-ratio: 1440 / 920;
    max-width: 1440px;
    justify-self: end;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.scroll-line {
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.scroll-dot {
    width: 12px;
    height: 12px;
    background: #667eea;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Latest Insights */
.insights {
    background: transparent;
    padding: 5rem 2rem;
}

.site-container {
    width: 80%;
    margin: 0 auto;
}

.container {
    width: 100%;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
}

.section-title.center {
    text-align: center;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.insight-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.insight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.insight-image {
    height: 250px;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.insight-card:hover .insight-image img {
    transform: scale(1.1);
}

.insight-content {
    padding: 1.5rem;
}

.insight-date {
    font-size: 0.85rem;
    opacity: 0.7;
    display: block;
    margin-bottom: 0.5rem;
}

.insight-content h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.insight-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Services Section */
.services {
    background: transparent;
    padding: 5rem 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-blue {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.service-content h3 {
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

/* Who Choose Us */
.who-choose-us {
    background: transparent;
    padding: 5rem 2rem;
}

.clients-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.client-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    transition: background 0.3s, box-shadow 0.3s;
}

.client-item:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
}

.client-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.client-icon {
    flex-shrink: 0;
}

.client-info {
    flex: 1;
}

.client-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: #fff;
}

.client-meta {
    font-size: 0.95rem;
    opacity: 0.6;
    color: #fff;
}

.client-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.client-details li {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.client-details strong {
    color: #fff;
    font-weight: 600;
}

/* Selected Work */
.selected-work {
    background: transparent;
    padding: 5rem 2rem;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.work-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 15px;
    transition: background 0.3s, box-shadow 0.3s;
}

.work-item:hover {
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.work-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.work-item:hover .work-avatar {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.worker-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c3e72 0%, #3d5298 100%);
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: visible;
    color: white;
}

.work-item:hover .worker-avatar {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.placeholder-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c3e72 0%, #3d5298 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.work-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.work-title {
    font-size: 1.75rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

.work-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.work-link {
    color: #5c7cfa;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.work-link:hover {
    color: #748ffc;
}

/* Why Choose Us */
.why-choose-us {
    background: transparent;
    padding: 5rem 2rem;
    text-align: center;
}

.arrows {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.arrows svg {
    opacity: 0.8;
}

.why-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 700px;
    margin: 2rem auto 0;
}

/* Our Solutions */
.solutions {
    background: transparent;
    padding: 5rem 2rem;
}

.solutions-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.solution-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.solution-item.reverse {
    direction: rtl;
}

.solution-item.reverse > * {
    direction: ltr;
}

.solution-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.solution-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

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

.solution-content {
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    padding: 3rem;
    border-radius: 15px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution-content h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.solution-content > p:first-of-type {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.solution-description {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
}

/* Contact Form */
.contact-form {
    background: transparent;
    padding: 5rem 2rem;
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, background 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5c7cfa;
    background: rgba(255, 255, 255, 0.08);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    align-self: flex-start;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* Success message after contact form submission */
.form-success {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
    text-align: center;
}

.form-success h3 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-success p {
    font-size: 1.25rem;
    opacity: 0.95;
}
/* Footer */
.footer {
    background: transparent;
    padding-top: 2rem;
    padding-bottom: 2rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .site-container { display: flex; flex-wrap: wrap; }

.footer-left {
    flex: 1;
}

.footer-right {
    width: fit-content;
    max-width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    gap: 0.8rem;
    margin-left: auto;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.footer-tel {
    margin-bottom: 1.5rem;
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.footer-contact p {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.footer-address {
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-copyright {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-top: 2rem;
}
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 999;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.5);
}

 

 
/* Normal small screens gutters (301px–1919px): total 40px (20px each side) */
 
