/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Section */
header {
    background-color: #0077b6; /* Main color from your palette */
    padding: 15px 0;  
    overflow: hidden;

}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    max-height: 90px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}


header nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

header nav ul li {
    margin-left: 25px; /* Space between menu items */
}

header nav ul li a {
    color: #caf0f8; /* Light color from your palette */
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #48cae4; /* Hover color */
}


.quote-button {
    background-color: #00b4d8; /* Accent color */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.quote-button:hover {
    background-color: #0096c7; /* Darker accent color on hover */
}


/* Social Media Icons */
.social-icons {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.social-icons a {
    margin-left: 10px; /* Space between icons */
    transition: transform 0.3s ease;
}

.social-icons a img {
    width: 20px; /* Adjust icon size */
    height: 20px;
}

.social-icons a:hover {
    transform: scale(1.2); /* Slightly enlarge icon on hover */
}


/* Adjust for tablets and smaller devices */
@media (max-width: 768px) {
    .header-content {
        display: flex;
        flex-direction: column; /* Stack the content vertically */
        text-align: center;
    }

    header nav ul {
        display: flex;
        justify-content: center; /* Horizontally center the menu */
        flex-direction: row; /* Set navigation links in a horizontal line */
        padding: 0;
        margin: 10px 0;
    }

    header nav ul li {
        margin-left: 15px; /* Adjust spacing between menu items */
    }

    .social-icons {
        display: flex;
        justify-content: center; /* Center the social icons */
        margin-top: 10px;
    }

    .social-icons a {
        margin-left: 10px; /* Spacing between social icons */
    }

    .quote-button {
        margin-top: 15px;
        display: inline-block; /* Ensures the button appears as a block element */
    }
}

/* Adjust for smaller mobile devices (phones) */
@media (max-width: 480px) {
    header .logo img {
        max-height: 70px; /* Smaller logo */
    }

    header nav ul li a {
        font-size: 14px; /* Smaller font size for links */
    }

    .quote-button {
        padding: 8px 15px;
        font-size: 14px;
    }

    .social-icons a img {
        width: 20px; /* Keep icon size smaller on phones */
        height: 20px;
    }
}




/* Hero Section */
#hero {
    background-color:   #023e8a; /* Dark background from your palette */
    color: #caf0f8;
    text-align: center;
    padding: 100px 0;
}

.hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}


.btn {
    background-color: #00b4d8;
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-button:hover {
    background-color: #0096c7; 
}




/* Social Icons Container */
.social-icon {
    position: fixed; /* Keeps the icons fixed on the screen */
    top: 50%; /* Positions the container vertically centered */
    left: 10px; /* Adjust the distance from the left edge */
    transform: translateY(-50%); /* Centers the icons vertically */
    z-index: 1000; /* Ensures the icons stay on top of other elements */
    display: flex;
    flex-direction: column; /* Aligns icons in a vertical column */
    align-items: center;
    
}

/* Individual Icon Links */
.social-icon a {
    display: block;
    transition: transform 0.3s ease;
    margin: 10px 0; /* Adjust spacing between icons */
}

/* Icons Size */
.social-icon img {
    width: 25px; /* Adjust the size of the icons */
    height: auto;
    display: block;
   
  
}

.social-icon a:hover {
    transform: scale(1.2); /* Slightly enlarge icon on hover */
}





/* General Section Styling */
.products-section {
    position: relative;
    padding: 60px 10px;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: backgroundAnimation 20s infinite; /* Animation for background change */
}

/* Keyframes for background image change */
@keyframes backgroundAnimation {
    0% { background-image: url('img/slider1.jpg'); }
    25% { background-image: url('img/slider2.jpg'); }
    50% { background-image: url('img/slider3.jpg'); }
    100% { background-image: url('img/slider1.jpg'); }
}

.product-overlay {
    background-color:  white(0, 0, 0, 0.4); /* Darker overlay for better contrast */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; 
}

.product-content {
    position: relative;
    z-index: 2; 
    text-align: center; 
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 28px;
    color: #023e8a; /* Dark primary color */
    margin-bottom: 30px;
}

/* Carousel Styling */
.products-carousel {
    position: relative;
    overflow: hidden;
    max-height: 400px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
/* 
.carousel-track-container {
    overflow: hidden;
    position: relative;
    background-color: white; 
    border-radius: 10px;
    padding: 15px;
} */

.carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.carousel-slide {
    min-width: 280px;
    margin: 0 20px;
    padding: 20px;
    background-color: #ffffff; /* White background for better contrast */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left; /* Align text to the left */
}

.carousel-slide:hover {
    transform: rotateY(20deg) scale(1.1); /* 3D rotation and zoom effect */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Enhanced shadow effect */
}

.carousel-slide img {
    width: 100%;
    height: auto;
    max-height: 150px; /* Reduce height for better text alignment */
    object-fit: contain;
    border-bottom: 2px solid #f0f0f0;
    border-radius: 8px;
    margin-bottom: 15px;
}

.carousel-slide:hover img {
    transform: scale(1.05); /* Slight zoom on hover */
}


.product-name {
    font-size: 16px;
    font-weight: bold;
    color: black; /* Consistent color from your palette */
    margin: 10px 0;
    cursor: pointer; /* Indicate clickable text */
}

/* Carousel Buttons */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #023e8a;
    border: none;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.carousel-button:hover {
    background-color: #0077b6;
}

.carousel-button.left {
    left: 10px;
}

.carousel-button.right {
    right: 10px;
}



/* Responsive Design */
@media (max-width: 768px) {
    .carousel-slide {
        min-width: 220px;
    }

    .carousel-slide img {
        max-height: 120px; /* Adjust image size on smaller screens */
    }

    .section-title {
        font-size: 24px;
    }
}




/* service section css */

.body {
    font-family: 'Arial', sans-serif; /* Set a default font family */
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Light grey background to give a nice contrast */
    color: #333; /* Default text color */
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

.services-section {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    gap: 20px; /* Add space between boxes */
  }
  
  .service-box {
    background-color: white;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2), -5px -5px 15px rgba(255, 255, 255, 0.6);
    padding: 20px;
    width: 30%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-box h3 {
    font-size: 1.5em;
    color: #023e8a;
  }
  
  .service-box p {
    font-size: 1em;
    color: #666;
  }
  
  .service-box .icon {
    font-size: 3em;
    color: #023e8a; /* Customize this to fit your website's color scheme */
    margin-bottom: 10px;
  }
  
  /* Hover Effect for 3D Effect */
  .service-box:hover {
    transform: translateY(-10px);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3), -10px -10px 20px rgba(255, 255, 255, 0.5);
  }
  
  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .services-section {
      flex-direction: column;
      align-items: center;
    }
  
    .service-box {
      width: 80%;
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .service-box h3 {
      font-size: 1.2em;
    }
  
    .service-box p {
      font-size: 0.9em;
    }
  
    .service-box .icon {
      font-size: 2.5em;
    }
  }
  
  

  

/* Downdoads Section */
body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

.downloads-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    overflow: hidden;

    
}

.downloads-box {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 600px;
    transform: rotateY(15deg) scale(1.05); /* 3D hover effect */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.downloads-box h2 {
    color:  #023e8a;
    font-size: 24px;
    margin-bottom: 30px;
}

.download-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f2f5;
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.download-item:hover {
    background-color: #e2e6ea;
}

.download-item a {
    text-decoration: none;
    color: #003366;
    font-size: 18px;
    font-weight: 500;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.download-link {
    color:  #023e8a;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.download-link i {
    margin-right: 5px;
}

.download-link:hover {
    color: #0056b3;
}




/* Footer General Styles */
footer {
    background-color: #03045e; /* Dark primary color from your palette */
    color: #48cae4;
    padding: 40px 10;
    overflow: hidden;

}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    width: 30%;
    margin-bottom: 20px;


}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #90e0ef; /* Light color from your palette */
   
}

.footer-section p,
.footer-section a {
    color: #caf0f8; /* Text color */
    font-size: 14px;
    margin: 5px 0;
    text-decoration: none;
}

.footer-section a:hover {
    color: #48cae4; /* Hover effect color */
}

.footer-bottom {
    background-color: #0077b6; /* Darker color for footer bottom */
    text-align: center;
    padding: 15px 0;
}

.footer-bottom p {
    margin: 40;
    font-size: 14px;
    color: white; 
}

/* Scroll Buttons General Styles */
.scroll-buttons {
    position: fixed;
    right: 20px; /* Distance from the right edge of the screen */
    bottom: 20px; /* Distance from the bottom edge of the screen */
    display: flex;
    flex-direction: column;
    z-index: 1000; /* Ensure the buttons are on top of other elements */
}

.scroll-btn {
    background-color: #023e8a; /* Button background color */
    color: #fff;
    border: none;
    padding: 10px;
    margin: 5px 0;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.scroll-btn:hover {
    background-color: #00b4d8; /* Hover color */
}

.scroll-btn:focus {
    outline: none;
}

.scroll-buttons button:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .scroll-btn {
        padding: 8px;
        font-size: 16px;
    }
}




