/* =========================================
   RCS WHITE CREAMY PREMIUM THEME
========================================= */

:root {
    --cream-bg: #fdfaf6;
    --soft-cream: #f6f1e8;
    --logo-blue: #1a4fa3;
    --light-blue: #2f6edb;
    --soft-text: #5f6b7a;
    --dark-text: #1f2d3d;
}

/* GLOBAL */
body {
    background: var(--cream-bg);
    color: var(--dark-text);
    font-family: 'Roboto', sans-serif;
}

/* HEADINGS */
h1, h2, h3, h4, h5, h6 {
    color: var(--logo-blue);
    font-weight: 600;
}

/* PARAGRAPH */
p {
    color: var(--soft-text);
}

/* HEADER */
.header-area,
.header-content-area {
    background: #ffffff;
    border-bottom: 1px solid rgba(26, 79, 163, 0.1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

/* MENU */
.main-menu ul li a {
    color: var(--dark-text);
    font-weight: 500;
    transition: 0.3s ease;
}

.main-menu ul li a:hover {
    color: var(--logo-blue);
}

/* SLIDER */
.slider-area {
    background: linear-gradient(
        rgba(255, 255, 255, 0.85),
        rgba(255, 255, 255, 0.85)
    ),
    url('../images/ai-bg.jpg') center/cover no-repeat;
}

/* HERO TEXT */
.single-item-content h2 {
    color: var(--logo-blue);
}

.single-item-content p {
    color: var(--soft-text);
}

/* BUTTON STYLE */
.winxpro-btn {
    background: var(--logo-blue);
    border: none;
    color: #ffffff;
    border-radius: 30px;
    padding: 10px 28px;
    transition: 0.3s ease;
}

.winxpro-btn:hover {
    background: var(--light-blue);
    box-shadow: 0 8px 20px rgba(26, 79, 163, 0.25);
}

/* CARDS */
.single-box-item,
.single-service-item {
    background: #ffffff;
    border: 1px solid rgba(26, 79, 163, 0.08);
    border-radius: 15px;
    padding: 25px;
    transition: 0.3s ease;
}

.single-box-item:hover,
.single-service-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(26, 79, 163, 0.15);
}

/* ICONS */
.single-service-item i {
    color: var(--logo-blue);
}

/* SECTION TITLES */
.section-title h3 {
    color: var(--logo-blue);
    position: relative;
}

.section-title h3:after {
    content: "";
    width: 60px;
    height: 3px;
    background: var(--logo-blue);
    display: block;
    margin-top: 10px;
}

/* CTA */
.cta-area {
    background: linear-gradient(135deg, #1a4fa3, #2f6edb);
    color: #ffffff;
}

.cta-area h2 {
    color: #ffffff;
}

/* FOOTER - PREMIUM BLACK VERSION */
.footer-area {
    background: #0e0e0e;   /* deep black */
    border-top: 2px solid #1a4fa3;  /* logo blue border */
    padding-top: 60px;
    padding-bottom: 30px;
}

/* Footer Text */
.footer-area,
.footer-area p {
    color: #cfcfcf;
}

/* Footer Links */
.footer-area a {
    color: #ffffff;
    transition: 0.3s ease;
}

.footer-area a:hover {
    color: #1a4fa3;  /* logo blue hover */
}

/* Footer Headings */
.footer-area h1,
.footer-area h2,
.footer-area h3,
.footer-area h4,
.footer-area h5,
.footer-area h6 {
    color: #ffffff;
}
/* IMAGE HEIGHT */ .about-us-img { min-height: 400px !important; }
.single-item-content h1,
.single-item-content h2,
.single-item-content h3 {
    color: #ffffff !important;
}

.single-item-content p {
    color: #ffffff !important;
}
/* REGISTER BUTTON */
.register-btn {
    display: inline-block;
    background: #1a4fa3;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(26, 79, 163, 0.25);
}

.register-btn:hover {
    background: #2f6edb;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 79, 163, 0.35);
}