
.slider {
    height: 100vh; 
    position: relative;
    overflow: hidden;
}

.slider img {
    width: 100%;
    height: auto; 
    max-height: 100%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(66, 61, 61, 0.685); 
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; 
    transform: translateX(100%); 
    transition: transform 1s ease, opacity 1s ease; 
    z-index: 0; 
}

.slide.active {
    opacity: 1; 
    transform: translateX(0); 
    z-index: 1; 
}

.slide.prev {
    opacity: 1; 
    transform: translateX(-100%); 
    z-index: 0; 
}

.slide.next {
    opacity: 1; 
    transform: translateX(100%); 
    z-index: 0; 
}

.arrow {
    position: absolute;
    top: 50%; 
    transform: translateY(-50%); 
    font-size: 40px; 
    color: #0180b2; 
    background-color:transparent;
    border: none;
    border-radius: 50%; 
    width: 50px; 
    height: 50px; 
    display: flex; 
    align-items: center;
    justify-content: center;
    cursor: pointer; 
    z-index: 10; 
    transition: background-color 0.3s; 
}
.arrow.left {
    left: 5px; 
    top: 60%;
}

.arrow.right {
    top: 60%;
    right: 5px; 
}

.arrow:hover {
    background-color: rgba(0, 0, 0, 0.7); 
}
.slider .info {
    position: absolute;
    text-align: center;
    color: white;
    z-index: 10;
}
.slider .info h2 {
    font-size: 3.5em;
    text-transform: uppercase;
    animation: slideInDown 1s forwards;
    margin-top: 20px;
}

.slider .info p {
    font-size: 1.5em;
    margin: 10px 0;
    margin-left: 40px;
    margin-right: 40px;
    text-align: center;
    animation: fadeIn 1.5s forwards;
    margin-bottom: 30px;
}

.slider .info .btn {
    padding: 10px 20px;
    margin: 15px;
    margin-top: 70%;
    border: none;
    border-radius: 5px;
    background-color: #00abbb;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 20px;

}

.slider .info .btn:hover {
    background-color: #2685c5;
}
.info span{
    color: #00abbb;
}
.btn-secondary {
    background-color: transparent;
    border: 2px solid #2685c5;
    padding: 10px 20px;
    margin: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    color: #2685c5;
}

.btn-secondary:hover {
    background-color: #00abbb;
    color: white;
}
.svg-container {
    width: 100%;
    height: auto; 
    overflow: hidden; 
}
svg {
    display: block; 
}
@media screen and (max-width: 600px) {


    .slider {
        height: 50vh; 
    }

    .slider img {
        width: 100%;
        height: 100%; 
        max-height: 100vh; 
    }

    .slider .info h2 {
        font-size: 1em; 
        margin-top: 25px;
    }

    .slider .info p {
        font-size: 0.8em; 
    }
    .slider .info .btn {
        padding: 5px 15px; 
        font-size: 0.6em; 
        margin: 10px; 
        margin-top: 150px;
    }

    .btn-secondary {
        padding: 4px 10px; 
        font-size: 0.6em; 
        margin: 10px; 
        
    }
    .arrow{
        font-size: 20px;
        top: 40%;
    }
}
.inquiry-section {
    background-color: #eef8ff;
    padding: 60px 0;
}

.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

.container h2 {
    font-size: 2.8rem;
    color: #000000;
    margin-bottom: 30px;
    font-weight: bold;
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.step {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.step-number {
    background-color: #3baec0;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-text {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}

.container p {
    font-size: 1.3rem;
    color: #333;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .steps {
        flex-direction: column;
        gap: 20px;
    }
}
/*product section*/
.product-section {
    padding: 40px 20px;
    background-color: #e8f7f7;
    text-align: center;
   
}
.separator1{
    border: none; 
    height: 2px; 
    background-color: #00abbb; 
    margin: 20px auto; 
    width: 60%; 
}
.product-section h2 {
    font-size: 2.5em;
    color: #000000; 
    margin-bottom: 30px;
}
    .product-section h4{
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 20px;
}
.product-container {
    display: grid;
   
    grid-template-columns: repeat(auto-fit, minmax(300px, 2fr)); 
    justify-content: center; 
    justify-items: center;
  
}
.product-card {
    background-color: #fff;
    border: 2px solid #2685c5; 
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.384);
    overflow: hidden; 
    transition: transform 0.3s ease; 
    width: 500px;
}

.product-card img {
    width: 100%; 
    height: 300px; 
    object-fit: cover; 
}
.btn2 {
    padding: 15px 20px;
    font-size: 1.4rem;
    border: none;
    border-radius: 5px;
    color: #004f95;
    background-color: transparent;
    cursor: pointer;
    transition: background 0.3s;
    display: block;
    margin: 20px auto;
    max-width: 200px;
    text-align: center;
}

@media (max-width: 768px) {
    .btn2 {
        width: 120px; 
        font-size: 1.2rem; 
    }
   
    
}
@media (max-width: 400px){
    .product-card{
        width: 250px;
        height: 300px;
        padding-top: 5px;
    }
    .product-card img{
        height: 150px;
    }
    .product-card h3{
        font-size: 1em;
    }
}
.product-card:hover {
    transform: translateY(-5px); 
}


.product-card h3 {
    color: #043c51; 
    margin: 15px 0;
}

.price1 {
    font-size: 1.5em;
    color: #3bafbf; 
    margin: 10px 0;
}
.button-container{
   max-width: 300px;
}
.btn1 {
    padding: 10px 20px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    width: 300px;
    background-color: #2685c5; 
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}
.btn1:hover {
    background-color: #3bafbf; 
}
.faqs-section {
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.container2{
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 15px 10px;
  font-size: 18px;
  text-align: left;
  cursor: pointer;
  font-weight: bold;
  color: #333;
  outline: none;
}

.faq-question:hover {
  color: #00abbb;
}

.faq-icon {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 16px;
  padding: 0 10px;
  color: #555;
}

.faq-answer p {
  margin: 10px 0;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Adjust as needed for content */
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/*about us section*/
.about-us {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background-color: #eef8ff;
    transform: translateY(20px);
}

.about-container {
    display: flex;
    flex-direction: row; 
    align-items: center;
    max-width: 1200px;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(17, 1, 1, 0.575);
    overflow: hidden;
}

.about-image {
    background-image: url(../Images/bg1.png);
    background-color: #2685c5;
    flex: 1;
    transition: transform 0.5s ease;
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-content {
    flex: 1;
    padding: 20px;
    animation: fadeIn 1s ease-in-out;
}

.about-content h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #00abbb;
    text-align: center;
}

.about-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.btn5{
    padding: 10px 20px;
    background-color: #00abbb;
    font-size: 1em;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn5:hover {
    background-color: #004f95; 
}

.button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
@media (max-width: 768px) {
    .button-container {
        flex-direction: column;
    }

    .button-container .btn {
        margin-bottom: 10px; 
    }
}

@media screen and (max-width: 768px) {
    .about-container {
        flex-direction: column; 
    }

    .about-image {
        order: 2; 
    }

    .about-content {
        text-align: justify; 
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px); 
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Sale Section Styles */
.sale-section {
    position: relative; 
    width: 100%;
    height: 400px; 
    background-image: url('../Images/p3.jpg'); 
    background-size: cover; 
    background-position: center; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}
.sale-overlay {
    position: absolute; 
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); 
    color: white; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    padding: 20px; 
}

.sale-overlay h2 {
    font-size: 2.5rem; 
    margin-bottom: 10px; 
}

.sale-overlay p {
    font-size: 1.5rem; 
    margin-bottom: 20px;
}

.btn4{
    background-color: transparent;
    border: 2px solid #00abbb;
    padding: 10px 20px;
    margin: 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.5em;
    transition: background 0.3s;
    color: #00abbb;
}

.btn4:hover {
    background-color: #00abbb; 
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sale-overlay h2 {
        font-size: 2rem; 
    }

    .sale-overlay p {
        font-size: 1.2rem; 
    }
}
