/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #ffffff;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    padding: 15px 0;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title {
    text-decoration: none;
    color: #fff;
    gap: 15px;
}

.title h1 {
    color: #fff;
}

.nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav a:hover {
    color: #89CFF0;
}

/* Mobile Development Section */
.mobile-development {
    padding-top: 100px;
    background: #ffffff;
    min-height: 100vh;
}

.software-intro {
    text-align: center;
    margin-bottom: 50px;
}

.software-intro h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1a237e;
}

.software-intro p {
    font-size: 1.2rem;
    color: #666;
    margin: 10px 0;
}

/* Hero Banner */
.hero-banner {
    margin: 50px 0;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.software-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.overlay-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.highlight-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #333;
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.highlight-point i {
    color: #1a237e;
}

.floating-image {
    width: 65%;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    animation: float 3s ease-in-out infinite;
}

/* Features Grid */
.features-grid {
    margin: 50px 0;
}

.row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.feature-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: #1a237e;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #333;
}

.feature-card ul {
    list-style: none;
}

.feature-card li {
    margin: 10px 0;
    color: #666;
}

/* Button Styles */
.demo-button-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.demo-button, .quote-button {
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    color: #fff;
}

.demo-button {
    background: #1a237e;
    border: none;
    cursor: pointer;
}

.quote-button {
    background: #25d366;
}

.demo-button:hover, .quote-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}

.modal-content {
    background: #ffffff;
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.form-group {
    margin: 20px 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.submit-button {
    width: 100%;
    padding: 12px;
    background: #1a237e;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #0d47a1;
    transform: translateY(-2px);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    color: #ffffff;
    padding: 50px 0;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    color: #89CFF0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .software-preview {
        flex-direction: column;
        text-align: center;
    }

    .row {
        grid-template-columns: 1fr;
    }

    .nav ul {
        display: none;
    }

    .navbar {
        display: block;
    }

    .demo-button-container {
        flex-direction: column;
    }

    .floating-image {
        width: 85%;
    }

    .overlay-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .software-intro h2 {
        font-size: 2rem;
    }

    .floating-image {
        width: 100%;
    }
}
/* Pricing Section Styles */
.pricing-section {
    text-align: center;
    margin: 60px 0;
    padding: 40px 0;
    background: #ffffff;
}

.pricing-section h2 {
    font-size: 2.8rem;
    color: #1a237e;
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid #1a237e;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.pricing-card .price {
    font-size: 2.5rem;
    color: #1a237e;
    font-weight: 700;
    margin: 20px 0;
}

.pricing-card ul {
    list-style: none;
    margin: 30px 0;
}

.pricing-card ul li {
    color: #666;
    margin: 15px 0;
    font-size: 1.1rem;
}

.pricing-cta {
    display: inline-block;
    padding: 12px 30px;
    background: #1a237e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    background: #0d47a1;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive Design for Pricing */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-section h2 {
        font-size: 2.2rem;
    }
}
/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #ffffff;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title {
    text-decoration: none;
    color: #ffffff;
    gap: 15px;
    display: flex;
    align-items: center;
}

.title h1 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
}

.title img {
    width: 80px;
    height: auto;
}

.nav {
    display: flex;
    align-items: center;
}

.navbar {
    display: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 20px;
}

.nav a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.not-show {
    display: none;
}

.nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav a {
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav a:hover {
    color: #007bff;
}

/* Mobile Development Section */
.mobile-development {
    padding-top: 100px;
    background: #ffffff;
    min-height: 100vh;
}

.software-intro {
    text-align: center;
    margin-bottom: 50px;
}

.software-intro h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #007bff;
}

.software-intro p {
    font-size: 1.2rem;
    color: #666;
    margin: 10px 0;
}

/* Hero Banner */
.hero-banner {
    margin: 50px 0;
}

.software-preview {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.overlay-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.highlight-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #333;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.highlight-point i {
    color: #007bff;
}

.floating-image {
    max-width: 400px;
    animation: float 3s ease-in-out infinite;
}

/* Features Grid */
.features-grid {
    margin: 50px 0;
}

.row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.feature-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #333;
}

.feature-card ul {
    list-style: none;
}

.feature-card li {
    margin: 10px 0;
    color: #666;
}

/* Button Styles */
.demo-button-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.demo-button, .quote-button {
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    color: #fff;
}

.demo-button {
    background: #007bff;
    border: none;
    cursor: pointer;
}

.quote-button {
    background: #25d366;
}

.demo-button:hover, .quote-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}

.modal-content {
    background: #ffffff;
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.modal-content h2 {
    color: #333;
    margin-bottom: 20px;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.form-group {
    margin: 20px 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.submit-button {
    width: 100%;
    padding: 12px;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #128c7e;
}
/* Footer Styles */
footer {
    background: linear-gradient(135deg, #1a237e, #0d47a1);
    color: #ffffff;
    padding: 50px 0;
}

footer .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .title {
    line-height: 50px;
    display: flex;
}

footer .title h1 {
    margin-left: 10px;
    font-size: 22px;
    color: #ffffff;
    display: flex;
}

footer a {
    text-decoration: none;
    color: #ffffff;
    line-height: 40px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #89CFF0;
}

footer .row {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
}

footer .col {
    width: calc(33% - 0px);
}

footer .copy p {
    font-size: 16px;
    font-weight: 400;
    text-align: end;
    color: #ffffff;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
.footer-section h3 {
    color: #007bff;
    margin: 15px 0;
}

.footer-section h4 {
    color: #f9f0f0;
        margin-bottom: 20px;
}

.footer-section p {
    color: #f9f0f0;
        margin: 10px 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section ul li a {
    color: #f9f0f0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #007bff;
}
/* Footer Styles */
/*footer {
    background: #f8f9fa;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #007bff;
    margin: 15px 0;
}

.footer-section h4 {
    color: #333;
    margin-bottom: 20px;
}

.footer-section p {
    color: #666;
    margin: 10px 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: #666;
}*/

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .software-preview {
        text-align: center;
    }

    .row {
        grid-template-columns: 1fr;
    }

    .nav ul {
        display: none;
    }

    .navbar {
        display: block;
    }

    .demo-button-container {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .software-intro h2 {
        font-size: 2rem;
    }

    .floating-image {
        max-width: 100%;
    }

    .overlay-highlights {
        grid-template-columns: 1fr;
    }
}
/* Website Development Page Styles */
.website-development {
    padding-top: 100px;
    background: #ffffff;
    min-height: 100vh;
}

.software-intro {
    text-align: center;
    margin-bottom: 60px;
}

.software-intro h2 {
    font-size: 3rem;
    color: #1a237e;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in;
}

.software-intro p {
    font-size: 1.3rem;
    color: #666;
    margin: 10px 0;
    line-height: 1.6;
}

.hero-banner {
    margin: 50px 0;
}

.software-preview {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.overlay-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.highlight-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.highlight-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.highlight-point i {
    color: #1a237e;
    font-size: 1.2rem;
}

.highlight-point span {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.demo-button-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.demo-button, .quote-button {
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    color: #fff;
}

.demo-button {
    background: #1a237e;
    border: none;
    cursor: pointer;
}

.quote-button {
    background: #25d366;
}

.demo-button:hover, .quote-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Features Grid */
.features-grid {
    margin: 80px 0;
}

.row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.feature-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: #1a237e;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #333;
}

.feature-card ul {
    list-style: none;
}

.feature-card li {
    margin: 10px 0;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .software-intro h2 {
        font-size: 2.2rem;
    }
    
    .overlay-highlights {
        grid-template-columns: 1fr;
    }
    
    .row {
        grid-template-columns: 1fr;
    }
    
    .demo-button-container {
        flex-direction: column;
    }
    
    .software-preview {
        padding: 20px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Main Content */
.billing-software {
    padding-top: 100px;  /* Increased padding to account for fixed header */
}

.software-intro {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.software-intro h2 {
    font-size: 3.5rem;
    color: #2563eb;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.software-intro p {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}
/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .floating-image {
        max-width: 70%;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .software-intro h2 {
        font-size: 2.8rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    header {
        padding: 10px 0;
    }

    .title h1 {
        font-size: 1.5rem;
    }

    .nav ul {
        display: none;
    }

    .nav.active ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #1a237e, #0d47a1);
        padding: 20px;
    }

    .navbar {
        display: block;
    }

    .software-intro h2 {
        font-size: 2.2rem;
    }

    .software-intro p {
        font-size: 1.1rem;
    }

    .row {
        grid-template-columns: 1fr;
    }

    .overlay-highlights {
        grid-template-columns: 1fr;
    }

    .demo-button-container {
        flex-direction: column;
        align-items: stretch;
    }

    .floating-image {
        max-width: 85%;
    }

    .feature-card {
        padding: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .software-intro {
        margin-bottom: 30px;
    }

    .software-intro h2 {
        font-size: 1.8rem;
    }

    .software-preview {
        padding: 20px;
    }

    .highlight-point {
        padding: 10px;
        font-size: 0.9rem;
    }

    .floating-image {
        max-width: 100%;
    }

    .feature-card i {
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .modal-content {
        margin: 20px;
        padding: 20px;
    }

    .demo-button, .quote-button {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

/* Print Media Query */
@media print {
    header, 
    footer, 
    .demo-button-container,
    .modal {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    .software-intro h2 {
        color: #000;
    }
} 
/* Large Desktop Screens (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .software-intro h2 {
        font-size: 4rem;
    }

    .floating-image {
        max-width: 60%;
    }
}

/* Desktop Screens (1200px to 1399px) */
@media (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }
}

/* Small Desktop/Laptop (992px to 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }

    .software-intro h2 {
        font-size: 3rem;
    }

    .floating-image {
        max-width: 70%;
    }

    .feature-card {
        padding: 25px;
    }
}

/* Tablets (768px to 991px) */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }

    .row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .software-intro h2 {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .floating-image {
        max-width: 80%;
    }
}

/* Large Mobile/Small Tablets (576px to 767px) */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }

    header {
        padding: 10px 0;
    }

    .title h1 {
        font-size: 1.5rem;
    }

    .nav ul {
        display: none;
    }

    .nav.active ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #1a237e, #0d47a1);
        padding: 20px;
    }

    .navbar {
        display: block;
    }

    .row {
        grid-template-columns: 1fr;
    }

    .overlay-highlights {
        grid-template-columns: 1fr;
    }

    .demo-button-container {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Mobile Devices (320px to 575px) */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }

    .software-intro h2 {
        font-size: 2rem;
    }

    .software-intro p {
        font-size: 1rem;
    }

    .floating-image {
        max-width: 100%;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card i {
        font-size: 2rem;
    }

    .highlight-point {
        padding: 10px;
        font-size: 0.9rem;
    }

    .modal-content {
        margin: 15px;
        padding: 15px;
    }

    .demo-button, .quote-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Small Mobile Devices (320px and below) */
@media (max-width: 320px) {
    .software-intro h2 {
        font-size: 1.8rem;
    }

    .title h1 {
        font-size: 1.2rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }
}

/* Landscape Mode for Mobile Devices */
@media (max-height: 480px) and (orientation: landscape) {
    .modal-content {
        margin: 10px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .software-intro {
        margin-bottom: 20px;
    }
}

/* High DPI Screens (Retina Displays) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .floating-image {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Print Styles */
@media print {
    header, 
    footer, 
    .demo-button-container,
    .modal {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    .software-intro h2 {
        color: #000;
    }

    .feature-card {
        break-inside: avoid;
    }
}