/* Cloud Consulting Specific Styles */
:root {
    --primary-color: #0073ec;
}

/* Colors Bar */
.cloud-colors-bar {
    height: 5px;
    background: linear-gradient(to right, #0073ec, #4285f4, #fbbc05, #ea4335);
}

/* Gradient Background */
.gradient-bg {
    background: linear-gradient(135deg, #0073ec, #0097a7);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 0;
    height: auto;
}

.hero-background {
    background-image: url('https://images.pexels.com/photos/5716001/pexels-photo-5716001.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    background-color: rgba(52, 168, 83, 0.85); /* Primary color with opacity */
    width: 100%;
    height: 100%;
    padding: 13rem 6rem;
}

.hero-section h1 {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-section p {
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.primary-btn {
    background-color: #0073ec;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background-color: #2d9249;
    color: white;
}

.outline-btn {
    background-color: transparent;
    color: #0073ec;
    border: 2px solid #0073ec;
    transition: all 0.3s ease;
}

.outline-btn:hover {
    background-color: #0073ec;
    color: white;
}

.outline-btn-light {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.outline-btn-light:hover {
    background-color: white;
    color: #0073ec;
}

/* Service Cards */
.service-card {
    border: 1px solid rgba(52, 168, 83, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 24px;
    color: white;
}

.service-icon.blue {
    background-color: #4285f4;
}

.service-icon.green {
    background-color: #0073ec;
}

.service-icon.red {
    background-color: #ea4335;
}

.service-icon.yellow {
    background-color: #fbbc05;
}

.service-icon.purple {
    background-color: #673ab7;
}

.service-icon.teal {
    background-color: #009688;
}

.service-icon.orange {
    background-color: #ff9800;
}

/* Feature Icons */
.feature-icon {
    margin-bottom: 20px;
    color: #0073ec;
}

/* Stand Out Section */
.stand-out-section .card {
    transition: all 0.3s ease;
}

.stand-out-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Related Services */
.related-service-card {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.related-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* FAQ Section */
.faq-card {
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.faq-header {
    padding: 15px 20px;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-header:hover {
    background-color: #e9ecef;
}

.faq-header h6 {
    margin: 0;
    font-weight: 600;
}

.faq-header i {
    transition: transform 0.3s ease;
}

.faq-header[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.card-body {
    padding: 20px;
}

/* Contact Form */
.contact-form label {
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-form .form-control {
    padding: 12px 15px;
    border-radius: 6px;
}

.contact-form textarea {
    min-height: 120px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-overlay {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .hero-overlay {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Cloud Management Specific Styles */

/* Colors Bar */
.cloud-colors-bar {
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), #0097a7, #00bcd4, #26c6da);
}

/* Gradient Background */
.management-gradient {
    background: linear-gradient(135deg, var(--primary-color), #0097a7);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 0;
    height: auto;
}

.hero-background {
    background-image: url('https://images.pexels.com/photos/1181467/pexels-photo-1181467.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    background-color: rgba(63, 136, 209, 0.85);
    width: 100%;
    height: 100%;
    padding: 13rem 6rem;
}

.hero-section h1 {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-section p {
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.primary-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background-color: #2d9249;
    color: white;
}

.outline-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.outline-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.outline-btn-light {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.outline-btn-light:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Service Cards */
.service-card {
    border: 1px solid rgba(52, 168, 83, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 24px;
    color: white;
}

.service-icon.blue {
    background-color: #0097a7;
}

.service-icon.green {
    background-color: var(--primary-color);
}

.service-icon.red {
    background-color: #26c6da;
}

.service-icon.yellow {
    background-color: #00bcd4;
}

.service-icon.purple {
    background-color: #00838f;
}

.service-icon.teal {
    background-color: #006064;
}

.service-icon.orange {
    background-color: #4dd0e1;
}

/* Feature Icons */
.feature-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Stand Out Section */
.stand-out-section .card {
    transition: all 0.3s ease;
}

.stand-out-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Case Study Cards */
.case-study-card {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.case-study-date {
    font-size: 0.9rem;
}

/* Related Services */
.related-service-card {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.related-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* FAQ Section */
.faq-card {
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.faq-header {
    padding: 15px 20px;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-header:hover {
    background-color: #e9ecef;
}

.faq-header h6 {
    margin: 0;
    font-weight: 600;
}

.faq-header i {
    transition: transform 0.3s ease;
}

.faq-header[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.card-body {
    padding: 20px;
}

/* Contact Form */
.contact-form label {
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-form .form-control {
    padding: 12px 15px;
    border-radius: 6px;
}

.contact-form textarea {
    min-height: 120px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-overlay {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .hero-overlay {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
}


.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Custom styles for Cloud Management */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.badge.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}