*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root{
  --light-black: #333;
  --light-white: #f7f7f7;
  --light-red: #e30003;
  --light-grey: #f6f9fa;
  --light-grey-2: #dddddd;
  --white: #fff;
  --yellow: #f7be27;
  --grey: #757575;
  --brown: #6f5e4d;
  --bg-coffee:#642f21;
}
body,html{
  font-size: 1rem;
  font-size: "Roboto Condensed", sans-serif;
  font-weight: 400;
}

@media(max-width: 992px){
  body,html{
    font-size: 0.875rem;
  }
}

/* headign tags */
h1,h2,h3,h4,h5,h6{
  font-family:"Roboto Condensed", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.3;
}
p{
  font-size: 15px;
  font-weight: 450;
  color: #183153;
  font-family:"Open Sans", sans-serif ;
}


/* Anchor Tag */
a{
  color: var(--light-black);
  text-decoration: none;
  --webkit-transition: all 400ms ease-in-out;
  --moz-transition: all 400ms ease-in-out;
  --o-transition:all 400ms ease-in-out;
  --ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;

}

/* custom scrollbar */
::-webkit-scrollbar{
  width:5px;
}
::-webkit-scrollbar-track{
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb{
  background: var(--yellow);
}

/* button hover */
.order_now:hover,
.order_now:focus{
color: var(--white);
background-color: transparent;
border-color: var(--white);
}

.btn-red{
  color: var(--white);
  background: var(--light-red);
  border-color: var(--light-red);
}
.btn-red:hover,
.btn-red:focus{
  color: var(--light-red);
  background: transparent;
  border-color: var(--light-red);
}

h1{
  color: #000B58;
  font-family: "Poppins", serif;
  font-weight: 550;
  font-style: normal;
  font-size: 40px;
}

p{
  color: #1A1A1D;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 17px;
}

/* nvabar styling */
.navbar{
  /* position: absolute;
  top: 0; */
  width: 100%;
  background-color: #f0f8fb;
  z-index: 1000;
  padding-top: 0;
  height: 82px;
}

.nav_body{
  padding-top: 0;
}


@keyframes stickyTransition {
  0%{
    opacity: 0;
    -webkit-transform: translate3d(1. -100%, 0);
    transform: translate3d(1, -100%, 0);
  }
  100%{
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.logo1{
  width: 45%;
}
.navbar-collapse ul li a{
  font-size: 18px;
  font-weight: 500;
  color: #183153;

  &:hover{
    color: #e30003;
    font-weight: 550;
    border-bottom: 1px solid red;
  }
}
.nav-enquery-mobile{

}
.home_sec1{

  margin-top: 2rem;
  margin-bottom: 2rem;}
.home-section1{
 margin-top: 2rem;
 margin-bottom: 2rem;
}
.near-banner{
  position: relative;
  top: 180px;
  right: 80px;
  z-index: -2;
  height: 150px;
  width: 150px;
  border: 2px solid #091057;
  border-radius: 15px;
}
.why-choose{
  padding: 50px;
  position: relative;
  align-items: center;
}

.card-size{
  max-width: 22rem;
  margin: auto;

}
/* .home-section1-child{
  position: sticky;
} */
/* For small devices (smartphones, 600px and below) */
@media only screen and (max-width: 600px) {
  /* Styles for small devices */
  /* .nav-enquery-mobile{
    
    
   } */
   .card-size{
    max-width: 22rem;
    margin: auto;
    
  }
}

/* For medium devices (tablets, 600px to 1024px) */
@media only screen and (max-width: 1024px) {
  /* Styles for medium devices */
}

/* For large devices (desktops, 1025px and above) */
@media only screen and (min-width: 1025px) {
  /* Styles for large devices */
  .nav-enquery-mobile{
   display: none; 
   
  }
}


/* enquery form */

input[type=text], input[type=password], input[type=email], textarea, select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Set a style for all buttons */
.enquery-button {
  background-color: #04AA6D;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
}

button:hover {
  opacity: 0.8;
}

/* Extra styles for the cancel button */
.cancelbtn {
  width: auto;
  padding: 10px 18px;
  background-color: #f44336;
}

/* Center the image and position the close button */
.imgcontainer {
  text-align: center;
  margin: 24px 0 12px 0;
  position: relative;
}

img.avatar {
  width: 40%;
  border-radius: 50%;
}

.container {
  padding: 16px;
}

span.psw {
  float: right;
  padding-top: 16px;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  padding-top: 60px;
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button (x) */
.close {
  position: absolute;
  right: 25px;
  top: 0;
  color: #000;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: red;
  cursor: pointer;
}


 /* Marquee Container */
 .marquee-container {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  background: #f0f0f0;
  border: 1px solid #ddd;
  width: 100%;
}

/* Marquee Text Animation */
.marquee-text {
  display: inline-block;
  padding-left: 100%;
  /* Start the text off-screen */
  animation: marquee 10s linear infinite;
  /* Adjust duration for speed */
}

.card-title{
  color: #006A67;
}

/* Animation Keyframes */
@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}
/* Add Zoom Animation */
.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)} 
  to {-webkit-transform: scale(1)}
}
  
@keyframes animatezoom {
  from {transform: scale(0)} 
  to {transform: scale(1)}
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
  span.psw {
     display: block;
     float: none;
  }
  .cancelbtn {
     width: 100%;
  }
}

.footer-body{
  background-color: #f0f8fb;

}
li{
  list-style: none;
}

