/* :root {
    --primary-color: #0056b3;
    --secondary-color: #003366;
    --accent-color: #00a0e1;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --success-color: #28a745;
    --text-color: #333;
    --text-light: #6c757d;
} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0  5px 20px;
}

/* New Header Styles */
.new-header {
    background: white;
    padding: 14px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.new-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-wrap img {
    height:40px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
}

.logo-text span {
    color: tomato;
}

.nav-main {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

.nav-list a {
text-decoration: none;
color: #2d3748;
font-weight: 500;
font-size: 16px;
font-family: 'Inter', sans-serif;
letter-spacing: -0.2px;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
}

.nav-list a:hover {
    color: tomato;
}

.nav-list a.active {
    color: tomato;
    font-weight: 600;
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: tomato;
}

.dropdown-parent {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    margin-top: 10px;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown-parent:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    border-bottom: 1px solid #f1f1f1;
}

.dropdown-menu a:hover {
background: rgba(255, 76, 76, 0.05);
color: #ff4d4d;
padding-left: 24px;
}
.dropdown-toggle-mobile {
background: none;
border: none;
padding: 0; /* Remove padding to prevent misalignment */
margin: 0; /* Remove default margins */
display: flex;
align-items: center;
justify-content: center;
}

/* Keep your existing dropdown toggle styles */
.dropdown-toggle-mobile i {
transition: transform 0.3s ease;
font-size: 12px;
color: #666;
}
.mobile-service-link {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
gap: 10px; /* Add some space between text and icon */
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.cta-button {
    background: tomato;
    color: white !important;
    padding: 8px 20px;
    border-radius: 5px;
    transition: all 0.3s;
}

.cta-button:hover {
    background: tomato;
    transform: translateY(-2px);
}

/* Mobile Styles */
@media (max-width: 992px) {
    .nav-main {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .nav-main.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .dropdown-parent {
        display: flex;
        flex-direction: column;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        display: none;
        padding-left: 15px;
        transform: none;
        opacity: 1;
        visibility: visible;
    }
    
    .dropdown-parent.active .dropdown-menu {
        display: block;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    /* New mobile service link styles */
    .mobile-service-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .dropdown-toggle-mobile {
        background: none;
        border: none;
        padding: 5px 50px;
        cursor: pointer;
        color: #333;
        font-size: 16px;
    }
    
    .dropdown-toggle-mobile i {
        transition: transform 0.3s ease;
    }
    
    .dropdown-parent.active .dropdown-toggle-mobile i {
        transform: rotate(180deg);
    }
}

/* Footer Styles */
/* FOOTER STYLES */
.site-footer {
    background-color: #1a1e2e;
    color: #e0e0e0;
    padding: 4rem 0 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.sf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.sf-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.sf-col {
    padding: 0 0.5rem;
}

.sf-logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.sf-tagline {
    color: #a1a1a1;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1.5rem;
}

.sf-about {
    margin-bottom: 1.5rem;
    color: #b0b0b0;
}

.sf-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #b0b0b0;
}

.sf-icon {
    width: 18px;
    height: 18px;
    margin-right: 0.75rem;
    fill: tomato;
}

.sf-title {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.sf-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: tomato;
}

.sf-mt-30 {
    margin-top: 1.875rem;
}

.sf-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sf-link-item {
    margin-bottom: 0.75rem;
}

.sf-link {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sf-link:hover {
    color: #fff;
    text-decoration: underline;
}

.sf-newsletter {
    margin-top: 1.5rem;
}

.sf-newsletter-title {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.sf-newsletter-form {
    display: flex;
}

.sf-newsletter-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #2d3748;
    background: #2d3748;
    color: #fff;
    border-radius: 4px 0 0 4px;
}

.sf-newsletter-button {
    background: tomato;
    color: white;
    border: none;
    padding: 0 1rem;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.2s;
}

.sf-newsletter-button:hover {
    background: rgb(165, 68, 51);
}
.sf-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.sf-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.sf-social-link:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

.sf-social-icon {
    width: 18px;
    height: 18px;
    fill: #b0b0b0;
}

.sf-social-link:hover .sf-social-icon {
    fill: #fff;
}

.sf-bottom {
    border-top: 1px solid #2d3748;
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sf-copyright {
    color: #7a7a7a;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.sf-payments {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.sf-payment-method {
    color: #7a7a7a;
    font-size: 0.85rem;
}

.sf-payment-icon {
    color: #b0b0b0;
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 992px) {
    .sf-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 576px) {
    .sf-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sf-col {
        padding: 0;
    }
    
    .sf-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .sf-payments {
        margin-top: 1rem;
    }
}
/* Responsive Styles */
@media (max-width: 992px) {
    .about-content,
    .careers-content,
    .contact-container {
        flex-direction: column;
    }
    
    .about-image,
    .careers-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 30px;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}