/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0066cc;
    --dark-blue: #004d99;
    --light-blue: #3399ff;
    --white: #ffffff;
    --light-grey: #f5f7fa;
    --medium-grey: #e0e4e8;
    --dark-grey: #4a5568;
    --text-dark: #2d3748;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'arial', 'HelveticaNeue', 'Helvetica Neue', 'Helvetica-Neue', Helvetica, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0;
    text-transform: uppercase;
    font-family: 'arial', 'HelveticaNeue', 'Helvetica Neue', 'Helvetica-Neue', Helvetica, sans-serif;
}

.logo-image {
    height: auto;
    width: auto;
    max-height: 50px;
    display: block;
}

.logo-meso {
    color: var(--primary-blue);
}

.logo-glass {
    color: var(--primary-blue);
    position: relative;
}

.logo-g {
    display: inline-block;
    position: relative;
    color: #3399ff;
    text-shadow: 
        0 0 10px rgba(51, 153, 255, 0.5),
        0 2px 4px rgba(51, 153, 255, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 2px 4px rgba(51, 153, 255, 0.4));
}

.footer-logo-image {
    height: 32px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.75rem;
}

.footer-logo-text {
    vertical-align: middle;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-blue);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    overflow: hidden;
    padding: 6rem 0;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}


.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 51, 102, 0.5), rgba(0, 0, 0, 0.5));
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.40);
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-subtitle-main {
    font-size: clamp(1.25rem, 3vw, 2rem);
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.hero-tagline {
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 2px;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tagline-item {
    color: var(--white);
}

.tagline-bullet {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.2em;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-blue);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-arrow {
    font-size: 1.2em;
    line-height: 1;
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


.btn-white:hover {
    background-color: var(--light-grey);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ============================================
   Excellence Section
   ============================================ */
.excellence-section {
    padding: 3rem 0;
    background-color: var(--white);
}

.section-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--dark-grey);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 1.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.excellence-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.excellence-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.excellence-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    stroke: var(--white);
}

.excellence-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--white);
    fill: none;
}

.excellence-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.excellence-card p {
    color: var(--dark-grey);
    line-height: 1.6;
    font-size: 0.9375rem;
    margin: 0;
}

/* ============================================
   Featured Services Section
   ============================================ */
.featured-services-section {
    padding: 3rem 0;
    background-color: var(--white);
}

.featured-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.featured-service-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background-color: #f5f5f5;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.service-content p {
    color: var(--dark-grey);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.service-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

.service-arrow {
    font-size: 1.2em;
    line-height: 1;
}

.service-link:hover {
    gap: 0.75rem;
    color: var(--dark-blue);
}

.view-all-services {
    text-align: center;
    margin-top: 3rem;
}

.btn-view-all {
    background-color: var(--white);
    color: var(--primary-blue);
    border: 1px solid var(--medium-grey);
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
}

.btn-view-all:hover {
    background-color: var(--light-grey);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ============================================
   Achievements Section
   ============================================ */
.achievements-section {
    position: relative;
    padding: 2rem 0;
    background-image: url('../images/achievements-section.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    overflow: hidden;
}

.achievements-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.85) 0%, rgba(51, 153, 255, 0.75) 100%);
    z-index: 1;
}

.achievements-section .container {
    position: relative;
    z-index: 2;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-item {
    text-align: center;
    padding: 0.75rem;
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(51, 153, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
}

.achievement-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    fill: none;
}

.achievement-number {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1;
    color: var(--white);
}

.achievement-label {
    font-size: 0.875rem;
    color: var(--white);
    font-weight: 400;
    opacity: 1;
}

/* ============================================
   How We Work Section
   ============================================ */
.how-we-work-section {
    padding: 3rem 0;
    background-color: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.process-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.process-card-last {
    grid-column: auto;
    margin-top: 0;
}

.process-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    z-index: 1;
}

.process-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 1.5rem;
    color: var(--primary-blue);
}

.process-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-blue);
    fill: none;
}

.process-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.process-card p {
    color: var(--dark-grey);
    line-height: 1.6;
    font-size: 0.9375rem;
    margin: 0;
}

/* ============================================
   Portfolio Section
   ============================================ */
.portfolio-section {
    padding: 3rem 0;
    background-color: var(--light-grey);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 102, 204, 0.9) 0%, rgba(0, 102, 204, 0.6) 50%, transparent 100%);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-title {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.portfolio-subtitle {
    color: var(--white);
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    position: relative;
    padding: 3rem 0;
    color: var(--white);
    overflow: hidden;
}

.testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/testimonials-section.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.section-title-white {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title-white::after {
    display: none;
}

.section-intro-white {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.testimonial-quote {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 48px;
    height: 48px;
    opacity: 1;
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-stars {
    color: #ffd700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    margin-top: 3.5rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: auto;
}

.testimonial-name {
    color: var(--primary-blue);
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-location {
    color: var(--dark-grey);
    font-size: 0.875rem;
}

/* ============================================
   Intro Section
   ============================================ */
.intro-section {
    padding: 3rem 0;
    background-color: var(--white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: center;
    display: block;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--dark-grey);
    margin-bottom: 1rem;
}

/* ============================================
   Features Section
   ============================================ */
.features-section {
    padding: 3rem 0;
    background-color: var(--light-grey);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 1.5rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--dark-grey);
    line-height: 1.6;
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 3rem 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            rgba(255, 255, 255, 0.03) 100px,
            rgba(255, 255, 255, 0.03) 102px
        );
    opacity: 0.5;
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-header p {
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 2px;
    opacity: 0.95;
}

.page-header.about-header,
.page-header.services-header,
.page-header.contact-header {
    background-image: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ============================================
   Vision Section
   ============================================ */
.vision-section {
    padding: 3rem 0;
    background-color: var(--white);
}

.vision-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.vision-left {
    text-align: center;
}

.vision-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.vision-icon {
    width: 100px;
    height: 100px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 102, 204, 0.3);
}

.vision-icon svg {
    stroke: var(--white);
    stroke-width: 2;
    width: 45px;
    height: 45px;
}

.vision-left .section-title {
    margin-bottom: 0;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--dark-blue);
}

.vision-text {
    text-align: left;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.vision-text:hover {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.vision-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 12px 12px 0 0;
}

.vision-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-grey);
    text-align: left;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.vision-text p:last-child {
    margin-bottom: 0;
}

.vision-text p:first-child {
    font-size: 1.0625rem;
    color: var(--dark-blue);
    font-weight: 500;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vision-image {
    margin-top: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.vision-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   Help Section
   ============================================ */
.help-section {
    padding: 3rem 0;
    background-color: var(--light-grey);
}

.help-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.help-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.help-image img {
    width: 100%;
    height: auto;
    display: block;
}

.help-content {
    max-width: 100%;
    text-align: left;
}

.help-content .section-title {
    text-align: left;
    margin-bottom: 0.5rem;
}

.help-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--dark-grey);
    margin-bottom: 1.5rem;
}

.help-text:last-of-type {
    margin-bottom: 2rem;
}

.help-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: var(--dark-grey);
    line-height: 1.6;
}

.help-list li:last-child {
    margin-bottom: 0;
}

.check-icon {
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--primary-blue);
}

/* ============================================
   Why Choose Section
   ============================================ */
.why-choose-section {
    padding: 3rem 0;
    background-color: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 1.5rem;
}

.why-choose-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.why-choose-icon svg {
    stroke: var(--white);
}

.why-choose-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.why-choose-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-grey);
}

/* ============================================
   Locations Section
   ============================================ */
.locations-section {
    padding: 3rem 0;
    background-color: var(--white);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.location-card-simple {
    background-color: var(--light-grey);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.location-card-simple h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.location-tag {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.location-card-simple .location-details {
    margin-top: 1.5rem;
}

.location-card-simple .location-detail-item {
    margin-bottom: 1rem;
}

.location-card-simple .location-detail-item:last-child {
    margin-bottom: 0;
}

/* ============================================
   Values Section
   ============================================ */
.values-section {
    padding: 3rem 0;
    background-color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-blue);
}

.value-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-blue);
    fill: none;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--dark-grey);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
    padding: 3rem 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.service-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 2rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-blue);
    fill: none;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--dark-grey);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    padding: 3rem 0;
    background-color: var(--light-grey);
}

.contact-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.location-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.location-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--medium-grey);
}

.location-details {
    margin-bottom: 2rem;
}

.location-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--dark-grey);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.location-icon {
    width: 18px;
    height: 18px;
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--primary-blue);
}

.location-detail-item span {
    flex: 1;
}

.location-detail-item a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-detail-item a:hover {
    color: var(--dark-blue);
}

.location-label {
    font-weight: 600;
    margin-right: 0.5rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px var(--shadow);
}

.map-container iframe {
    display: block;
    width: 100%;
    border: none;
}

/* ============================================
   Contact Form
   ============================================ */
.contact-form-wrapper {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--medium-grey);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: #f8f9fa;
    color: var(--text-dark);
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--dark-grey);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.footer-section p {
    margin-bottom: 1.5rem;
    color: var(--dark-grey);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--dark-grey);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-icon {
    width: 16px;
    height: 16px;
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--primary-blue);
}

.footer-contact-item a {
    color: var(--dark-grey);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--primary-blue);
}

.footer-contact-item span {
    flex: 1;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    background-color: var(--dark-blue);
    transform: translateY(-3px);
}

.footer-about {
    max-width: 100%;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo-meso {
    color: var(--primary-blue);
}

.footer-logo-glass {
    color: var(--primary-blue);
    position: relative;
}

.footer-logo-g {
    display: inline-block;
    position: relative;
    color: #3399ff;
    text-shadow: 
        0 0 10px rgba(51, 153, 255, 0.5),
        0 2px 4px rgba(51, 153, 255, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 2px 4px rgba(51, 153, 255, 0.4));
}

.footer-about p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--dark-grey);
    font-size: 0.9375rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
    color: var(--dark-grey);
    font-size: 0.875rem;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .logo-image {
        max-height: 35px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 10px var(--shadow);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 1.25rem;
        width: 100%;
        padding: 1rem 0;
    }

    /* Reduce heading and paragraph font sizes on mobile */
    h1 {
        font-size: 1.75rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    h3 {
        font-size: 1.25rem !important;
    }

    h4 {
        font-size: 1.125rem !important;
    }

    p {
        font-size: 0.9375rem !important;
    }

    .section-title {
        font-size: 1.75rem !important;
    }

    .section-title-white {
        font-size: 1.75rem !important;
    }

    .hero-subtitle-main {
        font-size: 1.125rem !important;
    }

    .page-header h1 {
        font-size: 1.75rem !important;
    }

    .page-header p {
        font-size: 1rem !important;
    }

    .feature-card h3,
    .service-card h3,
    .value-card h3,
    .excellence-card h3,
    .why-choose-card h3,
    .location-card h2,
    .location-card-simple h3 {
        font-size: 1.125rem !important;
    }

    .intro-text,
    .section-intro {
        font-size: 1rem !important;
    }

    .cta-content h2 {
        font-size: 1.5rem !important;
    }

    .contact-form-wrapper h2 {
        font-size: 1.5rem !important;
    }

    .hero {
        min-height: 70vh;
        padding: 4rem 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-locations {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .services-grid,
    .features-grid,
    .values-grid,
    .excellence-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .featured-services-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .achievements-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card-last {
        grid-column: 1;
        margin-top: 0;
    }

    .portfolio-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h4 {
        margin-bottom: 1rem;
    }

    .footer-about {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle-main {
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-title-white {
        font-size: 1.5rem;
    }

    /* Further reduce headings and paragraphs on small mobile */
    h1 {
        font-size: 1.5rem !important;
    }

    h2 {
        font-size: 1.25rem !important;
    }

    h3 {
        font-size: 1.125rem !important;
    }

    h4 {
        font-size: 1rem !important;
    }

    p {
        font-size: 0.875rem !important;
    }

    .page-header h1 {
        font-size: 1.5rem !important;
    }

    .page-header p {
        font-size: 0.9375rem !important;
    }

    .feature-card h3,
    .service-card h3,
    .value-card h3,
    .excellence-card h3,
    .why-choose-card h3,
    .location-card h2,
    .location-card-simple h3,
    .process-card h3 {
        font-size: 1rem !important;
    }

    .intro-text,
    .section-intro {
        font-size: 0.9375rem !important;
    }

    .cta-content h2 {
        font-size: 1.25rem !important;
    }

    .contact-form-wrapper h2 {
        font-size: 1.25rem !important;
    }

    .vision-left .section-title {
        font-size: 1.25rem !important;
    }

    .intro-section,
    .vision-section,
    .help-section,
    .services-section,
    .features-section,
    .values-section,
    .why-choose-section,
    .locations-section {
        padding: 3rem 0;
    }

    .contact-section {
        padding: 3rem 0;
    }

    .vision-section {
        padding: 3rem 0;
    }

    .vision-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .vision-left {
        order: 1;
    }

    .vision-right {
        order: 2;
    }

    .vision-icon {
        width: 90px;
        height: 90px;
    }

    .vision-icon svg {
        width: 40px;
        height: 40px;
    }

    .vision-icon-wrapper {
        margin-bottom: 1.5rem;
    }

    .vision-left .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .vision-text {
        padding: 2rem 1.5rem;
    }

    .vision-text p {
        font-size: 0.9375rem;
        line-height: 1.75;
        margin-bottom: 1.25rem;
    }

    .vision-text p:first-child {
        font-size: 1rem;
    }

    .help-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .help-image {
        order: 1;
    }

    .help-content {
        order: 2;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ============================================
   Animations & Transitions
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .feature-card,
    .value-card {
        animation: fadeInUp 0.6s ease-out backwards;
    }

    .service-card:nth-child(1) { animation-delay: 0.1s; }
    .service-card:nth-child(2) { animation-delay: 0.2s; }
    .service-card:nth-child(3) { animation-delay: 0.3s; }
    .service-card:nth-child(4) { animation-delay: 0.4s; }
    .service-card:nth-child(5) { animation-delay: 0.5s; }
    .service-card:nth-child(6) { animation-delay: 0.6s; }
}

