/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #111827;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(18px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.logo-full {
    height: 80px;
    width: auto;
    display: block;
}

.logo-wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #000000;
}

.logo-sub {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #6b7280;
}

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

.nav-link {
    text-decoration: none;
    color: #111827;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #000000;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 800px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    z-index: 1001;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-section h3 {
    color: #111827;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.dropdown-section a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4b5563;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.dropdown-section a:hover {
    color: #000000;
}

.learn-more {
    color: #000000 !important;
    font-weight: 600;
    margin-top: 0.5rem;
}

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

.social-links a {
    color: #4b5563;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #000000;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #111827;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    color: #000000;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.highlight {
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.7;
}

.cta-button {
    background: #000000;
    border: 2px solid #000000;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    background: #111827;
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    border-radius: 20px;
    background: #f4f4f5;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.element-2 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}

.element-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 40%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Trusted Clients */
.trusted-clients {
    padding: 5rem 0;
    background: #f4f4f5;
}

.trusted-clients h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #111827;
}

.clients-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 2rem;
    align-items: center;
    width: max-content;
    animation: clients-scroll-right 40s linear infinite;
}

.trusted-clients .container {
    overflow: hidden;
}

.client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    min-height: 70px;
    max-width: 260px;
    width: auto;
    flex: 0 0 auto;
}

.client-logo:hover {
    transform: translateY(-5px);
}

.client-logo img {
    max-width: 72px;
    max-height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    object-fit: contain;
}

.client-logo:hover img {
    opacity: 1;
}

@keyframes clients-scroll-right {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

/* Insights Section */
.insights {
    padding: 6rem 0;
    background: white;
}

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

.section-header h2 {
    font-size: 3rem;
    color: #111827;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

.insights-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.slide-image {
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-text {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-text h3 {
    font-size: 1.8rem;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.slide-text p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.slide-tags {
    margin-bottom: 2rem;
}

.tag {
    background: #e5e7eb;
    color: #111827;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.read-more {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.read-more:hover {
    background: #111827;
    transform: translateY(-2px);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
    background: white;
    transform: scale(1.1);
}

/* Case Studies */
.case-studies {
    padding: 6rem 0;
    background: #ffffff;
}

.case-studies h2 {
    font-size: 3rem;
    color: #111827;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.case-study {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.case-image {
    height: 250px;
    background: #000000;
    position: relative;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-content {
    padding: 2rem;
}

.case-content h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 1rem;
}

.case-content p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.case-btn {
    background: transparent;
    border: 2px solid #000000;
    color: #000000;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.case-btn:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

.view-all {
    text-align: center;
}

.view-all-btn {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #111827;
    transform: translateY(-2px);
}

/* Solution Spotlight */
.solution-spotlight {
    padding: 6rem 0;
    background: #000000;
    color: #ffffff;
}

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

.spotlight-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.spotlight-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.spotlight-content {
    text-align: center;
}

.spotlight-main {
    margin-bottom: 4rem;
}

.spotlight-main h3 {
    font-size: 1.2rem;
    color: #9ca3af;
    margin-bottom: 1rem;
    font-weight: 600;
}

.spotlight-main h4 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.capabilities-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tab {
    background: rgba(249, 250, 251, 0.06);
    padding: 2rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tab:hover,
.tab.active {
    background: rgba(249, 250, 251, 0.16);
    transform: translateY(-5px);
}

.tab i {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.tab h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.tab p {
    opacity: 0.9;
    line-height: 1.6;
}

.explore-btn {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background: #f9fafb;
    transform: translateY(-2px);
}

/* Founder Quote */
.founder-quote {
    padding: 6rem 0;
    background: #ffffff;
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.founder-image {
    text-align: center;
}

.founder-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 10px solid #f8fafc;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.quote-text blockquote {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #111827;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.quote-text blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #000000;
    position: absolute;
    top: -1rem;
    left: -2rem;
    font-family: serif;
}

.quote-text cite {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    display: block;
    margin-bottom: 2rem;
}

.know-us-btn {
    background: transparent;
    border: 2px solid #000000;
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.know-us-btn:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Technology Capabilities */
.tech-capabilities {
    padding: 6rem 0;
    background: #f4f4f5;
}

.capabilities-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.capability-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.capability-card:hover,
.capability-card.active {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.capability-card i {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 1.5rem;
}

.capability-card h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 1rem;
}

.capability-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Vision Section */
.vision-section {
    padding: 6rem 0;
    background: #000000;
    color: #ffffff;
    text-align: center;
}

.vision-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.vision-content p {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vision-cubes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.cube {
    background: rgba(249, 250, 251, 0.06);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.cube:hover {
    background: rgba(249, 250, 251, 0.16);
    transform: translateY(-5px);
}

.cube i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #f9fafb;
}

.cube h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Accreditations */
.accreditations {
    padding: 4rem 0;
    background: #ffffff;
    text-align: center;
}

.accreditations h2 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 3rem;
}

.accreditation-logos {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: auto;
}

.accreditation-logos img {
    max-width: 100px;
    max-height: 60px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    margin: 0 auto;
}

.accreditation-logos img:hover {
    opacity: 1;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: #000000;
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.discuss-btn {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.discuss-btn:hover {
    background: #f9fafb;
    transform: translateY(-2px);
}

/* Newsletter */
.newsletter {
    padding: 4rem 0;
    background: #f4f4f5;
}

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

.newsletter-text h3 {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 1rem;
}

.newsletter-text p {
    color: #6b7280;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #000000;
}

.newsletter-form button {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #111827;
}

/* Footer */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    object-fit: contain;
}

.footer-logo span {
    font-size: 1.3rem;
    font-weight: 700;
}

.footer .logo-main,
.footer .logo-sub {
    color: #ffffff;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #f9fafb;
}

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

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.contact-info p {
    color: #ffffff;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info i {
    color: #ffffff;
    margin-top: 2px;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.address-line {
    display: block;
    white-space: nowrap;
}

.footer-bottom {
    border-top: 1px solid #111827;
    padding-top: 2rem;
    text-align: center;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 16px;
    }

    .logo-full {
        height: 56px;
    }

    .logo-main {
        font-size: 1.3rem;
    }

    .logo-sub {
        font-size: 0.6rem;
        letter-spacing: 0.28em;
    }
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8fafc;
        margin-top: 1rem;
        min-width: auto;
        grid-template-columns: 1fr;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .slide-content {
        grid-template-columns: 1fr;
    }
    
    .slide-image {
        min-height: 250px;
    }
    
    .quote-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .capabilities-tabs {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .vision-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .slide-text {
        padding: 2rem;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .case-study {
        min-width: auto;
    }
}

/* Animations */
@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-up {
    animation: slideInUp 0.6s ease-out;
}

/* Smooth Scrolling */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus States */
button:focus,
input:focus,
a:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}


