* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #fe7426;
    --primary-orange-dark: #d85f1a;
    --dark-blue: #002f5f;
    --text-dark: #002f5f;
    --text-light: #64748b;
    --bg-light: #f1f5f9;
    --bg-lighter: #f8fafc;
    --white: #ffffff;
    --silver: #c0c0c0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    border-radius: 12px;
    padding: 0 20px;
    transition: top 0.3s ease, left 0.3s ease, right 0.3s ease, width 0.3s ease, border-radius 0.3s ease, box-shadow 0.3s ease;
}

/* Navbar when scrolled - sticks to top on large screens */
@media (min-width: 969px) {
    .navbar.scrolled {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--dark-blue);
    letter-spacing: 1px;
    line-height: 1.3;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0 auto;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: var(--primary-orange);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 0.75rem 1.5rem;
    display: block;
    color: var(--text-dark);
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-orange);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-contact {
    background: var(--primary-orange);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.dark-mode-toggle {
    background: none;
    border: none;
    color: var(--dark-blue);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.dark-mode-toggle:hover {
    color: var(--primary-orange);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

body.dark-mode .hamburger span {
    background: #cbd5e1;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 100px;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: fadeInOut 8s infinite;
}

.hero-slideshow .slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-slideshow .slide:nth-child(2) {
    animation-delay: 2s;
}

.hero-slideshow .slide:nth-child(3) {
    animation-delay: 4s;
}

.hero-slideshow .slide:nth-child(4) {
    animation-delay: 6s;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    25% {
        opacity: 1;
    }
    35% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.hero-slideshow .slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 47, 95, 0.85) 0%, rgba(0, 20, 40, 0.9) 100%);
    z-index: 2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    opacity: 0.4;
    background-image: 
        /* Triangles and connecting lines pattern */
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(254,116,38,0.15) 2px, transparent 2px),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08) 1.5px, transparent 1.5px),
        linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.05) 49%, rgba(255,255,255,0.05) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(254,116,38,0.1) 49%, rgba(254,116,38,0.1) 51%, transparent 52%);
    background-size: 200px 200px, 150px 150px, 100px 100px, 50px 50px, 60px 60px;
    background-position: 0 0, 100px 100px, 50px 50px, 25px 25px, 30px 30px;
    pointer-events: none;
}

.hero-person-image {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 500px;
    z-index: 3;
    opacity: 0.3;
    pointer-events: none;
}

.person-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(254,116,38,0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: left;
    color: var(--white);
    max-width: 600px;
    padding: 0 20px;
    margin-left: 5%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--primary-orange);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.chat-icon {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.chat-icon:hover {
    transform: scale(1.1);
    background: var(--primary-orange-dark);
}

.scroll-indicators {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.scroll-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.scroll-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: scale(1.1);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(220, 38, 38, 0.03) 10px, rgba(220, 38, 38, 0.03) 20px);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-card-large {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.service-card-large:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon-top {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--dark-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    z-index: 2;
}

.service-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.service-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--text-light);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--primary-orange);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-visual {
    position: relative;
}

.laptop-placeholder {
    position: relative;
}

.laptop-screen {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 16/10;
    background: var(--dark-blue);
    border-radius: 12px 12px 4px 4px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.laptop-screen::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 10px;
    background: #cbd5e1;
    border-radius: 0 0 8px 8px;
}

.screen-content {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

.screen-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.logo-icon-small {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon-small .logo-bars .bar {
    height: 15px;
}

.logo-text-small {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-text-small span:first-child {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.logo-text-small span:last-child {
    font-size: 0.6rem;
    color: var(--dark-blue);
    letter-spacing: 0.5px;
}

.play-button {
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: var(--primary-orange-dark);
}

.why-choose-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card {
    background: var(--bg-lighter);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: flex;
    justify-content: center;
}

.about-visual {
    position: relative;
}

.about-laptop {
    position: relative;
}

.about-laptop .laptop-screen {
    max-width: 600px;
}

/* Get In Touch Section */
.get-in-touch {
    padding: 100px 0;
    background: var(--white);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-method-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.contact-method-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-method-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.method-btn {
    background: var(--primary-orange);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.method-btn:hover {
    background: var(--primary-orange-dark);
    transform: translateX(5px);
}

/* Let's Connect Section */
.lets-connect {
    padding: 100px 0;
    background: var(--bg-light);
}

.connect-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.connect-card h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.connect-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.connect-item {
    text-align: center;
}

.connect-icon {
    width: 60px;
    height: 60px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.connect-details h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.connect-details p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.map-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.map-link:hover {
    text-decoration: underline;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: var(--bg-light);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.partner-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.partner-logo {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--bg-light);
    padding: 60px 0 30px;
    color: var(--text-dark);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    width: 60px;
    height: 60px;
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-section h4 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--primary-orange);
}

.footer-section ul li i {
    color: var(--primary-orange);
    margin-right: 0.5rem;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(30, 41, 59, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-links a:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-3px);
}

/* Dark Mode Styles */
body.dark-mode {
    background: #0a0e1a;
    color: #e2e8f0;
}

body.dark-mode .navbar {
    background: #1a1f2e;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

body.dark-mode .logo-main,
body.dark-mode .logo-sub {
    color: #e2e8f0;
}

body.dark-mode .nav-menu a {
    color: #cbd5e1;
}

body.dark-mode .nav-menu a.active,
body.dark-mode .nav-menu a:hover {
    color: var(--primary-orange);
}

body.dark-mode .dark-mode-toggle {
    color: #cbd5e1;
}

body.dark-mode .dark-mode-toggle:hover {
    color: var(--primary-orange);
}

body.dark-mode .dropdown-menu {
    background: #1a1f2e;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

body.dark-mode .dropdown-menu a {
    color: #cbd5e1;
}

body.dark-mode .dropdown-menu a:hover {
    background: #252a3a;
    color: var(--primary-orange);
}

body.dark-mode .section-header h2 {
    color: #e2e8f0;
}

body.dark-mode .section-header p {
    color: #94a3b8;
}

body.dark-mode .services,
body.dark-mode .about,
body.dark-mode .contact-form-section,
body.dark-mode .get-in-touch {
    background: #0f1419;
}

body.dark-mode .services::before {
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(254, 116, 38, 0.05) 10px, rgba(254, 116, 38, 0.05) 20px);
}

body.dark-mode .service-card-large,
body.dark-mode .feature-card,
body.dark-mode .contact-method-card,
body.dark-mode .connect-card,
body.dark-mode .contact-form-wrapper,
body.dark-mode .partner-card {
    background: #1a1f2e;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

body.dark-mode .service-content h3,
body.dark-mode .feature-card h3,
body.dark-mode .contact-method-card h3,
body.dark-mode .connect-details h4 {
    color: #e2e8f0;
}

body.dark-mode .service-card p,
body.dark-mode .feature-card p,
body.dark-mode .contact-method-card p,
body.dark-mode .connect-details p {
    color: #94a3b8;
}

body.dark-mode .service-link {
    color: #cbd5e1;
}

body.dark-mode .service-link:hover {
    color: var(--primary-orange);
}

body.dark-mode .why-choose,
body.dark-mode .lets-connect {
    background: #0f1419;
}

body.dark-mode .laptop-screen {
    background: #1a1f2e;
}

body.dark-mode .screen-content {
    background: #0f1419;
}

body.dark-mode .logo-text-small span {
    color: #cbd5e1;
}

body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .form-group textarea {
    background: #1a1f2e;
    border-color: #2d3748;
    color: #e2e8f0;
}

body.dark-mode .form-group input:focus,
body.dark-mode .form-group select:focus,
body.dark-mode .form-group textarea:focus {
    border-color: var(--primary-orange);
}

body.dark-mode .form-group input::placeholder,
body.dark-mode .form-group textarea::placeholder {
    color: #64748b;
}

body.dark-mode .form-group label {
    color: #cbd5e1;
}

body.dark-mode .partners {
    background: #0f1419;
}

body.dark-mode .footer {
    background: #0a0e1a;
}

body.dark-mode .footer-section h3,
body.dark-mode .footer-section h4 {
    color: #e2e8f0;
}

body.dark-mode .footer-section p,
body.dark-mode .footer-section ul li,
body.dark-mode .footer-section ul li a {
    color: #94a3b8;
}

body.dark-mode .footer-section ul li a:hover {
    color: var(--primary-orange);
}

body.dark-mode .footer-section ul li i {
    color: var(--primary-orange);
}

body.dark-mode .social-links a {
    background: rgba(26, 31, 46, 0.5);
    color: #94a3b8;
}

body.dark-mode .social-links a:hover {
    background: var(--primary-orange);
    color: var(--white);
}

body.dark-mode .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

body.dark-mode .about-stats {
    background: #1a1f2e;
}

body.dark-mode .stat-item {
    background: #0f1419;
}

body.dark-mode .stat-item h4 {
    color: var(--primary-orange);
}

body.dark-mode .stat-item p {
    color: #94a3b8;
}

body.dark-mode .about-text h3 {
    color: var(--primary-orange);
}

body.dark-mode .about-text p {
    color: #94a3b8;
}

body.dark-mode .image-placeholder {
    background: linear-gradient(135deg, #1a1f2e, #0f1419);
}

body.dark-mode .portfolio-item {
    background: #1a1f2e;
}

body.dark-mode .portfolio-image {
    background: linear-gradient(135deg, #1a1f2e, #0f1419);
}

body.dark-mode .contact-item {
    background: transparent;
}

body.dark-mode .contact-icon {
    background: var(--primary-orange);
}

body.dark-mode .contact-details h4 {
    color: #e2e8f0;
}

body.dark-mode .contact-details p {
    color: #94a3b8;
}

body.dark-mode .hero-title,
body.dark-mode .hero-subtitle {
    color: #e2e8f0;
}

body.dark-mode .hero-title .highlight {
    color: var(--primary-orange);
}

body.dark-mode .btn-secondary {
    border-color: rgba(255, 255, 255, 0.2);
    color: #e2e8f0;
}

body.dark-mode .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

body.dark-mode .scroll-btn {
    background: #1a1f2e;
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

body.dark-mode .scroll-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
}

body.dark-mode .chat-icon {
    background: var(--primary-orange);
}

body.dark-mode .chat-icon:hover {
    background: var(--primary-orange-dark);
}

body.dark-mode .service-icon-top {
    background: var(--dark-blue);
}

body.dark-mode .method-icon {
    background: var(--primary-orange);
}

body.dark-mode .connect-icon {
    background: rgba(254, 116, 38, 0.15);
}

body.dark-mode .connect-icon i {
    color: var(--primary-orange);
}

body.dark-mode .feature-icon {
    background: rgba(254, 116, 38, 0.15);
}

body.dark-mode .feature-icon i {
    color: var(--primary-orange);
}

body.dark-mode .lets-connect {
    background: #0f1419;
}

body.dark-mode .connect-card {
    background: #1a1f2e;
}

body.dark-mode .map-link {
    color: var(--primary-orange);
}

body.dark-mode .partner-logo {
    color: #94a3b8;
}

/* Enhanced Mobile Styles */
@media (max-width: 968px) {
    .nav-wrapper {
        position: relative;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .btn-contact {
        display: none; /* Hide on tablet/mobile, can be accessed via menu */
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        top: 10px;
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
        padding: 0 15px;
        position: fixed;
    }

    .nav-wrapper {
        position: relative;
    }

    .logo {
        flex: 1;
        min-width: 0;
    }

    .logo-main {
        font-size: 1.3rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .logo-sub {
        font-size: 0.55rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .logo-image {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .btn-contact {
        display: none;
    }

    .dark-mode-toggle {
        padding: 8px;
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    .hero {
        padding-top: 120px;
        height: auto;
        min-height: 100vh;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card-large {
        margin-bottom: 1rem;
    }

    .service-image {
        height: 200px;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-content h3 {
        font-size: 1.4rem;
    }

    .service-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .why-choose,
    .about,
    .get-in-touch,
    .lets-connect,
    .contact-form-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .laptop-screen {
        max-width: 100%;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-method-card {
        padding: 2rem 1.5rem;
    }

    .connect-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .connect-card {
        padding: 2rem 1.5rem;
    }

    .connect-card h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-logo-image {
        width: 50px;
        height: 50px;
    }

    .btn-contact {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .chat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 20px;
        left: 20px;
    }

    .scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .scroll-indicators {
        bottom: 20px;
        right: 20px;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        height: 100vh;
        text-align: left;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        padding: 100px 2rem 2rem;
        gap: 0;
        overflow-y: auto;
        z-index: 1000;
    }

    body.dark-mode .nav-menu {
        background: #1a1f2e;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    }

    body.dark-mode .nav-menu > li {
        border-bottom-color: #2d3748;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Mobile menu backdrop */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    body.menu-open::before {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu > li {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid #e2e8f0;
    }

    .nav-menu > li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        font-size: 1rem;
        padding: 0.5rem 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0.5rem;
        margin-left: 1rem;
        padding: 0.5rem 0;
        background: var(--bg-light);
        border-radius: 8px;
    }

    body.dark-mode .dropdown-menu {
        background: #0f1419;
    }

    .dropdown-menu a {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .hero-content {
        text-align: center;
        margin-left: 0;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-person-image {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .connect-info {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 0 10px;
    }

    .logo-main {
        font-size: 1.1rem;
    }

    .logo-sub {
        font-size: 0.5rem;
        letter-spacing: 0.5px;
    }

    .logo-image {
        width: 35px;
        height: 35px;
    }

    .nav-menu {
        padding: 80px 1.5rem 2rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }

    .contact-method-card h3,
    .connect-details h4 {
        font-size: 1.2rem;
    }

    .method-icon,
    .connect-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Touch-friendly improvements for mobile */
@media (max-width: 768px) {
    .nav-menu a,
    .service-link,
    .method-btn,
    .btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .dropdown-menu a {
        padding: 1rem 1.5rem;
        min-height: 44px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 14px 15px;
    }
}

/* Improve mobile typography and spacing */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 1.6;
    }

    h1, h2, h3, h4 {
        line-height: 1.3;
    }

    .service-content p,
    .feature-card p,
    .contact-method-card p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}
