* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background: #fff;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative; /* Ensure relative positioning for mobile menu */
}

.logo img {
    height: 40px;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #0056b3;
    padding: 10px; /* Larger touch area */
    z-index: 1001;
}

@media (max-width: 992px) {
    header {
        height: 70px !important;
        padding: 0 15px !important;
        display: flex !important;
        align-items: center !important;
        background: #ffffff !important;
        z-index: 10000 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        overflow: visible !important; /* Critical for dropdown visibility */
    }

    nav {
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        margin: 0 !important;
        position: relative !important;
    }

    .logo img {
        height: 35px !important;
    }

    .menu-toggle {
        display: block !important;
        font-size: 1.8rem !important;
        color: #0056b3 !important;
        cursor: pointer !important;
        z-index: 10002 !important;
    }

    #nav-list {
        display: none !important; /* Default hidden */
        flex-direction: column !important;
        position: absolute !important;
        top: 70px !important; /* Exactly below header */
        left: -15px !important; /* Align with header padding */
        width: calc(100% + 30px) !important;
        background: #ffffff !important;
        margin: 0 !important;
        padding: 10px 0 !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important;
        z-index: 10001 !important;
        list-style: none !important;
        border-top: 1px solid #eee !important;
    }

    #nav-list.active {
        display: flex !important; /* Show when toggled */
    }

    #nav-list li {
        width: 100% !important;
        margin: 0 !important;
    }

    #nav-list li a {
        display: block !important;
        padding: 15px 25px !important;
        width: 100% !important;
        color: #333333 !important;
        text-decoration: none !important;
        border-bottom: 1px solid #f0f0f0 !important;
        text-align: center !important;
        background: #ffffff !important;
        font-weight: 500 !important;
    }

    #nav-list li:last-child a {
        border-bottom: none !important;
    }
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 60px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background: #0056b3;
    color: #fff;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #004494;
}

section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.service-card i {
    font-size: 3rem;
    color: #0056b3;
    margin-bottom: 1rem;
}

.values {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.value-item {
    flex: 1;
    min-width: 250px;
    margin: 1rem;
    padding: 1rem;
    background: #e9ecef;
    border-radius: 8px;
    text-align: center;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

#contact-form {
    flex: 1;
    min-width: 300px;
}

#contact-form input, #contact-form select, #contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#contact-form textarea {
    height: 150px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info i {
    margin-right: 10px;
    color: #0056b3;
}

footer {
    background: #333;
    color: #fff;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

.page-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.service-block {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
    text-align: center;
}

.main-icon {
    font-size: 4rem;
    color: #0056b3;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    text-align: left;
}

.feature-list li {
    padding: 0.5rem;
    font-weight: 500;
}

.feature-list li i {
    color: #28a745;
    margin-right: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 1rem;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #0056b3;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.cta {
    background: #0056b3;
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
}

.cta h2 {
    margin-bottom: 2rem;
    color: #fff;
}

.cta .btn {
    background: #fff;
    color: #0056b3;
}

.cta .btn:hover {
    background: #f8f9fa;
}

.about-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1351&q=80');
}

.mission-vision {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.mission, .vision {
    flex: 1;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.mission i, .vision i {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.corporate-details {
    background: #f8f9fa;
}

.details-box {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid #0056b3;
}

.detail-item {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.detail-item:last-child {
    border-bottom: none;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.team-member {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.member-info h3 {
    color: #0056b3;
    margin-bottom: 0.5rem;
}

.team-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.team-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 5px solid #0056b3;
}

.member-header {
    margin-bottom: 1.5rem;
}

.member-header h3 {
    color: #0056b3;
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.designation {
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.team-strengths {
    background: #fff;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.strength-item {
    text-align: center;
}

.strength-item i {
    font-size: 3rem;
    color: #0056b3;
    margin-bottom: 1.5rem;
}

.portfolio-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.portfolio-card:hover {
    transform: translateY(-10px);
}

.portfolio-info {
    padding: 2rem;
}

.portfolio-info .category {
    color: #0056b3;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 0.5rem;
}

.portfolio-info h3 {
    margin-bottom: 1rem;
}

.tech-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.tech-icons span {
    font-size: 1.2rem;
    font-weight: 500;
}

.tech-icons i {
    color: #0056b3;
    margin-right: 5px;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1523966211575-eb4a01e7dd51?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.info-card i {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    margin-bottom: 1rem;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-whatsapp { background: #25D366; }
.btn-email { background: #ea4335; }

/* Legal Pages Styles */
.legal-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.legal-content {
    background: #fff;
    padding: 4rem 0;
}

.content-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.content-box h2 {
    text-align: left;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
    color: #0056b3;
}

.content-box ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-box p {
    margin-bottom: 1.5rem;
}

/* Modern Pricing Plans Redesign */
.pricing-plans {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    color: #003366;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
    align-items: stretch;
}

.pricing-card {
    background: #fff;
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(0, 86, 179, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 86, 179, 0.12);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-15px);
}

.pricing-card:hover .plan-features li i {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

.pricing-card .btn:hover i {
    transform: translateX(5px);
}

.pricing-card.popular {
    background: #fff;
    border: 2px solid #0056b3;
    box-shadow: 0 25px 50px rgba(0, 86, 179, 0.15);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-15px);
}

.pricing-card .badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #0056b3 0%, #003366 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 51, 102, 0.2);
}

.card-header {
    margin-bottom: 2rem;
}

.plan-icon {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: rgba(0, 86, 179, 0.05);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.pricing-card:hover .plan-icon {
    background: #0056b3;
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}

.pricing-card.popular:hover .plan-icon {
    background: #003366;
}

.pricing-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #003366;
}

.plan-tagline {
    color: #888;
    font-size: 0.9rem;
}

.price-box {
    margin: 1.5rem 0 2rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.price-box .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-right: 2px;
}

.price-box .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
}

.price-box .duration {
    font-size: 0.9rem;
    color: #6c757d;
    margin-left: 5px;
}

.plan-features {
    list-style: none;
    margin: 0 0 2.5rem;
    text-align: left;
    flex-grow: 1;
}

.plan-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: flex-start;
    color: #495057;
    font-size: 0.95rem;
    border-bottom: 1px solid #f8f9fa;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: #28a745;
    margin-right: 12px;
    margin-top: 4px;
    font-size: 0.9rem;
}

.card-footer {
    margin-top: auto;
}

.btn-outline {
    background: transparent;
    color: #0056b3;
    border: 2px solid #0056b3;
}

.btn-outline:hover {
    background: #0056b3;
    color: #fff;
}

.btn-primary {
    background: linear-gradient(135deg, #0056b3 0%, #003366 100%);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
}

.pricing-card .btn {
    width: 100%;
    padding: 1.2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Plan Selection Section for Checkout */
.plan-selection-section .pricing-grid {
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.plan-selection-section .pricing-card {
    padding: 2rem 1.5rem;
    cursor: pointer;
    text-align: center;
}

.plan-selection-section .pricing-card.selected {
    border: 3px solid #0056b3;
    background: #f0f8ff;
}

.plan-selection-section .pricing-card .price {
    font-size: 2rem;
    font-weight: 800;
    color: #0056b3;
    margin: 0.5rem 0;
}



/* Redesigned Checkout Page Styles */
.checkout-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    height: 300px;
    padding-top: 100px;
}

.checkout-main {
    background: #f0f2f5;
    padding: 3rem 0;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    align-items: start;
}

.checkout-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.checkout-card h3 {
    font-size: 1.4rem;
    color: #003366;
    margin-bottom: 1.5rem;
    border-left: 4px solid #0056b3;
    padding-left: 15px;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #444;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: #0056b3;
    outline: none;
}

.order-summary-card {
    position: sticky;
    top: 100px;
}

.summary-details {
    margin-bottom: 1.5rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px dashed #eee;
    color: #666;
}

.summary-line.total {
    border-bottom: none;
    font-size: 1.3rem;
    font-weight: 700;
    color: #003366;
    padding-top: 1.5rem;
}

.after-payment-info {
    background: #e7f3ff;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.after-payment-info h4 {
    color: #0056b3;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-checkout {
    background: #0056b3;
    color: #fff;
    width: 100%;
    padding: 1.2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-checkout:hover {
    background: #003366;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 1.5rem;
    opacity: 0.7;
}

.trust-badges img {
    height: 30px;
}

@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    .order-summary-card {
        position: static;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero { height: 40vh; }
    .process-steps, .mission-vision, .action-buttons { flex-direction: column; }
}
