* {
	box-sizing: border-box;
}


@font-face {
    font-family: 'PotroSansBangla';
    src: url('/font/FN-Shorif-Opekkha-Unicode.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/* Apply the font to specific elements */
body, .card ,.card-header, .card-body, a, h1, h2, h3, h4, h5,h6,
label, input, span, p, a, th, td, 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:whitesmoke;


}

html {
	scroll-behavior: smooth;
}

.bg-main-color{
	background-color: rgb(0, 0, 54);
}

.bg-second-color{
	background-color: #EB2027;
}

.main-color{
	color: darkblue;
}

.second-color{
	color: #EB2027;
}



.theme-1{
	background-color: rgb(0, 0, 54);
	height: 100%;
	padding: 20px 10px 0px 10px;
}

.theme-1 .header h1{
	font-size: 60px;
	color: gold;
	text-align: center;
	padding: 30px 0;
}

.theme-1 .header h1 span{
	color:greenyellow;
}

.theme-1 .header p{
	font-size: 35px;
	color: white;
	text-align: center;
}


.call-button{
	background-color: #EB2027;
	color: white;
	text-align: center;
	margin: 10px;
	width: auto;
	padding: 10px;
	border-radius: 10px;
	font-size: 20px;
}

.call-button:hover{
	background-color: darkblue;
	color: white;
}



.video-container {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	height: 0;
	overflow: hidden;
	max-width: 100%;
	background: #000;
	border: none;
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}


/* image gallary */
.product-gallary{
	background-color: #fbfbfb;
	padding: 10px 0;
	
}
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    grid-auto-flow: dense;
    gap: 6px;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

img.four-grid-cells {
    grid-row: span 2;
    grid-column: span 2;
}

img.wide-image {
    grid-column: span 2;
}

/* Media query for screens with max-width 480px */
@media only screen and (max-width: 480px) {


    .gallery {
        grid-template-columns: 1fr; /* 1 column layout for small screens */
    }

    img {
        width: 100%; /* Ensure images take up full width */
        height: auto; /* Maintain aspect ratio */
    }

    img.four-grid-cells,
    img.wide-image {
        grid-column: span 1; /* Each image should take full width */
        grid-row: span 1;
    }
}

/* item meterials */
.item-meterials {
    padding-top: 20px;
    background-color: rgb(0, 0, 54);
}

.item-meterials h1 {
    padding: 10px 0;
    color: white;
    text-align: center;
}




.product-confidence h1{
	color: gold;
	text-align: center;
	padding: 20px;
}

.product-confidence h1 span{
	color:chartreuse;
}

.product-confidence h3{
	color:white;
}

.product-confidence img{
	border:2px solid white;
	border-radius: 20px;
	padding: 5px;
}



@media screen and (max-width: 780px) {

	.product-confidence img{
		margin: 0;
		padding: 0;
		border-radius: 0;
		border: none;
	}
}


.food-process{
	background-color: #fbfbfb;
}

.food-process h1{
	color: darkblue;
	text-align: center;
	padding: 20px 0;
}

.food-process h1 span{
	color:#EB2027;
}

.food-process img{
	border:2px solid darkblue;
	border-radius: 20px;
	padding: 5px;
}


@media screen and (max-width: 780px) {

	.food-process img{
		margin: 0;
		padding: 0;
		border-radius: 0;
		border: none;
	}
}


.package-price{
	background-color: #fbfbfb;
}

.package-price h1{
	color: darkblue;
	text-align: center;
	padding: 20px 0;
}

.package-price h1 span{
	color:#EB2027;
}

.package-price img{
	border:2px solid darkblue;
	border-radius: 20px;
	padding: 5px;
}


.package-price .card:hover{
	background-color: darkblue;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	transition: background-color .8s, box-shadow .8s;
}

.package-price .card:hover img{
	border:2px solid white;
	border-radius: 20px;
	padding: 5px;
}

.package-price .card:hover .card-title{
	color: yellow;
}

.package-price .card:hover .card-text{
	color: white;
}


@media screen and (max-width: 780px) {
	.package-price img{
		border:2px solid darkblue;
		border-radius: 20px;
		padding: 5px;
	}
}



.order-form{
	background-color:lightgray;
	padding: 20px 0;
}


.order-form h1{
	color: darkblue;
	text-align: center;
	padding: 30px 20px;
}

.order-form h1 span{
	color:#EB2027;
}

.forms{
	background-color:whitesmoke;
}

.order-form h5{
	color: darkblue;
	font-weight: 400;
	margin-left: 10px;
	padding: 10px 0;
}

 
.quantity {
	display: flex;
	overflow: hidden;
}

.order-form
 .card .quantity h6{
	color: darkblue;
	font-weight: 400;
	margin-left: 5px;
	padding: 5px 0;
}

.quantity button {
	background-color: #3498db;
	color: #fff;
	border: none;
	cursor: pointer;
	font-size: 20px;
	width: 30px;
	height: 30px;
	text-align: center;
	transition: background-color 0.2s;
}

.quantity button:hover {
	background-color: #2980b9;
}

.input-box {
	width: 50px;
	height: 30px;
	text-align: center;
	border: none;
	font-size: 16px;
	outline: none;
	background-color: whitesmoke;
}

/* Hide the number input spin buttons */
.input-box::-webkit-inner-spin-button,
.input-box::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
  

/* radio button color */
/* Center the radio button */
.order-form
 .card .d-flex {
    display: flex;
}

.order-form
 .card .justify-content-center {
    justify-content: center;
}

.order-form
 .card .align-items-center {
    align-items: center;
}

/* Change radio button color */
.order-form
 .card input[type="radio"] {
    accent-color: darkblue; /* For modern browsers */
    width: 20px;
    height: 20px;
}

/* Custom fallback for older browsers (before accent-color support) */
.order-form
 .card input[type="radio"]::before {
    border: 2px solid darkblue;
}




.order-button button{
	background-color: #EB2027;
	color: white;
	padding: 10px;
	margin: 0 0 10px 0;
	border: none;
	border-radius: 5px;
	font-family: PotroSansBangla;	
}

.order-button button:hover{
	background-color: darkblue;
	color: white;
}


@media screen and (max-width: 780px) {
	.order-form
	{
		margin: 0 -40px 0 10px;
	}

}

.offer h4 {
	color: darkblue;
	text-align: center;
	padding: 10px;
}


h4 span {
    color: red;
    font-weight: bold;
}



/* delivery type */

.delivery-type {
    background: linear-gradient(135deg, #fff, #f0f0f0); /* Subtle gradient background */
    padding: 25px;
    border-radius: 20px; /* Rounder corners for a sleek look */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Stronger shadow for depth */
    border: 1px solid #dedede; /* Fine border to define the card */
    position: relative;
    overflow: hidden; /* Hide overflow for decorative effects */
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    z-index: 1;
}

.delivery-type:hover {
    transform: translateY(-8px); /* Slight lift on hover */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25); /* Enhanced shadow on hover */
    background: linear-gradient(135deg, #fafafa, #f5f5f5); /* Light gradient change on hover */
}

.delivery-type::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(39, 174, 96, 0.15); /* Soft green circle for a unique look */
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 0; /* Behind content */
    transition: all 0.6s ease;
}

.delivery-type:hover::before {
    width: 300px;
    height: 300px;
    top: -120px;
    right: -120px;
    background: rgba(39, 174, 96, 0.25); /* Glow effect on hover */
}

.delivery-type label {
    font-size: 1.8rem; /* Larger font for label */
    color: #2c3e50; /* Darker color for a premium look */
    font-weight: 700; /* Bold weight for label */
    margin-bottom: 12px;
    display: block;
    position: relative;
    z-index: 1;
    letter-spacing: 1px; /* Extra spacing for premium feel */
}

.delivery-type p {
    font-size: 1.2rem; /* Slightly larger text for description */
    color: #7f8c8d; /* Softer gray for text */
    line-height: 1.6; /* Increased line height for readability */
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.delivery-type::after {
    content: '💸 🇧🇩 ৳'; /* Icon for cash-related hint */
    font-size: 2rem; /* Larger icon size */
    position: absolute;
    top: -10px;
    left: 0px;
    color: rgba(39, 174, 96, 0.3); /* Soft green for decorative icon */
    z-index: 0;
    transition: all 0.6s ease;
}

.delivery-type:hover::after {
    top: 40px;
    left: 40px;
    color: rgba(39, 174, 96, 0.5); /* Change icon position and color on hover */
}
