* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

.dropdown-menu .dropdown-item:hover {
  color: #0452a7 !important;
  background-color: rgb(245, 237, 237);
}

:root {
  --primary: #0452a7;
  --secondary: #f3370b;
  --primary-dark: #02366e;
}

.heading {
  font-family: popins;
  font-size: 40px;
  color: var(--primary-dark);
  font-weight: 600;
  line-height: 50px;
  margin-bottom: 10px;
}

.top-head {
  color: #f3370b;
  font-size: 18px;
}

/* main-btn start */
.main-btn {
  position: relative;
  display: inline-block;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: transparent;
  border: 2px solid var(--primary);
  overflow: hidden;
  transition: color 0.4s ease;
  z-index: 1;
  border-radius: 2px;
}

/* BEFORE EFFECT */
.main-btn::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transition: all 0.4s ease;
  z-index: -1;
}

/* AFTER EFFECT (SHINE LINE) */
.main-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-20deg);
  transition: all 0.6s ease;
}

/* HOVER STATE */
.main-btn:hover {
  color: #ffffff;
}

.main-btn:hover::before {
  left: 0;
}

.main-btn:hover::after {
  left: 130%;
}

/* main-btn end */


/* sec-btn start */
.sec-btn {
  position: relative;
  display: inline-block;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;

  color: #fff;
  background: var(--primary);
  /* BLUE BY DEFAULT */
  border: 2px solid var(--primary);

  overflow: hidden;
  transition: color 0.4s ease;
  z-index: 1;
  border-radius: 2px;
}

/* BACKGROUND LAYER (HOVER BLACK) */
.sec-btn::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  /* BLACK ON HOVER */
  transition: all 0.4s ease;
  z-index: -1;
}

/* SHINE EFFECT */
.sec-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-20deg);
  transition: all 0.6s ease;
}

/* HOVER STATE */
.sec-btn:hover {
  color: #ffffff;
  border-color: #000;
}

.sec-btn:hover::before {
  left: 0;
}

.sec-btn:hover::after {
  left: 130%;
}

/* sec-btn end */

p {
  margin-bottom: 0;
}

a {
  text-decoration: none !important;
}

#top-header {
  background-color: var(--primary);
  padding: 5px 0;
}

#top-header p a {
  color: white;
}

#top-header p {
  margin-bottom: 0;
}

#top-header p i {
  font-size: 14px;
}


/* header start */
.navbar-expand-lg .navbar-nav {
  margin: auto;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.navbar-toggler .fa-solid {
  color: black;
}

.navbar-toggler {
  border: none !important;
}

.nav-link {
  font-size: 18px !important;
  font-weight: 500 !important;
  color: black !important;
}

.nav-item {
  margin: 0 5px !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--primary) !important;
  transition: 0.5s;
}

.navbar-nav .nav-link:hover {
  color: var(--primary) !important;
  transition: 0.5s;
}

/* header end */


/* footer start */

.footer {
  position: relative;
  padding: 80px 0 30px;
  background: linear-gradient(rgba(10, 45, 130, 0.95), rgba(10, 45, 130, 0.95)),
    url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d') center/cover no-repeat;
  color: #fff;
}

/* Brand */
.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand i {
  font-size: 28px;
  color: white;
}

.footer-brand h4 {
  margin: 0;
  font-weight: 700;
  letter-spacing: 2px;
}

.footer-brand .tagline {
  display: block;
  font-size: 14px;
  margin-top: 4px;
  opacity: 0.8;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  color: #fff;
  margin-right: 12px;
  font-size: 16px;
  transition: 0.3s;
}

.social-links a i:hover {
  color: #eb8628 !important;
}

/* Titles */
.footer-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: popins;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links i {
  color: white;
  font-size: 18px;
}

.footer-links i:hover {
  color: #eb8628 !important;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #e0e7ff;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #eb8628 !important;
  padding-left: 5px;
}

.footer-links h4:hover {
  color: #eb8628 !important;
  padding-left: 5px;
}

/* Bottom */
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

.footer-bottom p a {
  color: white;
}

.payment-icons i {
  font-size: 30px;
  margin-left: 10px;
  opacity: 0.9;
}


/* footer end */

/* catelog image */
/* .cate:hover{
    background-color: #eb8628;
    cursor: pointer;
   
} */
/* end catelog */

.infomation {
  padding-top: 40px;
  padding-bottom: 40px;

}

.infomation h3 {
  color: #162233;
  font-weight: 600 !important;
}

.infomation p {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #353434;
}

.infomation p strong a {
  color: #eb8628 !important;

}

.dcbc {
  padding-top: 20px;
}

.dcbc h4 a {
  color: #eb8628 !important;
}

.dcbc h1 {
  color: #162233;
  font-weight: 600 !important;
}

.dcbc p {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #353434;
}

/* product */
.prod {
  padding-top: 40px;
  padding-bottom: 40px;
  align-content: center;
}

.do {
  padding: 10px !important;
  gap: 10px !important;
  margin-right: 10px !important;

  /* background-color: #c7c7c7 !important  */
}

.do img {
  background-color: #95c1f0 !important;

}

.pro {
  position: relative;
}

.pro::after {
  height: 0%;
  width: 0%;
  position: absolute;
  background-color: #ff7b0075;
  content: "";
  left: 0;
  top: 0;
}

.pro:hover::after {
  height: 100%;
  width: 100%;
  transition: 0.5s;
}

.pp h4 {
  display: flex;
  justify-content: center;
  color: #eb8628;
}

.pp h2 {
  display: flex;
  justify-content: center;
  color: #162233;
  padding-bottom: 20px;
}

.do .btn {
  background-color: #0352a6 !important;
}

/* faq */
.faq-container,
.contact-container {
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-container h3 {
  color: #333;
}

.contact-container h2 {
  color: #fff;
}

.contact-container {
  background-color: #eb8628;
  color: white;
}

.contact-container input,
.contact-container textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: none;
}

.contact-container input[type="submit"] {
  background-color: black;
  color: white;
  /* border: none; */
  cursor: pointer;
}

.contact-container input[type="submit"]:hover {
  background-color: #133585;
}


/* contact page  */
/* form  */
.contact-section {
  padding: 80px 0;
  background: #f5f6f8;
}

.contact-title {
  color: #eb8628;
  font-weight: 600;
}

.contact-heading {
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact-box {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 5px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  border: 2px solid #eb8628;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #eb8628;
}

.contact-form {
  background: white;
  padding: 30px;
  border-radius: 5px;
  padding-top: 80px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
}

.send-btn {
  background: #eb8628;
  color: white;
  border: none;
  padding: 14px;
  width: 100%;
  font-weight: bold;
}

.send-btn:hover {
  background-color: #0fa8a8;
}

@media (max-width:768px) {

  .contact-heading {
    font-size: 32px;
  }

}

/* end contect page */

/* about page  */
.counter-container {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  font-family: Arial, sans-serif;

}

.counter-box {
  background-color: #f0e4d7;
  padding: 20px;
  border-radius: 1px;
  text-align: center;
  margin-right: 20px;
  font-size: 48px;
  color: black;
  border: 5px #eb8628 solid;
  margin-bottom: 20px;
}

.experience-text {
  font-size: 24px;
  font-weight: bold;
}

.abva {
  padding-top: 40px;
  padding-top: 20px;
}

/* mission */
.bod {
  /* border: 2px #eb8628 solid; */
 /* border: #000 2px solid; */
 box-shadow: 0 10px 20px rgba(0,0,0,0.15);

}

.bod h3 {
  display: flex;
  justify-content: center;
  padding-top: 10px;

}
.bod h3 i {
  color: #eb8628;
  font-size: 40px;
  padding-top: 10px;
}
.bod p{
  font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #353434;
}

.bod1{
  /* background-color: #6bc9e3; */
  /* border: #000 2px solid; */
box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.bod1 h3 {
  display: flex;
  justify-content: center;
  padding-top: 10px;
}
.bod1 h3 i {
  color: #eb8628;
  font-size: 40px;
  padding-top: 10px;
}
.bod1 p{
  font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #353434;
}
.visi {
  padding-top: 40px;
  padding-bottom: 20px;

}

.why-choose{
  padding-top: 60px;
  padding-bottom: 40px;
}

/* gallery page */
.hed{
    display: flex;
    justify-content: center;
    font-family: "Lobster, Pacifico, Dancing";
    font-size: 40px;
    font-weight: 800;
}
.had{
     display: flex;
    justify-content: center;
    font-family: "Lobster, Pacifico, Dancing";
    font-size: 40px;
    font-weight: 600;
    color: #0fa8a8;
    padding-top: 40px;
    padding-bottom: 20px;
}
.had:hover{
    color:#eb8628;
}

.bbll{
    width: 90%;
    height: auto;
    margin: auto;
}

.ccll{
    display: flex;
    justify-content: space-around;
    padding-top: 40px;
    padding-bottom: 40px;
}
.ccll img{
    width: 100%;
    height: 500px;
    padding: 10px;
    padding-bottom: 20px;
}
.bolim{
    position: relative;
    padding: 20px;
}
.bolim img{
background-color: #068ec4;
    padding-top: 10px;
    
}
.bolim:after{
    height: 0%;
    width: 100%;
    background-color: #c7bd525d;
    
    left: 0;
    top:50%;
content: "";
position: absolute;
}
.bolim:hover:after{
    height: 100%;
    transition: 0.5s;
    top: 0;
}

/* product page  */
.pcb img{
  background-color: #f2a311;
  height: 600px !important;
}
.cdi {
  padding-top: 10px;
  padding-bottom: 20px;
  
}

.cram{
  background-image: url('img/pd-banner.png');
  /* padding-top: 150px;
  padding-bottom: 150px; */
  /* height: 400px;
  width: 100%;
  margin: auto;
  object-fit: cover !important;
  background-size: cover;
  /* background-repeat: no-repeat; */
  background-position: center; 
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex !important;
  justify-content: center !important;
  align-items: center!important;
}

.breadcrumb {
justify-content: center;
font-size: 40px !important;
}
.breadcrumb li{
color: white !important;
}
.breadcrumb-item a{
  color: white !important;
}
.breadcrumb-item+.breadcrumb-item::before {
  color: white !important;
}