/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */


 

/* Root Variables */
:root {
    --baby-blue: #89CFF0;
    --navy-blue: #000080;
    --light-bg: #F0F8FF;
	--primary-pink: #1c4597;
}

/* Base Styles */
body {
    font-family: 'Karla', sans-serif;
    line-height: 1.2;
    color: #333;
	background-color:#E5F3FD;
}



/* Navbar */
        .navbar {
            background: #1c4597;
            padding: 5px 0;
        }

        .navbar-brand img {
            height: 30px;
        }

        .navbar-nav .nav-link {
            color: white !important;
            margin: 0 15px;
            font-weight: 500;
			cursor:pointer;
        }
		
		.btn-book {
            background: var(--primary-pink);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 600;
        }

        .btn-call {
            color: white;
            border: none;
            background: transparent;
            margin-right: 15px;
        }



/* Hero Section */
        .hero-section {
            background: linear-gradient(
    180deg,
    #e0e0e0 0%,
    #e8eef2 30%,
    #dceaf5 70%,
    #d0e7f7 100%
  );
  min-height: 500px;
  padding: 60px 20px;
            padding: 40px 0;
        }

        .hero-title {
            color: #1a1a1a;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
			line-height:2rem;
        }

        .hero-subtitle {
            color: #1c4597;
            font-size: 1.1rem;
            margin-bottom: 30px;
        }

        .btn-check-prices {
            background: var(--primary-pink);
            color: white;
            border: none;
            padding: 5px 35px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .trustpilot-section {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 10px;
        }

        .trustpilot-stars {
            color: #00b67a;
            font-size: 1.2rem;
        }

        .hero-images {
            position: relative;
        }

        .hero-images img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .img-microwave {
            width: 48%;
            position: absolute;
            right: 0;
            top: 0;
			background-color: rgba(137, 207, 240, 0.9); /* 50% opaque baby blue */  
        }

        .img-washing {
            width: 75%;
            margin-top: 50px;
        }

        /* Service Categories */
        .service-categories {
            background: #1c4597;
            padding: 40px 0;
            border-top: 3px solid #e9ecef;
        }

        .service-item {
            text-align: center;
            padding: 20px 10px;
            cursor: pointer;
            transition: all 0.2s;
            border-bottom: 5px solid transparent;
			background-color: #FDFD96;
			border-radius:5px;
        }

        .service-item:hover {
            background: #f8f9fa;
        }

        .service-item.active {
            border-bottom: 3px solid var(--primary-blue);
        }

        .service-item i {
            font-size: 2rem;
            color: #6c757d;
            margin-bottom: 10px;
        }

        .service-item.active i {
            color: var(--primary-blue);
        }

        .service-item span {
            display: block;
            color: #6c757d;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .service-item.active span {
            color: var(--primary-blue);
        }
		
		
 

/* Buttons */
.btn-primary {
    background-color: var(--baby-blue);
    border-color: var(--baby-blue);
    color: var(--navy-blue);
    font-weight: 600;
    padding: 14px 35px;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #6eb5d9;
    border-color: #6eb5d9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(137, 207, 240, 0.4);
}

.btn-cta {
    background: #e91e8c;
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta:hover {
    background: #d01a7d;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 30, 140, 0.4);
}

/* Section Titles */
.section-title {
    color: var(--navy-blue);
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    line-height: 1.8;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: white;
}

.service-card {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 40px 30px;
    transition: all 0.1s;
    height: 100%;
    background: white;
}

.service-card:hover {
    cursor:pointer;
    border-color: #c50014;
}

.service-icon {
    font-size: 3.5rem;
    color: var(--baby-blue);
    margin-bottom: 25px;
}

.service-card h3 {
    color: var(--navy-blue);
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.service-card p {
    color: #555;
    line-height: 1.4;
    font-size: 1rem;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2px 0;
}

.feature-list li {
    padding: 2px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1rem;
    color: #555;
}

.feature-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--baby-blue);
    font-size: 1rem;
}

/* Contact Cards */
.contact-card {
    background-color: rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: 4px;
    text-align: center;
    height: 100%;
}

.contact-card i {
    color: var(--baby-blue);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-card a {
    color: white;
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--baby-blue);
}

/* Industries Section */
.industries-section {
    padding: 100px 0;
    background-color: white;
}

.industry-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px 25px;
    transition: all 0.3s;
    height: 100%;
    background: white;
    text-align: left;
}

.industry-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    border-color: var(--baby-blue);
}

.industry-card .service-icon {
    font-size: 3rem;
    text-align: left;
    display: block;
    margin-bottom: 20px;
}

.industry-card h4 {
    color: var(--navy-blue);
    font-weight: 600;
    margin-bottom: 15px;
    text-align: left;
}

.industry-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.stat-card {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--navy-blue);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy-blue) 0%, #1e3a8a 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Trustpilot Section */
.trustpilot-section {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.trustpilot-section span {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.stars {
    display: flex;
    gap: 3px;
}

.star {
    color: #00b67a;
    font-size: 1.3rem;
}

.trustpilot-logo {
    color: white;
    font-weight: 700;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-section {
        padding: 50px 0;
        min-height: auto;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .hero-image {
        margin-top: 3rem;
    }

    .diagonal-overlay {
        display: none;
    }

    .hero-section::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .btn-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .trustpilot-section {
        margin-top: 2rem;
    }
}





 /* CTA Section */
.cta-section2 {
	background: #1c4597;
	padding: 60px 0;
	text-align: center;
	color: white;
}

.cta-title2 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 30px;
}

.cta-buttons2 {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-book-now2 {
	background: var(--primary-pink);
	color: white;
	border: none;
	padding: 12px 40px;
	border-radius: 5px;
	font-weight: 600;
	font-size: 1rem;
}

.btn-request-quote2 {
	background: transparent;
	color: white;
	border: 2px solid white;
	padding: 12px 40px;
	border-radius: 5px;
	font-weight: 600;
	font-size: 1rem;
}

.btn-book-now2:hover,
.btn-request-quote2:hover {
	opacity: 0.9;
}



  .card {
	height: 100%;
	border: none;
	border-radius: 5px;
	overflow: hidden;
	transition: transform 0.1s ease;
}


.card-body {
	padding: 2rem;
}

.large-card {
	background: #FFFFED;
	color: white;
	min-height: 400px;
}

.card-blue {
	background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	color: white;
}

.card-orange {
	background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
	color: white;
}

.card-yellow {
	background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
	color: white;
}

.card-purple {
	background-image: radial-gradient(circle, #F5F5F5, #FFEE8C); /* Light grey from the center, fading to a slightly darker light grey at the edges */
}

.card-cyan {
	background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
	color: white;
}

.card-pink {
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	color: white;
}

.card-green {
	background: linear-gradient(135deg, #4facfe 0%, #43e97b 100%);
	color: white;
}

.card-dark {
	background: linear-gradient(135deg, #434343 0%, #000000 100%);
	color: white;
}

.badge {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.card-title {
	font-weight: 700;
	font-size: 1.4rem;
	margin-bottom: 1rem;
}

.card-subtitle {
	opacity: 0.9;
	font-size: 0.875rem;
}


.bgpink {
	background:#FDFD96 ;
}


/* Alternative: More blended version */
.gradienta {
  background:#c50014;
}

 
/* Remove all styling and decorations from links */

/* Reset all link states */
a,
a:link,
a:visited,
a:hover,
a:active,
a:focus {
  /* Remove underline */
  text-decoration: none;
  
  /* Inherit text color from parent */
  color: inherit;
  
 
  /* Reset opacity */
  opacity: inherit;
}

/* Optional: If you want to keep the pointer cursor for usability */
a {
  cursor: pointer;
}

/* Remove focus outline (be careful with accessibility) */
 

/* If you want to maintain accessibility, consider adding a subtle focus indicator */
a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

 



















/* Footer */
        .footer {
            background: #f8f9fa;
            padding: 50px 0 30px;
        }

        .footer h6 {
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 0.9rem;
            color: #1a1a1a;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 12px;
        }

        .footer ul li a {
            color: #6c757d;
            text-decoration: none;
            font-size: 0.85rem;
        }

        .footer ul li a:hover {
            color: var(--primary-blue);
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid #dee2e6;
            border-radius: 5px;
        }

        .newsletter-form button {
            background: var(--primary-pink);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 5px;
            font-weight: 600;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid #dee2e6;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6c757d;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background: var(--primary-blue);
            color: white;
            border-color: var(--primary-blue);
        }

        @media (max-width: 768px) {
            .brands-grid {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            }
        }

