﻿/* Header Styles */
.header {
    background: #000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

    .nav-menu li {
        position: relative;
    }

    .nav-menu a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        font-size: 16px;
        color: #fff;
        padding: 10px 0;
        transition: color 0.3s ease;
    }

        .nav-menu a:hover {
            color: #e74c3c;
            text-decoration: none;
        }

/* Service Dropdown */
.service-dropdown {
    position: absolute;
    top: 257%;
    left: -150px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    padding: 0;
    width: 958px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.nav-menu li:hover .service-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.service-dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 170px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
}

.mega-menu-container {
    display: flex;
    min-height: 320px;
}

/* Left Side Menu */
.mega-menu-left {
    background: #f8f9fa;
    width: 250px;
    padding: 20px 0;
    border-radius: 15px 0 0 15px;
}

    .mega-menu-left h4 {
        color: #666;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 20px;
        padding: 0 25px;
        letter-spacing: 1px;
    }

    .mega-menu-left ul {
        list-style: none;
    }

    .mega-menu-left li {
        margin-bottom: 0;
    }

    .mega-menu-left a {
        color: #333;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        display: block;
        padding: 12px 5px;
        transition: all 0.3s ease;
        position: relative;
    }

        .mega-menu-left a:hover {
            color: #e74c3c;
            transform: translateX(5px);
        }

        .mega-menu-left a.active {
            color: #e74c3c;
            font-weight: 600;
        }

/* Right Side Content */
.mega-menu-right {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 0 15px 15px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-header {
    text-align: start;
}

    .service-header h2 {
        color: #333;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 15px;
    }

.heading-subtitle {
    font-size: 24px;
    color: #002240;
    font-weight: 800;
    margin-top: 10px;
    margin-bottom: 11px;
}

.sub-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.service-column ul {
    list-style: none;
}

.service-column li {
    margin-bottom: 10px;
}

.service-column a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    /*font-weight: 500;*/
    display: block;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
}

    .service-column a:hover {
        color: #e74c3c;
        padding-left: 10px;
    }

    .service-column a.featured {
        color: #e74c3c;
        font-weight: 600;
    }

        .service-column a.featured:hover {
            color: #c0392b;
        }

/* Contact Button */
.contact-btn {
    background: #e74c3c;
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

    .contact-btn:hover {
        background: #c0392b;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
        text-decoration: none;
        color: white;
    }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: #fff;
        transition: 0.3s;
        border-radius: 2px;
    }

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 999;
}

    .mobile-menu ul {
        list-style: none;
        padding: 10px;
    }

    .mobile-menu li {
        margin-bottom: 15px;
    }


.mobile-contact-btn {
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-dropdown {
        width: 750px;
        left: -100px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu.active {
        display: block;
    }

    .service-dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        margin-top: 10px;
    }

    .mega-menu-container {
        flex-direction: column;
    }

    .mega-menu-left {
        width: 100%;
        border-radius: 0;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .header-container {
        padding: 12px 15px;
    }

    .logo {
        font-size: 20px;
    }

        .logo img {
            height: 32px;
        }

    .logo-icon {
        width: 35px;
        height: 35px;
    }

        .logo-icon::before {
            width: 18px;
            height: 18px;
        }

        .logo-icon::after {
            width: 7px;
            height: 7px;
        }

    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .footer {
        padding: 30px 0 0;
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-container {
        padding: 0 15px;
    }

    .newsletter-input {
        border-radius: 25px;
    }

    .newsletter-btn {
        border-radius: 25px;
        align-self: flex-start;
        padding: 12px 25px;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Hover Line Effect */
.nav-menu li::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e74c3c;
    transition: width 0.3s ease;
}

.nav-menu li:hover::after {
    width: 100%;
}


/* Hover Line Effect */
.nav-menu li::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e74c3c;
    transition: width 0.3s ease;
}

.nav-menu li:hover::after {
    width: 100%;
}

@media (max-width: 480px) {
    .header-container {
        padding: 10px 15px;
        height: 60px;
    }

    .logo {
        font-size: 18px;
    }
}

@media (max-width: 1080px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .contact-btn {
        display: none;
    }

    .mobile-menu.active {
        display: block;
    }
}

/* Footer Styles */

.footer {
    background: url('sysimage/footer_back.png') no-repeat;
    background-size: cover;
    color: white;
    padding: 50px 0 0;
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 0.1fr;
    gap: 0px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

    .footer-section ul li {
        margin-bottom: 12px;
    }

        .footer-section ul li a {
            color: #cccccc;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

            .footer-section ul li a:hover {
                color: #ff4444;
            }

/* Company Info Section */
.company-info h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4444;
    font-size: 14px;
}

.contact-text {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.4;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

    .social-icon:hover {
        background-color: #3a3a3a;
        transform: translateY(-2px);
    }

/* Newsletter Section */
.newsletter {
    color: #cccccc;
}

    .newsletter p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 10px 0 0 10px;
    background-color: white;
    font-size: 14px;
    outline: none;
}

    .newsletter-input::placeholder {
        color: #999;
    }

.newsletter-btn {
    padding: 29px 13px;
    background-color: #ff4444;
    border: none;
    border-radius: 0 10px 10px 0;
    color: white;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 43px;
}

    .newsletter-btn:hover {
        background-color: #cc0000;
    }

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #444;
    background: #fff;
}

    .footer-bottom p {
        color: #000;
        font-size: 14px;
        padding: 10px 1px;
    }


@media (max-width: 480px) {
    .footer-content {
        gap: 25px;
    }

    .footer-section h3 {
        font-size: 16px;
    }

    .company-info h3 {
        font-size: 18px;
    }

    .contact-text {
        font-size: 13px;
    }
}

.hover-box-wrapper {
    position: relative;
    display: inline-block;
}

.hover-box {
    display: none;
    position: absolute;
    top: 120%; /* appears below the link */
    left: 0;
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 250px;
    z-index: 10;
    font-size: 14px;
}

.hover-box-wrapper:hover .hover-box {
    display: block;
}

.copyright:hover {
    text-decoration: none;
}


/* Main Dropdown */
.hire-dropdown {
    position: absolute;
    top: 257%;
    left: -288px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    padding: 30px 35px;
    width: 944px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.hire-developer-menu:hover .hire-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Header Text */
.hire-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #002244;
    line-height: 1.3;
}

.hire-header p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    max-width: 90%;
    line-height: 1.5;
}

/* New Box Hover */
.new-service-box {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    padding: 20px;
    width: 958px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.parent-li:hover .new-service-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* List Items */
.new-service-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.new-service-box li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
}

    .new-service-box li a:hover {
        color: #e74c3c;
        padding-left: 10px;
    }

.hire-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
}

    .hire-grid ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .hire-grid li {
        margin-bottom: 10px;
    }


    .hire-grid a {
        text-decoration: none;
        color: #666;
        font-weight: bold;
        transition: color 0.3s ease;
        transition: all 0.3s ease;
    }

        .hire-grid a :hover {
            color: #e74c3c;
            /*transform: translateX(5px);*/
        }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    z-index: 999;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

    .mobile-menu.active {
        display: block;
    }

.mobile-menu-item {
    border-bottom: 1px solid #eee;
    margin-top:10px;
}

    .mobile-menu-item > a {
        display: block;
        padding: 15px 20px;
        text-decoration: none;
        color: #333;
        /*font-weight: 600;*/
        font-size: 16px;
        position: relative;
    }

.mobile-menu-item > a:hover{
    color:#e81d25 !important;
}
/* Style 1: Animated Arrow */
.mobile-menu-item.has-submenu > a::after {
    content: '▶';
    position: absolute;
    right: 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    color: #666;
}

    .mobile-menu-item.has-submenu.active > a::after {
        transform: rotate(90deg);
        color: #007bff;
    }

    .mobile-menu-item.has-submenu.open > a::after {
        transform: rotate(45deg);
    }

.mobile-submenu {
    background: #f8f9fa;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

    .mobile-submenu.open {
        max-height: 1000px;
    }

.mobile-submenu-header {
    padding: 15px 20px;
    background: #e9ecef;
    border-top: 1px solid #dee2e6;
}

    .mobile-submenu-header h4 {
        font-size: 16px;
        color: #e81d25;
        margin-bottom: 5px;
    }

    .mobile-submenu-header p {
        font-size: 13px;
        color: #666;
        line-height: 1.4;
    }

.mobile-submenu-links {
    padding: 10px 0;
}

    .mobile-submenu-links a {
        display: block;
        padding: 12px 30px;
        text-decoration: none;
        color: #555;
        font-size: 14px;
        border-bottom: 1px solid #f0f0f0;
        transition: background 0.3s;
    }

        .mobile-submenu-links a:hover {
            background: #e9ecef;
            color: #e81d25;
        }

        .mobile-submenu-links a:last-child {
            border-bottom: none;
        }

/* Hire Developer Grid */
.hire-developer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 0;
}

    .hire-developer-grid a {
        display: block;
        padding: 12px 30px;
        text-decoration: none;
        color: #555;
        font-size: 14px;
        border-bottom: 1px solid #f0f0f0;
        transition: background 0.3s;
    }

        .hire-developer-grid a:hover {
            background: #e9ecef;
            color: #e81d25;
        }

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

}

/* Demo content */
.demo-content {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

    .demo-content h1 {
        color: #333;
        margin-bottom: 20px;
    }

    .demo-content p {
        color: #666;
        font-size: 16px;
    }

a {
    text-decoration: none !important;
}

    a:hover {
        text-decoration: none !important;
    }
body.mobile-menu-open {
    overflow: hidden;
}

.custom-alert{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.close-alert-btn{
    border:none !important;
    background-color:transparent;
    font-size:31px;
}