
/* Cloud Services Page Specific Styles */

/* =========================================
   Cloud Hero Section (aligned with digital-product-engineering banner)
   ========================================= */
.cloud-hero-section {
    position: relative;
    width: 100%;
    height: 446px;
    min-height: 446px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background-color: #000;
    overflow: hidden;
    box-sizing: border-box;
}

.cloud-hero-section .cloud-hero-container {
    padding: 52px 6%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
}

.cloud-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/image 61.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.cloud-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.cloud-hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cloud-hero-content {
    max-width: 1224px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
}

.cloud-icon-large img {
    width: 80px;
    height: 80px;
    filter: brightness(0) invert(1); /* Make icon white */
}

.cloud-hero-title {
    font-size: 56px;
    font-weight: 500; /* Medium weight per Figma */
    line-height: 66px;
    letter-spacing: -1.06px;
    margin: 0;
    color: #ffffff;
    max-width: 1258px;
}

.cloud-hero-subtitle {
    font-size: 20px;
    font-weight: 400; /* Ensuring regular weight */
    line-height: 24px; /* Matched Figma line-height */
    letter-spacing: -0.31px; /* Matched Figma letter-spacing */
    color: rgba(255, 255, 255, 0.9);
    max-width: 968px; /* Matched Figma width */
    margin: 0;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 12px;
}

.btn-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* =========================================
   Executive Engineering Section
   ========================================= */
.executive-engineering-section {
    padding: 100px 6%;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

.executive-engineering-section .executive-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.executive-container {
    display: flex;
    align-items: flex-start; /* Aligns items to the top */
    justify-content: space-between;
    gap: 60px;
}

.executive-left {
    flex: 1;
    max-width: 600px;
    padding-top: 32px; /* Adjust this value to visually align the text baseline with the card top */
}

.executive-title {
    font-size: 48px;
    font-weight: 700;
    color: #101828;
    line-height: 1.2;
    margin-bottom: 32px;
}

.executive-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #475467;
}

/* Right Card */
.executive-right-card {
    flex: 1;
    max-width: 600px;
    background-color: #fff7ed; /* Light orange background */
    border: 1px solid #FFEDD4;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.card-header-icon {
    width: 24px;
    height: 24px;
}

.card-header-title {
    font-size: 20px;
    font-weight: 600;
    color: #101828;
    margin: 0;
}

.card-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.card-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.item-icon-wrapper {
    flex-shrink: 0;
    padding-top: 4px;
}

.icon-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #e85d2a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-svg-large {
    width: 40px;
    height: 40px;
}

.item-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.executive-engineering-section .item-title {
    font-size: 18px;
    font-weight: 600;
    color: #101828;
    margin: 0;
    line-height: 1.4;
}

.executive-engineering-section .item-text {
    font-size: 16px;
    line-height: 1.5;
    color: #475467;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .executive-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .executive-left, .executive-right-card {
        max-width: 100%;
    }

    .cloud-hero-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .executive-title {
        font-size: 36px;
    }
    
    .executive-right-card {
        padding: 24px;
    }

    .cloud-hero-section {
        height: auto;
        min-height: 360px;
        padding: 32px 0;
    }

    .cloud-hero-section .cloud-hero-container {
        padding: 32px 24px;
    }

    .cloud-hero-content {
        gap: 20px;
        max-width: 100%;
    }

    .cloud-hero-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .cloud-hero-subtitle {
        font-size: 15px;
        line-height: 1.5;
    }
}
