/* header css start */
nav.navbar {
    z-index: 1000  !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
}

.navbar .btn {
    /* margin-left: 15px !important; */
    font-size: 14px !important;
}

.navbar-light .navbar-brand img {
    height: 50px !important;
}
/* header css end */
/* index css start */
.MSSY {
    background-color: #b62222;
    text-transform: uppercase;
    color: white;
    border-radius: 25px;
    font-size: 20px;
    font-weight: 500;
    line-height: 37px;
    letter-spacing: 0px;
    word-spacing: 0px;
    height: 70px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.MSSY:hover {
    background-color: #083b13;
    color: white;
}

.slick-slide {
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.service-icon {
    width: 160px;
    /* Decreased width */
    height: 160px;
    /* Decreased height */
    margin-bottom: 26px;
    background-color: #ffffff;
    border-radius: 50%;
    /* Keeps the circular shape */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.service-icon img {
    width: 100px;
    /* Reduced image size */
    height: auto;
    /* Maintain aspect ratio */
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Ensure all content is centered */
    justify-content: center;
    text-align: center;
}

.btn-enquiry {
    background-color: #6c757d;
    color: #fff;
    border-radius: 30px;
    padding: 10px 25px;
    transition: background-color 0.3s ease;
}

.btn-enquiry:hover {
    background-color: #073C71;
    color: white;
}

.text-center-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertically center */
    align-items: center;
    /* Horizontally center */
    text-align: center;
}

.about {
    font-size: 30px;
    color: black;
    font-weight: 900;
}

.slider-item {
    position: relative;
    overflow: hidden;
}


.slider-item {
    margin-right: 15px;
}

.image-container {
    background-color: white;
    /* White background */
    width: 310px;
    height: 400px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    /* Optional: rounded corners */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.image-container:hover {
    transform: scale(1.05);
}

.image-container img {
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.3s ease-in-out;
}

.image-container:hover img {
    transform: scale(1.1);
    /* Slight zoom for the image */
}

.text-section h1 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #333;
}

.text-section p {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #555;
}

.btn-call {
    background-color: #28a745;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    margin-top: 1rem;
}

.btn-call:hover {
    background-color: #0e2f44;
}

.stats-box {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
}

.stats-box span {
    color: #28a745;
}

.stats-box p {
    font-size: 1rem;
    margin-top: 0.5rem;
    color: #555;
}

.solar-image {
    max-width: 100%;
    height: auto;
}

.container {
    padding-top: 0rem;
    padding-bottom: 2rem;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    gap: 1rem;
}
.unique-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.unique-icon-container {
    background-color: #16d790;
    width: 140px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.unique-feature-icon {
    font-size: 1.5rem;
    color: #ffffff;
}

.unique-feature-text h5 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.unique-feature-text p {
    margin: 0;
    font-size: 0.9rem;
}
.unique-progress-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 1.25rem;
}

.percentage-text {
    font-weight: bold;
}

.unique-progress-bar {
    transition: width 1s ease;
}
.card {
    height: 100%;
    border: none;
    background-color: white;
}

.stars {
    color: #ffc107;
    font-size: 1.5rem;
}

.slick-slide {
    margin: 0 10px;
}

.slick-prev,
.slick-next {
    color: #000;
}



h4 {
    font-weight: bold;
    color: #333;
}

/* index css end */
/* about css start */
@media screen and (max-width: 480px) {
    .top_side {
        margin-top: 20px !important;
    }
}
/* about css end */
/* product css start */
.card {
    overflow: hidden;
    /* Ensures the image doesn't overflow outside the card */
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Add shadow and scale effects */
}

.card img {
    display: block;
    width: 100%;
    /* Ensure the image spans the card */
    height: auto;
    transition: transform 0.5s ease-in-out;
    /* Smooth zoom effect */
}


.card:hover {
    transform: translateY(-5px);
    /* Slightly raise the card on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    /* Add a shadow effect */
}
@media screen and (max-width: 480px) {
.top_side {
margin-top: 20px !important;
}
}
/* product css end */
.carousel-image1 {
    width: 130px;
    height: 100px;
    object-fit: contain; /* Ensures the image fits within the specified dimensions */
    margin: 0 10px; /* Adds spacing between images */
    display: block;
}

.slick-slider .slick-slide {
    text-align: center; /* Centers the image in each slide */
}

        /* whatsapp_icon */
    
.Whatsapp_btn {
    position: fixed;
    bottom: 0px;
    left: 20px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.Whatsapp_icon {
    color: red;
    width: 50px;
    height: 50px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    box-shadow: 0 0 0 0 #00833b;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;

    
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(0, 206, 0, 0.795);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
    
}

.Phone_btn {
    position: fixed;
    bottom: 0px;
    right: 20px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.Phone_icon {
    color: red;
    width: 50px;
    height: 50px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    box-shadow: 0 0 0 0 #0066ff;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
}