/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out;
}

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

.loading-logo {
    animation: pulse 2s infinite;
}

.loading-circle {
    transform-origin: center;
    transform: rotate(-90deg);
}

.company-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    animation: slideInFromLeft 1s ease-out 0.5s both;
}

.tagline {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
    margin-bottom: 2rem;
    animation: slideInFromRight 1s ease-out 0.7s both;
}

.loading-text {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
    animation: fadeIn 1s ease-out 1s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.8;
    }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-logo a {
    display: block;
    text-decoration: none;
}

.loading-logo {
    height: 80px;
    width: auto;
    max-width: 200px;
    animation: pulse 2s infinite;
    border-radius: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.contact-link {
    background: #2b6cb0;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.contact-link:hover {
    background: #2c5282;
    color: white;
}

.dropdown-icon {
    display: inline;
}

.desktop-only {
    display: block;
}

.nav-menu a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu a:hover {
    color: #2b6cb0;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 0.75rem 1.5rem;
    display: block;
    color: #4a5568;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: #f7fafc;
    color: #2b6cb0;
}

.cta-nav {
    background: #2b6cb0 !important;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.cta-nav:hover {
    background: #2c5282 !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    padding: 120px 20px 60px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    filter: brightness(0.7) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(43, 108, 176, 0.8) 30%, rgba(26, 32, 44, 0.9) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(144, 205, 244, 0.9) 0%, rgba(99, 179, 237, 0.9) 100%);
    color: #1a365d;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(15px);
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(144, 205, 244, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #e2e8f0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-weight: 400;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: white;
    color: #2b6cb0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2b6cb0;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(144, 205, 244, 0.2) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(20px);
    min-width: 120px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #90cdf4;
}

.stat h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.stat p {
    color: #e2e8f0;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

/* Vision Mission Section */
.vision-mission {
    padding: 80px 0;
    background: #1a202c;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.vm-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vm-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vm-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.vm-card.vision {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.vm-card.mission {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.vm-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.vm-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.vm-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #2d3748;
}

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

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

.section-header p {
    font-size: 1.2rem;
    color: #a0aec0;
    max-width: 600px;
    margin: 0 auto;
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: #4a5568;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    padding: 2rem;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: #2b6cb0;
}

.service-card.featured {
    grid-column: span 2;
    display: flex;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
}

.service-card:not(.featured) {
    padding: 2rem;
    text-align: center;
}

.service-icon {
    font-size: 3rem;
    color: #2b6cb0;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e6f3ff 0%, #f0f8ff 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.service-card.featured .service-icon {
    margin: 0;
    flex-shrink: 0;
}

.service-content h3 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.service-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.5rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: bold;
}

.service-link {
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #1a365d;
    gap: 1rem;
}

.service-card h3 {
    color: #e2e8f0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

/* Specialized Services */
.specialized-services {
    padding: 100px 0;
    background: #1a202c;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.expertise-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: #2d3748;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.expertise-card:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.expertise-card:nth-child(even) .expertise-image {
    order: 2;
}

.expertise-image {
    height: 300px;
    overflow: hidden;
}

.expertise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expertise-content {
    padding: 2rem;
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2b6cb0 0%, #1a365d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.expertise-content h3 {
    color: #e2e8f0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.expertise-content p {
    color: #a0aec0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.expertise-link {
    color: #90cdf4;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.expertise-link:hover {
    color: #63b3ed;
    gap: 1rem;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: #2d3748;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-container {
    position: relative;
    display: flex;
    align-items: center;
}

.team-nav {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #2b6cb0 0%, #1a365d 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(43, 108, 176, 0.3);
    transition: all 0.3s ease;
    font-size: 24px;
    font-weight: bold;
    align-items: center;
    justify-content: center;
}

.team-nav:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(43, 108, 176, 0.4);
}

.team-nav-left {
    left: -25px;
}

.team-nav-right {
    right: -25px;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .team-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .team-nav {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .team-nav {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .team-container {
        position: relative;
    }
    
    .team-nav {
        display: flex !important;
    }
    
    .team-grid {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        padding: 0 10px 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    .team-member {
        flex: 0 0 calc(50% - 0.5rem);
        min-width: calc(50% - 0.5rem);
        scroll-snap-align: start;
        max-height: 380px;
    }
    
    .team-member {
        flex: 0 0 calc(50% - 0.5rem);
        min-width: calc(50% - 0.5rem);
        scroll-snap-align: start;
    }
    
    .member-info {
        padding: 1.5rem 1rem 2rem;
    }
    
    .team-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .team-grid::-webkit-scrollbar-track {
        background: rgba(255,255,255,0.1);
        border-radius: 3px;
    }
    
    .team-grid::-webkit-scrollbar-thumb {
        background: #90cdf4;
        border-radius: 3px;
    }
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.member-photo {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 108, 176, 0.8) 0%, rgba(26, 54, 93, 0.8) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-overlay a {
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.member-overlay a:hover {
    transform: scale(1.2);
}

.member-info {
    padding: 1.5rem;
    text-align: center;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.member-info h4 {
    color: #1a365d;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.member-info .role {
    color: #90cdf4;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.member-info .designation {
    color: #2b6cb0;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
    font-style: italic;
}

.member-info .role {
    color: #4a5568;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: #1a365d;
    color: white;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial cite {
    font-weight: 600;
    color: #90cdf4;
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a365d;
}

.about p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #1a202c;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-card {
    background: #2d3748;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card.office-grid {
    grid-column: span 2;
}

.office-locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.office-item {
    display: flex;
    flex-direction: column;
}

.office-item h5 {
    color: #90cdf4;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
}

.office-item p {
    color: #a0aec0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2b6cb0 0%, #1a365d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.contact-card h4 {
    color: #e2e8f0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-card p {
    color: #a0aec0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #2b6cb0 0%, #1a365d 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(43, 108, 176, 0.3);
}

.contact-form-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form {
    background: #2d3748;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.contact-form h3 {
    color: #e2e8f0;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #4a5568;
    border-radius: 12px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #1a202c;
    color: #e2e8f0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2b6cb0;
    background: #2d3748;
    box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.2);
}

.contact-form button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #2b6cb0 0%, #1a365d 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(43, 108, 176, 0.3);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: #0f1419;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #90cdf4;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    color: #cbd5e0;
}

.footer-section ul li a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #90cdf4;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    text-align: center;
    color: #cbd5e0;
}

.footer-bottom a {
    color: #90cdf4;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 0.5rem 0;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-menu a {
        padding: 0.75rem 2rem;
        display: block;
        border-bottom: 1px solid #f1f1f1;
    }
    

    
    .dropdown-menu {
        display: none !important;
    }
    
    .dropdown-icon {
        display: none;
    }
    
    .nav-menu.active {
        left: 0;
    }
    

    
    .logo {
        gap: 0.5rem;
    }
    
    .logo-text h2 {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 100px 15px 40px;
        overflow: hidden;
    }
    
    .hero-background {
        overflow: hidden;
    }
    
    .hero-bg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-top: 2rem;
        padding-top: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 1rem;
        margin-top: 2rem;
        padding: 0 10px;
    }
    
    .hero-content {
        margin-bottom: 2rem;
    }
    
    .hero-main {
        display: block;
    }
    
    .hero-text {
        padding-right: 0;
    }
    
    .stat {
        min-width: auto;
        padding: 1rem;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .desktop-only {
        display: none;
    }
    
    .services-showcase {
        grid-template-columns: 1fr;
    }
    
    .expertise-card {
        grid-template-columns: 1fr !important;
    }
    
    .expertise-card:nth-child(even) .expertise-image {
        order: 0;
    }
    
    .expertise-image {
        height: 200px;
    }
    
    .service-card.featured {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
    }
    

    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-card.office-grid {
        grid-column: span 1;
    }
    
    .office-locations {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .office-item h5 {
        min-height: auto;
        text-align: center;
        display: block;
        justify-content: center;
    }
    
    .office-item p {
        text-align: center;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-card.office-grid {
        grid-column: span 2;
    }
    
    .office-locations {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 15px 40px;
        min-height: 100vh;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
        z-index: 2;
    }
    
    .hero-main {
        display: block;
        margin-bottom: 2rem;
    }
    
    .hero-text {
        padding: 0;
        margin-bottom: 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .hero-text p {
        display: none;
    }
    
    .hero-badge {
        text-align: center;
        margin-bottom: 2rem;
        order: 2;
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 1rem;
        padding: 0;
        margin: 2rem auto;
        max-width: 300px;
        order: 3;
    }
    
    .stat {
        padding: 1rem;
        min-width: auto;
        margin: 0;
    }
    
    .stat h3 {
        font-size: 1.5rem;
    }
    
    .stat p {
        font-size: 0.75rem;
    }
    
    .hero-cta {
        margin-top: 2rem;
        justify-content: center;
        order: 4;
    }
    
    .hero-cta .btn-primary {
        width: auto;
        max-width: 200px;
        padding: 0.8rem 1.5rem;
    }
    
    .hero-cta .btn-secondary {
        display: none;
    }
    
    .container {
        padding: 0 10px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    body {
        overflow-x: hidden;
    }
    
    .services,
    .team,
    .about,
    .contact {
        padding: 60px 0;
    }
    
    .service-hero {
        padding: 120px 10px 60px;
    }
    
    .service-hero h1 {
        font-size: 1.8rem;
    }
    
    .service-stats {
        grid-template-columns: 1fr;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #2b6cb0;
    outline-offset: 2px;
}

/* Service Pages Styles */
.service-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #2b6cb0 0%, #1a365d 100%);
    color: white;
}

.service-hero-content {
    text-align: center;
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.service-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.95;
}

.service-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.service-stats .stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    min-width: 120px;
}

.service-details {
    padding: 100px 0;
    background: white;
}

.service-overview {
    text-align: center;
    margin-bottom: 4rem;
}

.service-overview h2 {
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-overview p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.service-offerings {
    margin-bottom: 4rem;
}

.service-offerings h3 {
    color: #1a365d;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.offering-card {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.offering-card:hover {
    transform: translateY(-5px);
    border-color: #2b6cb0;
    background: white;
    box-shadow: 0 10px 30px rgba(43, 108, 176, 0.15);
}

.offering-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2b6cb0 0%, #1a365d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.offering-card h4 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.offering-card p {
    color: #4a5568;
    line-height: 1.6;
}

.service-process {
    margin-bottom: 4rem;
}

.service-process h3 {
    color: #1a365d;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2b6cb0 0%, #1a365d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.step h4 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.step p {
    color: #4a5568;
    line-height: 1.6;
}

.tax-categories {
    margin-bottom: 4rem;
}

.tax-category {
    margin-bottom: 4rem;
    padding: 3rem;
    background: #f7fafc;
    border-radius: 20px;
}

.tax-category h3 {
    color: #1a365d;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.litigation-support {
    background: #f7fafc;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 4rem;
}

.litigation-support h3 {
    color: #1a365d;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

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

.litigation-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.litigation-card:hover {
    transform: translateY(-5px);
}

.litigation-card h4 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.litigation-card p {
    color: #4a5568;
    line-height: 1.6;
}

.service-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    color: white;
    text-align: center;
}

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

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

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

.cta-buttons .btn-primary {
    background: white;
    color: #2b6cb0;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .service-card,
    .team-member,
    .contact-form,
    .offering-card,
    .litigation-card {
        border: 2px solid #333;
    }
}

/* Service page responsive */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2rem;
        flex-direction: column;
    }
    
    .service-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tax-category {
        padding: 2rem 1rem;
    }
}