:root {
    --primary-blue: #0066FF;
    --dark-bg: #000000; /* Changed to black */
    --text-light: #FFFFFF;
    --text-dark: #333333;
}

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

body {
    font-family: 'Roboto', sans-serif; /* Changed to Roboto */
    line-height: 1.6;
}

header {
    background-color: var(--dark-bg);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.company-name a { /* Replacing logo with company name */
    color: var(--text-light);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5rem;
}


.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero {
    background-color: var(--dark-bg);
    color: var(--text-light);
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 2rem 2rem;
    background: linear-gradient(
        -45deg,
        rgba(0, 102, 255, 0.8),
        rgba(0, 0, 0, 0.9),
        rgba(0, 51, 128, 0.8),
        rgba(0, 0, 0, 0.9)
    );
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    position: relative;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    max-width: 800px;
}

.hero-subtitle { /* Added subtitle */
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 700px;
}

.cta-button {
    background-color: rgba(0, 102, 255, 0.6);
    color: var(--text-light);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 2rem;
    display: inline-block;
}

section {
    padding: 5rem 2rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

section:not(.visible) {
    pointer-events: none;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 span {
    color: var(--primary-blue);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: normal;
}

.solutions-section {
    background-color: #f8f9fa;
    padding: 6rem 2rem;
}

.solutions-section h2 {
    color: var(--primary-blue);
    font-size: 3rem;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.solutions-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 3px;
    background-color: var(--primary-blue);
}

.solutions-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.solutions-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-top: 2rem;
}

.solutions-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.solution-item i {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.about-section {
    background-color: #f8f9fa;
    padding: 6rem 2rem;
}

.about-section h2 {
    color: var(--primary-blue);
    font-size: 3rem;
    font-weight: bold;
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 3px;
    background-color: var(--primary-blue);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-text p:last-child {
    font-size: 1.4rem;
    color: var(--primary-blue);
    font-weight: 500;
    margin-top: 2rem;
}

.about-icons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.icon-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.icon-item i {
    color: var(--primary-blue);
    font-size: 2rem;
    width: 40px;
    text-align: center;
}

.certifications {
    background-color: #f8f9fa;
    padding: 6rem 2rem;
    text-align: center;
}

.certifications h2 {
    color: var(--primary-blue);
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
}

.certifications h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 3px;
    background-color: var(--primary-blue);
}

.certification-cards {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.certification-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    width: 300px;
}

.certification-card:hover {
    transform: translateY(-10px);
}

.certification-card img {
    width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.certification-card h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 0;
}

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

.certification-card {
    animation: cardFloat 3s ease-in-out infinite;
}

.certification-card:nth-child(2) {
    animation-delay: 0.2s;
}

.certification-card:nth-child(3) {
    animation-delay: 0.4s;
}

.contact-section {
    background-color: #f8f9fa;
    padding: 6rem 2rem;
}

.contact-section h2 {
    color: var(--primary-blue);
    font-size: 3rem;
    font-weight: bold;
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 3px;
    background-color: var(--primary-blue);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.contact-item i {
    color: var(--primary-blue);
    font-size: 2rem;
    width: 40px;
    text-align: center;
}

.contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-blue);
}

footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 4rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.company-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.company-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-light);
}

.logo-placeholder {
    width: 150px;
    height: 150px;
    background: url('attached_assets/Cloud Operatio Lead your Buiness.png') center/contain no-repeat;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .solutions-content {
        grid-template-columns: 1fr;
    }
}