* {
	box-sizing: border-box;
}


@font-face {
    font-family: 'PotroSansBangla';
    src: url('/font/PotroSansBangla-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Apply the font to specific elements */
body, .accordion-item, .accordion-header, .accordion-body, 
.card, .card-header, a, h1, h2, h3, h4, h5,
label, input, span, p, button {
    font-family: 'PotroSansBangla', sans-serif;
}

body {
    font-family: "PotroSansBangla", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    background-color: #fbfbfb;
}




html,
body {
    margin: 0;
    padding: 0;
    background-color: darkblue;


}

html {
	scroll-behavior: smooth;
}

.bg-main-color{
	background-color: darkblue;
}

.bg-second-color{
	background-color: #EB2027;
}

.main-color{
	color: darkblue;
}

.second-color{
	color: #EB2027;
}

.home-product{
	background-color: darkblue;
}

.home-product .card{
	height:430px;
}

.home-product .card img{
	border-radius:5px;
    height:280px;
    object-fit: cover;
}


.home-product, .faq-body{
	padding: 20px;
	color: white;
}

.contact .containers{
	padding: 20px;
}



.home-product a{
	text-decoration: none;
}

h1 span{
	color:#EB2027;
}



nav,
.nav-item {
	display: flex;
}

nav {
	background-image: linear-gradient(
		rgb(0, 0, 71) 13%,
		darkblue 40%,
		rgb(0, 0, 71) 86%
	);
	color: rgba(255, 255, 255, 0.6);
	text-shadow: 0 -2px 0 darkblue;
	cursor: pointer;
	box-shadow: 1px 2px 4px rgb(20, 20, 20), 0 4px 12px rgb(10, 10, 10);
}

.nav-item {
	flex-direction: row-reverse;
	font-size: 0.8999rem;
	line-height: 1rem;
	align-items: center;
	min-width: 120px;
	justify-content: space-between;
	transition: all 80ms ease;

	&.active {
		color: white;
        font-weight: 700;
	}

	&:not(.active):hover {
		color: rgba(255, 255, 255, 0.87);
	}

	&:hover > .icon .subicon {
		height: 32px;
		width: 32px;
		border-radius: 32px;
		top: -16px;
		right: -16px;
		border-color: white;
	}

	&:not(:first-of-type) {
		border-left: 1px solid rgb(60, 60, 60);
	}
	&:not(:last-of-type) {
		border-right: 0.1rem solid darkblue;
	}

	a {
		color: inherit;
		text-decoration: none;
		padding: 1ch;
	}

	.icon {
		padding: 1ch;
		position: relative;

		.subicon {
			text-shadow: none;
			transition: all 40ms ease;
			position: absolute;
			top: -3px;
			right: -3px;
			background: red;
			color: white;
			box-shadow: 0 0 4px rgba(41, 41, 41, 0.405);
			width: 18px;
			height: 18px;
			border-radius: 14px;
			font-size: 0.7em;
			font-weight: 700;
			display: inline-grid;
			place-items: center;
			border: 2px solid mix(white, red);
		}
	}

	.icon > svg {
		max-width: 16px;
	}
}



/* Faq */

  .faq-section .accordion {
	width: 100%;
  }
  
  .accordion-button:focus {
	box-shadow: none;
  }


    
  @media screen and (min-width: 768px) {

	.accordion-button:before {
	  right: 0.75rem;
	}
  
	.accordion-button.collapsed:after {
	  right: 1.1875rem;
	}
  
	.faq-section .accordion-button h5 {
	  margin-right: 0px;
	}
  }
  



  /* contact us */

.contact {
    padding: 30px 0;
}

.contact .heading h1 {
    font-weight: 700;
    margin: 0;
    padding: 0;
	color: darkblue;

}

.contact .heading h1 span {
    color: #EB2027;
}

.contact .heading p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #999999;
    margin: 20px 0 60px;
    padding: 0;
}

.contact .form-control {
    padding: 25px;
    font-size: 13px;
    margin-bottom: 10px;
    background: #f9f9f9;
    border: 0;
}

.contact button.btn {
    padding: 10px;
    font-size: 15px;
    background: #EB2027;
    color: #ffffff;
}

.contact .title h3 {
    font-size: 18px;
    font-weight: 600;
}

.contact .title p {
    font-size: 14px;
    font-weight: 400;
    color: #999;
    line-height: 1.6;
    margin: 0 0 40px;
}

.contact .content .info {
    margin-top: 30px;
}
.contact .content .info i {
    font-size: 30px;
    padding: 0;
    margin: 0;
    color: #02434b;
    margin-right: 20px;
    text-align: center;
    width: 20px;
}
.contact .content .info h4 {
    font-size: 13px;
    line-height: 1.4;
}

.contact .content .info h4 span {
    font-size: 13px;
    font-weight: 300;
    color: #999999;
}

/* Change input field border color on focus */
.contact input:focus, .form-group textarea:focus {
    outline: none; /* Remove default outline */
    border-color: #001667; /* Set the desired border color */
    box-shadow: 0 0 5px rgba(1, 21, 173, 0.5); /* Optional: Add a subtle shadow */
}

/* Optional: You can also set background or text color on focus */
.contact input:focus, .form-group textarea:focus {
    background-color: #f0f1f9; /* Change background color on focus */
    color: #060935; /* Change text color */
}

footer a{
	text-decoration: none;
}

footer a i{
	font-size: 25px;
	margin-left: 20px ;
	color: lightgray;
}



/* Social Media Buttons */
.messenger-float, .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    width: 60px;
    height: 60px;
}

.messenger-float {
    bottom: 150px; /* Adjust as needed */
}

.whatsapp-float {
    bottom: 90px; /* Adjust as needed */
}

.messenger-float img, .whatsapp-float img {
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.messenger-float:hover img, .whatsapp-float:hover img {
    transform: scale(1.2); /* Zoom in */
}

/* Popup Styles */
.chat-popup {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000; /* Sit on top */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); /* Center the popup */
    width: 400px; /* Width of the popup */
    height: 600px; /* Height of the popup */
    border: 1px solid #888;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    background-color: white;
    overflow: hidden; /* Prevent overflow */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Overlay Background */
.overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 999; /* Sit below the popup */
}

footer{
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {

    footer{
        display: inline-block;
        text-align: center;
        width: 100%;
    }

    footer a{
        display: block;
    }

    footer .social-media a{
        display: inline-block;
    }

  }