.elementor-4130 .elementor-element.elementor-element-ee03631{--display:flex;}@media(min-width:768px){.elementor-4130 .elementor-element.elementor-element-ee03631{--content-width:1600px;}}/* Start custom CSS for html, class: .elementor-element-8646af5 *//* === ROKOMAY BRIGHT & PROFESSIONAL THEME === */

/* --- FONT IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* --- ROOT VARIABLES --- */
:root {
    --primary-color: #007BFF;
    --primary-hover: #0056b3;
    --secondary-color: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --text-dark: #212529;
    --text-light: #495057;
    --border-color: #dee2e6;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}

/* --- GLOBAL STYLES --- */
.rokomay-bright-pro {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-light);
    line-height: 1.8;
}

.rokomay-bright-pro .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.rokomay-bright-pro section {
    padding: 100px 0;
}

.rokomay-bright-pro h1,
.rokomay-bright-pro h2,
.rokomay-bright-pro h3 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.rokomay-bright-pro h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

.rokomay-bright-pro h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    text-align: center;
    margin-bottom: 16px;
}

.rokomay-bright-pro h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.rokomay-bright-pro p {
    margin-bottom: 20px;
}

.rokomay-bright-pro .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

/* --- BUTTONS & PILLS --- */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.pill-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: #e7f3ff;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

/* --- 1. HERO SECTION --- */
.hero-bright {
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content p {
    font-size: 1.1rem;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

/* --- 2. SERVICES SECTION --- */
.services-bright {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.service-card .icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

/* --- 3. SHOWCASE SECTION --- */
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.showcase-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.showcase-content h2 {
    text-align: left;
    margin-bottom: 24px;
}

/* --- 4. TESTIMONIAL SECTION --- */
.testimonial-bright {
    background-color: var(--bg-light);
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 100px;
    color: #e7f3ff;
    line-height: 1;
    z-index: 0;
}

.testimonial-card p, .testimonial-card cite {
    position: relative;
    z-index: 1;
}

.testimonial-quote {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.testimonial-author {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

/* --- 5. CTA SECTION --- */
.cta-bright {
    background-color: var(--primary-color);
    text-align: center;
}

.cta-bright h2, .cta-bright p {
    color: #fff;
}
.cta-bright p {
    max-width: 600px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

.cta-bright .btn-primary {
    background-color: #fff;
    color: var(--primary-color);
}

.cta-bright .btn-primary:hover {
    background-color: #f0f0f0;
    color: var(--primary-hover);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-image {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .rokomay-bright-pro section { padding: 80px 0; }
    .rokomay-bright-pro h1 { font-size: 2.2rem; }
    .rokomay-bright-pro h2 { font-size: 1.8rem; }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    .showcase-content h2 {
        text-align: center;
    }
    .showcase-image {
        margin-top: 40px;
    }
}/* End custom CSS */


