/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    color: #333;
}

/* Header */
header {
    background: #008080;
    color: #131313;
    padding: 0;
}
header .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}
header .logo img {
    height: 80px; /* Reduce logo size on smaller screens */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
/* Style for header */
/* Mobile view: Hide the nav menu initially */
/* Default: Show desktop menu, hide mobile menu */
#menu-toggle {
    display: none; /* Hide hamburger on desktop */
}

#header-menu {
    display: flex; /* Show menu normally on desktop */
    justify-content: center;
}

/* Mobile view: Show hamburger, hide default menu */
@media screen and (max-width: 768px) {
    #menu-toggle {
        display: block; /* Show the hamburger button */
    }

    #header-menu {
        display: none; /* Hide desktop menu initially */
        position: fixed;
        top: 0;
        right: 0;
        width: 70%; /* Mobile menu width */
        height: 100vh;
        background-color: #008080;
        box-shadow: -4px 0 6px rgba(0, 0, 0, 0.2);
        padding-top: 60px;
        z-index: 1000;
        overflow-y: auto;
    }

    /* Show the menu when active */
    #header-menu.active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Adjust mobile menu items */
    nav ul {
        flex-direction: column;
        width: 100%;
        padding: 10px;
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
        width: 100%;
    }

    nav ul li a {
        font-size: 20px;
        display: block;
        padding: 10px;
    }

    /* Mobile Dropdown */
    nav ul ul {
        display: none;
        flex-direction: column;
        padding-left: 20px;
        background: #006666;
        border-radius: 5px;
        margin-top: 5px;
    }

    /* Show dropdown when clicking in mobile */
    nav ul li.active > ul {
        display: block;
    }

    /* Make hamburger button always visible */
    #menu-toggle {
        position: fixed;
        top: 10px;
        right: 15px;
        z-index: 1100;
        background-color: transparent;
        border: none;
        font-size: 30px;
        color: white;
        cursor: pointer;
    }
}

/* Handle nested dropdowns (3rd level and beyond) */
.dropdown li {
    position: relative;
}

.dropdown li ul.dropdown {
    top: 0;
    left: 100%;
    margin-left: 1px;
}

/* Optional: Adjust hover behavior */
nav ul li:hover > ul.dropdown,
.dropdown li:hover > ul.dropdown {
    display: block;
}


/* Hero Banner */
.hero-banner {
    position: relative;
    height: 80vh;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    color: #fff;
    text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.7);
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.625rem;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.hero-content .btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #008080;
    color: #fff;
    text-decoration: none;
    border-radius: 0.3125rem;
    font-weight: bold;
    transition: background 0.3s ease;
}

.hero-content .btn:hover {
    background: #007373;
}

/* Slider Wrapper */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    white-space: nowrap; /* Prevents wrapping */
}

/* Make slider move continuously */
.slider-wrapper {
    display: flex;
    width: 200%; /* Double the slides to prevent gaps */
    height: 100%;
    animation: slideAnimation 30s linear infinite; /* Adjust speed as needed */
}

/* Each slide should take up equal space */
.slide {
    flex: 0 0 16.66%; /* Since there are 6 slides, we divide evenly */
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Continuous slide animation */
@keyframes slideAnimation {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); } /* Moves one full set of slides */
}

/* Products Section */
.products {
    padding: 1.875rem 0.625rem;
    text-align: center;
    background-color: #f9f9f9;
}

.products h2 {
    margin-bottom: 1.25rem;
    font-size: 1.8rem;
    color: #333;
}

.product-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
}

.product-item {
    background: #fff;
    padding: 0.9375rem;
    box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.1);
    border-radius: 0.3125rem;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.product-item:hover {
    transform: translateY(-0.3125rem);
}

.product-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 0.625rem;
}

/* Clients Section */
.clients {
    background-color: #f8f8f8;
    padding: 2.5rem 0;
    text-align: center;
}

.clients h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.client-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding: 0 1.25rem;
}

.client-slider .logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 9.375rem;
    height: 5rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0.625rem;
    box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.1);
    padding: 0.625rem;
    transition: transform 0.3s ease-in-out;
}

.client-slider .logo-item:hover {
    transform: translateY(-0.3125rem);
}

.client-slider .logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Footer Styling */
footer {
    background-color: #333; /* Dark background */
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* Footer Content */
.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
}

/* Footer Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-top: 1px solid #555;
    font-size: 14px;
}

/* Align copyright text to the left */
.copyright {
    text-align: left;
}

/* Align "Designed by" text to the right */
.designed-by {
    text-align: right;
}

/* Responsive: Center align on small screens */
@media screen and (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .copyright,
    .designed-by {
        text-align: center;
        margin: 5px 0;
    }
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .clients h2 {
        font-size: 1.5rem;
        margin-bottom: 0.9375rem;
    }
    .client-slider {
        gap: 0.9375rem;
    }
    .client-slider .logo-item {
        width: 7.5rem;
        height: 4.375rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 0.9rem;
    }
    .products h2 {
        font-size: 1.5rem;
    }
    footer .social-icons a {
        font-size: 1rem;
    }
}
nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}
nav ul li a {
    text-decoration: none;
    color: #333;
}
.who-we-are, .vision-mission-values, .history, .product-range {
    padding: 2.5rem 1.25rem;
    text-align: center;
}
.history .timeline {
    margin-top: 1.25rem;
}
.timeline .event {
    padding: 1.25rem;
    background: #f5f5f5;
    margin: 0.625rem;
}
/* Footer Styling */
footer {
    background-color: #333; /* Dark background */
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* Footer Content */
.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
}

/* Footer Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-top: 1px solid #555;
    font-size: 14px;
}

/* Align copyright text to the left */
.copyright {
    text-align: left;
}

/* Align "Designed by" text to the right */
.designed-by {
    text-align: right;
}

/* Responsive: Center align on small screens */
@media screen and (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .copyright,
    .designed-by {
        text-align: center;
        margin: 5px 0;
    }
}

/* Unmanned-Weighbridge Styles */
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Body and Container Styling */
body {
    line-height: 1.6;
    color: #008080;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 75rem;
    margin: 0 auto;
}

/* HEADER SECTION */
.header {
    background-color: #008080;
    color: #fff;
    padding: 0.625rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 6.25rem;
}

.nav ul {
    list-style: none;
    display: flex;
}

.nav ul li {
    margin: 0 1rem;
}

.nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav ul li a:hover {
    color: #f1eeee;
}

/* PAGE HEADER */
.page-header {
    background: url('Images/banner-bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 3.125rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* CONTENT SECTION */
.content {
    background-color: #fff;
    padding: 2.5rem 0;
}

.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.875rem;
    margin-bottom: 2.5rem;
}

.content-left {
    flex: 1;
    min-width: 280px;
}

.content-left h2 {
    font-size: 1.8rem;
    color: #2e3d52;
    margin-bottom: 0.9375rem;
}

.content-left p {
    margin-bottom: 0.9375rem;
}

.content-left ul {
    list-style: disc;
    margin-left: 1.25rem;
}

.content-right img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

/* FEATURES SECTION */
.features h2 {
    text-align: center;
    margin-bottom: 1.25rem;
    color: #008080;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
}

.feature-grid div {
    background: #f1f1f1;
    padding: 1.25rem;
    text-align: center;
    border-radius: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-grid h3 {
    color: #101010;
    margin-bottom: 0.625rem;
}

.feature-grid p {
    text-align: center;
    line-height: 1.6;
    word-spacing: normal;
}

/* SYSTEM WORKFLOW */
.workflow {
    margin: 3.125rem 0;
    text-align: center;
}

.workflow img {
    max-width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* DOWNLOAD BUTTONS */
.downloads h2 {
    text-align: center;
    margin-bottom: 1.25rem;
    color: #008080;
}

.download-grid {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

.cta-button {
    display: inline-block;
    background-color: #111010;
    color: #fff;
    padding: 0.625rem 1.25rem;
    border-radius: 0.3125rem;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #2e3d52;
}

/* FOOTER SECTION */
footer {
    background-color: #008080;
    color: #fff;
    text-align: center;
    padding: 1.25rem 0;
    margin-top: 2.5rem;
}

footer p {
    margin-bottom: 0.625rem;
}

.social-icons a {
    color: #fff;
    margin: 0 0.625rem;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #090909;
}


/* Header Styles */
header {
    background-color: #008080;
    padding: 0.625rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    height: 3.75rem;
}

.nav ul {
    display: flex;
}

.nav ul li {
    margin: 0 1rem;
    position: relative;
}

.nav ul li a {
    color: white;
    font-weight: 600;
    padding: 0.5rem 0;
    display: block;
    font-size: 1rem;
}

.nav ul li:hover .dropdown {
    display: block;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f8f9f9;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.dropdown li a {
    padding: 0.5rem 1rem;
    color: #fff;
    display: block;
}

.dropdown li a:hover {
    background-color: #005555;
}

/* Page Header */
.page-header {
    background: #333 url('Images/page-header-bg.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 3.125rem 0;
}

.page-header h1 {
    font-size: 2.5rem;
    margin: 0;
}

/* Content Section */
.content {
    padding: 3.125rem 0;
    background-color: #fff;
}

.content h2 {
    color: #008080;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.content ul {
    margin-top: 0.625rem;
    margin-left: 1.25rem;
    list-style: disc;
}

.content .swiper-container {
    margin-top: 1.25rem;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
}

.responsive-image {
    max-width: 100%;
    height: auto;
}

/* Features Section */
.features {
    background-color: #f1f1f1;
    padding: 2.5rem 1.25rem;
    margin-top: 1.25rem;
    border-radius: 0.625rem;
}

.features h2 {
    text-align: center;
    margin-bottom: 1.25rem;
    color: #008080;
    font-size: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
    gap: 1.25rem;
}

.feature-grid div {
    padding: 1.25rem;
    background-color: #fff;
    border: 0.0625rem solid #ddd;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
}

.feature-grid h3 {
    margin-bottom: 0.625rem;
    color: #333;
    font-size: 1.5rem;
}

/* Footer */
footer {
    background-color: #008080;
    color: #fff;
    text-align: center;
    padding: 1.25rem 0;
    margin-top: 1.875rem;
}

footer .social-icons {
    margin-top: 0.625rem;
}

footer .social-icons a {
    color: white;
    margin: 0 0.625rem;
    font-size: 1.2rem;
}

footer .social-icons a:hover {
    color: #f1f1f1;
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    font-size: 1rem;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 75rem;
}

/* Header */
.header {
    background-color: #008080;
    color: #fff;
    padding: 1rem 0;
}

.header .logo {
    max-width: 9.375rem;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav ul {
    list-style: none;
    display: flex;
}

.nav ul li {
    margin-left: 1.25rem;
    position: relative;
}

.nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    padding: 0.625rem;
    display: block;
    font-size: 1rem;
}

.nav ul li a:hover {
    color: #ff7f50;
}

/* Dropdown Menu */
.nav ul li .dropdown {
    display: none;
    position: absolute;
    top: 2.5rem;
    left: 0;
    background-color: #008080;
    box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 0.3125rem;
}

.nav ul li:hover .dropdown {
    display: block;
}

.nav ul li .dropdown li a {
    color: #fff;
    padding: 0.625rem 0.9375rem;
}

.nav ul li .dropdown li a:hover {
    background-color: #ff7f50;
}

/* Page Header */
.page-header {
    background: #dfe7e7;
    color: #fff;
    text-align: center;
    padding: 3.125rem 0;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

/* Content Section */
.content {
    padding: 3.125rem 0;
    background-color: #fff;
    border-radius: 0.625rem;
    box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.1);
    margin-top: 1.25rem;
}

.content-grid {
    display: flex;
    gap: 1.875rem;
    justify-content: space-between;
}

.content-left, .content-right {
    flex: 1;
}

.content-left h2 {
    color: #004d4d;
    margin-bottom: 1.25rem;
}

.content-left p {
    margin-bottom: 0.9375rem;
}

.content-left ul {
    margin-left: 1.25rem;
    list-style: disc;
}

.content-right img {
    width: 100%;
    height: auto;
    border-radius: 0.625rem;
}

/* Features Section */
.features {
    margin-top: 2.5rem;
}

.features h2 {
    text-align: center;
    margin-bottom: 1.875rem;
    color: #004d4d;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
    gap: 1.25rem;
}

.feature-grid div {
    background-color: #f4f4f4;
    padding: 1.25rem;
    border-radius: 0.625rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-grid h3 {
    color: #008080;
    margin-bottom: 0.625rem;
}

.feature-grid p {
    font-size: 0.9em;
}

/* Workflow Section */
.workflow {
    text-align: center;
    margin-top: 2.5rem;
}

.workflow img {
    max-width: 100%;
    border-radius: 0.625rem;
}

/* Downloads Section */
.downloads {
    text-align: center;
    margin-top: 2.5rem;
}

.download-grid {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.cta-button {
    text-decoration: none;
    color: #fff;
    background-color: #ff7f50;
    padding: 0.625rem 1.25rem;
    border-radius: 0.3125rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #004d4d;
}

/* Footer */
footer {
    background-color: #004d4d;
    color: #fff;
    text-align: center;
    padding: 1.25rem 0;
    margin-top: 1.875rem;
}

footer p {
    margin-bottom: 0.625rem;
}

.social-icons a {
    color: #fff;
    margin: 0 0.625rem;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #0d0c0c;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav ul {
        flex-direction: column;
        width: 100%;
    }

    .nav ul li {
        margin-left: 0;
    }

    .content-grid {
        flex-direction: column;
    }

    .download-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* Contact Us Styles */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    header img {
        margin-bottom: 0.625rem;
    }

    .contact-details {
        flex-direction: column;
    }

    .contact-details > div {
        width: 100%;
    }

    .maps {
        flex-direction: column;
    }

    .maps iframe {
        width: 100%;
        margin-bottom: 0.625rem;
    }

    .contact-form form {
        width: 100%;
    }
}
/* Header */
header {
    background-color: #008080;
    color: white;
}

.header-top {
    display: flex;
    justify-content: space-between;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.25rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

nav ul li a {
    text-decoration: none;
    color: white;
    padding: 0.625rem 0.9375rem;
}

nav ul li a:hover {
    background-color: #008080;
    border-radius: 0.3125rem;
}

/* Hero Section */
.hero {
    background-color: #008080;
    color: white;
    text-align: center;
    padding: 3.125rem 0;
    font-size: 2.25rem;
}

/* Breadcrumb */
.breadcrumb {
    background-color: #F5F5F5;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* Blog Content */
.image-gallery img {
    max-width: 600px !important;  /* Hard limit */
    width: 100%;
    height: auto;
    display: block;
    margin: 10px auto;
    border-radius: 8px;
}

.blog-section {
    text-align: center;
    padding: 20px;
}
.blog-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.blog-item {
    width: 100%;
    max-width: 600px; /* Adjust based on your preference */
    text-align: center;
}

.blog-item img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.featured-post {
    text-align: center;
}

.featured-post img {
    width: 100%;
    height: auto;
    border-radius: 0.3125rem;
}

.featured-post h2 {
    font-size: 1.5rem;
    margin: 1.25rem 0 0.625rem;
}

.featured-post .read-more {
    background-color: #008080;
    color: white;
    padding: 0.625rem 1.25rem;
    text-decoration: none;
    border-radius: 0.3125rem;
}

.tabbed-posts {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tab {
    background-color: #F5F5F5;
    padding: 0.625rem 1.25rem;
    border: none;
    cursor: pointer;
}

.tab.active {
    background-color: #008080;
    color: white;
}

/* Blog Cards */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(15.625rem, 1fr));
    gap: 1.25rem;
}

.blog-card img {
    width: 100%;
    height: auto;
    border-radius: 0.3125rem;
}

.blog-card h3 {
    font-size: 1.125rem;
    margin: 0.625rem 0;
}

.blog-card .read-more {
    display: inline-block;
    background-color: #008080;
    color: white;
    padding: 0.3125rem 0.625rem;
    text-decoration: none;
    border-radius: 0.1875rem;
}

/* Footer */
footer {
    background-color: #008080;
    color: white;
    padding: 1.25rem 2.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .header-main {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Main Content */
main {
    padding: 2.5rem 0;
    background: #f8f8f8;
}

.about-section h1 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.about-section p {
    margin-bottom: 1rem;
    text-align: justify;
}

.features-section {
    background: white;
    padding: 1.25rem;
    border-radius: 0.3125rem;
    margin-bottom: 2.5rem;
}

.features-section ul {
    list-style: disc;
    margin-left: 1.25rem;
}

.features-section li {
    margin-bottom: 0.625rem;
}

.image-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.image-card {
    flex: 1 1 calc(25% - 1.25rem);
    background: white;
    border: 0.0625rem solid #ddd;
    border-radius: 0.3125rem;
    overflow: hidden;
    text-align: center;
}

.image-card img {
    width: 100%;
    height: auto;
}

.image-card p {
    margin: 0.625rem 0;
    font-weight: bold;
}

footer {
    background-color: #008080;
    color: white;
    padding: 2.5rem 0;
    text-align: center;
}

footer .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .footer-content div {
    flex: 1 1 calc(33.33% - 1.25rem);
    margin-bottom: 1.25rem;
}

footer h3 {
    margin-bottom: 0.625rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.625rem;
}

footer ul li a {
    color: white;
}

footer .social-icons a {
    color: white;
    font-size: 1.25rem;
    margin: 0 0.625rem;
    display: inline-block;
}

footer .social-icons a:hover {
    color: #101010;
}

.dropdown ul {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: #008080;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.dropdown li:hover > ul {
    display: block;
}

@media screen and (max-width: 48rem) {
    nav ul {
        display: flex;
        flex-direction: column;
    }
    
    .dropdown {
        position: static;
    }
    
    .dropdown ul {
        position: static;
        margin-left: 1.25rem;
    }
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

header {
    background: #008080;
    color: #fff;
    padding: 1.25rem 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header p {
    margin: 0.625rem 0 0;
    font-size: 1.2rem;
}

.container {
    width: 90%;
    max-width: 75rem;
    margin: 0 auto;
    padding: 1.25rem 0;
}

.content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.content .intro {
    flex: 1 1 50%;
}

.content .intro h2 {
    font-size: 1.8rem;
    color: #2c3e50;
}

.content .image {
    flex: 1 1 45%;
}

.content .image img {
    max-width: 100%;
    height: auto;
}

.features {
    background: #f8f9fa;
    padding: 2.5rem 0;
    text-align: center;
}

.features h2 {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    color: #2c3e50;
}

.features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features ul li {
    margin: 0.625rem 0;
}

.app-screens {
    padding: 2.5rem 0;
    text-align: center;
}

.app-screens h2 {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    color: #2c3e50;
}

.screens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(9.375rem, 1fr));
    gap: 1.25rem;
}

.screens-grid img {
    width: 100%;
    height: auto;
    border: 0.0625rem solid #ccc;
    border-radius: 0.3125rem;
}

footer {
    background: #008080;
    color: #fff;
    text-align: center;
    padding: 0.625rem 0;
}
  /* Footer */
 /* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
.header {
    background-color: #008080;
    color: white;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.logo h1 {
    font-size: 1.5rem;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
}

/* Banner */
.banner {
    background-color: #e5e5e5;
    padding: 5vh 0;
    text-align: center;
}

.banner h2 {
    font-size: 2.5rem;
}

/* Product Details */
.product-details {
    display: flex;
    padding: 5vw;
    gap: 2vw;
}

.product-info img {
    width: 100%;
    max-width: 25rem;
    border: 1px solid #ddd;
}

.product-specs table {
    width: 100%;
    border-collapse: collapse;
}

.product-specs table th,
.product-specs table td {
    border: 1px solid #ddd;
    padding: 0.5rem;
}


/* Style for the floating WhatsApp icon */
#whatsapp-popup-button {
    position: fixed;
    bottom: 20px;    /* Distance from the bottom */
    left: 20px;      /* Align to the left */
    z-index: 9999;
    border-radius: 50%;
    background-color: #1ed145e6; /* WhatsApp Green */
    padding: 8px; /* Reduce padding */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* WhatsApp icon size */
#whatsapp-popup-button img {
    width: 40px;  /* Adjust width */
    height: 40px; /* Adjust height */
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
}


/* Add hover effect */
#whatsapp-popup-button:hover img {
    transform: scale(1.1);
}

  /* Optional: Hover effect */
  #whatsapp-popup-button:hover img {
    transform: scale(1.1);
  }

/* Footer */
.footer {
    background-color: #008080;
    color: white;
    padding: 2rem 5%;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 2vw;
    flex-wrap: wrap;
}

.footer ul {
    list-style: none;
}

.footer ul li a {
    color: white;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
}
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f8f8f8;
}

header {
    background-color: #008080;
    color: white;
    padding: 20px;
}

h1, h2 {
    margin: 10px 0;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Ensures proper spacing */
    gap: 15px;
    padding: 20px;
    justify-items: center; /* Centers images inside the grid */
}

.product {
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    text-align: center;
}

.product:hover {
    transform: scale(1.05);
}

/* Resizing & Aligning Images */
.product img {
    width: 100%; /* Ensures responsiveness */
    max-width: 150px; /* Limits maximum size */
    height: auto; /* Maintains aspect ratio */
    border-radius: 5px;
    object-fit: contain; /* Ensures images fit well */
}

/* Footer */
footer {
    background-color: #008080;
    color: white;
    padding: 10px;
    margin-top: 20px;
}

/*Weighing scale styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    box-shadow: none; /* Removed box shadow */
    background: none; /* Removed white background */
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #000;
    padding: 10px;
    background: #008080;
}

.logo img {
    width: 120px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

nav ul li {
    position: relative;
    display: inline-block;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    padding: 10px 15px;
    display: block;
}

/* Mobile Menu */
#menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
}

@media (max-width: 768px) {
    #menu-toggle {
        display: block;
    }
    nav ul {
        display: none;
        flex-direction: column;
        background: #008080;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
    }
    nav ul li {
        display: block;
        text-align: center;
    }
    nav ul.show {
        display: flex;
    }
}

.scale-section {
    margin-top: 20px;
    padding: 20px;
    background: none; /* Removed white background */
    border-left: 5px solid green;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.number {
    background: green;
    color: white;
    padding: 10px;
    font-size: 1.5em;
    margin-right: 10px;
    border-radius: 50%;
}

.content {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin-top: 10px;
    background: none; /* Removed white background */
}

.content img {
    width: 90%;
    max-width: 300px;
    margin-bottom: 20px;
    border-radius: 10px;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    padding: 5px 0;
    font-size: 1em;
}

.catalog-download {
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    background: #008080;
    color: white;
    border-radius: 10px;
}

.download-btn {
    display: inline-block;
    background: #ffffff;
    color: #008080;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.download-btn:hover {
    background: #f4f4f4;
}


.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
    background: none;
    color: white;
    padding: 20px;
}

.footer-content div {
    margin-bottom: 20px;
}

.footer-bottom {
    text-align: center;
    background: #008080;
    color: white;
    padding: 10px;
}

/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
}

/* Main Container */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    background-color:none;
    border-radius: 10px;
}

/* Header Styling */
.header {
    text-align: center;
    color: none;
    font-weight: bold;
    margin-bottom: 20px;
}

.header h1 {
    font-size: 22px;
    text-transform: uppercase;
}


/* Content Layout */
.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Text Content (Left Aligned) */
.text-content {
    flex: 1;
    max-width: 60%;
    text-align: left;
}

/* Features List */
.features {
    list-style-type: none;
    padding: 0;
}

.features li {
    color: #008080;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Image Container (Right Aligned) */
.image-container {
    flex: 1;
    max-width: 40%;
    text-align: right;
}

.image-container img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border: 2px solid #008080;
    padding: 5px;
    border-radius: 10px;
}

/* Footer Number */
.footer-number {
    text-align: center;
    font-size: 18px;
    color: #008080;
    font-weight: bold;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .text-content {
        max-width: 100%;
    }

    .image-container {
        max-width: 100%;
        text-align: center;
        margin-top: 20px;
    }
}

.download-section {
    text-align: center;
    margin-top: 20px;
}

.download-btn {
    background-color: #008080;
    color: #ffffff;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    transition: background 0.3s ease;
}

.download-btn:hover {
    background-color: #005f5f;
}

/* TALLY Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #fff;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #008080;
}

.logo img, .tally-logo img {
    width: 120px;
}

/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background: #f5f5f5;
    text-align: center;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.5;
}

/* Section Divider */
.section-divider {
    text-align: center;
    font-size: 1.2rem;
    margin: 20px;
    font-weight: bold;
}

/* Green Box for Tally Features */
.features {
    background: #f8fafb;
    color: rgb(7, 7, 7);
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    margin: 20px;
}

.features h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.features p {
    font-size: 1.2rem;
    line-height: 1.5;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features li {
    font-size: 1rem;
    margin: 10px 0;
}

.pdf-download {
    text-align: center;
    margin: 20px 0;
}

.download-btn {
    display: inline-block;
    background: #008080;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.download-btn:hover {
    background: #005f5f;
}

/* Footer */
footer {
    background-color: #008080;
    color: #fff;
    text-align: center;
    padding: 1.25rem 0;
    margin-top: 1.875rem;
}

footer .social-icons {
    margin-top: 0.625rem;
}

footer .social-icons a {
    color: white;
    margin: 0 0.625rem;
    font-size: 1.2rem;
}

footer .social-icons a:hover {
    color: #070707;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        flex-direction: column;
        padding: 30px 10px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .image-container {
        width: 100%;
    }

    .tally-image {
        width: 100%;
        height: auto;
    }

    .features {
        padding: 30px 15px;
    }

    .features h1 {
        font-size: 1.8rem;
    }

    .features p {
        font-size: 1rem;
    }

    .features li {
        font-size: 0.9rem;
    }

    footer {
        padding: 15px;
    }
}

main {
    padding: 2.5rem 0;
    background: #f8f8f8;
}

.about-section h1 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.about-section p {
    margin-bottom: 1rem;
    text-align: justify;
}

.features-section {
    background: white;
    padding: 1.25rem;
    border-radius: 0.3125rem;
    margin-bottom: 2.5rem;
}

.features-section ul {
    list-style: disc;
    margin-left: 1.25rem;
}

.features-section li {
    margin-bottom: 0.625rem;
}

.image-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.image-card {
    flex: 1 1 calc(25% - 1.25rem);
    background: white;
    border: 1px solid #ddd;
    border-radius: 0.3125rem;
    overflow: hidden;
    text-align: center;
}

.image-card img {
    width: 100%;
    height: auto;
}

.image-card p {
    margin: 0.625rem 0;
    font-weight: bold;
}

footer {
    background-color: #008080;
    color: white;
    padding: 2.5rem 0;
    text-align: center;
}

footer .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .footer-content div {
    flex: 1 1 calc(33.33% - 1.25rem);
    margin-bottom: 1.25rem;
}

footer h3 {
    margin-bottom: 0.625rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.625rem;
}

footer ul li a {
    color: white;
}

footer .social-icons a {
    color: white;
    font-size: 1.25rem;
    margin: 0 0.625rem;
    display: inline-block;
}

footer .social-icons a:hover {
    color: #101010;
}

@media screen and (max-width: 768px) {
    nav ul {
        display: flex;
        flex-direction: column;
    }

    .dropdown {
        position: static;
    }

    .dropdown ul {
        position: static;
        margin-left: 1.25rem;
    }
}

/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    color: #333;
    font-size: 1rem;
}

/* Header */
header {
    background: #008080;
    color: #f4f1f1;
    padding: 0;
}
header .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 1.25rem;
    flex-wrap: wrap;
}
.logo img {
    width: 180px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}
.logo img:hover {
    transform: scale(1.1);
}
nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Mobile Navigation */
#menu-toggle {
    display: none;
}
#header-menu {
    display: flex;
    justify-content: center;
}
@media screen and (max-width: 768px) {
    #menu-toggle {
        display: block;
        position: fixed;
        top: 10px;
        right: 15px;
        background-color: transparent;
        border: none;
        font-size: 30px;
        color: white;
        cursor: pointer;
    }
    #header-menu {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 70%;
        height: 100vh;
        background-color: #008080;
        box-shadow: -4px 0 6px rgba(0, 0, 0, 0.2);
        padding-top: 60px;
        z-index: 1000;
        overflow-y: auto;
        flex-direction: column;
        align-items: center;
    }
    #header-menu.active {
        display: flex;
    }
    nav ul {
        flex-direction: column;
        width: 100%;
        padding: 10px;
    }
    nav ul li {
        margin: 10px 0;
        text-align: center;
        width: 100%;
    }
    nav ul li a {
        font-size: 20px;
        display: block;
        padding: 10px;
    }
    nav ul ul {
        display: none;
        flex-direction: column;
        padding-left: 20px;
        background: #006666;
        border-radius: 5px;
        margin-top: 5px;
    }
    nav ul li.active > ul {
        display: block;
    }
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 80vh;
    overflow: hidden;
    font-family: Arial, sans-serif;
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    color: #fff;
    text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.7);
}
.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.625rem;
}
.hero-content p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
}
.hero-content .btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #008080;
    color: #fff;
    text-decoration: none;
    border-radius: 0.3125rem;
    font-weight: bold;
    transition: background 0.3s ease;
}
.hero-content .btn:hover {
    background: #007373;
}
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 0.9rem;
    }
}

/* Products Section */
.products {
    padding: 1.875rem 0.625rem;
    text-align: center;
    background-color: #f9f9f9;
}
.products h2 {
    margin-bottom: 1.25rem;
    font-size: 1.8rem;
    color: #333;
}
.product-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
}

/* Footer */
footer {
    background-color: #008080;
    color: white;
    padding: 20px 0;
    text-align: center;
}
.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-top: 1px solid #555;
    font-size: 14px;
}
@media screen and (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    .hero-content p {
        font-size: 0.8rem;
    }
    .product-item {
        padding: 0.625rem;
    }
    .footer-content, .footer-bottom {
        padding: 10px;
    }
}

/* Blog Section Styling */
.blog-content img {
    max-width: 100%;   /* Fits within screen/container */
    height: auto;      /* Maintains aspect ratio */
    display: block;    /* Prevents inline spacing */
    margin: 15px auto; /* Adds spacing + centers images */
    border-radius: 8px; /* Optional: gives smooth rounded edges */
}

.blog-content {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Blog Title */
.blog-content h1 {
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Blog Date */
.date {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

/* Image Gallery (Aligning images side by side) */
.image-gallery {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.image-gallery img {
    width: 30%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* Blog List (Bullet Points) */
.blog-list {
    list-style-type: none;
    padding: 0;
}

.blog-list li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.blog-list li strong {
    margin-left: 5px;
}

/* Back to Blogs Link */
.back-link {
    display: inline-block;
    margin: 10px;
    color: #007bff;
    font-size: 16px;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .blog-content {
        padding: 15px;
    }U

    .image-gallery img {
        width: 100%; /* Full width images on small screens */
    }
}

/* Mobile-Friendly Styles for Bulk Loading Section */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.container p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
}

.container img {
    width: 80%; /* Reduced image size */
    max-width: 500px; /* Added max width */
    height: auto;
    display: block;
    margin: 10px auto; /* Centering images */
    border-radius: 8px;
}

.features {
    background: #f8f8f8;
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.features h2 {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.features ul {
    padding-left: 20px;
    font-size: 1rem;
}

.features ul li {
    margin: 8px 0;
    line-height: 1.6;
}

.contact-section {
    background: #008080;
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-section h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-section p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .container img {
        width: 90%; /* Slightly larger on mobile */
        max-width: 350px; /* Further reduced size on smaller screens */
    }

    .features h2, .contact-section h2 {
        font-size: 1.2rem;
    }

    .features ul, .contact-section p {
        font-size: 0.95rem;
    }
}

/* Contact Us Page Styles */
.contact-section {
    background-color: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}

.contact-section .container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
    color: #008080;
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.contact-section label {
    display: block;
    text-align: left;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.contact-section input,
.contact-section textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.contact-section input:focus,
.contact-section textarea:focus {
    border-color: #008080;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 128, 128, 0.5);
}

.contact-section button {
    background-color: #008080;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}

.contact-section button:hover {
    background-color: #006666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section .container {
        width: 90%;
        padding: 20px;
    }
}

/* Sectona Page Styling */
.sectona-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('Images/Sectona\ banner.png') center/cover no-repeat;
    color: #008080;
    text-align: center;
    padding: 100px 20px;
}

.about-partnership,
.why-partnership,
.logos-section {
    padding: 60px 20px;
    text-align: center;
}

.why-partnership ul {
    list-style: none;
    padding: 0;
}

.why-partnership ul li {
    margin: 10px 0;
    font-size: 1.1rem;
    color: #333;
}

.why-partnership ul li i {
    color: #008080;
    margin-right: 10px;
}

.logo-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.logo-grid img {
    max-width: 200px;
}

/* General Dropdown Styling */
nav ul li ul.dropdown {
    background-color: #008080;  /* Match your theme */
    padding: 10px 0;
    border-radius: 5px;
    position: absolute;
    display: none;
    z-index: 1000;
    min-width: 200px;
}

nav ul li:hover > ul.dropdown {
    display: block;
}

nav ul li ul.dropdown li {
    padding: 10px 20px;
}

nav ul li ul.dropdown li a {
    color: #fff; /* White text */
    text-decoration: none;
    display: block;
    transition: background 0.3s, color 0.3s;
}

nav ul li ul.dropdown li a:hover {
    background-color: #fff; /* On hover → background turns white */
    color: #000;            /* Text turns black */
}
