@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    overflow-x:hidden ;
    font-family: "EB Garamond", serif;
}
.container{
    width:95%;
    margin: 0 auto;
}
a{
    text-decoration: none;
}
li{
    list-style-type: none;
}
.margin_top_30{
  margin-top: 30px;
}
.margin_top_20{
  margin-top: 20px;
}
.bold_600{
  font-weight: 600;
}
.text_color_g{
  color: #00394B;
}
.text_color_b{
  color: black !important;
}
.text_color_gray{
  color: gray;
}
/*======================header section===================*/
.header_bg{
    background-color: green;
    padding: 10px 0px;
    font-weight: 500;
}
.header_flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_flex .header_left{
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
}
.header_flex .header_rigth a, .footer .footer_link a{
    font-size: 20px;
    margin: 0px 5px;
    color: white;
    height: 30px;
    width: 30px;
    border-radius: 100%;
}

.header_flex .header_rigth a:nth-of-type(1):hover, .footer .footer_link a:nth-of-type(1):hover{
        background-color: #1877F2;
}
.header_flex .header_rigth a:nth-of-type(2):hover, .footer .footer_link a:nth-of-type(2):hover {
    background-color: #1DA1F2;
}
.header_flex .header_rigth a:nth-of-type(3):hover, .footer .footer_link a:nth-of-type(3):hover {
    background-color: #C13584;
}
/*======================nav section===================*/
.nav{
    z-index: 700;
    position: relative;
}
.nav img{
   height: 80px;
}
.nav .nav_flex, .nav .nav_flex .nav_item, .nav .nav_flex .nav_item ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.nav .nav_flex .nav_item ul li a, .nav .nav_flex .nav_item button{
    display: inline-block;
    margin: 0px 5px;
    /* background-color: aqua; */
    padding: 10px 20px;
    position: relative;
    color: black;
    
}
.nav .nav_flex .nav_item ul li a::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 100%;
    height: 2px;
    background-color: green;
    transition: transform 0.5s ease;
}
.nav .nav_flex .nav_item ul li a:hover::after{
    transform: translateX(-50%) scaleX(1);
}
.nav .nav_flex  button{
    border: none;
    outline: none;
    background-color: green;
    color: white;
    border-radius: 5px;
    transition: all 2s ease;
    padding: 10px 20px;
    cursor: pointer;
}
.nav .nav_flex button:hover{
    background-color: red;

}
.nav .nav_flex .nav_item ul li.dropdown {
    position: relative;
}
.nav .nav_flex .nav_item ul li .dropdown_menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: none;
    min-width: 250px;
    z-index: 999;
     text-transform: capitalize;
}

.nav .nav_flex .nav_item ul li .dropdown_menu li {
    display: block;
    white-space: nowrap;
}

.nav .nav_flex .nav_item ul li .dropdown_menu li a {
    padding: 10px 20px;
    display: block;
    color: black;
    text-decoration: none;
}

.nav .nav_flex .nav_item ul li .dropdown_menu li a:hover {
    background-color: #f0f0f0;
}


.nav .nav_flex .nav_item ul li.dropdown:hover .dropdown_menu {
    display: block;
}
.menu-toggle{
    display: none;
    font-size: 30px;
    cursor: pointer;
}



/*======================home page slider section===================*/
.main {
  height: 80vh;
  width: 100%;

}
.wrapper,
.slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide {
  overflow: hidden;
}
.slide::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 10;
  background-color: transparent !important;
}
.slide .image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  background-position: center;
}
/* swiper button css */
.swiper-button-next {
  right: 50px;
}
.swiper-button-prev {
  left: 50px;
}
.nav-btn::before,
.nav-btn::after {
  font-size: 25px;
  color: #fff;
}
.swiper-pagination-bullet {
  opacity: 1;
  height: 12px;
  width: 12px;
  background-color: #fff;
  visibility: hidden;
}
.swiper-pagination-bullet-active {
  border: 2px solid #fff;
  background-color: #c87e4f;
}
@media screen and (max-width: 768px) {
  .nav-btn {
    visibility: hidden;
  }
  .swiper-pagination-bullet {
    visibility: visible;
  }
}

/*======================home page slider section===================*/
.slider_text{
    background-color: rgba(0, 0 , 0, 0.1);
    padding: 30px 0px;
    text-align: center;
}
.slider_text h2{
  margin-bottom: 10px;
  font-size: 30px;
  color: #213D54;
}
.slider_text h5{
  margin-bottom: 10px;
  font-size: 15px;
  color: #213D54;
}
.slider_text p{
  width: 700px;
  margin: 0 auto;
}

/*======================home_Tyre section===================*/
.home_Tyre{
  margin-top: 30px;
  padding: 10px;
}
.home_Tyre .home_Tyre_flex{
  display: grid;
  grid-template-columns: 1fr 1fr ;
  gap:30px;
  align-items: center;
}
.home_Tyre .home_Tyre_flex .home_Tyre_text h1{
  font-size: 45px;
  color: #213D54;
  margin-bottom: 20px;
}
.home_Tyre .home_Tyre_flex .home_Tyre_text p{
  font-size: 18px;
  margin-bottom: 20px;
  padding: 0px 10px;
}
.home_Tyre .home_Tyre_flex .home_Tyre_text .home_Tyre_img1{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap:20px
}
.home_Tyre .home_Tyre_flex .home_Tyre_img .home_Tyre_img2{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap:20px;
  width:80%;
  height: 100%;
  margin: 0 auto;
  border-radius: 10px;
  margin-bottom: 20px;
}
.home_Tyre .home_Tyre_flex .home_Tyre_img .home_Tyre_img2 img{
  width:100%;
  height: 100%;
  border-radius: 10px;
}
.home_Tyre .home_Tyre_flex .home_Tyre_img .home_Tyre_img_text h2{
  font-size: 45px;
  color: #213D54;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.home_Tyre .home_Tyre_flex .home_Tyre_img .home_Tyre_img_text p{
  font-size: 18px;
  color: #213D54;
  margin-bottom: 20px;
}
.home_Tyre .home_Tyre_flex .home_Tyre_img .home_Tyre_img_text a{
  background-color: green;
  display: inline-block;
  padding: 15px 50px;
  color: white;
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 10px;
}
/*======================products section===================*/
.product_text{
  display: flex;
  justify-content: center;
  margin: 30px 0px;
}
.product_text h2{
  background-color: green;
  padding: 15px 35px;
  display: inline-block;
  color: white;
  text-transform: capitalize;
  border-bottom-left-radius: 50px;
  border-top-right-radius: 50px;
}
.grid{
	display:grid;
	grid-template-columns:1fr 1fr 1fr 1fr;
}
.product {
	width: 300px;
	height: 500px;
	background: white;
	margin: auto;
	position: relative;
	overflow: hidden;
	border-radius: 10px 10px 10px 10px;
	box-shadow: 0;
	transform: scale(0.95);
	transition: box-shadow 0.5s, transform 0.5s;

	&:hover {
		transform: scale(1);
		box-shadow: 5px 20px 30px rgba(0, 0, 0, 0.2);
	}

	.container {
		width: 100%;
		height: 100%;

		.top {
			height: 80%;
			width: 100%;
			background: url('../img/sealant.jpg') no-repeat center center;
			-webkit-background-size: 100%;
			-moz-background-size: 100%;
			-o-background-size: 100%;
			background-size: 100%;
		}
    .top1{
			height: 80%;
			width: 100%;
			background: url('../img/water.jpg') no-repeat center center;
			-webkit-background-size: 100%;
			-moz-background-size: 100%;
			-o-background-size: 100%;
			background-size: 100%;
		}
    .top2 {
			height: 80%;
			width: 100%;
			background: url('../img/road.png') no-repeat center center;
			-webkit-background-size: 100%;
			-moz-background-size: 100%;
			-o-background-size: 100%;
			background-size: 100%;
		}
    .top3 {
			height: 80%;
			width: 100%;
			background: url('../img/hose_pipe.jpg') no-repeat center center;
			-webkit-background-size: 100%;
			-moz-background-size: 100%;
			-o-background-size: 100%;
			background-size: 100%;
		}

		.bottom {
			width: 200%;
			height: 20%;
			transition: transform 0.5s;

			&.clicked {
				transform: translateX(-50%);
			}

			h1 {
				margin: 0;
				padding: 0;
			}

			p {
				margin: 0;
				padding: 0;
			}

			.left {
				height: 100%;
				width: 50%;
				background: #f4f4f4;
				position: relative;
				float: left;

				.details {
					padding: 20px;
					float: left;
					width: calc(70% - 40px);
				}

				.buy {
					float: right;
					width: calc(30% - 2px);
					height: 100%;
					background: #f1f1f1;
					transition: background 0.5s;
					border-left: solid thin rgba(0, 0, 0, 0.1);
          display: flex;
          justify-content: center;
          align-items: center;

					i {
						font-size: 30px;
						padding: 30px;
						color: #254053;
						transition: transform 0.5s;
					}

					&:hover {
						background: #A6CDDE;
					}

					&:hover i {
						transform: translateY(5px);
						color: #00394B;
					}
				}
			}

			.right {
				width: 50%;
				background: #A6CDDE;
				color: white;
				float: right;
				height: 200%;
				overflow: hidden;

				.details {
					padding: 20px;
					float: right;
					width: calc(70% - 40px);
				}

				.done {
					width: calc(30% - 2px);
					float: left;
					transition: transform 0.5s;
					border-right: lightgreen;
					height: 50%;

					i {
						font-size: 30px;
						padding: 30px;
						color: white;
					}
				}

				.remove {
					width: calc(30% - 1px);
					clear: both;
					border-right: solid thin rgba(255, 255, 255, 0.3);
					height: 50%;
					background: #BC3B59;
					transition: transform 0.5s, background 0.5s;

					&:hover {
						background: #9B2847;
					}

					&:hover i {
						transform: translateY(5px);
					}

					i {
						transition: transform 0.5s;
						font-size: 30px;
						padding: 30px;
						color: white;
					}
				}

				&:hover {

					.remove,
					.done {
						transform: translateY(-100%);
					}
				}
			}
		}
	}

	.inside {
		z-index: 9;
		background: green;
		width: 140px;
		height: 140px;
		position: absolute;
		top: -70px;
		right: -70px;
		border-radius: 0px 0px 200px 200px;
		transition: all 0.5s, border-radius 2s, top 1s;
		overflow: hidden;

		.icon {
			position: absolute;
			right: 85px;
			top: 85px;
			color: white;
			opacity: 1;
		}

		&:hover {
			width: 100%;
			right: 0;
			top: 0;
			border-radius: 0;
			height: 80%;

			.icon {
				opacity: 0;
				right: 15px;
				top: 15px;
			}

			.contents {
				opacity: 1;
				transform: scale(1);
				transform: translateY(0);
			}
		}

		.contents {
			padding: 5%;
			opacity: 0;
			transform: scale(0.5);
			transform: translateY(-200%);
			transition: opacity 0.2s, transform 0.8s;
      p{
        font-size: 25px;
        color: white;
      }
      ul li{
          font-size: 15px;
          color: white;
          margin-top:15px ;
      }
		}
	}
}
/*======================dcal section===================*/
.dcal{
  margin-top: 40px;
  padding: 10px;
}
.dcal_grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.dcal_grid .dcal_grid_text h1{
  font-size: 2.5rem;
  font-weight: 400;
}
.dcal_grid .dcal_grid_text h1+p{
  font-size: 20px;
  margin: 10px 0px;
}
.dcal .dcal_text_detail{
    margin-top: 20px;
}
.dcal .dcal_text_detail h5{
    font-size: 20px;
    font-weight: 550;
    color: green;
}
.dcal .dcal_text_detail p{
    font-size: 16px;
}
.dcal .dcal_grid_img .dcal_img{
  display: flex;
  justify-content: center;
  align-items: center;
}
.dcal .dcal_grid_img .dcal_img img{
  max-width: 500px;
  border-radius: 10px;
}
.dcal .dcal_btn{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.dcal .dcal_btn button{
  padding: 15px 40px;
  background: green;
  border: none;
  outline: none;
  color: white;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 10px;
}
/*======================help section===================*/
.help{
  /* background-color: red; */
  margin-top: 30px;

}
.help .help_img{
  background: url('../img/help.png') no-repeat center center;
  height: 500px;
  width: 100%;
  position: relative;
}
.help .help_text{
  position: absolute; /* or 'fixed' */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.help .help_text h1{
  font-size: 6rem;
  text-transform: capitalize;
}
.help .help_text p{
  font-size: 20px;
}
.help .help_btn{
  margin-top: 20px;
}
.help .help_btn button{
  padding: 10px 30px;
  background-color: green;
  cursor: pointer;
  font-size: 20px;
 color: white;
  border: none;
  outline: none;
  border-radius: 10px;
}
/*======================detail section===================*/
.detail{
  margin-top: 30px;
}
.detail_flex{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap:20px;
  justify-content: center;
}
.detail_flex .detail_img{
  display: flex;
  justify-content: center;
  align-items: center;
}
.detail_flex summary{
  padding: 10px 20px;
  border: 2px solid green;
  margin-top: 30px;
  font-weight: 700;
}
.detail_flex details p{
  font-size: 20px;
  margin-top: 10px;
}
/*======================footer section===================*/
.footer{
  margin-top: 30px;
  padding: 30px 0px;
 background-color: black;
}
.footer_grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  color: white;
  gap:20px;
}
.footer_grid .footer_img{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap:10px;
}
.footer_grid .footerImg img{
  width:80px;
}

.footer_grid ul{
  margin-top: 20px;
}
.footer_grid ul li{
  margin-top: 10px;
}
.footer_grid a{
 color: white;
}
.footer_grid ul li a i{
  margin-right: 10px;
  color: #00434b;
}
.footer_grid p{
  margin-top: 10px;
}
.footer_grid h3{
  border-bottom: 2px solid white;
  display: inline-block;
  padding-bottom: 10px;
}
/*======================arrow section===================*/
#backToTop {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: none;
    background-color: green;
    color: white ;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 15px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: all 0.5s ease;
  }

  #backToTop:hover {
    background-color: white;
    color: green;
  }
  /*======================about_page section===================*/
.star{
    position: absolute;
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px white;
    animation: fall linear;
}
@keyframes fall {
		0% {
				transform: translateY(0);
				opacity: 1;
			}
		100% {
				transform: translateY(100px); /* match #star height */
				opacity: 0;
			}
	}
#star{
		width: 100%;
		height: 100px;
		background-color: #2F6B75;
		position: relative;
		overflow: hidden;	
}
#star h1{
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
    font-size: 40px;
    text-transform: capitalize;
    color: white;
}
.about_ss h3, .about_heading h3, .mission h3, .daddy h3 ,.dcal_text h3, .daddys_text h3, .mn_ly .mn h3, .mn_seft h3, .tray_seal .mn h3{
  color: #2F6B75;
  text-align: center;
  font-size: 30px;
  margin-top: 30px;
  text-transform: capitalize;
}
.about_ss p, .mission p, .daddy p, .daddys p, .mn_ly .mn .para_mn, .mn .para_mn1, .mn_seft p, .tray_seal .mn p{
  max-width: 900px;
  margin: 0 auto;
  margin-top: 10px;
  font-size: 17px;
  font-weight: 530;
  word-spacing: 5px;
  color: gray;
  text-transform: capitalize;
  padding: 0px 10px;
}
.about_ss ul, .daddy ul{
  margin-top: 30px;
}
.about_ss ul li, .daddy ul li{
 
  font-size: 16px;
  font-weight: 530;
  word-spacing: 5px;
  color: gray;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 10px;
}

.about_ss ul li i, .daddy ul li i{
  position: absolute;
  top:0px;
  left: -20px;
  color: green;
}
.about_heading{
  display:flex ;
  justify-content: center;
  margin: 30px 0px;
}

.about_flex{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap:30px;
}
.about_flex .about_text{
  background-color: rgb(241, 241, 241);
  padding: 5px;
  border-radius: 20px;
}
.about_flex .about_text h4{
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 530;
  color: gray;
}
.about_flex .about_text ul{
  margin-top: 30px;
}
.about_flex .about_text ul li{
  margin-top: 20px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap:10px;
  color: gray;
}
.about_flex .about_text ul li i{
  color: green;
}
.about_flex .about_img{
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}
.about_flex .about_img img{
  max-width: 550px ;
  border-radius: 20px;
}
.mission{
  margin-top: 30px;
}
.mission ul{
  max-width: 900px;
  margin: 0 auto;
  margin-top: 30px;
}
.mission ul li{
  margin-top: 10px;
  font-size: 17px;
  display: flex;
  gap:10px;
  color: gray;
}
.mission ul li i{
  color: green;
}
/*======================daddy_detail section===================*/
.daddy .slider-wrapper {
    max-width: 900px;
    width: 95vw;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.7);
    background: #222;
    margin: 0 auto;
    margin-top: 30px;
  }
  .daddy .slider {
    display: flex;
    transition: transform 0.7s ease-in-out;
  }
  .daddy .slide {
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
    user-select: none;
    position: relative;
  }
  .daddy .slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
  }
  .daddy .slider-controls {
    position: relative;
    margin-top: 15px;
    text-align: center;
  }
  .daddy .btn {
    background: #2F6B75;
    border: none;
    color: white;
    font-size: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 25px;
    transition: background 0.3s ease;
    user-select: none;
    box-shadow: 0 4px 8px rgba(41,171,226,0.6);
  }
  .daddy .btn:hover {
    background: #1c7abf;
  }
  .daddy .indicators {
    margin-top: 15px;
  }
  .daddy .indicator {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: #555;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 6px;
    transition: background 0.3s ease;
  }
  .daddy .indicator.active {
    background: #29abe2;
    box-shadow: 0 0 12px #29abe2;
  }
/*======================contact-page section===================*/
.contact{
  margin-top: 30px;
}
.contact_flex{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  gap:20px;
}
.contact .contact_form{
  padding: 15px;
  background-color: rgba(0, 0 , 0, 0.1);
}
.contact .contact_form h1{
  text-align: center;
  color: #00434b;
}
.contact .contact_text h2{
  color: #00394B;
  font-size: 2rem;
}
.contact .contact_text p{
  font-size: 18px;
  margin-top: 15px;
}
.contact .contact_text .contact_link{
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact .contact_text .contact_link a{
  display: flex;
  align-items: center;
  gap:5px;
  font-size: 16px;
  color: gray;
}
.contact .contact_text .contact_link a i{
  color: #00394B;
  font-weight: 550;
  font-size: 20px;
}
.contact .contact_form div{
  margin-top: 20px;
  overflow: hidden;
}
.contact .contact_form input{
  width:100%;
  height: 40px;
  border: none;
  outline: none;
  padding: 10px;
  border-radius: 10px;
}
.contact .contact_form textarea{
  width: 100%;
  height: 200px;
  resize: none;
  padding: 10px;
  border-radius: 10px;
}
.contact .contact_form .form_btn{
  /* background-color: red; */
  display: flex;
  justify-content: end;
}
.contact .contact_form .form_btn button{
  padding: 10px 35px;
  cursor: pointer;
  background-color: #00394B;
  color: white;
  font-size: 15px;
  border-radius: 10px;
}
/*======================dcal_water_page section===================*/

.dcal_water_flex, .dcal_flex{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-top: 30px;
  gap: 30px;
}
.dcal_water_flex_img{
  display:flex;
	gap:10px;
}
.dcal_water_flex_img .img{
  border-radius: 10px;
  max-width: 500px;
  min-height: 500px;
  overflow: hidden;
  width:-webkit-fill-available;
}
.dcal_water_flex_img .img img{
		width:100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px gray;
    object-fit: cover;
	}
.dcal_water_flex_img .img1{
		display:flex;
		gap:2px;
    flex-direction: column;
	}
.dcal_water_flex_img .img1 img{
		width:50px;
		height: 50px;
    border-radius: 50%;
	}
  .dcal_water_flex_text h2{
    margin-bottom: 10px;
    color: #00394B;
  }
  .dcal_water_flex_text p{
    margin-bottom: 10px;
    color: gray;
    font-size: 18px;
  }
  .dcal_water_flex .dcal_water_btn1{
    display: flex;
    justify-content: center;
    gap:20px;
    margin-top: 20px;
  }
  .dcal_water_flex .dcal_water_btn1 button{
    width: 100%;
    padding: 10px 35px;
    background-color:#00434b;
    cursor: pointer;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    color: white;
    font-size: 16px;
  }
  .dcal_water_btn2{
    flex-direction: column;
    display: flex;
    gap:15px
  }
   .dcal_water_btn2 button{
    padding: 10px 0px;
    cursor: pointer;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    color: white;
    font-size: 16px;
    background-color: green;
  }

  
/*======================dcal_water_page section===================*/
.dcal_flex .dcal_flex_text .dcal_flex_text_para{
  font-size: 17px;  
}
.dcal_text img{
  width:100%;
}
.dcal_flex_icon h4{
  display: flex;
  gap:5px;
  align-items: center;
}
.dcal_flex_icon i{
  font-size: 20px;
  color: green;
}
.dcal_flex_icon span{
  color: #00394B;
}
.dcal_flex_icon p{
  font-size: 16px;
}
.dcal_flex_icon p{
  margin-top: 5px;
}

/*======================daddy road page section===================*/
.daddys .dcal_water_flex_img .img {
    min-height: auto;   
}

/*======================mmn section===================*/
.mn_ly .mn .para_mn1, .mn_seft p, .tray_seal .mn p{
  margin-top: 10px;
}
.mn_ly .mn ul, .mn_seft ul, .tray_seal .mn ul{
  width: 900px;
  margin: 0 auto;
  margin-top: 10px;
  padding: 0px 10px;
}
.mn_ly .mn ul li, .mn_seft ul li, .tray_seal .mn ul li{
  display: flex;
  align-items: center;
  gap:10px;
  margin-top: 5px;
}
.mn_ly .mn ul li i, .mn_seft ul li i, .tray_seal .mn ul li i{
 color: #00394B;
 font-size: 20px;
}
.mn_ly .mn ul li span, .mn_seft ul li span, .tray_seal .mn ul li span{
 font-size: 16px;
 color: gray;
}
 /* -------------
  start pop-up 
 ------------- */
    /* ===== Popup shell ===== */
    .pop-up {
      position: fixed;
      inset: 0; /* shorthand for top:0; right:0; bottom:0; left:0; */
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      visibility: hidden;
      opacity: 0;
      transition: 0.35s ease;
    }
    .pop-up.show {
      visibility: visible; opacity: 1; 
    }

    /* ===== Dark overlay ===== */
    .pop-up .overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.8);
      z-index: 790;
    }

    /* ===== Popup card ===== */
    .pop-up-inner {
      position: relative;
      background: #fff;
      padding: clamp(1rem, 4vw, 2.5rem);
      border-radius: 12px;
      width: min(90%, 500px);
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.45);
      z-index: 800;
      animation: pop 0.35s ease-out;
    }
    @keyframes pop {
      from { transform: scale(0.8); opacity: 0; }
      to   { transform: scale(1);   opacity: 1; }
    }

    /* ===== Close (X) button ===== */
    .close-btn {
      position: absolute;
      top: 10px;
      right: 12px;
      font-size: 1.25rem;
      cursor: pointer;
      border: none;
      background: transparent;
      color: #333;
    }

    /* ===== Form ===== */
    form .field-group {
      display: flex;
      flex-direction: column;
      margin-bottom: 1rem;
    }
    form label { font-weight: 600; margin-bottom: 0.25rem; }
    form input,
    form select,
    form textarea {
      width: 100%;
      padding: 0.65rem 0.75rem;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 0.95rem;
    }
    form textarea { resize: vertical; min-height: 120px; }
    form button[type="submit"] {
      width: 100%;
      padding: 0.75rem;
      border: none;
      border-radius: 6px;
      font-size: 1rem;
      font-weight: 600;
      background: #399c87;       
      color: #fff;
      cursor: pointer;
      transition: background 0.25s;
    }
    form button[type="submit"]:hover { background: #2f806e; }

    /* Small-screen tweaks */
    @media (max-width: 420px) {
      .pop-up-inner { padding: 1rem; }
    }
