/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #414042;
    background-color: #ffffff;
    background-image: url('../assets/LG Psych Background.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Add overlay to ensure content readability */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #414042;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #6d6e71;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: #d10461;
    color: white;
    border-color: #d10461;
}

.btn-primary-get-in-touch {
    background-color: #d10461;
    color: white;
    border-color: #f066a4;
}

.btn-primary-get-in-touch:hover {
    background-color: #da3681;
    border-color: #da3681;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #d10461;
    border-color: #d10461;
}

.btn-secondary:hover {
    background-color: #d10461;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #414042;
    border-color: #939598;
}

.btn-outline:hover {
    background-color: #414042;
    color: white;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #d10461;
    margin: 0;
    font-size: 1.8rem;
}

.nav-logo .logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #414042;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #d10461;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #414042;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8bbd0 0%, #f6a2a9 100%);
    /* background: linear-gradient(135deg, #f8bbd0 0%, #ffdcf4 100%); */
    color: white;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.profile-placeholder {
    width: 300px;
    height: 300px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255,255,255,0.3);
}

.profile-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.7);
}

.profile-placeholder p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.profile-image-index {
    max-width: 290px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: contain;
    border: none;
    /* box-shadow: 0 6px 24px rgba(0,0,0,0.12); */
    background: transparent;
    padding: 12px;
}

.profile-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 8px;
    border: 3px solid rgba(255,255,255,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: #f6a2a9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: #d10461;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #414042;
}

.service-card p {
    color: #6d6e71;
}

/* About Preview */
.about-preview {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.stat h3 {
    color: #d10461;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #6d6e71;
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background-color: #414042;
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

/* Footer */
.footer {
    background-color: #414042;
    color: white;
    padding: 50px 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 {
    color: #d10461;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #d10461;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

.footer-section i {
    margin-right: 0.5rem;
    color: #d10461;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* About Page Styles */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #414042 0%, #6d6e71 100%);
    color: white;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-hero-text h1 {
    color: white;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.3rem;
    color: #f6a2a9;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-hero-text p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

.about-hero-image {
    display: flex;
    justify-content: center;
}

.background {
    padding: 80px 0;
}

.background-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.background-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #d10461;
}

.stat-item h3 {
    color: #d10461;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #6d6e71;
    margin: 0;
    font-size: 0.9rem;
}

.philosophy {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.philosophy h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.philosophy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.philosophy-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    background-color: #f6a2a9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.philosophy-icon i {
    font-size: 2rem;
    color: #d10461;
}

.values {
    padding: 80px 0;
}

.values h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid #d10461;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h3 {
    color: #d10461;
    margin-bottom: 1rem;
}

.quote {
    padding: 80px 0;
    background-color: #414042;
    color: white;
    text-align: center;
}

.quote blockquote {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
}

.quote blockquote p {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.quote cite {
    color: #f6a2a9;
    font-size: 1.1rem;
    font-weight: 600;
}

.registration {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.registration-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.registration-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.registration-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.registration-item i {
    color: #d10461;
    font-size: 1.2rem;
}

.contact-block {
    padding: 80px 0;
    background: linear-gradient(135deg, #d10461 0%, #da3681 100%);
    color: white;
    text-align: center;
}

.contact-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.contact-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.9);
}

.contact-item i {
    color: rgba(255,255,255,0.7);
}

/* Solutions Page Styles */
.solutions-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f6a2a9 0%, #da3681 100%);
    color: white;
    text-align: center;
}

.solutions-hero-content h1 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.solutions-hero-content p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin: 0 auto;
}

.core-solutions {
    padding: 80px 0;
}

.core-solutions h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.solution-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.solution-card.featured {
    border: 3px solid #d10461;
}

.solution-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
}

.solution-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #d10461 0%, #da3681 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.solution-icon i {
    font-size: 2.5rem;
    color: white;
}

.solution-header h3 {
    color: #414042;
    margin-bottom: 0;
    font-size: 1.5rem;
}

.solution-content {
    padding: 2rem;
}

.solution-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #6d6e71;
    line-height: 1.7;
}

.solution-features {
    margin-bottom: 2rem;
}

.solution-features h4,
.solution-benefits h4 {
    color: #d10461;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.solution-features ul {
    list-style: none;
    padding: 0;
}

.solution-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.solution-features li i {
    color: #d10461;
    font-size: 0.9rem;
}

.solution-benefits {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.solution-benefits p {
    margin: 0;
    color: #6d6e71;
}

.process-overview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.process-overview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d10461 0%, #da3681 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    color: #414042;
    margin-bottom: 1rem;
}

.step-content p {
    color: #6d6e71;
    margin: 0;
}

.industries {
    padding: 80px 0;
}

.industries h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.industry-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-3px);
}

.industry-item i {
    font-size: 2.5rem;
    color: #d10461;
    margin-bottom: 1rem;
}

.industry-item h4 {
    color: #414042;
    margin-bottom: 0.5rem;
}

.industry-item p {
    color: #6d6e71;
    margin: 0;
    font-size: 0.9rem;
}

.why-choose {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.why-choose h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.why-choose-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d10461 0%, #da3681 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-icon i {
    font-size: 2rem;
    color: white;
}

.why-item h3 {
    color: #414042;
    margin-bottom: 1rem;
}

.why-item p {
    color: #6d6e71;
    margin: 0;
}

.solutions-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #414042 0%, #6d6e71 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #414042 0%, #6d6e71 100%);
    color: white;
    text-align: center;
}

.contact-hero-content h1 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.contact-hero-content p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-container h2 {
    margin-bottom: 1rem;
    color: #414042;
}

.contact-form-container p {
    margin-bottom: 2rem;
    color: #6d6e71;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #414042;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d10461;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-container {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
}

.contact-info-container h2 {
    margin-bottom: 2rem;
    color: #414042;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d10461 0%, #da3681 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-text h4 {
    color: #414042;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #6d6e71;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.consultation-info {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #d10461;
}

.consultation-info h3 {
    color: #d10461;
    margin-bottom: 1rem;
}

.consultation-info p {
    margin-bottom: 1.5rem;
    color: #6d6e71;
}

.consultation-info ul {
    list-style: none;
    padding: 0;
}

.consultation-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: #6d6e71;
}

.consultation-info li i {
    color: #d10461;
    font-size: 0.9rem;
}

.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h4 {
    color: #d10461;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: #6d6e71;
    margin: 0;
    line-height: 1.6;
}

.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #d10461 0%, #da3681 100%);
    color: white;
    text-align: center;
}

.contact-cta .cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.contact-cta .cta-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .nav-container {
        padding: 0 30px;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .about-content {
        gap: 2.5rem;
    }
    
    .contact-content {
        gap: 3rem;
    }
    
    .solutions-grid {
        gap: 2.5rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .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: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-item {
        margin: 1rem 0;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 1rem;
    }
    
    .stat {
        flex: 1;
        min-width: 0;
    }
    
    /* About page responsive */
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .background-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .background-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 1rem;
    }
    
    .stat-item {
        flex: 1;
        min-width: 0;
    }
    
    .philosophy-content {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .registration-details {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Solutions page responsive */
    .solutions-hero {
        padding: 100px 0 60px;
    }
    
    .solutions-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .why-choose-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    /* Contact page responsive */
    .contact-hero {
        padding: 100px 0 60px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    /* Typography adjustments */
    .quote blockquote p {
        font-size: 1.1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .profile-placeholder,
    .profile-image {
        width: 250px;
        height: 250px;
    }
    
    /* Sections padding */
    .services-preview,
    .about-preview,
    .cta,
    .background,
    .philosophy,
    .values,
    .quote,
    .registration,
    .contact-block,
    .core-solutions,
    .process-overview,
    .industries,
    .why-choose,
    .solutions-cta,
    .contact-form-section,
    .faq-section,
    .contact-cta {
        padding: 60px 0;
    }
}

/* Large Mobile Devices */
@media (max-width: 600px) {
    .container {
        padding: 0 15px;
    }

    .profile-image-index {
        display: none;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero-text h1 {
        font-size: 1.9rem;
        line-height: 1.3;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .about-stats,
    .background-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat,
    .stat-item {
        margin: 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card,
    .solution-card,
    .value-card,
    .philosophy-item,
    .why-item,
    .industry-item,
    .process-step,
    .faq-item {
        margin-bottom: 1.5rem;
    }
    
    .contact-hero-content h1,
    .solutions-hero-content h1,
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .profile-placeholder,
    .profile-image {
        width: 220px;
        height: 220px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .profile-image-index {
        display: none;
    }
    
    .nav-container {
        padding: 0 15px;
        height: 60px;
    }
    
    .nav-logo .logo {
        height: 40px;
    }
    
    .nav-menu {
        top: 60px;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-text h1 {
        font-size: 1.7rem;
        line-height: 1.3;
    }
    
    .hero-text p {
        font-size: 0.95rem;
    }
    
    .btn {
        width: 100%;
        max-width: 100%;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .about-stats,
    .background-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat,
    .stat-item {
        margin: 0;
        padding: 1rem;
    }
    
    .services-grid,
    .philosophy-content,
    .values-grid,
    .process-steps,
    .industries-grid,
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-hero-content h1,
    .solutions-hero-content h1,
    .about-hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .profile-placeholder,
    .profile-image {
        width: 200px;
        height: 200px;
    }
    
    .quote blockquote p {
        font-size: 1rem;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 2rem 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    /* Sections padding for mobile */
    .services-preview,
    .about-preview,
    .cta,
    .background,
    .philosophy,
    .values,
    .quote,
    .registration,
    .contact-block,
    .core-solutions,
    .process-overview,
    .industries,
    .why-choose,
    .solutions-cta,
    .contact-form-section,
    .faq-section,
    .contact-cta {
        padding: 40px 0;
    }
    
    h1 {
        font-size: 1.7rem;
    }
    
    h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .profile-image-index {
        display: none;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .contact-hero-content h1,
    .solutions-hero-content h1,
    .about-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 1.5rem 1rem;
    }
    
    .service-card,
    .solution-card,
    .value-card,
    .philosophy-item,
    .why-item,
    .industry-item,
    .process-step,
    .faq-item {
        padding: 1.5rem;
    }
    
    .profile-placeholder,
    .profile-image {
        width: 180px;
        height: 180px;
    }
}

/* Landscape orientation for mobile devices */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 60px 0 30px;
    }
    
    .about-hero,
    .contact-hero,
    .solutions-hero {
        padding: 60px 0 30px;
    }
    
    .profile-placeholder,
    .profile-image {
        width: 150px;
        height: 150px;
    }
}
/* …all your existing media-queries here… */

/* ========== Overrides for sticky header & contact stacking ========== */

body {
  padding-top: 70px;
}

.contact-form-container,
.contact-info-container {
  max-width: 100%;
}

@media (max-width: 768px) {
  .contact-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}
/* Pull hero/banner sections up under the fixed header */
.hero,
.about-hero,
.solutions-hero,
.contact-hero {
  margin-top: -70px;      /* lift them up by the nav’s height */
  padding-top: 190px;     /* original 120px padding + 70px nav height */
}
