/* Body styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
   
}

/* Navbar styling */
.navbar {

    background: linear-gradient(135deg, #01012b, #000613); /* Black to Silver */
    
    z-index: 10; /* Ensure navbar is on top */
    transition: background 0.3s ease-in-out; /* Smooth transition for background change */

}

/* Navbar with gradient background (on scroll) */
.navbar.scrolled {
    background: linear-gradient(to right, #424144, rgb(22, 22, 22)) !important; /* Gradient background */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Optional shadow for effect */
}

/* Navbar items */
.navbar-nav .nav-item {
    margin: 0 10px;
 /* Horizontal spacing */
}

 .navbar-brand{
    font-weight: 700;
    margin-left: 19px;
    
}
.navbar-brand span{
    color: red;
}
.navbar-nav .contact {
    background-color: #c92c10;
    border-radius: 10px;
}

.navbar-nav .nav-link {
    color: white !important; /* White text */
    font-size: 18px;
    padding: 10px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
   
}

/* Hover effects for links */


.navbar-nav .nav-link:active {
    font-weight: bold;
}

/* Custom section styling */
.custom-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('images/istockphoto-478107962-1024x1024.jpg') center/cover no-repeat;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 60px; /* Ensure navbar is clear */
    text-align: left;
    
}

/* Animations */
.custom-left {
    animation: fadeInLeft 1.5s ease-in-out;
}

.custom-right {
    animation: fadeInRight 1.5s ease-in-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.custom-section h1 {
    font-size: 2.5rem;
    color:red;
    font-weight: 800;
    margin-top: 180px;
}

.custom-section p {
    font-size: 1.2rem;
    color: #e0dfdf;
    text-align: justify;
    margin-top: 3px;
}



        /* part 3 */
        .advantage-card {
            /* Light gray */
           
           
            padding: 20px;
            text-align: center;
            
        }



       

        .advantage-icon {
            font-size: 1.5rem;
            color:red;
            margin-bottom: 15px;
        }

        .advantage-text {
            font-size: 1.1rem;
            color: #333;
        }










        /* Heading Styles */

/* Navigation Arrows */
.navigation-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.arrow {
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
}

.arrow:hover {
    background: #007BFF;
}










/* Footer Styling */
.footer {
    position: relative;
    color: white;
    text-align: left;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

/* Footer Background Image with Black & White Effect */
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/istockphoto-155071275-612x612.jpg'); /* Background image */
    background-size: cover;
    background-position: center;
    filter: grayscale(100%); /* Makes the image black and white */
    z-index: 0; /* Places it behind the content */
    opacity: 0.8; /* Optional: Adjust image transparency */
}

/* Footer Content Overlay */
.footer-overlay {
    position: relative;
    background: rgba(0, 0, 0, 0.6); /* Overlay for opacity */
    padding: 30px;
    border-radius: 10px;
    z-index: 1; /* Ensures content is above the background */
}

/* Footer Top Section */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* Contact Details Styling */
.contact-details {
    max-width: 50%;
    margin-left: 150px;
}

.contact-details h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ee3525; /* Highlight color */
}

.contact-details p {
    font-size: 16px;
    margin: 5px 0;
}

/* Footer Image Styling */
.footer-image img {
    max-width: 350px;
    border-radius: 10px;
    margin-right: 100px;
}

/* Footer Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

/* Footer Sections Styling */
.footer-section h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ff6f61;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6f61;
}





.about-us-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    
}

/* Text Styling */
.about-text {
    max-width: 50%;
    color: #333;
    padding-right: 20px;
    text-align: justify; /* Justifies the text */
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    color: red;
 /* Centered heading */
    text-transform: uppercase; /* Makes heading uppercase */

    text-align:center; /* Ensures underline matches text width */
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    text-align: justify; /* Justifies paragraph text */
}

/* Image Styling */
.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px; /* Rounded corners for the image */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Shadow for depth */
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-us-section {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .about-image img {
        max-width: 80%;
    }
}









.product-description {
    color: #fff;
   
   margin-left: 80px;
   margin-top: 49px;
    
}
.product-description h2 {
    color: white;
    font-weight: 700;
    font-size: 120px;
    
     /* Red for product title */
}
.product-description p {
    color: #111111; /* Blue for description text */
}

.product-description h2 {
position: relative;
text-align: center;
font-size: 24px;
}

.underline {
position: absolute;
width: 10%;
height: 2px;
background-color: red; /* Red underline */
top: 70px; /* Adjust to place it under the text */
left: 36%; /* Center the underline */
}

.product-description ul {
margin-top: 49px;
list-style-type: none;
padding-left: 29px;
}

.product-description ul li {
margin-bottom: 5px;
}



.ceo-message {
    
    color: rgb(14, 13, 13);
    padding: 60px 20px;
    
  }
  .ceo-message img {
    border-radius: 50%;
    margin-bottom: 20px;
  }


  .features {
    padding: 60px 20px;
  }
  .features .card {
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .features .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }








 