body {
    font-family: 'Arial', sans-serif;
}


.search-bar {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.search-bar input {
    width: 50%;
    padding: 8px;
}

.search-bar button {
    padding: 8px;
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

/* Filters */
.filter-sort {
    display: flex;
    justify-content: space-between;
}

.card {
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* Ensure the header stays on top */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1500;
    background: white; /* Ensure it's visible */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Prevent content from hiding behind the fixed header */
section, main {
    margin-top: 80px; /* Push content down */
}

/* Hero Section */
/* Video Background Section */
#video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Full-screen video */
#video-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire section */
}
/* Fallback Image (Initially Hidden) */
.fallback-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    display: none; /* Hidden by default */
}

.fallback-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay for better text readability */
.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    padding: 30px;
    border-radius: 10px;
}

.video-overlay h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.video-overlay p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn-primary {
    background: #007bff;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #0056b3;
}

/* Style for Active Menu Item */
.navbar-nav .nav-link.active {
    color: #ff9800 !important; /* Orange highlight for active menu */
    font-weight: bold;
    border-bottom: 2px solid #ff9800; /* Underline effect */
}
/* Dropdown menu styling */
.navbar .dropdown-menu {
    background-color: #222; /* Dark background */
    border: none;
}

.navbar .dropdown-item {
    color: white !important;
}

.navbar .dropdown-item:hover {
    background-color: #ff9800 !important; /* Orange hover effect */
}

/* Highlight active dropdown item */
.navbar .dropdown-item.active {
    background-color: #ff9800 !important;
    font-weight: bold;
}


/* Service Boxes */
.service-box {
    padding: 20px;
    background: #f4f4f4;
    text-align: center;
    margin-top: 20px;
    border-radius: 5px;
}
/* Services Section */
#services {
    padding: 60px 0;
    background: #f4f4f4;
}

.service-box {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    margin-bottom: 20px;
}

.service-box:hover {
    transform: scale(1.05);
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.service-box h4 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

.service-box p {
    font-size: 14px;
    color: #555;
}


/* Contact Form */
.contact-form input, .contact-form textarea {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ddd;
}
/* Testimonials Section */
#testimonials {
    padding: 60px 0;
    background: #f9f9f9;
}

.testimonial-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    margin: 15px;
}

.testimonial-box:hover {
    transform: scale(1.05);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.testimonial-box h4 {
    font-size: 18px;
    font-weight: bold;
    margin: 5px 0;
}

.testimonial-box .designation {
    font-size: 14px;
    color: #777;
}

.testimonial-box .message {
    font-size: 16px;
    color: #555;
    font-style: italic;
}

.rating {
    margin-top: 10px;
}
.why-choose-us .feature-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.why-choose-us .feature-box:hover {
    transform: translateY(-5px);
}


.industry-solutions .industry-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.industry-solutions .industry-box:hover {
    transform: translateY(-5px);
}
/* Spacing to prevent header overlap */
.overview-header {
    padding-top: 100px;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text {
    color: white;
    font-size: 2rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

/* Timeline Styling */
.timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    margin-right: 20px;
    transition: transform 0.3s;
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.1);
}

.timeline-content {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    background: #fff;
    flex-grow: 1;
    transition: all 0.3s;
}

/* Read More Toggle */
.read-more-btn {
    display: inline-block;
    margin-top: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.read-more-btn:hover {
    background-color: #0056b3;
}

.read-more-content {
    display: none;
    margin-top: 10px;
    color: #333;
}

.read-more-content.show {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-icon {
        margin-bottom: 10px;
    }
}
/* Key Areas of Focus Section */
.focus-areas {
    background: #f8f9fa;
    padding: 50px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.focus-item {
    text-align: center;
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.focus-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: white;
    margin: auto;
    transition: transform 0.3s, background-color 0.3s;
}

.focus-item h5 {
    margin-top: 10px;
    font-weight: 600;
    color: #333;
}

/* Hover Effects */
.focus-item:hover {
    transform: translateY(-5px);
}

.focus-icon:hover {
    transform: scale(1.2);
    filter: brightness(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .focus-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}
/* Industries Section */
.industries {
    background: #f8f9fa;
    padding: 50px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

/* Search Box */
#industrySearch {
    max-width: 400px;
    margin: auto;
    padding: 10px;
    font-size: 1rem;
}

/* Industry Grid */
.industry-item {
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.industry-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    color: white;
    margin: auto;
    transition: transform 0.3s, background-color 0.3s;
}

/* Hover Effects */
.industry-item:hover {
    transform: translateY(-5px);
}

.industry-icon:hover {
    transform: scale(1.2);
    filter: brightness(1.2);
}

/* Entrance Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .industry-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}
/* Partner Section */
.partner-section {
    background: url('../images/banner.jpg') no-repeat center;
    background-size: cover;
    padding: 60px 0;
    color: white;
}

/* Product Categories */
.category-card {
    display: block;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: 0.3s;
}

.category-card:hover {
    background: #007bff;
    color: white;
}

.category-card i {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Product Cards */
.card {
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card img {
    height: 200px;
    object-fit: cover;
}

/* Buttons */
.btn-success {
    background: #28a745;
    border: none;
    transition: 0.3s;
}

.btn-success:hover {
    background: #218838;
}


.partner-form input, .partner-form select, .partner-form textarea {
    border-radius: 5px;
    padding: 10px;
}
