/********** CSS **********/
:root {
    --primary: #FFE468;
    --secondary: #8CC641;
    --light: #F2F2F2;
    --dark: #272630;
}

.btn {
    font-weight: 700;
    transition: .5s;
}

.btn:hover {
    -webkit-box-shadow: 0 8px 6px -6px #555555;
    -moz-box-shadow: 0 8px 6px -6px #555555;
    box-shadow: 0 8px 6px -6px #555555;
}

.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 30px;
    padding: 35px 0;
    font-size: 18px;
    color: var(--light);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (min-width: 992px) {
    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        bottom: 0;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
        z-index: 9283982 !important;
        
    }
    .navbar-nav{
        z-index: 9898384939 !important;
        
    }

    
}

.bg-hero {
    background: url(../img/hero.jpg) top right no-repeat;
    background-size: contain;
}

.hero{
    min-height: 650px;
    background: url(../img/P1.jpg);
    background-size: cover;
    background-position: center;
}
.abc{
        font-weight: bold;
    }

@media (max-width: 576px){
    .hero{
        /* min-height: 450px !important; */
        background: url(img/PM3.jpg) !important;
        background-size: 100% 100% !important;
        background-position: center !important;
        height: 100vh !important;
        position: relative;
        overflow: hidden;
    }

    .hero::before{
        width: 100%;
        height: 100% !important;
        content: '';
        position: absolute;
        top: 0px;
        left: 0px;
        background-color: rgba(255, 255, 255, 0.6);
        /* z-index: 1; */
        /* padding: 40px; */
    }

    .abc{
        font-weight: bold;
    }

    .hero2{
        z-index: 90;
    }
    
    
}

@media (max-width: 991.98px) {
    .bg-hero {
        background-size: cover;
    }
}

#btnContact{
    padding: 20px 40px;
}

.about-start,
.about-end {
    background: url(../img/about-bg.jpg) center center no-repeat;
    background-size: contain;
}

@media (min-width: 992px) {
    .about-start {
        position: relative;
        margin-right: -90px;
        z-index: 1;
    }

    .about-end {
        position: relative;
        margin-left: -90px;
        z-index: 1;
    }
}

.service-item,
.contact-item {
    background: url(../img/service.jpg) top center no-repeat;
    background-size: cover;
    transition: .5s;
}

.service-item:hover,
.contact-item:hover {
    background: url(../img/service.jpg) bottom center no-repeat;
    background-size: cover;
}

.service-item .service-icon,
.contact-item .contact-icon {
    margin-top: -50px;
    width: 100px;
    height: 100px;
    color: var(--secondary);
    background: #FFFFFF;
    transform: rotate(-45deg);
}

.service-item .service-icon div,
.contact-item .contact-icon div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    transition: .5s;
}

.service-item .service-icon i,
.contact-item .contact-icon i {
    transform: rotate(45deg);
    transition: .5s;
}

.service-item:hover .service-icon div,
.contact-item:hover .contact-icon div {
    background: var(--secondary);
}

.service-item:hover .service-icon i,
.contact-item:hover .contact-icon i {
    color: var(--primary);
}

.service-item a.btn {
    position: relative;
    bottom: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: 0;
    opacity: 1;
}

.bg-quote {
    background: url(../img/quote.jpg) top right no-repeat;
    background-size: contain;
}
@media (max-width: 576px){
    #quoteImg{
        width: 100% !important;
        margin-top: 20px;
        border-radius: 10px !important;
}
}


@media (max-width: 991.98px) {
    .bg-quote {
        background-size: cover;
    }
}

.team-item {
    position: relative;
    margin-bottom: 45px;
}

.team-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url(../img/team.jpg) bottom center no-repeat;
    background-size: cover;
    height: 90px;
    padding: 0 30px;
    right: 45px;
    left: 45px;
    bottom: -45px;
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-text {
    height: 100%;
    bottom: 0;
}

.team-social {
    position: absolute;
    transition: .1s;
    transition-delay: .0s;
    opacity: 0;
}

.team-item:hover .team-social {
    transition-delay: .3s;
    opacity: 1;
}

.bg-testimonial {
    background: url(../img/testimonial.jpg) top left no-repeat;
    background-size: contain;
}

@media (max-width: 991.98px) {
    .bg-testimonial {
        background-size: cover;
    }
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next{
    position: relative;
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--secondary);
    font-size: 22px;
    border-radius: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .owl-item img {
    width: 60px;
    height: 60px;
}

.bg-call-to-action {
    background: url(../img/call-to-action.jpg) top right no-repeat;
    background-size: contain;
}

.bg-footer {
    background: url(../img/footer.jpg) center center no-repeat;
    background-size: contain;
}

@media (max-width: 991.98px) {
    .bg-call-to-action,
    .bg-footer {
        background-size: cover;
    }
}

/* =========================================================
   WHITE PAINTING - Logo Inspired Color System
   ========================================================= */

:root {
    --primary: #7B2CBF;      /* Purple */
    --secondary: #F97316;    /* Orange */
    --light: #F7F7F7;        /* Clean white */
    --dark: #17121F;         /* Deep charcoal */
    --wp-blue: #00A9D6;
    --wp-yellow: #F9C80E;
    --wp-green: #55B83E;
    --wp-red: #E63946;
}

/* Bootstrap color overrides */
.bg-primary {
    background-color: var(--primary) !important;
}

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

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

.btn-primary {
    color: #fff !important;
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #64209D !important;
    border-color: #64209D !important;
}

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

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

.border-secondary {
    border-color: var(--secondary) !important;
}

.btn-secondary {
    color: #fff !important;
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: #D95D0B !important;
    border-color: #D95D0B !important;
}

/* Navbar */
.navbar-dark {
    background-color: var(--dark) !important;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--wp-yellow) !important;
}

.navbar-dark .navbar-nav .nav-link::before {
    background: linear-gradient(
        90deg,
        var(--primary),
        var(--wp-blue),
        var(--wp-green),
        var(--wp-yellow),
        var(--secondary)
    ) !important;
}

/* Hero - colorful painting feel */
.bg-hero {
    background-color: #F7F4FA !important;
    border-bottom: 7px solid transparent;
    border-image: linear-gradient(
        90deg,
        var(--primary),
        var(--wp-blue),
        var(--wp-green),
        var(--wp-yellow),
        var(--secondary),
        var(--wp-red)
    ) 1;
}

/* Colorful section accents */
.about-start,
.about-end {
    border-left: 7px solid var(--wp-blue);
}

.service-item:hover .service-icon div,
.contact-item:hover .contact-icon div {
    background: var(--wp-blue) !important;
}

.service-item .service-icon div,
.contact-item .contact-icon div {
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    ) !important;
}

.service-item .service-icon,
.contact-item .contact-icon {
    color: var(--primary);
}

/* Quote / CTA sections */
.bg-quote,
.bg-call-to-action {
    background-color: #F7F4FA !important;
    border-top: 6px solid var(--wp-yellow);
    border-bottom: 6px solid var(--wp-blue);
}

/* Testimonial */
.bg-testimonial {
    background-color: #F7F4FA !important;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    background: linear-gradient(135deg, var(--primary), var(--wp-blue)) !important;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #fff !important;
    background: var(--secondary) !important;
}

/* Blog cards */
.blog-item.bg-primary {
    background: linear-gradient(
        145deg,
        var(--primary),
        #5D1A91
    ) !important;
}

.blog-item .bg-secondary {
    background-color: var(--secondary) !important;
}

/* Footer */
.bg-footer {
    background-color: var(--dark) !important;
}

.bg-footer .text-primary {
    color: var(--wp-yellow) !important;
}

.bg-footer .text-secondary {
    color: var(--secondary) !important;
}

/* Footer bottom strip */
.container-fluid.bg-primary.text-dark {
    background: linear-gradient(
        90deg,
        var(--primary),
        var(--wp-blue),
        var(--wp-green),
        var(--wp-yellow),
        var(--secondary)
    ) !important;
}

/* Main call-to-action buttons */
.btn-outline-secondary {
    color: var(--secondary) !important;
    border-color: var(--secondary) !important;
}

.btn-outline-secondary:hover {
    color: #fff !important;
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
}

/* Small colorful details */
.form-control:focus {
    border-color: var(--wp-blue) !important;
    box-shadow: 0 0 0 .2rem rgba(0, 169, 214, .15) !important;
}

.back-to-top {
    background: linear-gradient(135deg, var(--secondary), var(--primary)) !important;
    border: none !important;
}

.back-to-top:hover {
    background: var(--wp-blue) !important;
}



:root {
            --wp-purple: #7B2CBF;
            --wp-blue: #00A9D6;
            --wp-orange: #F97316;
            --wp-yellow: #F9C80E;
            --wp-green: #55B83E;
            --wp-red: #E63946;
            --wp-dark: #17121F;
        }

        body {
            font-family: 'Roboto', sans-serif;
            color: #29252e;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Roboto Condensed', sans-serif;
        }

        .wp-gradient {
            background: linear-gradient(90deg,
                var(--wp-purple),
                var(--wp-blue),
                var(--wp-green),
                var(--wp-yellow),
                var(--wp-orange),
                var(--wp-red));
        }

        .wp-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .wp-logo-mark {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            background: conic-gradient(
                var(--wp-purple),
                var(--wp-blue),
                var(--wp-green),
                var(--wp-yellow),
                var(--wp-orange),
                var(--wp-red),
                var(--wp-purple)
            );
            box-shadow: 0 5px 18px rgba(123, 44, 191, .25);
        }

        .wp-logo-text {
            color: #fff;
            font-size: 27px;
            font-weight: 700;
            letter-spacing: 1px;
            line-height: 1;
        }

        .wp-logo-text span {
            color: var(--wp-yellow);
        }

        .hero-title {
            font-weight: 700;
            line-height: 1.05;
        }

        .hero-title .purple { color: var(--wp-purple); }
        .hero-title .orange { color: var(--wp-orange); }

        .hero-badge {
            display: inline-block;
            padding: 8px 16px;
            border-radius: 50px;
            color: #fff;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: .5px;
            margin-bottom: 18px;

        }

        .color-line {
            width: 90px;
            height: 5px;
            border-radius: 10px;
            margin: 18px auto 25px;
        }

        .service-card {
            border: 0;
            border-radius: 12px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 8px 30px rgba(23, 18, 31, .08);
            transition: .35s;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(23, 18, 31, .15);
        }

        .service-top {
            height: 6px;
        }

        .service-icon-new {
            width: 82px;
            height: 82px;
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 30px;
            margin: -20px auto 20px;
            position: relative;
        }

        .service-purple { background: linear-gradient(135deg, var(--wp-purple), #9D4EDD); }
        .service-blue { background: linear-gradient(135deg, var(--wp-blue), #0077B6); }
        .service-orange { background: linear-gradient(135deg, var(--wp-orange), var(--wp-red)); }

        .about-panel {
            border-radius: 12px;
            padding: 45px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .about-panel::after {
            content: "";
            position: absolute;
            width: 180px;
            height: 180px;
            right: -70px;
            top: -70px;
            border-radius: 50%;
            background: rgba(255,255,255,.12);
        }

        .about-panel-purple {
            background: linear-gradient(135deg, var(--wp-purple), #4C1D6F);
        }

        .about-panel-blue {
            background: linear-gradient(135deg, var(--wp-blue), #0077B6);
        }

        .quote-section {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #F7F3FA, #EEF9FC);
        }

        .quote-section::before {
            content: "";
            position: absolute;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: rgba(249, 200, 14, .18);
            right: -90px;
            top: -90px;
        }

        .quote-card {
            border: 0;
            border-top: 6px solid transparent;
            border-image: linear-gradient(90deg, var(--wp-purple), var(--wp-blue), var(--wp-orange)) 1;
            border-radius: 8px;
            box-shadow: 0 15px 45px rgba(23,18,31,.10);
        }

        .blog-card {
            border: 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 28px rgba(23,18,31,.08);
            height: 100%;
            background: #fff;
        }

        .blog-card img {
            height: 220px;
            object-fit: cover;
        }

        .footer-social a {
            transition: .3s;
        }

        .footer-social a:hover {
            transform: translateY(-3px);
        }

        @media (max-width: 991.98px) {
            .wp-logo-text { font-size: 22px; }
            .about-panel { padding: 30px; }
        }

        .hero{
            background: url(../img/P1.jpg);
            width: 100%;
            height: 120vh;
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
        }

        @media (max-width: 575px) {
        #titleee{
            display: none !important;
        }
        #btnContact{
            margin-top: 10px;
            background-color: #D95D0B;
            color: white !important;
        }
    }
