/* ====================================================
   Custom Styles for Davinci Maintenance Inc
   ==================================================== */

/* Logo Control */
.header-top-area .logo img {
    max-width: 100px !important;
    height: auto !important;
    transition: all 0.3s ease;
    border-radius: 0 !important;
}

.header-top-area .logo img:hover {
    transform: scale(1.05);
}

/* Responsive Logo */
@media (max-width: 768px) {
    .header-top-area .logo img {
        max-width: 150px !important;
    }
}

@media (max-width: 480px) {
    .header-top-area .logo img {
        max-width: 120px !important;
    }
}

/* Hero Section Styles */
.hero-area {
    min-height: 100vh;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    padding-right: 30px;
}

.hero-content h5 {
    color: #ff6900;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #2c3e50;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #6c757d;
    margin: 25px 0 35px 0;
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

.hero-shape2 {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: -1;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .hero-area {
        padding: 80px 0;
        min-height: 90vh;
    }
    
    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .hero-content h5 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 16px;
        margin: 20px 0 30px 0;
    }
}

/* Why Choose Us Section - Contact Area */
.contact-area {
    background: #edffed !important; /* Light blue solid background */
    background-image: none !important;
    padding: 80px 0;
    position: relative;
}

.contact-area::before {
    display: none !important; /* Remove any pseudo-element backgrounds */
}

.contact-shape {
    display: none !important; /* Hide decorative shapes */
}

.section-sub-title {
    color: #1976d2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-single-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-single-box:hover {
    transform: translateY(-5px);
}

.contact-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ff6900;
    padding: 15px;
}

.contact-contant h3 {
    color: #2c3e50;
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-contant p {
    color: #6c757d;
    line-height: 1.6;
}

/* Portfolio Masonry Gallery */
.portfolio-masonry {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.portfolio-item {
    padding: 15px;
    margin-bottom: 30px;
}

/* Responsive adjustments for portfolio images */
@media (max-width: 768px) {
    .portfolio-thumb img {
        height: 200px;
    }
    
    .portfolio-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .portfolio-thumb img {
        height: 180px;
    }
    
    .portfolio-masonry {
        margin: 0 -10px;
    }
    
    .portfolio-item {
        padding: 10px;
        margin-bottom: 15px;
    }
}

.portfolio-single-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-single-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    flex: 1;
    min-height: 0;
}

.portfolio-thumb img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    transition: transform 0.3s ease;
    display: block;
}

.portfolio-single-box:hover .portfolio-thumb img {
    transform: scale(1.05);
}

.portfolio-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    border-radius: 0 0 20px 20px;
}

.portfolio-top-title {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6900;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Global 20px Border Radius */
img, 
.service-single-box, 
.work-single-box, 
.contact-single-box, 
.portfolio-single-box, 
.blog-single-box, 
.team-single-box, 
.testi-single-box, 
.about-thumb img, 
.hero-image img,
.service-thumb img,
.blog-thumb img,
.team-thumb img,
.testi-thumb img,
input[type="text"],
input[type="email"],
textarea,
select,
button,
.btn,
.cleeny-btn a {
    border-radius: 20px !important;
}

/* Service boxes */
.service-single-box {
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-thumb {
    position: relative;
    overflow: hidden;
}

.service-thumb img {
    border-radius: 20px 20px 0 0;
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.service-content2 {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content2 .content-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: center;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex: 1;
}

.service-list li {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.service-list li i {
    color: #ff6900;
    margin-right: 10px;
    font-size: 18px;
}

.service-btn {
    margin-top: auto;
    text-align: center;
}

.service-btn a {
    background: #ff6900;
    color: white;
    padding: 12px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    transition: background 0.3s ease;
}

.service-btn a:hover {
    background: #e55a00;
}

.service-btn a i {
    margin-left: 8px;
}

/* Responsive Design for Service Boxes */
@media (max-width: 768px) {
    .service-single-box {
        margin-bottom: 30px;
    }
    
    .service-thumb img {
        height: 200px;
    }
    
    .service-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .service-list li {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .service-content2 {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .service-thumb img {
        height: 180px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-list li {
        font-size: 18px;
    }
    
    .service-btn a {
        font-size: 18px;
        padding: 10px 20px;
    }
}

/* Work process boxes */
.work-single-box {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Blog boxes */
.blog-single-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Team boxes */
.tean-single-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonial boxes */
.testi-single-box {
    border-radius: 20px;
    padding: 30px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
p.section-title-hero {
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 300;
    font-family: "Poppins";
    width: 96%;
    margin: 0;
    padding: 10px 0 24px;
}

.section-title-contact {
    color: #ffffff;
}

/* Why Choose Us Section */
.why-choose-area {
    background: #e3f2fd !important; /* Light blue solid background */
    background-image: none !important;
    padding: 80px 0; /* Same padding as contact area */
    position: relative;
}

.why-choose-area::before {
    display: none !important; /* Remove any pseudo-element backgrounds */
}

.why-choose-area .section-sub-title {
    color: #1976d2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 18px;
    text-align: center;
    margin-bottom: 15px;
}

.why-choose-area .section-main-title {
    color: #2c3e50;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 50px;
}

.benefit-single-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-single-box:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-icon i {
    font-size: 48px;
    color: #ff6900; /* Orange color for icons */
    background: rgba(255, 105, 0, 0.1);
    padding: 20px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-content h3 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.benefit-content p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 18px;
    text-align: center;
    margin: 0;
}

/* Responsive Design for Why Choose Us */
@media (max-width: 768px) {
    .why-choose-area .section-main-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .benefit-single-box {
        margin-bottom: 20px;
        padding: 25px;
    }
    
    .benefit-icon i {
        font-size: 40px;
        width: 70px;
        height: 70px;
        padding: 15px;
    }
    
    .benefit-content h3 {
        font-size: 18px;
    }
    
    .benefit-content p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .why-choose-area {
        padding: 60px 0;
    }
    
    .why-choose-area .section-main-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .benefit-single-box {
        padding: 20px;
    }
    
    .benefit-icon i {
        font-size: 36px;
        width: 60px;
        height: 60px;
        padding: 12px;
    }
    
    .benefit-content h3 {
        font-size: 18px;
    }
    
    .benefit-content p {
        font-size: 18px;
    }
}

/* Company Branding Area */
.company-branding-area {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.company-branding-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.company-branding-content {
    position: relative;
    z-index: 2;
}

.company-icon {
    margin-bottom: 30px;
}

.company-icon i {
    font-size: 80px;
    color: #ffffff;
    background: rgba(255, 105, 0, 0.1);
    padding: 40px;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 105, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 105, 0, 0);
    }
}

.company-name {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.company-tagline {
    font-size: 20px;
    color: #ecf0f1;
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Company Branding */
@media (max-width: 768px) {
    .company-branding-area {
        padding: 60px 0;
    }
    
    .company-icon i {
        font-size: 90px;
        width: 160px;
        height: 160px;
        padding: 35px;
    }
    
    .company-name {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .company-tagline {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .company-branding-area {
        padding: 50px 0;
    }
    
    .company-icon i {
        font-size: 70px;
        width: 140px;
        height: 140px;
        padding: 30px;
    }
    
    .company-name {
        font-size: 28px;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }
    
    .company-tagline {
        font-size: 18px;
    }
}

/* Web Design Credit Link */
.web-design-credit {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    padding: 2px 0;
}

.web-design-credit:hover {
    color: #ff6900 !important;
    border-bottom: 1px solid #ff6900;
    transform: translateY(-1px);
}

.web-design-credit:focus {
    outline: 2px solid #ff6900;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Responsive adjustments for web design credit */
@media (max-width: 768px) {
    .web-design-credit {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .web-design-credit {
        font-size: 12px;
        display: block;
        margin-top: 5px;
    }
}

/* Footer Navigation Menu */
.footer-menu {
    margin-top: 20px;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-nav li {
    margin: 0;
    padding: 0;
}

.footer-nav li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: block;
    padding: 4px 0;
    position: relative;
}

.footer-nav li a:hover {
    color: #ff6900;
    transform: translateX(5px);
}

.footer-nav li a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #ff6900;
    transition: width 0.3s ease;
}

.footer-nav li a:hover::before {
    width: 10px;
}

/* Responsive adjustments for footer navigation */
@media (max-width: 768px) {
    .footer-nav {
        gap: 5px;
    }
    
    .footer-nav li a {
        font-size: 15px;
        padding: 3px 0;
    }
}

@media (max-width: 480px) {
    .footer-nav {
        gap: 4px;
    }
    
    .footer-nav li a {
        font-size: 14px;
        padding: 2px 0;
    }
    
    .footer-nav li a::before {
        left: -12px;
    }
}

/* Mobile Menu Customization */
.mobile-menu-area {
    background: #66CC66 !important;
}

.mobile-menu {
    background: #66CC66 !important;
}

.mobile-menu .cleeny_menu ul li a {
    color: #ffffff !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-menu .cleeny_menu ul li a:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

/* Desktop Header - Keep Original White Background */
.header-top-area {
    background: #ffffff !important;
}

.cleeny_nav_manu {
    background: #66CC66 !important;
}

/* Desktop Header Text Colors - Original Colors */
.header-top-area .cleeny-social-icon ul li a {
    color: #2c3e50 !important;
}

.header-top-area .cleeny-social-icon ul li a i {
    color: #66CC66 !important;
}

.cleeny_nav_manu .cleeny_menu ul li a {
    color: #ffffff !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cleeny_nav_manu .cleeny_menu ul li a:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

/* Sticky Header */
#sticky-header {
    background: #66CC66 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#sticky-header.sticky {
    background: #66CC66 !important;
}

/* Logo adjustments for green background */
.header-address-logo img {
    filter: brightness(1) !important;
}

/* Mobile Menu Logo Fix */
.mean-container .mean-bar {
    background: #66CC66 !important;
}

.mean-container .mean-bar::before {
    content: '';
    background-image: url('assets/img/davinci-maintenance-white-logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    width: 150px;
    height: 40px;
    display: inline-block;
    
}

/* Hide any text content in mobile menu bar */
.mean-container .mean-bar {
    font-size: 0 !important;
    text-indent: -9999px;
    overflow: hidden;
}

.mean-container a.meanmenu-reveal {
    background: transparent !important;
    color: #ffffff !important;
    font-size: 16px !important;
    text-indent: 0 !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

.whatsapp-btn i {
    font-size: 32px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover i {
    color: #ffffff;
    transform: scale(1.1);
}

/* WhatsApp Pulse Animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3), 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive adjustments for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-btn i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-btn i {
        font-size: 24px;
    }
}