* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    padding-top: 80px;
}

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav_logo img {
    width: 260px;
}

.mob_menu_icon {
    display: none;
    align-items: center;
    gap: 1rem;
}

.menubar_icon {
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menubar_icon div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menubar_icon span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger Animation - FIXED */
.menubar_icon.active .line-1 {
    transform: rotate(45deg) translate(3px, 3px);
}

.menubar_icon.active .line-2 {
    opacity: 0;
}

.menubar_icon.active .line-3 {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mob_logo img,
.tab_logo img {
    height: 40px;
    width: auto;
}

.containers {
    display: flex;
    align-items: center;
}

.nav_menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav_menu a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    text-transform: capitalize;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav_menu a:hover {
    color: #01a6fd;
    transform: translateY(-2px);
}

.active-nav {
    background: linear-gradient(to right, #01a6fd 0%, #17d0cf 51%, #01a6fd 100%) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(1, 166, 253, 0.3);
}

.cursor-pointer {
    cursor: pointer;
}

.nav_icons {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
    align-items: center;
}

.nav_icons li {
    width: 45px;
    height: 45px;
    border: 2px solid #01a6fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav_icons li:hover {
    background: #01a6fd;
    border-color: #01a6fd;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(1, 166, 253, 0.3);
}

.nav_icons a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.nav_icons li:hover a {
    color: white;
}

.searchBox {
    position: relative;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 18px;
}

.search_field {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    padding: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    min-width: 250px;
    margin-top: 10px;
}

.search_field input {
    border: none;
    outline: none;
    width: 100%;
    padding: 0.5rem;
    font-size: 14px;
}

.singin-icon {
    display: none;
    width: 45px;
    height: 45px;
    border: 3px solid #01a6fd;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.singin-icon:hover {
    background: #01a6fd;
    transform: translateY(-2px);
}

.singin-icon a {
    color: #333;
    text-decoration: none;
}

.singin-icon:hover a {
    color: white;
}

/* Mobile Menu - FIXED */
.mobile_menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 999;
}

.mobile_menu.active {
    max-height: 500px;
}

.mob_nav_menu ul {
    list-style: none;
    margin: 0;
    padding: 1rem;
}

.mob_nav_menu li {
    border-bottom: 1px solid #eee;
}

.mob_nav_menu a {
    display: block;
    padding: 1rem;
    color: #333;
    text-decoration: none;
    text-transform: capitalize;
    cursor: pointer;
}

.mob_nav_menu a:hover {
    color: #01a6fd;
    background: #f8f9fa;
}

/* Companies Page Styles */
.companies-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.text-primary {
    color: #0056b3;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn.btn-primary {
    background: #0056b3;
    color: white;
}

.btn.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.btn.btn-outline {
    background: transparent;
    color: #0056b3;
    border: 2px solid #0056b3;
}

.btn.btn-outline:hover {
    background: #0056b3;
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: white;
    padding: 8rem 0 6rem;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0056b3;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: #f9fafb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #cce0ff 0%, #99c2ff 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: #0056b3;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.service-features li i {
    color: #10b981;
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #0056b3 0%,  #0034aa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: #f9fafb;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 1rem;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -1rem;
    left: 2rem;
    width: 3rem;
    height: 3rem;
    background: #0056b3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon i {
    font-size: 1.5rem;
    color: white;
}

.quote {
    font-size: 1.125rem;
    font-style: italic;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.company-logo {
    width: 3rem;
    height: 3rem;
    background: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.company-logo img {
    width: 2rem;
    height: auto;
}

.author-info h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.highlighted {
    border: 2px solid #0056b3;
    transform: scale(1.05);
}

.pricing-card.highlighted::before {
    content: 'Most Popular';
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: #0056b3;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 0.5rem;
}

.price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: #0056b3;
}

.price .period {
    color: #6b7280;
    font-size: 1rem;
}

.employees {
    color: #6b7280;
    font-size: 0.875rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #4b5563;
}

.features-list li i {
    color: #10b981;
    margin-right: 0.75rem;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0056b3 0%,  #0034aa 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: #0056b3;
}

.cta-buttons .btn-primary:hover {
    background: #f3f4f6;
}

.cta-buttons .btn-outline {
    border-color: white;
    color: white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: #0056b3;
}

/* Footer Styles */
.footer {
    background: white;
    color: #333;
    padding: 4rem 0 0;
    border-top: 1px solid #e5e7eb;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-widget h2.widget-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    width: 260px;
}

.footer-about-text p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu ul li {
    margin-bottom: 1.25rem;
}

.footer-menu ul li a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.footer-menu ul li a i {
    margin-right: 0.5rem;
    color: #01a6fd;
    font-size: 0.8rem;
}

.footer-menu ul li a:hover {
    color: #01a6fd;
}

/* Copyright Section */
.copy-right-menu {
    border-top: 1px solid #e5e7eb;
    padding: 2rem 0;
}

.copy-right-menu .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.col-md-6 {
    flex: 1;
    min-width: 250px;
}

.copy-right-text p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.copy-right-menu-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.copy-right-menu-item ul li a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.copy-right-menu-item ul li a:hover {
    color: #01a6fd;
}

/* Error Messages */
.text-danger {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .containers {
        display: none;
    }

    .mob_menu_icon {
        display: flex;
    }

    .singin-icon {
        display: flex;
    }

    .mobile_menu {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        padding: 0 1rem;
    }

    .nav_logo img {
        width: 180px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .copy-right-menu .row {
        flex-direction: column;
        text-align: center;
    }
    
    .copy-right-menu-item ul {
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
    }
    
    .footer-logo img {
        width: 180px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .service-card h3 {
        font-size: 1.25rem;
    }

    .pricing-card.highlighted {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 0;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .widget-title {
        font-size: 1.25rem !important;
    }

    .hero-section {
        padding: 4rem 0 3rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}