/********** Template CSS **********/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

img.animated.pulse {
    animation-duration: 5s;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}



/* YPM-Matching */
.bg-card{
        background: linear-gradient(358deg, #d67323, #e1f0e1);
}

/* Hover effect */
.bg-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #f9e314, #d67323);
}


/* Headings */
.bg-card h5 {
  color: #0056b3; /* matches YPM’s blue */
  font-weight: 600;
}


/* card end  */

.bg-price{
    color: #d67323; 
}

.bg-testimonial {
    background-color: #6a97bf !important;
/* background: linear-gradient(135deg, #fff9b0, #f9e314);
color: #031e9f; */

  /* background: linear-gradient(135deg, #e8edff, #cdd8ff);
  color: #031e9f; */

    /* background: #fff7e6; 
  color: #031e9f; */

   /* background: linear-gradient(135deg, #ffffff, #ffe6bf);
  color: #031e9f; */
}

.bg-nav{
    background-color: #f4f8f1 !important;
}

.bg-hero {
  background: linear-gradient(135deg, #f9e314, #d67323); /* Yellow → Orange gradient */
  color: #031e9f; /* Deep blue from logo */
  position: relative;
  overflow: hidden;
}

/* Optional: subtle overlay for readability */
.bg-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

/* Ensure text stays above overlay */
.bg-hero .container {
  position: relative;
  z-index: 1;
}

/* Focus shadow under image */
.bg-hero img {
  filter: drop-shadow(0 10px 30px rgba(3, 30, 159, 0.4)); /* blue glow shadow */
  transition: transform 0.5s ease, filter 0.5s ease;
}

/* Subtle hover effect */
.bg-hero img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 15px 40px rgba(3, 30, 159, 0.6));
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    padding: 11px 0 !important;
    height: 85px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 45px;
    padding: 0;
    color: var(--bs-dark);
    font-weight: 500;
    transition: .5s;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    /* color: var(--bs-white); */
    color:#d67323;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        padding: 0 15px;
        background: var(--bs-primary);
        /* background: transparent; */
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Hero Header ***/
.hero-header {
    position: relative;
    margin-top: -85px;
    padding-top: 12rem;
    padding-bottom: 6rem;
    /* background: url(../img/bg.png) center center no-repeat; */
    background-size: cover;
}

.hero-header::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.hero-header .container {
    position: relative;
    z-index: 1;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-light);
}


/*** Feature ***/
.feature-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.feature-item .border {
    position: relative;
    border-color: rgba(255, 255, 255, .2) !important;
    z-index: 1;
}


/*** Deal ***/
.deal {
    position: relative;
    background: url(../img/bg.png) center center no-repeat;
    background-size: cover;
}

.deal::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.deal .bg-white {
    position: relative;
    z-index: 1;
}

.deal .cdt span {
    display: block;
    font-size: 16px;
    font-style: italic;
    font-weight: 200;
    text-transform: capitalize;
}


/*** How To Use ***/
.how-to-use {
    position: relative;
    background: url(../img/bg.png) center center no-repeat;
    background-size: cover;
}

.how-to-use::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.how-to-use .container {
    position: relative;
    z-index: 1;
}

.how-to-use .border {
    border-color: rgba(255, 255, 255, .2) !important;
}


/*** Product ***/
.product-item {
    transition: .1s;
}

.product-item:hover {
    border-width: 0 !important;
    box-shadow: 0 0 35px rgba(144, 188, 121, .25);
}

.product-item:hover a.btn {
    color: var(--bs-white);
    /* background: var(--bs-primary); */
    background: #d67323;
}


/*** Testimonial ***/
.testimonial {
    position: relative;
    /* background: url(../img/bg.png) center center no-repeat; */
    background-size: cover;
}

.testimonial::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.testimonial .testimonial-carousel {
    position: relative;
    z-index: 1;
}

.client-avatar {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #f9e314, #d67323); /* matches YPM logo */
  color: #031e9f; /* deep blue text */
  border-radius: 50%;
  font-size: 36px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(3, 30, 159, 0.3);
}
.client-avatar:hover {
  transform: scale(1.05);
  /* box-shadow: 0 8px 25px rgba(3, 30, 159, 0.5); */
  transition: all 0.3s ease;
}


.testimonial-carousel .owl-item img {
    width: 120px;
    height: 120px;
    border-color: rgba(255, 255, 255, .2) !important;
    margin: 0 auto 20px auto;
    border-radius: 100px;
}

.testimonial-carousel .owl-dots {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 3px solid rgba(255, 255, 255, .2);
    border-radius: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--bs-dark);
}


/*** Blog ***/
.blog-item {
    transition: .1s;
}

.blog-item:hover {
    border-width: 0 !important;
    box-shadow: 0 0 35px rgba(144, 188, 121, .25);
}

.blog-item:hover a.btn {
    color: var(--bs-white);
    background: var(--bs-primary);
}


/*** Contact ***/
.contact-info-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.contact-info-item .border {
    position: relative;
    border-color: rgba(255, 255, 255, .2) !important;
    z-index: 1;
}


/*** Newsletter ***/
.bg-newsletter{
    /* background-color:#5f5750 !important; */
    background-color: #d67323 !important;
}
.newsletter {
    position: relative;
    background: url(../img/bg.png) center center no-repeat;
    background-size: cover;
}

.newsletter::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.newsletter .container {
    position: relative;
    z-index: 1;
}

.newsletter .form-control {
    background: rgba(255, 255, 255, .3);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--bs-body);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    /* color: var(--bs-primary); */
    color: #d67323;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 3px solid var(--bs-light);
}

.footer .copyright a {
    color: var(--bs-body);
}

.footer .copyright a:hover {
    color: var(--bs-primary);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 3px solid var(--bs-light);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


/* whatsapp-floating */
.whatsapp-chat {
     position: fixed;
     bottom: 20px;
     left: 20px;
     background-color: #25D366;
     color: white;
     border-radius: 50%;
     padding: 20px;
     font-size: 20px;
     z-index: 1000;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
     transition: transform 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
     width: 55px;
     height: 55px;
     text-decoration: none;
 }

 .whatsapp-chat:hover {
     transform: scale(1.1);
     text-decoration: none;
     color: white;
 }

 .my-float {
     margin: 0;
 }
 
 

/* ============================
   Privacy Policy Page Styling 
   ============================ */
#privacy-policy {
  max-width: 900px;
  margin: 100px auto;
  padding: 50px 40px;
  background: #f9fbfd;
  color: #2b2b2b;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.8;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.06);
  border-top: 5px solid #004aad; /* YPM Blue */
}

#privacy-policy h1 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #004aad;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

#privacy-policy h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #212529;
  margin-top: 40px;
  margin-bottom: 15px;
  border-left: 4px solid #004aad;
  padding-left: 12px;
}

#privacy-policy p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 18px;
  text-align: justify;
}

#privacy-policy ul {
  padding-left: 25px;
  margin-bottom: 20px;
}

#privacy-policy ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #3d3d3d;
  list-style-type: disc;
}

#privacy-policy a {
  color: #004aad;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

#privacy-policy a:hover {
  color: #002b6b;
  text-decoration: underline;
}

/* Highlight Important Lines */
#privacy-policy strong {
  color: #000;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  #privacy-policy {
    padding: 30px 20px;
    margin: 70px 15px;
  }

  #privacy-policy h1 {
    font-size: 1.8rem;
  }

  #privacy-policy h2 {
    font-size: 1.2rem;
  }
}

