/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f0f8ff; /* Very light blue (AliceBlue) */
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Header Styles */
header {
    background: lightslategray;
    color: #fff;
    padding: 10px 0;
    position: relative;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

header .logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
}

header .logo img {
    height: 40px;
    margin-right: 10px;
}

/* Navigation Styles */
header nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav ul li {
    position: relative;
    padding: 0 15px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    cursor: pointer;
}

header nav ul li a i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropdown-toggle i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #37474f;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1001;
    border-radius: 4px;
    padding: 8px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(-10px);
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Rotate arrow on hover */
.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    text-transform: none;
    white-space: nowrap;
    transition: background-color 0.3s ease, padding-left 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #0779e4;
    padding-left: 20px;
}

/* Add a small arrow to the dropdown */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #37474f;
}

/* Rotate arrow when dropdown is open */
.dropdown-content.show + .dropdown-toggle i,
.dropdown-content.show ~ .dropdown-toggle i {
    transform: rotate(180deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    header nav ul {
        margin-top: 10px;
    }

    header nav ul li {
        padding: 0 10px;
    }
}

/* Hero Section Styles */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background: #37474f; /* Fallback color */
}

.scales-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    z-index: 2;
}

.scales-animation {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: dropScales 2s ease-in-out forwards;
    opacity: 0;
}

@keyframes dropScales {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(calc(45vh - 100px));
        opacity: 1;
    }
}

.hero h1, .hero p, .hero .btn {
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    animation-delay: 1.5s;
    font-size: 3rem;
   
}

.hero p {
    animation-delay: 1.7s;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero .btn {
    animation-delay: 1.9s;
}

.btn {
    display: inline-block;
    background: #0779e4;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #055bb5;
}

/* Footer Styles */
footer {
    background: lightslategray; /* Dark blue-gray */
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: black;
}

footer .footer-content {
    display: flex;
    justify-content: space-around;
    text-align: left;
    flex-wrap: wrap;
}

footer .footer-section {
    margin-bottom: 20px;
}

footer .footer-section h3 {
    margin-bottom: 10px;
}

footer .footer-section ul {
    list-style: none;
    padding: 0;
}

footer .footer-section ul li {
    margin-bottom: 5px;
}

footer .footer-bottom {
    margin-top: 20px;
    border-top: #0779e4 1px solid;
    padding-top: 10px;
}

/* Basic Responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 18px;
    }

    footer .footer-content {
        flex-direction: column;
        text-align: center;
    }

    footer .footer-section {
        margin-bottom: 30px;
    }
}

/* Contact Form Styles */
.contact-section .container form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-section .container form div {
    display: flex;
    flex-direction: column;
}

.contact-section .container form label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.contact-section .container form input[type="text"],
.contact-section .container form input[type="email"],
.contact-section .container form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    width: 100%;
}

.contact-section .container form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-section .container form button {
    background: #0779e4;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease;
}

.contact-section .container form button:hover {
    background: #055bb5;
}

/* Statistics Section Styles */
.stats-section {
    padding: 40px 0;
    background: #e2e2e2;
    text-align: center;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

.stat {
    margin: 10px;
    flex: 1;
    min-width: 150px;
}

.stat h3 {
    color: #0779e4;
    font-size: 30px;
    margin-bottom: 5px;
}

.stat p {
    font-size: 18px;
    color: #555;
}

/* Services Section Styles */
.services-section {
    padding: 40px 0;
    text-align: center;
}

.services-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

.service-item {
    background: #fff;
    margin: 10px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.service-item h3 {
    margin: 10px 0;
    color: #37474f;
}

.service-item p {
    color: #555;
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 40px 0;
    background: #e2e2e2;
    text-align: center;
}

.testimonials-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

.testimonial-item {
    background: #fff;
    margin: 10px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: left;
}

.testimonial-item p:first-child {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-item p:last-child {
    font-weight: bold;
    text-align: right;
    color: #37474f;
}

/* Basic Responsiveness */
@media (max-width: 768px) {
    .stats, .services-list, .testimonials-list {
        flex-direction: column;
        align-items: center;
    }

    .stat, .service-item, .testimonial-item {
        width: 90%;
        min-width: unset;
    }

    footer .footer-content {
        flex-direction: column;
        text-align: center;
    }

    footer .footer-section {
        margin-bottom: 30px;
    }
}

/* Remove team section styles */
/* Team Section Styles */
.team-section {
    display: none;
}

.team-members {
    display: none;
}

.team-member {
    display: none;
}

.team-member img {
    display: none;
}

.team-member h3 {
    display: none;
}

.team-member p {
    display: none;
}

.social-links {
    display: none;
}

.social-links a {
    display: none;
}

.social-links a:hover {
    display: none;
}

/* Footer Social Icons */
footer .social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 24px;
}

footer .social-icons a:hover {
    color: #0779e4;
}

/* Contact Info Styles */
.contact-info {
    margin-top: 40px;
    text-align: center;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 18px;
    color: #555;
}

.contact-info i {
    margin-right: 10px;
    color: #0779e4;
}

/* Contact page layout (two columns) */
.contact-page-container {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    max-width: 1200px;
    margin: 40px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-info-section,
.contact-form-section {
    flex: 1;
    padding: 20px;
    min-width: 300px; /* Allow wrapping on smaller screens */
}

.contact-info-section {
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
}

.contact-info-section h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-logo {
    width: 150px;
    height: 150px;
    margin-bottom: 20px; /* Add some space below the logo */
    display: block; /* Ensure it takes up its own line */
}

.contact-details-box {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    color: #0779e4; /* Blue color for icons */
    font-size: 24px;
    margin-right: 15px;
}

.contact-item h3 {
    color: #333;
    margin-bottom: 5px;
    font-size: 18px;
}

.contact-item p {
    color: #555;
    font-size: 16px;
    margin: 0;
}

.contact-form-section h2 {
    color: #333;
    margin-bottom: 10px;
    font-size: 24px;
}

.contact-form-section p {
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
}

.contact-form-box form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
    font-size: 16px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box; /* Include padding in width */
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-box button.btn {
    display: inline-block;
    background: #0779e4;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease;
    margin-top: 10px; /* Space above the button */
}

.contact-form-box button.btn:hover {
    background: #055bb5;
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
    .contact-page-container {
        flex-direction: column;
        margin: 20px;
        padding: 15px;
    }

    .contact-info-section {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .contact-info-section, .contact-form-section {
        padding: 15px;
    }
}

/* Remove existing contact form styles if any */
.contact-section .container form {
    display: none;
}

.contact-section .container form div {
    display: none;
}

.contact-section .container form label {
    display: none;
}

.contact-section .container form input[type="text"],
.contact-section .container form input[type="email"],
.contact-section .container form textarea {
    display: none;
}

.contact-section .container form button {
    display: none;
}

/* Remove existing contact info styles if any */
.contact-info {
    display: none;
}

.contact-info h2 {
    display: none;
}

.contact-info p {
    display: none;
}

.contact-info i {
    display: none;
}

/* About Us page layout */
.about-page-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.about-page-section .section-title {
     text-align: center;
     color: #333;
     font-size: 32px;
     margin-bottom: 40px;
     position: relative;
     padding-bottom: 10px;
}

.about-page-section .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    height: 3px;
    width: 60px; /* Underline length */
    background-color: #0779e4; /* Blue underline color */
}

.about-content-wrapper {
    margin-top: 30px;
}

.about-section-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px; /* Space between sections */
    flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
    background-color: #fff; /* Optional: add background for clarity */
    padding: 30px; /* Optional: add padding */
    border-radius: 8px; /* Optional: add rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional: add shadow */
}

.about-text-content {
    flex: 1;
    padding-right: 30px; /* Space between text and image */
    min-width: 300px; /* Ensure text doesn't get too narrow */
}

.about-image-placeholder {
    flex: 1;
    display: flex;
    justify-content: center; /* Center image */
    align-items: center; /* Center image vertically */
    min-width: 300px; /* Ensure image doesn't get too narrow */
}

.about-image-placeholder img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Initial state for animation */
    opacity: 0;
    transform: translateY(-50px); /* Start 50px above final position */
    transition: opacity 1.2s ease-out, transform 1.2s ease-out; /* Smooth transition */
}

.about-image-placeholder img.is-visible {
    /* Final state when visible */
    opacity: 1;
    transform: translateY(0); /* Slide to final position */
}

.about-text-content h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
}

.about-text-content p,
.about-text-content ul {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.about-text-content ul {
    margin-left: 20px;
    list-style: disc;
}

.about-text-content ul li {
    margin-bottom: 10px;
}

/* Alternate layout for sections (image on left, text on right) */
.about-section-item:nth-child(odd) {
    flex-direction: row-reverse; /* Swap order for odd sections */
}

.about-section-item:nth-child(odd) .about-text-content {
    padding-left: 30px;
    padding-right: 0; /* Remove right padding */
}

.about-section-item:nth-child(odd) .about-image-placeholder {
     padding-right: 30px;
     padding-left: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-section-item {
        flex-direction: column; /* Stack columns */
        margin-bottom: 40px;
        padding: 20px;
    }

    .about-text-content {
        padding-right: 0;
        margin-bottom: 20px; /* Space between text and image when stacked */
    }

     .about-section-item:nth-child(odd) {
        flex-direction: column; /* Ensure stacking for odd sections as well */
    }

    .about-section-item:nth-child(odd) .about-text-content {
        padding-left: 0;
        margin-bottom: 20px;
    }

     .about-section-item:nth-child(odd) .about-image-placeholder {
         padding-right: 0;
         margin-bottom: 20px;
    }

     .about-image-placeholder {
         margin-bottom: 20px; /* Space below image when stacked */
    }

     .about-page-section .section-title {
         font-size: 28px;
         margin-bottom: 30px;
     }
}

/* Hide previous about section styles */
.about-us-container {
    display: none;
}

.objectives-section,
.values-section {
    display: none;
}

/* HRMS Page Styles */
.hrms-hero {
    background: #37474f; /* Dark blue-gray color matching the header */
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hrms-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeIn 1s ease-in-out forwards;
    opacity: 1;
}

.hrms-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-in-out 0.5s forwards;
    opacity: 1;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.features-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-size: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.feature-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: #0779e4;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background: #fff;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-size: 2.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-item i {
    font-size: 3rem;
    color: #0779e4;
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Form Styles */
.contact-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-size: 2.5rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    background: #0779e4;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form .btn:hover {
    background: #055bb5;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hrms-hero h1 {
        font-size: 2rem;
    }

    .hrms-hero p {
        font-size: 1rem;
    }

    .features-section h2,
    .benefits-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Split Image Animation */
.split-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.image-half {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.left-half {
    left: 0;
    animation: slideInLeft 1.5s ease-out forwards;
}

.right-half {
    right: 0;
    animation: slideInRight 1.5s ease-out forwards;
}

.left-half img {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    object-fit: cover;
}

.right-half img {
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    object-fit: cover;
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Services and Products Page Styles */
.services-hero, .products-hero {
    background: #37474f;
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.services-hero h1, .products-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeIn 1s ease-out forwards;
}

.services-hero p, .products-hero p {
    font-size: 1.2rem;
    animation: fadeIn 1s ease-out 0.5s forwards;
    opacity: 0;
}

/* Services Grid */
.services-grid-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.service-card, .product-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-card:hover, .product-card:hover {
    transform: translateY(-5px);
}

.service-card i, .product-card i {
    font-size: 3rem;
    color: #0779e4;
    margin-bottom: 1.5rem;
}

.service-card h3, .product-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p, .product-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card .btn, .product-card .btn {
    margin-top: auto;
}

/* Products Grid */
.products-grid-section {
    padding: 4rem 0;
    background: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.product-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card i {
    font-size: 3rem;
    color: #0779e4;
    margin-bottom: 1.5rem;
}

.product-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.product-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    text-align: left;
}

.product-features li {
    color: #666;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.product-features li:last-child {
    border-bottom: none;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: #f8f9fa;
    text-align: center;
}

.contact-section h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-section p {
    color: #666;
    margin-bottom: 2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .services-hero h1, .products-hero h1 {
        font-size: 2rem;
    }

    .services-hero p, .products-hero p {
        font-size: 1rem;
    }

    .services-grid, .products-grid {
        grid-template-columns: 1fr;
    }

    .service-card, .product-card {
        padding: 1.5rem;
    }
}

/* Status Message Styles */
.status-message {
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    display: none;
}

.status-message.loading {
    display: block;
    background-color: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
}

.status-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Submit Button Styles */
.btn[type="submit"] {
    transition: all 0.3s ease;
}

.btn[type="submit"]:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    opacity: 0.7;
}

.btn[type="submit"]:not(:disabled):hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}
