/* Base Styles and Variables */
:root {
    --primary-color: #0056b3;
    --primary-light: #007bff;
    --primary-dark: #004494;
    --secondary-color: #17a2b8;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --grey-color: #6c757d;
    --grey-light: #e9ecef;
    --transition: all 0.3s ease-in-out;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-light);
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    border: none;
    transition: var(--transition);
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    color: white;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    font-weight: 600;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    border: 1px solid var(--primary-color);
    transition: var(--transition);
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}

.btn-outline:hover {
    background: rgba(0, 86, 179, 0.1);
    color: var(--primary-dark);
}

/* Header */
header {
    background-color: white;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    height: 80px;
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo h1 {
    color: var(--primary-dark);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-svg {
    width: 8rem;
    height: 8rem;
    stroke: var(--primary-light);
    stroke-width: 20;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Sprout-style Menu */
nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}

.menu {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.menu li a {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    padding: 30px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.menu li a i {
    font-size: 0.7rem;
    transition: var(--transition);
    opacity: 0.7;
}

.menu li a:hover {
    color: var(--primary-color);
}

.menu li a:hover i {
    transform: rotate(180deg);
    opacity: 1;
}

/* Dropdown Panel Styles */
.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1001;
    transform: translateY(10px);
    min-height: fit-content;
    overflow: visible;
}

.dropdown-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0rem;
}

.dropdown-column h3 {
    font-size: 0.85rem;
    color: var(--grey-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-column ul {
    display: grid;
    gap: 1.5rem;
}

.dropdown-column ul li a {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 0.5rem;
    padding: 0.5rem 0;
    align-items: start;
}

.menu-icon {
    color: var(--primary-color);
    font-size: 1.25rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    opacity: 0.9;
}

.menu-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.menu-content strong {
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    font-size: 1rem;
}

.menu-description {
    color: var(--grey-color);
    font-size: 0.875rem;
    line-height: 1.4;
    font-weight: normal;
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Update button styles to match Sprout */
.btn-outline {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
    font-weight: 500;
}

.btn-primary {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
    font-weight: 500;
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
    padding: 0.5rem;
    transition: var(--transition);
}

.mobile-toggle:hover {
    color: var(--primary-color);
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 2000;
    overflow-y: auto;
    transition: right 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--grey-light);
}

.mobile-close {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

.mobile-menu-items {
    padding: 1.5rem;
}

.mobile-menu-items li {
    margin-bottom: 1.5rem;
}

.mobile-menu-items li a {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 0;
}

.mobile-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 0;
}

.mobile-dropdown-header i {
    transition: var(--transition);
}

.mobile-dropdown.active .mobile-dropdown-header i {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    padding: 1rem 0 0 1rem;
    display: none;
}

.mobile-dropdown.active .mobile-dropdown-content {
    display: block;
}

.mobile-dropdown-content h3 {
    color: var(--grey-color);
    font-size: 0.9rem;
    margin: 1rem 0 0.5rem;
    font-weight: 600;
}

.mobile-dropdown-content ul {
    margin-bottom: 1.5rem;
}

.mobile-dropdown-content ul li a {
    padding: 0.5rem 0;
    font-size: 1rem;
}

.mobile-cta {
    margin-top: 2rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: rgba(0, 86, 179, 0.05);
    margin-top: 0;
    padding-top: 80px;
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
    color: var(--dark-color);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://source.unsplash.com/random/1920x1080/?technology,business');
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0.1;
    transform: translateZ(-1px) scale(1.5);
}

/* Parallax Elements */
.parallax-element {
    position: absolute;
    pointer-events: none;
    transition: transform 0.1s linear;
}

.element-1 {
    top: 15%;
    right: 10%;
    width: 300px;
    height: 300px;
    background-image: url('https://source.unsplash.com/random/600x600/?tech,code');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    opacity: 0.2;
    z-index: 0;
    transform: rotate(10deg);
}

.element-2 {
    bottom: 15%;
    left: 5%;
    width: 250px;
    height: 250px;
    background-image: url('https://source.unsplash.com/random/500x500/?data');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
}

.element-3 {
    top: 30%;
    left: 12%;
    width: 150px;
    height: 150px;
    background-image: url('https://source.unsplash.com/random/300x300/?programming');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    opacity: 0.2;
    z-index: 0;
    transform: rotate(-15deg);
}

.element-4 {
    top: 10%;
    right: 5%;
    width: 150px;
    height: 150px;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.element-5 {
    bottom: 10%;
    left: 8%;
    width: 200px;
    height: 200px;
    background-color: rgba(0, 86, 179, 0.15);
    border-radius: 30px;
    transform: rotate(45deg);
    z-index: 0;
}

.element-6 {
    top: 15%;
    left: 5%;
    width: 180px;
    height: 180px;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 20px;
    z-index: 0;
}

.element-7 {
    bottom: 20%;
    right: 10%;
    width: 220px;
    height: 220px;
    background-color: rgba(0, 86, 179, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.element-8 {
    top: 20%;
    right: 15%;
    width: 120px;
    height: 120px;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 10px;
    transform: rotate(30deg);
    z-index: 0;
}

/* Solutions Section */
.solutions {
    padding: 6rem 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border-bottom: 4px solid transparent;
    position: relative;
    z-index: 1;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
    border-bottom: 4px solid var(--primary-color);
}

.card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

/* Blog Section */
.blog {
    padding: 6rem 0;
    background-color: var(--grey-light);
    position: relative;
    overflow: hidden;
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.blog-post {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.blog-image {
    height: 200px;
    background-color: var(--primary-light);
    background-image: url('https://source.unsplash.com/random/600x400/?tech');
    background-size: cover;
    background-position: center;
}

.blog-post:nth-child(2) .blog-image {
    background-image: url('https://source.unsplash.com/random/600x400/?security');
}

.blog-post:nth-child(3) .blog-image {
    background-image: url('https://source.unsplash.com/random/600x400/?cloud');
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.read-more:hover {
    color: var(--primary-dark);
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-text .btn-secondary {
    margin-top: 1rem;
}

.about-image .image-container {
    width: 100%;
    height: 400px;
    background-image: url('https://source.unsplash.com/random/800x600/?office');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--grey-light);
    position: relative;
    overflow: hidden;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    background-color: var(--primary-dark);
    padding: 2rem;
    border-radius: 10px;
    color: white;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item i {
    margin-right: 1rem;
    font-size: 1.5rem;
    color: var(--light-color);
}

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

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

.social-links a:hover {
    background-color: var(--primary-light);
    transform: translateY(-5px);
}

.social-links a i {
    font-size: 1.2rem;
    color: white;
    margin: 0;
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--grey-light);
    border-radius: 5px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

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

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h2 {
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo h2 .logo-svg {
    stroke: var(--primary-light);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-column h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-light);
}

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

.footer-column ul li a {
    color: var(--grey-light);
}

.footer-column ul li a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--grey-light);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease-in-out 0.3s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s ease-in-out 0.6s forwards;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

/* Media Queries */
@media (max-width: 1100px) {
    nav {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .cta-buttons {
        margin-right: 1rem;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    header {
        height: 60px;
    }
    
    .cta-buttons a:first-child {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .element-1, .element-3, .element-5, .element-7 {
        display: none;
    }
}

@media (max-width: 576px) {
    .cta-buttons {
        display: none;
    }
    
    .element-2, .element-4, .element-6, .element-8 {
        display: none;
    }
} 
