/* Base styles */
:root {
    --azure-blue: #0078D4;
    --azure-light-blue: #50E6FF;
    --dark-text: #333333;
    --grey-text: #666666;
    --light-grey: #EEEEEE;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--off-white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
}

/* Button styles */
.btn-primary {
    display: inline-block;
    background-color: var(--white);
    color: var(--azure-blue);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-contact {
    display: inline-block;
    background-color: var(--azure-blue);
    color: var(--white);
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #006cbe;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    border-bottom: 1px solid var(--light-grey);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--azure-blue);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--grey-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--dark-text);
}

/* Hero section */
.hero {
    background-color: var(--azure-blue);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Cloud shapes */
.cloud-shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cloud-shape {
    position: absolute;
    border-radius: 50%;
}

.shape1 {
    width: 300px;
    height: 300px;
    background-color: var(--azure-light-blue);
    opacity: 0.2;
    top: 10%;
    right: 10%;
}

.shape2 {
    width: 200px;
    height: 200px;
    background-color: var(--white);
    opacity: 0.1;
    top: 30%;
    right: 25%;
}

.shape3 {
    width: 250px;
    height: 250px;
    background-color: var(--azure-light-blue);
    opacity: 0.2;
    bottom: 10%;
    right: 15%;
}

/* Services section */
.services {
    padding: 80px 0;
    text-align: center;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--light-grey);
    border-radius: 5px;
    padding: 40px 20px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.icon-migration {
    background-color: var(--azure-blue);
}

.icon-architecture {
    background-color: var(--azure-light-blue);
}

.icon-managed {
    background-color: var(--azure-blue);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--grey-text);
}

/* Trust section */
.trust {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
}

.trust h2 {
    margin-bottom: 40px;
    font-size: 28px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.client-logo {
    height: 60px;
    background-color: var(--light-grey);
    border-radius: 5px;
}

/* About section */
.about {
    padding: 80px 0;
    background-color: var(--off-white);
}

.about h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--grey-text);
    font-size: 16px;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    justify-content: space-between;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--azure-blue);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--grey-text);
    font-size: 16px;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        margin-top: 30px;
    }
}

/* CTA section */
.cta {
    background-color: var(--azure-blue);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 25px;
    font-size: 18px;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 500px;
    padding: 40px;
    position: relative;
    animation: modalFadeIn 0.3s ease-out forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--grey-text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.close-modal:hover {
    color: var(--dark-text);
}

.modal h3 {
    margin-bottom: 15px;
    font-size: 24px;
    color: var(--dark-text);
}

.modal p {
    margin-bottom: 20px;
    color: var(--grey-text);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-grey);
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--azure-blue);
}

.privacy-note {
    margin-top: 20px;
    font-size: 12px;
    color: var(--grey-text);
    text-align: center;
}

.modal .btn-primary {
    width: 100%;
    text-align: center;
}

.success-message {
    text-align: center;
    padding: 20px 0;
}

.success-message h4 {
    color: var(--azure-blue);
    font-size: 22px;
    margin-bottom: 15px;
}

.success-message p {
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #f5f5f5;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--grey-text);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--azure-blue);
}

.footer-col p {
    color: var(--grey-text);
    margin-bottom: 10px;
}

.social-icons {
    margin-top: 20px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--light-grey);
    color: var(--grey-text);
}

/* Responsive styles */
/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--azure-blue);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Responsive styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease;
        visibility: hidden;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    
    .btn-contact {
        display: inline-block;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}