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

:root {
    /* EJeter Consulting Colors */
    --navy: hsl(207, 74%, 12%);
    --red-accent: hsl(355, 84%, 52%);
    --blue-light: hsl(216, 93%, 85%);
    --blue-medium: hsl(210, 68%, 71%);
    --blue-dark: hsl(210, 44%, 56%);
    
    /* Additional Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    
    /* Typography */
    --font-family: 'Inter', sans-serif;
    
    /* Spacing */
    --container-max-width: 1280px;
    --section-padding: 5rem 0;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Navigation Styles */
.nav-transparent {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav-logo img {
    width: 100px !important;
    height: auto!important;
    max-width:150px ;
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    color: var(--gray-700);
    text-decoration: none;
    transition: none;
}
.nav-links a:active {
    color: var(--gray-700);
    text-decoration: none;
    transition: none;
}
.nav-links a:visited {
    color: var(--gray-700);
    text-decoration: none;
    transition: none;
}

.nav-links a:hover {
    color: var(--navy)!important;
    text-decoration: none;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--navy);
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

.dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 0.5rem;
    width: 20rem;
    background: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--gray-100);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.5rem);
    transition: all 0.2s ease;
    padding: 1rem 1.5rem;
}

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

.dropdown-menu a {
    display: block;
    padding: 0.75rem 0;
    color: var(--gray-800);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-100);
    transition: color 0.3s ease;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    color: var(--red-accent);
}

.nav-cta {
    display: none;
}

@media (min-width: 768px) {
    .nav-cta {
        display: block;
    }
}

.mobile-menu-btn {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn button {
    background: none;
    border: none;
    color: var(--gray-700);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
}

.mobile-menu.show {
    display: block;
}

.mobile-menu-content {
    padding: 0.5rem 1rem 0.75rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
}

.mobile-nav-link:hover {
    color: var(--navy);
}

.mobile-cta-btn {
    margin: 1rem 0.75rem 0;
    text-align: center;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--red-accent);
    color: var(--white);
}

.btn-primary:hover {
    background-color: hsl(355, 84%, 45%);
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--navy);
}

.btn-dark {
    background-color: var(--blue-dark);
    color: var(--white);
}

.btn-dark:hover {
    background-color: var(--navy);
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero {
        height: 700px;
    }
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1556761175-b413da4baf72?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&h=1080');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 33, 54, 0.85) 0%, rgba(65, 113, 170, 0.75) 100%);
}

.hero-gradient {
    background: linear-gradient(135deg, rgba(10, 33, 54, 0.85) 0%, rgba(65, 113, 170, 0.75) 100%);
}

.hero-content {
    position: relative;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-text {
    max-width: 48rem;
    margin-top: 60px;
    margin-bottom: 60px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 5rem;
    }
}

.text-accent {
    color: var(--blue-light);
}

.hero h2 {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .hero h2 {
        font-size: 1.5rem;
    }
}

.hero-subtext {
    font-weight: 600;
    font-size: 1.875rem;
    display: block;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .hero-subtext {
        font-size: 2.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 2rem;
    }
}

/* Section Styles */
.section {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--gray-50);
}

.bg-white {
    background-color: var(--white);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--red-accent);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: hsl(355, 84%, 45%);
}

/* Quote Section */
.quote-section {
    padding: var(--section-padding);
    background: linear-gradient(to right, var(--blue-light), var(--blue-medium));
}

.quote-section .container {
    max-width: 80rem;
    text-align: center;
}

.quote-section blockquote {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--navy);
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .quote-section blockquote {
        font-size: 1.875rem;
    }
}

.quote-mark {
    font-size: 3.75rem;
    color: var(--red-accent);
    line-height: 1;
}

.quote-author {
    color: var(--navy);
    font-weight: 600;
    font-size: 1.125rem;
}

/* About Preview */
.about-preview {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-preview {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image {
    order: 2;
}

@media (min-width: 1024px) {
    .about-image {
        order: 1;
    }
}

.about-image img {
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    display: block;
}

.about-content {
    order: 1;
}

@media (min-width: 1024px) {
    .about-content {
        order: 2;
    }
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--red-accent);
    margin-top: 0.25rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: var(--gray-600);
}

/* Footer */
.footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--blue-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: none;
}

.footer-section a:visited {
    color: #ffffff;
    text-decoration: none;
    transition: none;
}

.footer-section a:active {
    color: #ffffff;
    text-decoration: none;
    transition: none;
}
.footer-section a:hover {
    color: var(--blue-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-cta {
    color: var(--red-accent) !important;
    font-weight: 600 !important;
}

.footer-cta:hover {
    color: hsl(355, 84%, 70%) !important;
}

.contact-info li {
    color: var(--blue-light);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--blue-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--white);
    color: var(--navy);
}

.footer-bottom {
    border-top: 1px solid var(--blue-dark);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: var(--blue-light);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}
.footer-links a {
color: #ffffff;
text-decoration: none;
transition: none
}
.footer-links a:active {
    color: #ffffff;
    text-decoration: none;
    transition: none
}
.footer-links a:visited {
    color: #ffffff;
    text-decoration: none;
    transition: none
}
.footer-links a:hover {
    color: var(--blue-light)!important;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.show {
    display: block;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Contact Form Styles */
.contact-form {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    padding: 3rem;
}

@media (min-width: 768px) {
    .contact-form {
        padding: 3rem;
    }
}

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

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--blue-dark);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 6rem;
}

.error-message {
    color: var(--red-accent);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-submit {
    display: flex;
    justify-content: center;
    padding-top: 1.5rem;
}

.btn-submit {
    background-color: var(--red-accent);
    color: var(--white);
    padding: 1rem 3rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover:not(:disabled) {
    background-color: hsl(355, 84%, 45%);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Success/Error Messages */
.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Sticky Navigation */
.sticky-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card .feature-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--red-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-card .feature-icon i {
    width: 2rem;
    height: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Background Colors */
.bg-navy {
    background-color: var(--navy);
}

.text-white {
    color: var(--white);
}

/* Text Utilities */
.text-center {
    text-align: center;
}