.bread {
  margin: 10% 1% 1%;
  color: white;
  background-color: #08142f;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 14px;
  width: 300px;
}

.product-tiles {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.product-card {
  width: 32%;

}

.product-card button,
.card button{
  display: block;
  color: black;
  text-align: center;
  background-color: white;
  border: 0.5px solid grey;
  /* border: none; */
  /* margin: 2% 0; */
  width: 100%;
  border-radius: 6px;
  font-size: 12px;
  padding: 1% 2%;
  cursor: pointer;
  transition: all 1.0 ease-in-out;
}

.product-card .btndef,
.card .btndef{
  display: block;
  color: black;
  text-align: center;
  background-color: #e6e6e6;
  border: 0.5px solid grey;
  /* border: none; */
  margin-bottom: 2%;
  width: 100%;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 2% 2%;
  cursor: pointer;
  transition: all 1.0 ease-in-out;
}

.product-card button:hover,
.card button:hover{
  background-color: #C3DCFA;
  border: none;
  font-weight: 600;

}
button.active{
  background-color: #C3DCFA;
  border: none;
  font-weight: 600;
}
.btndef.active{
  background-color: #C3DCFA;
  border: none;
  font-weight: 600;
}

.prod-card-img {
  width: 100%;
  height: 35vh;
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  margin-top: 5%;
}

@media screen and (max-width: 1024px) {
.prod-card-img {
  height: 250px;
}
}

.prod-card-img span {
  position: absolute;
  background-color:  #e6e6e6;
  color: #142350;
  bottom: 0;
  width: 100%;
  left: 0;
  text-align: center;
  padding: 4px 8px;
}
.prod-card-img img {
  width: 100%;
  height: 100%;
  /* scale: 1.2; */
  /* margin: 5% 0; */

}
/* ************************ */
/* Dropdown CSS Start */
/* ************************ */

/* Resetting ::marker */
.dropdown-tiles,
.dropdown__filter,
.dropdown__select-option {
list-style: none; /* Reset list-style to remove default markers */
}

/* Your existing CSS */
/* Your existing CSS */
.dropdown-tiles {
width: 100%;
margin: 0;
/* padding: 20px; */
background-color: white;
}

.dropdown__switch:checked + .dropdown__options-filter .dropdown__select {
transform: scaleY(1);
}

.dropdown__switch:checked + .dropdown__options-filter .dropdown__filter:after {
transform: rotate(-135deg);
}

.dropdown__options-filter {
width: 100%;
cursor: pointer;
}

.dropdown__filter {
position: relative;
display: flex;
padding: 10px;
color: #595959;
background-color: #d6d6d6;
/* background-color: #fff; */
border: 1px solid #d6d6d6;
border-radius: 0 0 12px 12px;
font-size: 14px;
font-weight: 500;
text-transform: uppercase;
transition: .3s;
}

.dropdown__filter:focus {
border: 1px solid #C3DCFA;
outline: none;
box-shadow: 0 0 5px 3px #C3DCFA;
}

.dropdown__filter::after {
position: absolute;
top: 45%;
right: 20px;
content: '';
width: 10px;
height: 10px;
border-right: 2px solid #595959;
border-bottom: 2px solid #595959;
transform: rotate(45deg) translateX(-50%);
transition: .2s ease-in-out;
}

.dropdown__select {
position: absolute;
top: 100%;
left: 0;
width: 100%;
padding-left: 0;
margin-top: 5px;
overflow: hidden;
z-index: 111111;
transform: scaleY(0);
transform-origin: top;
font-weight: 300;
transition: .2s ease-in-out;
}

.dropdown__select-option {
padding: 20px;
background-color: #d6d6d6;
/* filter: blur(1%); */
border-radius: 12px;
/* border-bottom: 1px solid #d6d6d6; */
transition: .3s;
}

.dropdown__select-option:last-of-type {
border-bottom: 0;
}

.dropdown__select-option:hover {
/* background-color: #f9f9f9; */
}

@media (min-width: 768px) {
.dropdown-tiles {
  width: 100%;
}
}

/* Ensure that the arrow rotation is centered properly */
.dropdown__filter::after {
transform-origin: center;
}



/* ************************ */
/* Dropdown CSS End */
/* ************************ */
.br2{
width: 30%;
  background-color: #C3DCFA;
  color: black;
  text-align: center;
  font-size: 18px;
  border-radius: 50px;
  padding: 4px 8px;
  margin: 2% auto;
}

/* ****************** */
/* MEDIA FOR MOBILE  */
/* ****************** */
@media (max-width: 468px) {
.product-tiles {
flex-direction: column;
}
.product-card {
  width: 98%;
  
  margin: 5% auto;
}
.relative-products-parent{
justify-content: center;
flex-direction: column;
gap: 10px;
}
.relative-products-container{
width: 98% !important;
margin: 1%;
height: auto;
/* display: flex; */
/* align-items: flex-end; */
padding: 2%;
/* width: 98%; */
}


/* .rel-prod-img {
margin: auto;
width: 98% !important;
} */

.rel-prod-content{
width: 98% !important;
margin: auto;

}

.rel-prod-content h6{
margin: 2% 0;
text-align: center;
}

}
/* Container for all products */
/* .relative-products-parent */
.relative-products-parent {
display: flex;
justify-content: center;
flex-wrap: wrap;
transition: margin-bottom 0.3s ease;
/* background-color: rgba(230, 230, 230, 0.5); */
padding: 20px;
position: relative; /* Add this for relative positioning of absolute elements */
}

/* Individual product container */
.relative-products-container {
flex: 0 0 25%; /* Flex properties for width */
display: flex;
flex-direction: column; /* Ensure column layout */
background-color: white;
margin: 1%;
border-radius: 12px 12px 0 0;
overflow: visible; /* Allow overflow for absolute content */
position: relative;
transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add transform and box-shadow transition */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
cursor: pointer;
transform: scale(1); /* Initial scale */
}
@media screen and (max-width: 1024px) {
.relative-products-container {
  flex: 0 0 45%; /* 45% width for tablet screens (2 in a row) */
}
}
/* .rel-prod-img{

} */

/* Scale container on hover */
.relative-products-container:hover {
transform: scale(1.05); /* Scale up on hover */
z-index: 2; /* Ensure hovered container stays above others */
}

/* Image container */
.rel-prod-img {
padding: 0%;
height: 30vh; 
overflow: hidden;
display: flex;
justify-content: center;
border-radius: 12px 12px 0 0;
align-items: center;
position: relative;
transition: transform 0.3s ease;
}
.rel-prod-img .rel-prod-title{
top: 0;
width: 100%;
position: absolute;
padding: 1%;
background-color: #142350;
color: #fff;
}

.rel-prod-title h6{
text-align: center;
color: #fff;
margin: 0;
font-size: 1.1em;
}
/* Image styling */
.rel-prod-img img {
width: 100%;
max-width: 100%;
transform: translateY(5%);
transition: transform 0.3s ease;
display: block;
margin: auto;
}

/* Scale image on hover */
.relative-products-container:hover .rel-prod-img img {
transform: scale(1.1); /* Scale up image on hover */
}

/* Content container */
.rel-prod-content {
flex: 1; /* Allow content to expand */
padding: 15px;
background-color: #142350;
border-radius: 0 0 12px 12px;
overflow: hidden;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
max-height: 0;
opacity: 0;
transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease; /* Include padding transition */
position: absolute; /* Position absolutely */
top: 30vh; /* Position below the image */
left: 50%;
transform: translateX(-50%);
width: 100%;
z-index: 1;
height: 32vh; /* Auto height to fit content */
}



/* Reset height on hover out */
.relative-products-container .rel-prod-content {
max-height: 0; /* Reset max-height on hover out */
opacity: 0; /* Reset opacity on hover out */
padding: 0 15px; /* Reset padding on hover out */
}

/* Override reset for expanded containers */
.relative-products-container.expanded .rel-prod-content {
max-height: 300px; /* Adjust as needed */
opacity: 1;
padding: 15px; /* Ensure padding is transitioned */
}

/* Expand content on hover */

.relative-products-container:hover .rel-prod-content {
max-height: 300px; /* Adjust as needed */
opacity: 1;
padding: 15px; /* Ensure padding is transitioned */
z-index: 2; /* Ensure the content stays above others */
}
/* .relative-products-container:hover .relative-products-parent {
margin-bottom: 20%;
} */
/* Title styling */
.rel-prod-content h6 {
color: #e6e6e6;
font-size: 2em;
font-weight: 600;
margin: 10px 0;
}

/* Single line truncation for product description */
.rel-prod-content p {
display: -webkit-box;
-webkit-line-clamp: 3; /* Limit to 2 lines */
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
color: #e6e6e6;
font-size: 14px;
margin: 5% 0;
}

.buttons-row {
display: flex;
align-items: center;
}

.dnld {
position: relative;
display: inline-flex;
align-items: center;
margin-left: 4%;
text-decoration: none;
}

.download-pdf-link img {
width: 40px;
}

.dnld .tooltip {
position: absolute;
bottom: 120%; /* Position above the link */
left: 50%;
transform: translateX(-50%);
background-color: white; /* Dark background */
color: #000;
padding: 5px 10px;
border-radius: 4px;
white-space: nowrap;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
pointer-events: none; /* Avoid hover events on tooltip */
}

.dnld:hover .tooltip {
opacity: 1;
visibility: visible;
}

.view-more-link {
display: inline-flex;
align-items: center;
text-decoration: none;

color: white;
}

.view-more-link:hover {
color: #e6e6e6;
}

.view-more-link .view-img-container1 {
position: relative;
width: 150px; /* Adjust size as needed */
height: 50px; /* Ensure height matches width */
margin-left: 5px; /* Space between text and image */
}

.view-more-link .view-img-container1 img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
transition: opacity 0.3s ease;
}
.view-more-link .view-img-container2 {
position: relative;
width: 45px; /* Adjust size as needed */
height: 45px; /* Ensure height matches width */
margin-left: 5px; /* Space between text and image */
}

.view-more-link .view-img-container2 img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
transition: opacity 0.3s ease;
}

.h-dnld {
border: 2px solid white;
border-radius: 100%;
}


.view-more-link .default-img {
opacity: 1;
}

.view-more-link .hover-img {
opacity: 0;
}

.view-more-link:hover .default-img {
opacity: 0;
}

.view-more-link:hover .hover-img {
opacity: 1;
}

/* Title styling */
.rel-prod-content h6 {
color: #e6e6e6;
font-size: 24px;
font-weight: 600;
/* text-align: center; */
margin-bottom: 10px;
}




.buttons-row{
display: flex;
align-items: center;
}

.dnld {
position: relative;
display: inline-flex;
align-items: center;
margin-left: 4% ;
text-decoration: none;
}
.download-pdf-link img{
width: 40px;
}
.dnld .tooltip {
position: absolute;
bottom: 120%; /* Position above the link */
left: 50%;
transform: translateX(-50%);
background-color: white; /* Dark background */
color: #000;
padding: 5px 10px;
border-radius: 4px;
white-space: nowrap;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
pointer-events: none; /* Avoid hover events on tooltip */
}

.dnld:hover .tooltip {
opacity: 1;
visibility: visible;
}


.view-more-link {
display: inline-flex;
align-items: center;
text-decoration: none;
color: white;
}
.view-more-link:hover{
color: #e6e6e6;
}

.view-more-link .view-img-container {
position: relative;
border: 2px solid white;
height: 50px; /* Ensure height matches width */
margin-left: 5px; /* Space between text and image */
}

.view-more-link .view-img-container img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
transition: opacity 0.3s ease;
}
.h-dnld{
border: 2px solid white;
border-radius: 100%;
}

.view-more-link .default-img {
opacity: 1;
}

.view-more-link .hover-img {
opacity: 0;
}

.view-more-link:hover .default-img {
opacity: 0;
}

.view-more-link:hover .hover-img {
opacity: 1;
}






/* ************************************************* *
/* DEFENSE PAGE CSS Start */
/* ************************************************* */
/* Default styles */
.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 20px 0;
}

.slider-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    gap: 20px;
    padding: 20px 0;
}

.slider-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.card {
    flex: 0 0 450px;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
}
.card-img {
  /* width: 100%; */
  height: 250px;
  }
  
  .card img {
  width: 100%;
  /* height: 100%; */
  display: block;
  }

.s-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #142350;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.s-btn:hover {
    background-color: #1a2c6b;
}

.btn-prev {
    left: 10px;
}

.btn-next {
    right: 10px;
}

.section-amplifyp {
position: relative;
overflow: hidden;
height: 90vh;
color: #142350;
text-align: justify;
}

.section-amplifyp h2,
.section-amplifyp .h2 {
color: #870000;
font-weight: 200
}

.section-amplifyp .amp-img {
position: absolute;
top: 0;
left: 0;
z-index: -2;
width: 70%;
height: 100%;
-o-object-fit: cover;
object-fit: cover
}

.section-amplifyp .bg-red {
background: #e6e6e6;
width: 45%;
height: 100%;
position: absolute;
right: 0;
top: 0;
z-index: -1;
-webkit-clip-path: polygon(16% 0%, 100% 0, 100% 100%, 0% 100%);
clip-path: polygon(16% 0%, 100% 0, 100% 100%, 0% 100%)
}

.section-amplifyp .container-outer {
position: absolute;
left: 0;
right: 0;
top: 50%;
transform: translateY(-50%)
}

/* Search Container */
.search-container {
position: relative;
width: 100%;
max-width: 400px;
}

/* Search Input Styling */
#search-input {
width: 100%;
padding: 12px 20px;
font-size: 16px;
border: 2px solid #ddd;
border-radius: 30px;
transition: all 0.3s ease;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
outline: none;
}

/* Search Input Focus State */
#search-input:focus {
border-color: #6200ea;
box-shadow: 0 5px 20px rgba(98, 0, 234, 0.3);
transform: scale(1.05);
}

/* Suggestions List Styling */
#suggestions {
position: absolute;
width: 100%;
background-color: white;
border-radius: 0 0 20px 20px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
max-height: 200px;
overflow-y: auto;
z-index: 10;
}

#suggestions li {
padding: 12px 20px;
cursor: pointer;
border-bottom: 1px solid #ddd;
transition: background-color 0.3s ease;
}

#suggestions li:last-child {
border-bottom: none;
}

#suggestions li:hover {
background-color: #f0f0f0;
}

/* Product List Styling */
#product-list {
margin-top: 20px;
list-style-type: none;
}

#product-list li {
padding: 12px 20px;
background-color: white;
border-radius: 20px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
margin-bottom: 10px;
transition: transform 0.3s ease;
}

#product-list li:hover {
transform: translateY(-5px);
}


/* Custom Modal Styles */
.modal-content {
border-radius: 15px;
overflow: hidden;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.2);
transform: translateY(-30px);
transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.modal.fade .modal-dialog {
transition: transform 0.3s ease-out;
}

.modal.fade.show .modal-dialog {
transform: translateY(0);
}

.modal-header {
background: #142350;
color: white;
padding: 1.25rem;
}

.ver-modal-title {
font-size: 1.6rem;
color: white;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 0.05em;
}

.ver-btn {
background-color: #142350;
border-color: #0d6efd;
border-radius: 50px;
color: #ffff;
padding: 0.5rem 1.5rem;
font-size: 1.1rem;
transition: background-color 0.3s ease;
}

.ver-btn:hover {
background-color: #0a58ca;
color: #ffff;
}
.ver-btn:focus {
border-color: #0a58ca;
}

.email-icon {
width: 40%;
}

.email-input {
border-radius: 50px;
border: 1px solid #142350;
padding: 0.75rem 1.25rem;
font-size: 1.1rem;
transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.email-input:focus {
border-color: #0a58ca;
box-shadow: 0 0 5px rgba(13, 110, 253, 0.5);
}

.modal-body p {
font-size: 1.1rem;
color: #333;
}

.modal-description {
font-size: 1rem;
color: #555;
margin-bottom: 1rem;
}

.modal-footer small {
font-size: 0.9rem;
}

.modal-footer a {
color: #0d6efd;
text-decoration: none;
transition: color 0.3s ease;
}

.modal-footer a:hover {
color: #0a58ca;
}



/* Responsive Adjustments */
@media (max-width: 600px) {


#search-input {
    font-size: 14px;
}

#suggestions li {
    padding: 10px 15px;
}

#product-list li {
    padding: 10px 15px;
}
}

@media only screen and (max-width: 992px) {
.section-amplifyp {
    padding-bottom: 0;
    height: auto
}

.section-amplifyp .container-outer {
    position: initial;
    transform: none;
    top: initial;
    left: initial;
    right: initial;
    padding-top: 4rem;
    padding-bottom: 4rem;
    background: #c3dcfa
}

.section-amplifyp .amp-img {
    position: initial;
    top: initial;
    left: initial;
    width: 100%
}

.section-amplifyp .bg-red {
    display: none
}
}


/* Media query for mobile screens */
@media (max-width: 468px) {
.card {
  flex: 0 0 100%; /* Full width for mobile screens */
  margin: 0 2%; /* No margin for mobile screens */
}

.card-img {
  height: 200px; /* Adjust height as needed for mobile */
}

.btn {
  width: 40px; /* Adjust button size as needed for mobile */
  height: 40px; /* Adjust button size as needed for mobile */
}

.btn-prev {
  left: 5px; /* Adjust left position as needed for mobile */
}

.btn-next {
  right: 5px; /* Adjust right position as needed for mobile */
}
.br2{
  width: 95%;
  margin: auto;
  }
}
/* ************************************************* *
/* DEFENSE PAGE CSS END */
/* ************************************************* */

