/* General styles */
body {
    font-family: Arial, sans-serif;
}

/* Navbar Styling */
/* Navbar Background */
.navbar {
    background-color: rgba(0, 0, 0, 0.99);
    padding: 12px 20px;
}

/* Logo Styling */
.logo-text {
    color: #f5a623; /* Golden Text */
    font-size: 18px;
    font-weight: bold;
    margin-left: 5px;
}

/* Menu Links */
.navbar-nav .nav-link {
    color: white;
    font-size: 16px;
    margin-right: 15px;
}

.navbar-nav .nav-link:hover {
    color: #f5a623;
}

/* Icons Section */
.navbar-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
}

.navbar-icons i {
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.navbar-icons i:hover {
    color: #f5a623;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Adjust Dropdown Style */
.dropdown-menu {
	padding:20px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.dropdown-item {
    color: white;
    font-size: 14px;
}

.dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0.06);
    color: #f5a623;
}


/* Hero Section */
.carousel-item img {
    height: 90vh;
    object-fit: cover;
}
.carousel img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: bold;
}

.carousel-caption p {
    font-size: 1.2rem;
}

.carousel-caption .btn {
    margin: 10px;
}
@media (max-width: 768px) {
    .carousel-caption {
	display:none;
    }
}

/* Services Section */
#services {
    background-color: #f8f9fa;
}

#services h2 {
    font-weight: bold;
}

.service-card {
    transition: transform 0.3s ease-in-out;
}

.service-card:hover {
    transform: scale(1.05);
}

.service-card img {
    height: 200px;
    object-fit: cover;
}

.service-card .card-body {
    text-align: center;
}

/* Why Choose Us Section */
#why-choose-us {
    background-color: #ffffff;
}

.choose-box {
    background-color: #ff9800;
    color: white;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.choose-box h3 {
    font-weight: bold;
}

.choose-box ul {
    list-style: none;
    padding: 0;
}

.choose-box ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.choose-box ul li::before {
    content: "✔";
    color: white;
    position: absolute;
    left: 0;
}

/* Warehouse Section */
#warehouse h3 {
    font-weight: bold;
    margin-bottom: 15px;
}

#warehouse ul {
    list-style: none;
    padding: 0;
}

#warehouse ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

#warehouse ul li::before {
    content: "✔";
    color: #ff9800;
    position: absolute;
    left: 0;
}
/*features section*/
.features {
    padding: 50px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.feature-box {
    width: 45%;
    padding: 20px;
    text-align: center;
	border : 1px solid;
	margin : 20px;
	
    background-color: #ffffff; /* Adds a white background */
    border-radius: 10px; /* Optional: Rounded corners */
}

.feature-box img {
    width: 50px;
    height: 50px;
}

h3 {
    color: #333;
    font-size: 22px;
    margin-top: 10px;
}

p {
    color: #666;
    font-size: 16px;
}

/* Testimonials Section */
#testimonials {
    background-color: #f8f9fa;
}

.testimonial {
    max-width: 600px;
    margin: auto;
    padding: 20px;
}

.testimonial img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial p {
    font-style: italic;
    color: #555;
}

/* Newsletter Section */
#newsletter {
    padding: 50px 0;
}

.newsletter-form {
    max-width: 500px;
    margin: auto;
}

.newsletter-form input {
    width: 70%;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.newsletter-form button {
    width: 25%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #ff9800;
    color: white;
    font-weight: bold;
}
/* Ensure Carousel Buttons are Visible */
#testimonial-carousel .carousel-control-prev,
#testimonial-carousel .carousel-control-next {
    width: 5%;
}

#testimonial-carousel .carousel-control-prev-icon,
#testimonial-carousel .carousel-control-next-icon {
    background-color: black; /* Change color for visibility */
    border-radius: 50%;
    padding: 10px;
}

/* Adjust Carousel Buttons Position */
#testimonial-carousel .carousel-control-prev {
    left: -50px;
}

#testimonial-carousel .carousel-control-next {
    right: -50px;
}

/* Footer Section */
.footer {
    background-color: #222;
    color: white;
}

.footer h5 {
    font-weight: bold;
    margin-bottom: 15px;
}

.footer p, 
.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .social-links a {
    color: white;
    font-size: 20px;
    margin-right: 10px;
}

.footer .social-links a:hover {
    color: #ff9800;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer .col-md-4 {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer .social-links {
        text-align: center;
    }
}
/* Prevent horizontal scrolling */
body {
    overflow-x: hidden;
}

/* Ensure all sections fit within the viewport */
.container, .row {
    margin: 0;
    padding: 0;
    max-width: 100%;
}

/* Fix potential flexbox issues */
.row {
    display: flex;
    flex-wrap: wrap;
}
