* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

:root {
    --primary-color: #0095ff;
    --text-color: #ffffff;
    --bg-color: #0a0a0f;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-hover: rgba(255, 255, 255, 0.05);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section Styles */
.hero {
    min-height: 100vh;
    width: 100vw;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(120deg, #0a1333 0%, #1a225a 100%);
}

.hero-bg-effect {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 80px),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 80px),
        radial-gradient(ellipse at 60% 20%, rgba(84,168,221,0.12) 0%, transparent 70%),
        radial-gradient(ellipse at 20% 80%, rgba(98,115,183,0.10) 0%, transparent 70%);
}

.hero-glass {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero-content {
    background: rgba(20, 30, 60, 0.55);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 48px 32px 40px 32px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 600px;
}

.hero-clients-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.client-avatars {
    display: flex;
    align-items: center;
    gap: -8px;
}

.client-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: #fff;
}

.client-avatar:first-child {
    margin-left: 0;
}

.clients-text {
    color: #bfc7d5;
    font-size: 1rem;
    margin-left: 12px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 2px 16px rgba(84,168,221,0.10);
}

.hero-subtitle {
    color: #bfc7d5;
    font-size: 1.15rem;
    margin-bottom: 36px;
    max-width: 480px;
}

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

.cta-button {
    padding: 14px 36px;
    border-radius: 10px;
    font-size: 1.08rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(84,168,221,0.08);
    outline: none;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(90deg, #54a8dd 0%, #6273b7 100%);
    color: #fff;
    border: none;
}

.cta-button.primary:hover {
    background: linear-gradient(90deg, #6273b7 0%, #54a8dd 100%);
    color: #fff;
    box-shadow: 0 4px 24px rgba(84,168,221,0.18);
}

.cta-button.secondary {
    background: #181f2e;
    color: #fff;
    border: 1px solid #2a3550;
}

.cta-button.secondary:hover {
    background: #232b3e;
    color: #fff;
    box-shadow: 0 4px 24px rgba(98,115,183,0.12);
}

.hero-image {
    flex: 1;
    min-width: 400px;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.shape-1 {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: rgba(0, 149, 255, 0.1);
    border-radius: 50%;
    filter: blur(100px);
}

.shape-2 {
    position: absolute;
    bottom: 30%;
    right: 20%;
    width: 150px;
    height: 150px;
    background: rgba(0, 149, 255, 0.1);
    border-radius: 50%;
    filter: blur(100px);
}

.shape-3 {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: rgba(0, 149, 255, 0.1);
    border-radius: 50%;
    filter: blur(100px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 149, 255, 0.1) 0%, rgba(0, 149, 255, 0.05) 50%, transparent 70%);
    z-index: 1;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-text {
    margin-bottom: 3rem;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff, #0095ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeIn 1s ease-in-out;
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    animation: fadeIn 1s ease-in-out 0.3s;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    animation: fadeIn 1s ease-in-out 0.6s;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    animation: fadeIn 1s ease-in-out 0.9s;
}

.scroll-icon {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.logo-img:hover {
    filter: brightness(1.2);
}

.nav-menu {
    display: flex;
    gap: 3.5rem;
    /* margin-left: -20rem; */
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.2s;
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.login-btn {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background 0.2s;
}

.login-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.demo-btn {
    /* color: var(--text-color); */
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border-radius: 10px;
    /* background: rgba(0, 149, 255, 0.2); */
    /* border: 1px solid rgba(0, 149, 255, 0.4); */
    transition: all 0.2s;
    background: linear-gradient(90deg, #54a8dd 0%, #6273b7 100%);
    color: #fff;
    border: none;
}

.demo-btn:hover {
    background: linear-gradient(90deg, #6273b7 0%, #54a8dd 100%);
    color: #fff;
    box-shadow: 0 4px 24px rgba(84,168,221,0.18);
    transform: translateY(-2px) scale(1.04);
}

/* Hero Content Styles */

.hero {
    position: relative;
    min-height: 100vh; /* Ensures the hero section takes up the full viewport height */
    display: flex;
    flex-direction: row; /* Aligns content and video side by side */
    overflow: hidden;
    background-color: #010210;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-video {
    flex: 1; /* Takes up the other half of the width */
    position: relative;
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    /* object-fit: cover; Ensures the video covers the entire container */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 15rem auto 4rem;
    text-align: center;
    padding: 0 2rem;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(165deg, #fff 0%, #54a9de 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInText 2s ease-in-out;
    text-align: left;
    margin-left: 1rem;
    margin-top: -3rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 4rem;
        margin-left: 0;
        text-align: center;
        margin-top: 2rem;
    }
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content p {
    font-size: 1.2rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: left;
    margin-left: 1rem;

}

.cta-button1{
    background: linear-gradient(135deg, #54a8dd 0%, #6273b7 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    margin-right: 28rem;
}

.cta-button1:hover {
    transform: scale(1.05);
    background: #0084e3;
}



.social-proof {
    margin-top: 5rem;
}

.social-proof p {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.company-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.company-logos .logo {
    color: #666;
    font-size: 1.2rem;
    background: transparent;
    padding: 0;
}

/* Section Common Styles */
section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: #a0a0a0;
    font-size: 1.1rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Founder Section */
.founder-section {
    padding: 6rem 0;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(84,168,221,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(98,115,183,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.founder-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.founder-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.founder-image:hover {
    transform: translateY(-8px);
}

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

.founder-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.founder-image:hover .founder-overlay {
    opacity: 1;
}

.founder-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.founder-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.founder-social-link:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.founder-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.founder-title {
    font-size: 1.2rem;
    color: #bfc7d5;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.founder-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #bfc7d5;
    margin-bottom: 2rem;
}

.founder-expertise h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.expertise-tag {
    background: rgba(84,168,221,0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(84,168,221,0.2);
    transition: all 0.3s ease;
}

.expertise-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.founder-quote {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.founder-quote blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: #bfc7d5;
    margin: 0;
    line-height: 1.6;
}

.founder-quote blockquote::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 1;
    margin-right: 0.5rem;
    float: left;
}

@media (max-width: 768px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: center;
    }
    
    .founder-content h3 {
        font-size: 2rem;
    }
    
    .expertise-tags {
        gap: 0.6rem;
    }
    
    .expertise-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

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

.stat-item {
    /* background: var(--glass-bg); */
    padding: 1.5rem;
    border-radius: 12px;
    border: 1.5px solid rgba(84,168,221,0.08);
    backdrop-filter: blur(10px);
    transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
    text-align: center;
}
.stat-item:hover {
    box-shadow: 0 8px 40px 0 rgba(84,168,221,0.18), 0 2px 16px 0 rgba(84,168,221,0.10);
    border: 1.5px solid #54a8dd;
    transform: translateY(-4px) scale(1.025);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.plus-symbol {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-left: 0.2rem;
}

.about-image img {
    width: 110%;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.service-card {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

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

/* Clients Section */
.clients-section {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.logo-slider {
    padding: 40px 0;
    background: transparent;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.logo-slider::before,
.logo-slider::after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
}

/* .logo-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
} */

.logo-slide-track {
    display: flex;
    animation: scroll 20s linear infinite;
    -webkit-animation: scroll 20s linear infinite;
    width: calc(200px * 10);
}

.slide {
    width: 200px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    max-width: 100%;
    height: 70px;
    background-color: #fff;
    border-radius: 12px;
    object-fit: contain;
    /* filter: grayscale(100%) brightness(200%); */
    opacity: 0.8;
    transition: all 0.3s ease;
}

.slide:hover img {
    filter: grayscale(0%) brightness(100%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 5));
    }
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-200px * 5));
    }
}

/* Testimonials Section */
.testimonial-card {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    height: 100%;
}

.quote {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.author-info p {
    color: #a0a0a0;
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
}

.toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: #a0a0a0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

.tech-stack {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.tech-path {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
}

.tech-path::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent,
        rgba(0, 149, 255, 0.2) 10%,
        rgba(0, 149, 255, 0.2) 90%,
        transparent
    );
    transform: translateX(-50%);
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    width: 300px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.tech-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 149, 255, 0.4);
}

.tech-item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.tech-item span {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
}

.tech-item::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: rgba(0, 149, 255, 0.2);
    top: 50%;
}

/* Zigzag positioning */
.tech-item:nth-child(odd) {
    margin-right: auto;
    margin-left: 0;
}

.tech-item:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
}

.tech-item:nth-child(odd)::before {
    right: -40px;
}

.tech-item:nth-child(even)::before {
    left: -40px;
}

/* Individual tech item styles */
.tech-item.js {
    animation: slideInLeft 0.6s ease-out;
}

.tech-item.react {
    animation: slideInRight 0.6s ease-out 0.2s backwards;
}

.tech-item.python {
    animation: slideInLeft 0.6s ease-out 0.4s backwards;
}

.tech-item.shopify {
    animation: slideInRight 0.6s ease-out 0.6s backwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@media (max-width: 768px) {
    .tech-stack {
        padding: 2rem 1rem;
    }

    .tech-path {
        gap: 1.5rem;
    }

    .tech-item {
        width: 250px;
        padding: 1rem 1.5rem;
    }

    .tech-item::before {
        width: 20px;
    }

    .tech-item:nth-child(odd)::before {
        right: -20px;
    }

    .tech-item:nth-child(even)::before {
        left: -20px;
    }
} 

/* Technology Section */
.technology-section {
    padding: 6rem 0;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    justify-items: center;
    align-items: center;
}

.tech-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.tech-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

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

.tech-card h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-top: 0.5rem;
}

/* Footer Styles */
.footer {
    position: relative;
    background: #000000;
    backdrop-filter: blur(10px);
    padding: 4rem 2rem;
    overflow: hidden;
    text-align: left; /* Center align content */
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: left; /* Center align items */
    text-align: left; /* Center align text */
}

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

.footer-logo-img {
    height: 50px; /* Slightly larger for better visibility */
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.1); /* Add hover effect */
}

.footer-desc {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 300px; /* Limit width for better readability */
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: left; /* left align social links */
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px); /* Add hover lift effect */
}

.footer-col h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 8%;
    bottom: -0.5rem;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px); /* Add hover slide effect */
}

.footer-bottom {
    position: relative;
    z-index: 1;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center; /* Center align for smaller screens */
}

.copyright {
    color: #a0a0a0;
    font-size: 0.9rem; /* Slightly smaller font */
    
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center; /* Center align links */
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr; /* Stack columns */
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column; /* Stack bottom content */
        text-align: center;
    }

    .footer-bottom-links {
        gap: 1rem;
    }
}

/* Metrics Section */
.metrics-section {
    padding: 80px 0;
    background-color: #0a192f;
    position: relative;
    overflow: hidden;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.metric-card {
    background: rgba(16, 33, 54, 0.8);
    border: 1px solid rgba(46, 213, 115, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(46, 213, 115, 0.1);
}

.metric-icon {
    font-size: 2.5rem;
    color: #2ed573;
    margin-bottom: 20px;
}

.metric-card h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.metric-title {
    color: #2ed573;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 15px 0;
}

.metric-button {
    background: transparent;
    border: 2px solid #2ed573;
    color: #2ed573;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.metric-button:hover {
    background: #2ed573;
    color: #0a192f;
}

/* Add animation for metric cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.metric-card {
    animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.metric-card:nth-child(1) {
    animation-delay: 0.2s;
}

.metric-card:nth-child(2) {
    animation-delay: 0.4s;
}

.metric-card:nth-child(3) {
    animation-delay: 0.6s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .metric-title {
        font-size: 2rem;
    }
}

/* Social Media Section */
.social-media-section {
    padding: 1rem 1;
    margin-top: -6rem;
    /* background: var(--glass-bg); */
    backdrop-filter: blur(10px);
    /* border-top: 1px solid var(--glass-border); */
    border-bottom: 1px solid var(--glass-border);
}

.social-media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    justify-items: center;
    align-items: center;
}

.social-media-item {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-media-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.social-media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.social-media-item:hover img {
    transform: scale(1.1);
}

/* Contact Hero Section */
.contact-hero {
    /* background: linear-gradient(135deg, var(--primary-color), var(--bg-color)); */
    color: var(--text-color);
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 4rem;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #a0a0a0;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    margin-top: 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
    margin-right: -1rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    
}

.contact-info p {
    margin-bottom: 1.5rem;
    color: #a0a0a0;
    text-align: left;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-details i {
    color: var(--primary-color);
}

.contact-form {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.contact-form h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    background: var(--glass-bg);
    color: var(--text-color);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
}

button.cta-button1 {
    display: inline-block;
    margin-top: 1rem;
}

/* Swiper Slider Styles */
.social-media-slider {
    width: 100%;
    padding: 2rem 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    justify-items: center;
    align-items: center;
}

.social-media-item {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-media-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.social-media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.social-media-item:hover img {
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 480px) {
    body {
        font-size: 0.9rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero {
        flex-direction: column; /* Stack content vertically */
        text-align: center;
    }

    .hero-content {
        margin: 4rem auto;
        padding: 0 1rem;
    }

    h1 {
        font-size: 2rem;
        margin-left: 0;
        text-align: center;
    }

    .hero-content p {
        font-size: 1rem;
        margin-left: 0;
        text-align: center;
    }

    .cta-button1 {
        margin: 1rem auto;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .nav-menu {
        display: none; /* Hide navigation menu on small screens */
    }

    .header-container {
        padding: 0.5rem 1rem;
    }

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

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        gap: 0.5rem;
    }

    .social-media-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

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

    .contact-info,
    .contact-form {
        margin: 0;
    }

    .tech-item {
        width: 100%;
        padding: 1rem;
    }

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

    .metric-title {
        font-size: 1.8rem;
    }

    .social-media-item {
        width: 100%;
    }
}

/* Custom Services Section (Glassmorphism) */
.custom-services-section {
    padding: 60px 0 40px 0;
    background: none;
}

.custom-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 32px;
}

.custom-service-card {
    background: var(--glass-bg);
    border: 1.5px solid var(--glass-border);
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 32px 24px 28px 24px;
    color: #fff;
    transition: box-shadow 0.3s, border 0.3s, background 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 220px;
}

.custom-service-card:hover {
    background: var(--glass-hover);
    border: 1.5px solid #54a8dd;
    box-shadow: 0 12px 40px 0 rgba(84,168,221,0.18);
}

.custom-service-icon {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #54a8dd 0%, #6273b7 100%);
    color: #fff;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px 0 rgba(84,168,221,0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.custom-service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.custom-service-card p {
    font-size: 1rem;
    color: #d1d5db;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .custom-services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 700px) {
    .custom-services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .custom-service-card {
        padding: 24px 16px 20px 16px;
    }
}

/* Modern Hero Section Styles */
.hero-section-modern {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at 20% 20%, rgba(84,168,221,0.12) 0%, transparent 70%),
                radial-gradient(ellipse at 80% 60%, rgba(98,115,183,0.10) 0%, transparent 70%),
                #0a0a15;
    overflow: hidden;
    z-index: 1;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
                      linear-gradient(180deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 1;
}

.hero-content-modern {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 16px 56px 16px;
}

.hero-top-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
}

.hero-avatars {
    display: flex;
    align-items: center;
    margin-right: 8px;
}

.hero-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #232347;
    object-fit: cover;
    margin-left: -10px;
    box-shadow: 0 2px 8px 0 rgba(84,168,221,0.10);
    background: #232347;
}
.hero-avatar:first-child { margin-left: 0; }

.hero-client-text {
    color: #b3b8d0;
    font-size: 0.98rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.hero-title-modern {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle-modern {
    color: #b3b8d0;
    font-size: 1.08rem;
    margin-bottom: 32px;
    font-weight: 400;
}

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

.hero-btn-primary {
    background: linear-gradient(90deg, #54a8dd 0%, #6273b7 100%);
    color: #fff;
    padding: 12px 32px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 12px 0 rgba(84,168,221,0.10);
    transition: background 0.2s, box-shadow 0.2s;
}
.hero-btn-primary:hover {
    background: linear-gradient(90deg, #6273b7 0%, #54a8dd 100%);
    box-shadow: 0 4px 20px 0 rgba(84,168,221,0.18);
}

.hero-btn-secondary {
    background: rgba(255,255,255,0.08);
    color: #fff;
    padding: 12px 32px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid #232347;
    transition: background 0.2s, border 0.2s;
}
.hero-btn-secondary:hover {
    background: rgba(84,168,221,0.10);
    border: 1.5px solid #54a8dd;
}

@media (max-width: 700px) {
    .hero-title-modern {
        font-size: 2rem;
    }
    .hero-content-modern {
        padding: 40px 8px 32px 8px;
    }
    .hero-section-modern {
        min-height: 60vh;
    }
    .hero-buttons-modern {
        flex-direction: column;
        gap: 12px;
    }
}

/* Modern Unique Hero Section */
.hero {
    min-height: 100vh;
    width: 100vw;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(120deg, #0a1333 0%, #1a225a 100%);
}
.hero-bg-abstract {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 900px;
    height: 900px;
    transform: translate(-50%, -50%) scale(1.1);
    animation: blobFloat 12s ease-in-out infinite alternate;
    opacity: 0.7;
}
@keyframes blobFloat {
    0% { transform: translate(-50%, -50%) scale(1.1) rotate(0deg); }
    100% { transform: translate(-50%, -50%) scale(1.15) rotate(8deg); }
}
.hero-center-card {
    position: relative;
    z-index: 2;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-glass-card {
    background: rgba(20, 30, 60, 0.55);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 32px;
    padding: 56px 40px 44px 40px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 540px;
    border: 1.5px solid rgba(255,255,255,0.08);
}
.hero-modern-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #fff;
}
.gradient-text {
    background: linear-gradient(90deg, #54a8dd 0%, #6273b7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    filter: brightness(1.2);
}
.hero-modern-subtitle {
    color: #bfc7d5;
    font-size: 1.15rem;
    margin-bottom: 36px;
    max-width: 420px;
}
.hero-modern-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-bottom: 28px;
}
.modern-btn {
    padding: 14px 36px;
    border-radius: 10px;
    font-size: 1.08rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 2px 12px rgba(84,168,221,0.08);
    outline: none;
    border: none;
    cursor: pointer;
    display: inline-block;
}
.modern-btn.primary {
    background: linear-gradient(90deg, #54a8dd 0%, #6273b7 100%);
    color: #fff;
    border: none;
}
.modern-btn.primary:hover {
    background: linear-gradient(90deg, #6273b7 0%, #54a8dd 100%);
    color: #fff;
    box-shadow: 0 4px 24px rgba(84,168,221,0.18);
    transform: translateY(-2px) scale(1.04);
}
.modern-btn.secondary {
    background: #181f2e;
    color: #fff;
    border: 1px solid #2a3550;
}
.modern-btn.secondary:hover {
    background: #232b3e;
    color: #fff;
    box-shadow: 0 4px 24px rgba(98,115,183,0.12);
    transform: translateY(-2px) scale(1.04);
}
.hero-trusted-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    opacity: 0.85;
}
.trusted-text {
    color: #bfc7d5;
    font-size: 1rem;
    margin-right: 8px;
}
.trusted-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: #fff;
}
@media (max-width: 600px) {
    .hero-modern-title {
        font-size: 2rem;
    }
    .hero-glass-card {
        padding: 32px 10px 28px 10px;
        max-width: 98vw;
    }
    .hero-modern-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .hero-center-card {
        height: auto;
        min-height: 100vh;
    }
    .hero-blob {
        width: 500px;
        height: 500px;
    }
}

/* SaaS Hero Section Styles */
.saas-hero-bg {
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(120deg, #10131c 0%, #000000 100%);
}
.saas-hero-grid {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 80px),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 80px);
    z-index: 1;
    pointer-events: none;
}
.saas-hero-streak {
    position: absolute;
    left: -20vw;
    top: 0;
    width: 60vw;
    height: 100vh;
    background: radial-gradient(ellipse 80% 60% at 20% 40%, rgba(84,168,221,0.18) 0%, transparent 80%);
    filter: blur(12px);
    z-index: 2;
    pointer-events: none;
}
.saas-hero-content {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    padding: 0 24px;
}
.saas-hero-clients-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 32px;
}
.saas-client-avatars {
    display: flex;
    align-items: center;
    gap: -8px;
}
.saas-client-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #23283a;
    margin-left: -10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: #fff;
}
.saas-client-avatar:first-child {
    margin-left: 0;
}
.saas-clients-text {
    color: #bfc7d5;
    font-size: 0.98rem;
    margin-left: 14px;
    font-weight: 500;
    opacity: 0.85;
    letter-spacing: 0.01em;
}
.saas-hero-title {
    font-size: 4.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 2px 16px rgba(84,168,221,0.10);
    margin-top: 1rem;
    text-align: center;
}
.saas-hero-subtitle {
    color: #bfc7d5;
    font-size: 1.13rem;
    margin-bottom: 38px;
    max-width: 520px;
    font-weight: 500;
    opacity: 0.85;
}
.saas-hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-bottom: 0;
}
.saas-btn {
    padding: 14px 36px;
    border-radius: 10px;
    font-size: 1.08rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 2px 12px rgba(84,168,221,0.08);
    outline: none;
    border: none;
    cursor: pointer;
    display: inline-block;
}
.saas-btn-primary {
    background: linear-gradient(90deg, #54a8dd 0%, #6273b7 100%);
    color: #fff;
    border: none;
}
.saas-btn-primary:hover {
    background: linear-gradient(90deg, #6273b7 0%, #54a8dd 100%);
    color: #fff;
    box-shadow: 0 4px 24px rgba(84,168,221,0.18);
    transform: translateY(-2px) scale(1.04);
}
.saas-btn-secondary {
    background: #181f2e;
    color: #fff;
    border: 1.5px solid #2a3550;
}
.saas-btn-secondary:hover {
    background: #232b3e;
    color: #fff;
    box-shadow: 0 4px 24px rgba(98,115,183,0.12);
    transform: translateY(-2px) scale(1.04);
}
@media (max-width: 700px) {
    .saas-hero-title {
        font-size: 2rem;
    }
    .saas-hero-content {
        padding: 0 8px;
    }
    .saas-hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
}

/* Modern Services Section Styles */
.services-section-modern {
    position: relative;
    width: 100vw;
    min-height: 80vh;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    z-index: 1;
}
.services-modern-bg {
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 100%;
    z-index: 0;
    /* background: linear-gradient(120deg, #10131c 0%, #050505 100%); */
    opacity: 1;
    pointer-events: none;
}
.services-modern-bg:after {
    content: '';
    position: absolute;
    left: -20vw;
    top: 0;
    width: 60vw;
    height: 100vh;
    background: radial-gradient(ellipse 80% 60% at 20% 40%, rgba(84,168,221,0.18) 0%, transparent 80%);
    filter: blur(12px);
    z-index: 1;
    pointer-events: none;
}
.services-modern-container {
    position: relative;
    z-index: 2;
    width: 100vw;
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 24px 64px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.services-modern-header {
    text-align: center;
    margin-bottom: 40px;
}
.services-modern-title {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}
.services-modern-subtitle {
    color: #bfc7d5;
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.85;
}
.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    max-width: 1100px;
}
.services-modern-card {
    /* background: rgba(54, 54, 56, 0.6); */
    /* box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18); */
    border-radius: 18px;
    border: 1.5px solid rgba(84,168,221,0.08);
    padding: 32px 24px 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 220px;
    transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}
.services-modern-card:hover {
    box-shadow: 0 8px 40px 0 rgba(84,168,221,0.18), 0 2px 16px 0 rgba(84,168,221,0.10);
    border: 1.5px solid #54a8dd;
    transform: translateY(-4px) scale(1.025);
}
.services-modern-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 40, 80, 0.7);
    border-radius: 12px;
    margin-bottom: 18px;
    box-shadow: 0 0 16px 2px rgba(84,168,221,0.18);
    font-size: 1.6rem;
    color: #54a8dd;
}
.services-modern-card h3 {
    color: #fff;
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 0;
}
.services-modern-card p {
    color: #bfc7d5;
    font-size: 1.01rem;
    font-weight: 400;
    opacity: 0.85;
    margin: 0;
}
@media (max-width: 1000px) {
    .services-modern-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}
@media (max-width: 700px) {
    .services-modern-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .services-modern-card {
        align-items: center;
        text-align: center;
    }
}

/* Comparison Section Styles */
.comparison-section {
    position: relative;
    width: 100vw;
    min-height: 60vh;
    background: linear-gradient(120deg, #10131c 0%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 0 64px 0;
    z-index: 1;
}
.comparison-container {
    width: 100vw;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}
.comparison-label {
    color: #54a8dd;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
    text-transform: uppercase;
    border-radius: 12px;
    padding: 2px 18px;
    background: rgba(84,168,221,0.08);
    display: inline-block;
}
.comparison-title {
    background: linear-gradient(135deg, #fff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: center;
    letter-spacing: -0.5px;
}
.comparison-subtitle {
    color: #bfc7d5;
    font-size: 1.08rem;
    font-weight: 500;
    opacity: 0.85;
    margin-bottom: 38px;
    text-align: center;
}
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    width: 100%;
    max-width: 950px;
}
.comparison-card {
    /* background: rgba(20, 30, 60, 0.60); */
    /* box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18); */
    border-radius: 18px;
    border: 1.5px solid rgba(84,168,221,0.08);
    padding: 32px 24px 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 260px;
    transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}
.comparison-card:hover {
    box-shadow: 0 8px 40px 0 rgba(84,168,221,0.18), 0 2px 16px 0 rgba(84,168,221,0.10);
    border: 1.5px solid #54a8dd;
    transform: translateY(-4px) scale(1.025);
}
.comparison-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.comparison-logo {
    height: 32px;
    width: auto;
    display: block;
}
.comparison-others-icon {
    color: #bfc7d5;
    font-size: 1.5rem;
    margin-right: 6px;
}
.comparison-others-label {
    color: #bfc7d5;
    font-size: 1.1rem;
    font-weight: 600;
}
.comparison-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.comparison-check {
    color: #e6eaf3;
    font-size: 1.05rem;
    margin-bottom: 14px;
    position: relative;
    padding-left: 1.6em;
}
.comparison-check:before {
    content: '\2714';
    color: #54a8dd;
    font-size: 1.1em;
    position: absolute;
    left: 0;
    top: 0;
}
.comparison-cross {
    color: #bfc7d5;
    font-size: 1.05rem;
    margin-bottom: 14px;
    position: relative;
    padding-left: 1.6em;
    opacity: 0.7;
}
.comparison-cross:before {
    content: '\2716';
    color: #e05a5a;
    font-size: 1.1em;
    position: absolute;
    left: 0;
    top: 0;
}
@media (max-width: 900px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .comparison-card {
        align-items: center;
        text-align: center;
    }
}

/* Preloader Styles */
#preloader {
    position: fixed;
    z-index: 2000;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(120deg, #000000 0%, #29304d 50%, #414c7a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s;
}
#preloader.hide {
    opacity: 0;
    pointer-events: none;
}
.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.preloader-logo img {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    box-shadow: 0 4px 32px #23294644;
    background: #000000;
    object-fit: contain;
    padding: 8px;
    animation: preloader-logo-pop 1.2s infinite alternate;
}
@keyframes preloader-logo-pop {
    0% { transform: scale(1);}
    100% { transform: scale(1.08);}
}
.preloader-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #fff;
    border-top: 4px solid #54a8dd;
    border-radius: 50%;
    animation: preloader-spin 1s linear infinite;
    margin-bottom: 8px;
    box-shadow: 0 0 16px #54a8dd88;
}
@keyframes preloader-spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}
.preloader-text {
    color: #fff;
    font-size: 1.15rem;
    letter-spacing: 1px;
    font-weight: 500;
    text-shadow: 0 2px 8px #23294666;
    font-family: inherit;
    text-align: center;
    margin-top: 8px;
    animation: preloader-text-fade 2s infinite alternate;
}
@keyframes preloader-text-fade {
    0% { opacity: 0.7;}
    100% { opacity: 1;}
}

/* Blogs Section Modern */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 16px;
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: flex-start;
    margin-top: 5rem;
}
.blogs-section-modern {
    padding: 70px 0 40px 0;
    background: var(--bg-color);
}
.blogs-modern-header {
    text-align: center;
    margin-bottom: 40px;
}
.blogs-modern-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.blogs-modern-subtitle {
    color: #bfc7d5;
    font-size: 1.15rem;
}
.blogs-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.blogs-modern-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(84,168,221,0.08);
    transition: transform 0.2s, box-shadow 0.2s, border 0.2s;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}
.blogs-modern-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(84,168,221,0.18);
    border: 1.5px solid var(--primary-color);
}
.blogs-modern-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}
.blogs-modern-content {
    padding: 24px 20px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blogs-modern-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}
.blogs-modern-card-desc {
    color: #bfc7d5;
    font-size: 1rem;
    margin-bottom: 22px;
    flex: 1;
}
.blogs-modern-btn {
    align-self: flex-start;
    background: linear-gradient(90deg, #54a8dd 0%, #6273b7 100%);
    color: #fff;
    padding: 10px 26px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(84,168,221,0.08);
    border: none;
}
.blogs-modern-btn:hover {
    background: linear-gradient(90deg, #6273b7 0%, #54a8dd 100%);
    box-shadow: 0 4px 24px rgba(84,168,221,0.18);
}
@media (max-width: 1000px) {
    .blogs-modern-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 700px) {
    .blogs-modern-grid {
        grid-template-columns: 1fr;
    }
    .blogs-section-modern {
        padding: 40px 0 20px 0;
    }
}

/* Blog Page Modern Styles */
.blog-hero-section {
    /* background: linear-gradient(120deg, #0a1333 0%, #1a225a 100%); */
    padding: 60px 0 30px 0;
    text-align: center;
}
.blog-hero-content {
    max-width: 700px;
    margin: 0 auto;
}
.blog-category {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: 1px;
}
.blog-hero-title {
    font-size: 2.7rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.15;
}
.blog-meta {
    color: #bfc7d5;
    font-size: 1rem;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    gap: 18px;
}
.blog-content-section {
    background: var(--bg-color);
    padding: 50px 0 40px 0;
}
.blog-content-wrapper {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(84,168,221,0.08);
    max-width: 900px;
    margin: 0 auto;
    padding: 36px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.blog-feature-img {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 32px;
    box-shadow: 0 2px 16px rgba(84,168,221,0.10);
}
.blog-content {
    width: 100%;
    color: #e6e6e6;
    font-size: 1.13rem;
    line-height: 1.7;
    margin-bottom: 32px;
}
.blog-content h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
}
.blog-content p {
    margin-bottom: 18px;
}
.blog-inline-img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    margin: 28px auto 28px auto;
    display: block;
    box-shadow: 0 2px 12px rgba(84,168,221,0.10);
}
.blog-quote {
    background: var(--glass-hover);
    border-left: 4px solid var(--primary-color);
    color: #fff;
    font-style: italic;
    padding: 18px 24px;
    margin: 32px 0;
    border-radius: 8px;
    font-size: 1.15rem;
    box-shadow: 0 2px 12px rgba(84,168,221,0.08);
}
.blog-back-btn {
    display: inline-block;
    background: #181f2e;
    color: #fff;
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(84,168,221,0.08);
    border: 1px solid #2a3550;
}
.blog-back-btn:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 24px rgba(84,168,221,0.18);
    border: 1px solid var(--primary-color);
}
@media (max-width: 900px) {
    .blog-content-wrapper {
        padding: 24px 8px 24px 8px;
    }
}
@media (max-width: 600px) {
    .blog-hero-title {
        font-size: 2rem;
    }
    .blog-content-wrapper {
        padding: 12px 2px 12px 2px;
    }
    .blog-feature-img {
        max-height: 180px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: opacity, transform;
}
.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1000;
}
.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}
.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 2px 10px 27px rgba(0, 0, 0, 0.05);
        padding-top: 80px;
        height: 100vh;
        z-index: 999;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-menu a {
        margin: 15px 0;
        font-size: 1.1rem;
    }
    .header-actions {
        margin-left: auto;
    }
}
