@import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');

/* Root Variables */
:root {
    /* Main color scheme - using only the two specified colors */
    --primary-color: #102E50;
    /* Dark blue */
    --secondary-color: #FC6736;
    /* Orange */
    --accent-color: #ffffff;
    /* White - keeping for text contrast */

    /* Font sizes */
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 2.5rem;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Border radius */
    --border-radius-sm: 5px;
    --border-radius-md: 10px;
    --border-radius-lg: 15px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--accent-color);
    overflow-x: hidden;
}

/* Hide scrollbar for a cleaner look */
html {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

html::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section-title {
    font-size: var(--font-size-3xl);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-color);
}

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--accent-color);
}

/* Header Styles */
header {
    background-color: #102E50;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 95%;
    margin: var(--spacing-md) auto 0 auto;
    border-radius: 100px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    width: 90%;
}

.logo a {
    display: block;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.logo h1 {
    font-size: var(--font-size-2xl);
    color: var(--primary-color);
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: var(--spacing-md);
}

.nav-menu a {
    color: #fff;
    font-weight: 500;
    position: relative;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: var(--secondary-color);
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e9f1fa, #ffffff);
    padding: 0px;
    text-align: center;
    border-radius: 20px;
    margin: 20px auto;
    width: 90%;
    position: relative;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    max-width: 900px;
    padding: 0;
    text-align: center;
    margin: 0 auto;
}

.hero-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.hero-icon {
    font-size: 1.8rem;
    background: rgba(252, 103, 54, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.hero-icon i {
    color: var(--secondary-color);
    border: none;
}

.hero-icon:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-icon:nth-child(3) {
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(252, 103, 54, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(252, 103, 54, 0);
    }

    100% {
        transform: scale(1);
    }
}

.hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    animation: fadeInDown 1s ease-out;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out;
}

.hero-tagline {
    height: auto;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.typing-text {
    display: inline-block;
}

.cursor {
    display: inline-block;
    width: 2px;
    animation: blink 1s infinite;
    color: var(--secondary-color);
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1.2s ease-out;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.cta-buttons .btn {
    min-width: 160px;
    font-size: 1rem;
    padding: 10px 22px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
    animation: fadeInUp 1.5s ease-out;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: fadeIn 1s ease-out;
}

.hero-stat {
    text-align: center;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    padding: 10px 20px;
    margin: 0 10px;
    min-width: 150px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Removed background gradient effects */

.hero-stat:hover span {
    animation-play-state: paused;
}

.rate-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.hero-stat span {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    display: inline-block;
    margin-right: 2px;
    background: linear-gradient(to bottom, #FC6736, #ff8c61);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.counter {
    display: inline-block;
    transition: all 0.3s ease;
}

.counter-highlight {
    text-shadow: 0 0 15px rgba(252, 103, 54, 0.8);
    transform: scale(1.2);
}

.rate-description {
    font-size: 0.95rem;
    color: var(--primary-color);
    opacity: 0.9;
    font-weight: 500;
    margin-top: 10px;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.rate-description:before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
    opacity: 0.7;
}

/* Scroll down button removed */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
.features {
    padding: var(--spacing-xl) 0;
    background-color: #f9f9f9;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.feature-card:hover i,
.feature-card:hover h3,
.feature-card:hover p {
    color: #ffffff;
}

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 25px;
    }

    .feature-card i {
        font-size: 2rem;
    }
}

/* Clients Section */
.clients {
    padding: var(--spacing-xl) 0;
    overflow: hidden;
}

.client-scroller {
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
    -webkit-mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
    mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
}

.client-scroller-inner {
    display: flex;
    width: fit-content;
    animation: scroll 40s linear infinite;
}

.client-scroller-inner-reverse {
    animation: scroll-reverse 40s linear infinite;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scroll-reverse {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.clients .client {
    background-color: #e9f1fa;
    border-radius: 20px;
    padding: var(--spacing-md);
    margin: 0 var(--spacing-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 80px;
    transition: all 0.3s ease;
    border: none;
}

.clients .client:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.clients .client:hover h4 {
    color: var(--accent-color);
}

.clients .client img {
    max-width: 100%;
    height: 60px;
    object-fit: contain;
    transition: color 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.8;
    margin-bottom: var(--spacing-sm);
}

.clients .client h4 {
    font-size: var(--font-size-base);
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    transition: color 0.3s ease;
}

.cta-center {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* Testimonials */
.testimonials {
    padding: var(--spacing-xl) 0;
}

.testimonials .section-title {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xl);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.testimonial-card {
    background-color: #e9f1fa;
    border-radius: 30px;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background-color: var(--primary-color);
}

.testimonial-card:hover p,
.testimonial-card:hover .author-details h4,
.testimonial-card:hover .author-details span {
    color: var(--accent-color);
}

.testimonial-card:hover .testimonial-author-info {
    border-top-color: rgba(255, 255, 255, 0.3);
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(252, 103, 54, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: normal;
    color: #444;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-author-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.author-details h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.author-details span {
    color: #666;
    font-size: 0.9rem;
}

/* Stats Section */
.stats {
    padding: var(--spacing-xl) 0;
    background-color: var(--accent-color);
}

.stat-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-lg);
    text-align: center;
}

.stat {
    background-color: #e9f1fa;
    border: none;
    border-radius: 20px;
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-10px);
    background-color: var(--primary-color);
}

.stat:hover i,
.stat:hover .stat-number h3,
.stat:hover .stat-number span,
.stat:hover p {
    color: var(--accent-color);
}

.stat i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.stat-number {
    display: flex;
    justify-content: center;
    align-items: baseline;
    line-height: 1;
}

.stat-number h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-number span {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-left: 5px;
}

.stat p {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    text-align: center;
}

.cta-content {
    background: #e9f1fa;
    border-radius: 30px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 90%;
    margin: 0 auto;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.cta-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #555;
}

.cta-action {
    display: flex;
    gap: 20px;
}

.cta-action .btn {
    border-radius: 100px;
    padding: 12px 30px;
    font-size: 1rem;
}

.cta-action .btn-secondary {
    background-color: #6c757d;
    border: 2px solid #6c757d;
    color: #fff;
}

.cta-action .btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

/* Footer */
footer {
    background-color: #102E50;
    color: #fff;
    padding: 50px 0 20px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    width: calc(100% - 10px);
    margin: 0 auto;
}

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

.footer-section h3 {
    margin-bottom: var(--spacing-sm);
    position: relative;
    padding-bottom: var(--spacing-xs);
}

.footer-section h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-section p {
    margin-bottom: var(--spacing-sm);
}

.footer-section.about .contact p {
    margin-bottom: 0.5rem;
}

.socials {
    margin-top: var(--spacing-sm);
}

.socials a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    margin-right: 10px;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.socials a:hover {
    background-color: var(--secondary-color);
    color: var(--accent-color);
}

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

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

.footer-section.links a {
    color: var(--accent-color);
}

.footer-section.links a:hover {
    margin-left: 5px;
    color: var(--secondary-color);
}

.footer-section.newsletter input {
    display: block;
    width: 100%;
    padding: 0.8rem 1.5rem;
    margin-bottom: var(--spacing-sm);
    border-radius: 100px;
    border: none;
}

.footer-section.newsletter button {
    width: 100%;
    border-radius: 100px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Page Header */
.page-header {
    background-color: var(--primary-color);
    color: var(--accent-color);
    padding: var(--spacing-lg) var(--spacing-xl);
    text-align: center;
    width: 90%;
    margin: var(--spacing-xl) auto;
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-header h1,
.page-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.page-header p {
    font-size: var(--font-size-md);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    opacity: 0.9;
}

/* Job Search Section */
.job-search {
    padding: var(--spacing-md) 0;
    background-color: #f9f9f9;
    border-radius: var(--border-radius-lg);
}

.search-container {
    max-width: 900px;
    margin: 0 auto;
}

.search-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.search-filters input,
.search-filters select {
    flex: 1;
    min-width: 150px;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
}

.search-filters input:focus,
.search-filters select:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(252, 103, 54, 0.1);
}

.search-filters .btn {
    padding: 12px 25px;
    font-weight: 500;
}

/* Job Listings Section */
.job-listings {
    padding: var(--spacing-xl) 0;
    background-color: #f9f9f9;
}

.job-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.job-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.job-header {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    background-color: #f9f9f9;
}

.job-header h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 600;
}

.job-company {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 1rem;
}

.job-details {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.job-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.job-meta span {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 0.9rem;
}

.job-meta i {
    color: var(--secondary-color);
    margin-right: 8px;
    font-size: 1rem;
}

.job-posted {
    margin-bottom: 15px;
}

.job-posted span {
    display: flex;
    align-items: center;
    color: #777;
    font-size: 0.85rem;
    font-style: italic;
}

.job-posted i {
    color: var(--secondary-color);
    margin-right: 8px;
    font-size: 0.9rem;
}

.job-description {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.5;
    font-size: 0.95rem;
}

.job-description p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.skill-tag {
    background-color: #e9f1fa;
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-actions {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.btn.btn-primary.apply-btn {
    flex: 1;
    background-color: var(--secondary-color);
}

.btn.btn-secondary.save-btn {
    width: auto;
    background-color: transparent;
    border: 1px solid #ddd;
    color: #555;
}

.btn.btn-secondary.save-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn.btn-secondary.save-btn.saved {
    background-color: #e8f5e9;
    border-color: #4caf50;
    color: #4caf50;
}

.no-jobs {
    text-align: center;
    padding: var(--spacing-xl);
    color: var(--primary-color);
    font-size: var(--font-size-lg);
}

/* Responsive design for job listings */
@media (max-width: 1200px) {
    .job-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-filters {
        flex-direction: column;
    }

    .search-filters input,
    .search-filters select,
    .search-filters .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .job-list {
        grid-template-columns: 1fr;
    }
}

/* Application Process */
.application-process {
    padding: var(--spacing-xl) 0;
    background-color: #f9f9f9;
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.application-process .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.application-process .section-title {
    margin-bottom: 40px;
    text-align: center;
    width: 100%;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
    width: 100%;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--secondary-color);
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(252, 103, 54, 0.3);
}

.step-content {
    text-align: center;
    max-width: 250px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.step-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Job Application Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: var(--accent-color);
    margin: 5% auto;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 700px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
}

.close-modal:hover {
    color: var(--secondary-color);
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-xs);
    border-bottom: 1px solid #eee;
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.form-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(252, 103, 54, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.modal-content .btn {
    padding: 12px 25px;
    font-weight: 500;
    width: 100%;
    margin-top: 10px;
}

.saved {
    background-color: #e8f5e9 !important;
    border-color: #4caf50 !important;
    color: #4caf50 !important;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: var(--spacing-md);
    }

    .form-section h3 {
        font-size: 1.1rem;
    }
}

/* Contact page styles */
.contact-info {
    background-color: #f9f9f9;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-lg);
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.contact-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    padding: 2rem;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.contact-card:hover::before {
    background-color: var(--primary-color);
}

.contact-card:hover i,
.contact-card:hover h3,
.contact-card:hover p,
.contact-card:hover a {
    color: #ffffff;
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-card p,
.contact-card a {
    color: #555;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-card .btn {
    margin-top: 1rem;
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-card:hover .btn {
    background-color: #ffffff;
    color: var(--primary-color);
}

/* About Page Specifics */
.about-story-section {
    padding: var(--spacing-xl) 0;
}

.about-main-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
    color: #333;
}

.about-main-text p {
    margin-bottom: 1.5rem;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: -1rem auto 2.5rem auto;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.about-philosophy-section {
    padding: var(--spacing-xl) 0;
    background-color: #f9f9f9;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.philosophy-card {
    background-color: #e9f1fa;
    border: none;
    border-radius: 20px;
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    background-color: var(--primary-color);
}

.philosophy-card:hover i,
.philosophy-card:hover h3,
.philosophy-card:hover p {
    color: var(--accent-color);
}

.philosophy-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.philosophy-card:hover i {
    transform: scale(1.1) rotate(-5deg);
}

.philosophy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-conclusion-section {
    padding: var(--spacing-xl) 0;
}

blockquote {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    text-align: center;
    color: var(--accent-color);
    border: none;
    border-left: 5px solid var(--secondary-color);
    background: transparent;
}

blockquote::before {
    content: '“';
    position: absolute;
    top: 0;
    left: 20px;
    font-size: 6rem;
    color: var(--secondary-color);
    opacity: 0.5;
}

blockquote p {
    font-size: 1.8rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

blockquote span {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

.about-conclusion-section {
    padding: var(--spacing-xl) 0;
}

.final-cta-line {
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 2rem;
    color: var(--secondary-color);
    display: inline-block;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.final-cta-line:hover {
    border-color: var(--secondary-color);
}

/* Cleanup old about styles */
.about-content-full,
.about-highlight,
.about-conclusion,
.about-highlight-image,
.about-highlight-text {
    all: unset;
}

/* Media Queries */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .specializations-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        margin-bottom: var(--spacing-lg);
    }

    .about-highlight {
        grid-template-columns: 1fr;
    }
}

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

    .service-card {
        padding: var(--spacing-lg);
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        gap: 10px;
    }

    .industry-tag {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    header {
        height: auto;
    }

    .feature-grid,
    .stat-container {
        grid-template-columns: 1fr;
    }

    .client-logos {
        justify-content: center;
    }

    .client {
        min-width: 150px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-section {
        margin-bottom: var(--spacing-lg);
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: var(--spacing-sm);
    }
}

.about-intro {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    width: 100vw;
}

.about-intro .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.container.full-width {
    width: 100%;
    max-width: 1600px;
    padding: 0 var(--spacing-xl);
}

.about-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    width: 100%;
}

.about-content {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 3rem 4rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.about-text p {
    color: var(--primary-color);
    font-size: clamp(1.1rem, 1.3vw, 1.25rem);
    line-height: 2;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    width: 100%;
    text-align: left;
    margin-bottom: 1rem;
    padding: 0;
}

.about-text p:first-of-type {
    font-size: clamp(1.25rem, 1.6vw, 1.4rem);
    font-weight: 500;
    opacity: 1;
    margin-bottom: 0;
}

.key-features {
    padding: var(--spacing-xxl) 0;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.key-features .container {
    width: 100%;
    max-width: 1400px;
    padding: 0 var(--spacing-xl);
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 0;
}

@media (max-width: 1200px) {
    .about-intro .container {
        padding: 0;
    }

    .about-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .about-intro .container {
        padding: 0;
    }

    .about-content {
        padding: 1.5rem;
    }

    .about-text {
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .about-intro .container {
        padding: 0;
    }

    .about-content {
        padding: 1rem;
    }

    .about-text {
        gap: 1.25rem;
    }

    .features-grid {
        gap: 1.5rem;
        padding: 1rem 0;
    }
}

.our-services-about {
    padding: var(--spacing-xl) 0;
    background-color: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    background-color: var(--accent-color);
    border-radius: 20px;
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

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

.service-card p {
    color: #555;
    line-height: 1.6;
}

.industries-served {
    padding: var(--spacing-xl) 0;
    background-color: #f9f9f9;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #555;
    line-height: 1.6;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
}

.industry-tag {
    background-color: #e9f1fa;
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 10px;
}

.industry-tag:hover {
    background-color: var(--primary-color);
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Services Page Specific Styles */
.our-services-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--accent-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.service-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    background-color: rgba(252, 103, 54, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-card p {
    color: #555;
    line-height: 1.6;
}

/* Process Steps Styling */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.process-step {
    background-color: #ffffff;
    border-radius: 15px;
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.step-number {
    background-color: var(--secondary-color);
    color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.step-content p {
    color: #555;
    line-height: 1.6;
}

/* Specializations Styling */
.specializations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.specialization {
    background-color: #ffffff;
    border-radius: 15px;
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.specialization:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.specialization h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.specialization h3 i {
    color: var(--secondary-color);
}

.specialization ul {
    list-style: none;
    padding-left: 25px;
}

.specialization ul li {
    position: relative;
    padding: 5px 0;
    color: #555;
}

.specialization ul li:before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: -20px;
}

/* About Image Styling */
.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

/* Team Section */
.team-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--accent-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 cards per row */
    gap: var(--spacing-lg);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        /* 1 card per row on mobile */
    }
}

.team-member-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a365d 100%);
}

.team-member-name {
    color: #1a365d;
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

.team-member-title {
    color: #ff6b35;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

.team-member-bio {
    color: #2d4a6d;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 0.6rem;
    transition: color 0.3s ease;
    font-weight: 400;
}

.team-member-card:hover .team-member-name,
.team-member-card:hover .team-member-bio {
    color: #ffffff;
}

.team-member-card:hover .team-member-title {
    color: #ffb347;
    opacity: 1;
}

.team-member-card:hover .client-list {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.client-list {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease;
}

.client-heading {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    transition: color 0.3s ease;
}

.client-names {
    color: var(--primary-color);
    font-size: 0.8rem;
    line-height: 1.4;
    opacity: 0.7;
    text-align: center;
    transition: color 0.3s ease;
}

.team-member-photo {
    width: 132px;
    /* Increased from 120px by 10% */
    height: 132px;
    /* Increased from 120px by 10% */
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .team-member-card {
        padding: 1.25rem;
    }

    .team-member-photo {
        width: 110px;
        /* Increased from 100px by 10% */
        height: 110px;
        /* Increased from 100px by 10% */
    }

    .team-member-bio {
        font-size: 0.8rem;
    }

    .client-names {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .team-member-card {
        padding: 1.25rem;
    }

    .team-member-photo {
        width: 100px;
        height: 100px;
    }

    .client-names {
        font-size: 0.75rem;
    }
}

.about-intro {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    width: 100vw;
}

.about-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(252, 103, 54, 0.05) 0%, transparent 60%),
        radial-gradient(circle at bottom left, rgba(16, 46, 80, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.about-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    width: 100%;
}

.about-header .section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight-bar {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, rgba(252, 103, 54, 0.5) 100%);
    margin: 0.5rem auto 0;
    border-radius: 2px;
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

.about-header:hover .highlight-bar {
    transform: scaleX(1.5);
}

.about-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.about-text p {
    color: var(--primary-color);
    font-size: clamp(1.1rem, 1.3vw, 1.25rem);
    line-height: 2;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    width: 100%;
    text-align: left;
    margin-bottom: 1rem;
    padding: 0;
}

.about-text p:first-of-type {
    font-size: clamp(1.25rem, 1.6vw, 1.4rem);
    font-weight: 500;
    opacity: 1;
}

.key-features {
    padding: var(--spacing-xxl) 0;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.key-features .container {
    width: 100%;
    max-width: 1400px;
    padding: 0 var(--spacing-xl);
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 0;
}

@media (max-width: 1200px) {

    .about-intro .container,
    .key-features .container {
        padding: 0 var(--spacing-lg);
    }

    .about-content {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {

    .about-intro .container,
    .key-features .container {
        padding: 0 var(--spacing-md);
    }

    .about-content {
        padding: 2rem;
    }

    .about-text {
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem 0;
    }
}

@media (max-width: 480px) {

    .about-intro .container,
    .key-features .container {
        padding: 0 var(--spacing-sm);
    }

    .about-content {
        padding: 1.5rem;
    }

    .about-text {
        gap: 1.25rem;
    }

    .features-grid {
        gap: 1.5rem;
        padding: 1rem 0;
    }
}

.industries-served {
    padding: var(--spacing-xl) 0;
    background-color: #f9f9f9;
    border-radius: 15px;
    margin: var(--spacing-xl) 0;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #555;
    line-height: 1.6;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
}

.industry-tag {
    background-color: #e9f1fa;
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.industry-tag:hover {
    background-color: var(--primary-color);
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .specializations-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        margin-bottom: var(--spacing-lg);
    }

    .about-highlight {
        grid-template-columns: 1fr;
    }
}

/* Service Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    text-align: left;
}

.service-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Benefits Section */
.benefits-section {
    padding: var(--spacing-xl) 0;
    background-color: #f9f9f9;
    border-radius: 15px;
    margin: var(--spacing-xl) 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.benefit-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--secondary-color);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    background-color: rgba(252, 103, 54, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.benefit-card p {
    color: #555;
    line-height: 1.6;
}

/* Enhanced Testimonials */
.testimonials {
    padding: var(--spacing-xl) 0;
    background-color: #f9f9f9;
    border-radius: 15px;
    margin: var(--spacing-xl) 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    border-top: 4px solid var(--secondary-color);
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(252, 103, 54, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.testimonial-author-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--secondary-color);
}

.author-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--primary-color);
}

.author-details span {
    font-size: 0.9rem;
    color: #777;
}

/* Stats Section Enhancements */
.stats {
    padding: var(--spacing-xl) 0;
    background-color: #f9f9f9;
    border-radius: 15px;
    margin: var(--spacing-xl) 0;
}

.stat-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.stat {
    background-color: #ffffff;
    border-radius: 15px;
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.stat-number {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.stat-number h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 5px;
}

.stat-number span {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.stat p {
    color: #555;
    font-weight: 500;
}

/* Media Queries */
@media (max-width: 992px) {

    .benefits-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .benefits-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .stat-number h3 {
        font-size: 2.5rem;
    }

    .stat-number span {
        font-size: 1.2rem;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Custom Recruitment Features */
.recruitment-features {
    padding: var(--spacing-xl) 0;
    background-color: #ffffff;
}

.recruitment-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.recruitment-feature {
    padding: var(--spacing-lg);
    border-radius: 15px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.recruitment-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.recruitment-feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(252, 103, 54, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.recruitment-feature-icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.recruitment-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.recruitment-feature p {
    color: #555;
    line-height: 1.6;
}

/* Social Media Links */
.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 2rem 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-link.facebook {
    background-color: #3b5998;
    color: white;
}

.social-link.twitter {
    background-color: #1da1f2;
    color: white;
}

.social-link.linkedin {
    background-color: #0077b5;
    color: white;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link.youtube {
    background-color: #ff0000;
    color: white;
}

.social-link.whatsapp {
    background-color: #25d366;
    color: white;
}

/* Enhanced Contact Cards */
.contact-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    padding: 2rem;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.contact-card:hover::before {
    background-color: var(--primary-color);
}

.contact-card:hover i,
.contact-card:hover h3,
.contact-card:hover p,
.contact-card:hover a {
    color: #ffffff;
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-card p,
.contact-card a {
    color: #555;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-card .btn {
    margin-top: 1rem;
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-card:hover .btn {
    background-color: #ffffff;
    color: var(--primary-color);
}

/* FAQ Section */
.faq-container {
    margin-top: 2rem;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.faq-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.faq-item h3::before {
    content: "\f059";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    color: var(--secondary-color);
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

/* Contact Form Improvements */
.contact-form-wrapper {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-color: rgba(252, 103, 54, 0.05);
    border-radius: 0 0 0 100%;
    z-index: 0;
}

.input-with-icon input,
.input-with-icon select,
.input-with-icon textarea {
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding: 15px 15px 15px 45px;
    transition: all 0.3s ease;
}

.input-with-icon input:focus,
.input-with-icon select:focus,
.input-with-icon textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(252, 103, 54, 0.1);
}

.form-footer {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn.btn-primary {
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(252, 103, 54, 0.3);
}

.btn.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(252, 103, 54, 0.4);
}

/* Improved Responsive Styles */
@media (max-width: 1200px) {
    .container {
        width: 95%;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-stat span {
        font-size: 3rem;
    }

    .feature-grid,
    .services-grid,
    .team-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    header {
        width: 100%;
        border-radius: 0;
        margin-top: 0;
    }

    .container {
        width: 100%;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 99;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-icons {
        gap: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .hero-stat {
        width: 100%;
        max-width: 250px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        max-width: 250px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .page-header {
        width: 100%;
        border-radius: 0;
    }

    .about-content,
    .process-steps,
    .specializations-grid,
    .feature-grid,
    .services-grid,
    .team-grid,
    .benefits-grid,
    .testimonial-grid,
    .stat-container,
    .job-list {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: var(--font-size-2xl);
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-stat span {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: var(--font-size-xl);
    }

    .contact-details,
    .feature-grid,
    .services-grid,
    .recruitment-features-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .process-step,
    .specialization,
    .benefit-card,
    .testimonial-card,
    .stat,
    .job-card {
        padding: var(--spacing-md);
    }

    .cta-content {
        padding: 20px;
    }

    .cta-action {
        flex-direction: column;
        gap: 15px;
    }

    .form-section {
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    header .container {
        padding: var(--spacing-xs) 0;
    }

    .logo img {
        height: 40px;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: var(--font-size-2xl);
    }

    .page-header {
        padding: var(--spacing-md);
    }

    .team-member-photo {
        width: 120px;
        height: 120px;
    }

    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-number {
        margin-bottom: var(--spacing-sm);
    }

    .step-content {
        text-align: center;
    }

    .form-footer {
        flex-direction: column;
        gap: 15px;
    }
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Make font sizes more responsive */
@media (max-width: 576px) {
    :root {
        --font-size-sm: 0.75rem;
        --font-size-base: 0.875rem;
        --font-size-lg: 1rem;
        --font-size-xl: 1.125rem;
        --font-size-2xl: 1.25rem;
        --font-size-3xl: 1.5rem;
        --font-size-4xl: 2rem;
        --font-size-5xl: 2.25rem;
    }

    .service-icon,
    .benefit-icon,
    .recruitment-feature-icon i,
    .stat i {
        font-size: 2rem;
    }

    .stat-number h3 {
        font-size: 2rem;
    }
}

/* Animated Recruitment Value Counters */
.recruitment-success .recruitment-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0;
    background: linear-gradient(to bottom, #FC6736, #ff8c61);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
    display: inline-block;
}

.recruitment-success .stat:hover .recruitment-value {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(252, 103, 54, 0.3);
}

.recruitment-success .stat {
    transition: all 0.3s ease;
}

.recruitment-success .stat:hover {
    transform: translateY(-10px);
}

/* Add animation for initial load */
@keyframes countAnimation {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.recruitment-value.animated {
    animation: countAnimation 0.5s ease-out forwards;
}

/* Responsive styles for recruitment counters */
@media (max-width: 992px) {
    .recruitment-success .recruitment-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .recruitment-success .recruitment-value {
        font-size: 2.2rem;
    }

    .recruitment-success .stat-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .recruitment-success .recruitment-value {
        font-size: 1.8rem;
    }

    .recruitment-success .stat-container {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Responsive Styles for Services Page */
@media (max-width: 1200px) {

    .services-grid,
    .recruitment-features-grid,
    .specializations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .industry-tag {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {

    .services-grid,
    .recruitment-features-grid,
    .specializations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
        margin-bottom: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .service-features {
        padding-left: 15px;
    }

    .service-icon,
    .benefit-icon,
    .recruitment-feature-icon {
        width: 65px;
        height: 65px;
    }

    .industries-grid {
        gap: 10px;
    }

    .industry-tag {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .service-card h3,
    .specialization h3,
    .recruitment-feature h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {

    .services-grid,
    .recruitment-features-grid,
    .specializations-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .service-card,
    .recruitment-feature,
    .specialization {
        padding: var(--spacing-md);
    }

    .industries-grid {
        justify-content: center;
    }

    .about-section .section-subtitle,
    .benefits-section .section-subtitle,
    .industries-served .section-subtitle,
    .recruitment-features .section-subtitle {
        width: 100%;
    }

    .specialization ul {
        padding-left: 20px;
    }
}

@media (max-width: 576px) {
    .section-subtitle {
        font-size: 0.95rem;
    }

    .service-icon,
    .benefit-icon,
    .recruitment-feature-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }

    .service-card h3,
    .specialization h3,
    .recruitment-feature h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .service-features li {
        font-size: 0.9rem;
    }

    .industry-tag {
        width: 100%;
        text-align: center;
    }

    .specialization ul li {
        font-size: 0.9rem;
    }

    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .process-step .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .process-step .step-content {
        text-align: center;
    }

    .process-step .step-content h3 {
        font-size: 1.1rem;
    }

    .about-image {
        max-width: 100%;
    }
}

/* Client Page Styles */
.clients-intro {
    max-width: 900px;
    margin: 0 auto 40px auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.client-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #eee;
}

.client-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

/* Dark navy header — name + company, no photo */
.client-header {
    background-color: var(--primary-color);
    padding: 28px 24px 22px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.client-card:hover .client-header {
    background-color: #0a1e38;
}

.client-header h3 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 6px;
}

.client-post {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
}

.client-role {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

/* White body — quote text */
.client-body {
    padding: 24px;
    flex-grow: 1;
    position: relative;
}

.client-body::before {
    content: "\201C";
    font-size: 4rem;
    color: rgba(252, 103, 54, 0.15);
    position: absolute;
    top: 8px;
    left: 16px;
    line-height: 1;
    font-family: serif;
}

.client-body p {
    font-style: italic;
    color: #444;
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Responsive Clients Page */
@media (max-width: 1200px) {
    .client-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .client-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .client-header h3 {
        font-size: 1.05rem;
    }

    .client-body {
        padding: 20px;
    }

    .clients-intro {
        font-size: 1rem;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .client-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .client-card {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .client-header {
        padding: 22px 20px 18px;
    }
}

@media (max-width: 576px) {
    .client-card {
        border-radius: 10px;
    }

    .client-header {
        padding: 18px 16px 14px;
    }

    .client-header h3 {
        font-size: 1rem;
    }

    .client-body {
        padding: 16px;
    }

    .client-body p {
        font-size: 0.9rem;
    }

    .client-testimonial {
        padding: 15px;
        margin-top: 10px;
    }

    .client-testimonial:before {
        font-size: 2rem;
    }

    .clients-intro {
        margin-bottom: 20px;
    }
}

/* Enhanced responsive styles for client page service cards */
.service-content {
    padding: 10px;
}

@media (max-width: 1200px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .service-card {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 15px;
    }

    .service-icon {
        margin-right: 15px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .service-content {
        flex-grow: 1;
    }

    .service-content h3 {
        margin-bottom: 5px;
    }
}

@media (max-width: 576px) {
    .service-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    .service-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

.our-promise {
    padding: var(--spacing-xxl) 0;
    background-color: #f8f9fa;
    margin: var(--spacing-xl) 0;
}

.our-promise .container {
    max-width: 800px;
    margin: 0 auto;
}

.our-promise blockquote {
    position: relative;
    padding: var(--spacing-xl);
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: var(--spacing-lg) 0;
    text-align: center;
}

.our-promise blockquote p {
    font-size: var(--font-size-2xl);
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.our-promise blockquote span {
    display: block;
    font-size: var(--font-size-lg);
    color: var(--primary-color);
    opacity: 0.9;
    line-height: 1.6;
    margin-top: var(--spacing-md);
}

.our-promise blockquote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: var(--secondary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    z-index: 0;
}

@media (max-width: 768px) {
    .our-promise {
        padding: var(--spacing-xl) 0;
    }

    .our-promise blockquote {
        padding: var(--spacing-lg);
    }

    .our-promise blockquote p {
        font-size: var(--font-size-xl);
    }

    .our-promise blockquote span {
        font-size: var(--font-size-base);
    }
}

/* Connect With Us Section */
.connect-with-us {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f1fa 100%);
    border-radius: 30px;
    margin: 2rem 0;
}

.connect-with-us h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.connect-with-us h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.connect-with-us p {
    color: #555;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    transition: all 0.3s ease;
    transform-origin: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.social-icon.facebook {
    background-color: #1877f2;
}

.social-icon.twitter {
    background-color: #1da1f2;
}

.social-icon.linkedin {
    background-color: #0a66c2;
}

.social-icon.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.youtube {
    background-color: #ff0000;
}

.social-icon.whatsapp {
    background-color: #25d366;
}

/* Send Us a Message Section */
.contact-form-section {
    padding: 4rem 0;
    background: #ffffff;
    border-radius: 30px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.contact-form-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.contact-form-section p {
    color: #555;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.form-group.required label::after {
    content: '*';
    color: var(--secondary-color);
    margin-left: 4px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    color: #333;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(16, 46, 80, 0.1);
    outline: none;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    max-width: 250px;
    margin: 2.5rem auto 0;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(252, 103, 54, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(252, 103, 54, 0.4);
}

.submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    to {
        left: 200%;
    }
}

@media (max-width: 768px) {

    .connect-with-us h2,
    .contact-form-section h2 {
        font-size: 2rem;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .social-icons {
        gap: 1rem;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Floating Social Icons */
.floating-social-container {
    width: 500px;
    height: 300px;
    margin: 2rem auto;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 30px;
    padding: 20px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.floating-social-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.floating-social-icon::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 5px;
    font-size: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
}

.floating-social-icon:hover::before {
    opacity: 1;
    visibility: visible;
    bottom: 120%;
}

.floating-social-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.floating-social-icon.facebook {
    background: #1877f2;
    top: 125px;
    left: 50px;
    animation: float1 5s infinite ease-in-out;
}

.floating-social-icon.twitter {
    background: #1da1f2;
    top: 50px;
    left: 150px;
    animation: float2 6s infinite ease-in-out;
}

.floating-social-icon.linkedin {
    background: #0a66c2;
    top: 125px;
    right: 50px;
    animation: float3 4.5s infinite ease-in-out;
}

.floating-social-icon.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    bottom: 50px;
    left: 250px;
    animation: float4 5.5s infinite ease-in-out;
}

.floating-social-icon.youtube {
    background: #ff0000;
    top: 75px;
    right: 150px;
    animation: float5 6.5s infinite ease-in-out;
}

.floating-social-icon.whatsapp {
    background: #25d366;
    bottom: 100px;
    right: 250px;
    animation: float6 5s infinite ease-in-out;
}

@keyframes float1 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(40px, -30px) rotate(5deg);
    }

    50% {
        transform: translate(80px, 0) rotate(0deg);
    }

    75% {
        transform: translate(40px, 30px) rotate(-5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes float2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-30px, 40px) rotate(-5deg);
    }

    50% {
        transform: translate(-60px, 0) rotate(0deg);
    }

    75% {
        transform: translate(-30px, -40px) rotate(5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes float3 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-40px, -40px) rotate(-5deg);
    }

    50% {
        transform: translate(0, -80px) rotate(0deg);
    }

    75% {
        transform: translate(40px, -40px) rotate(5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes float4 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(40px, 40px) rotate(5deg);
    }

    50% {
        transform: translate(0, 80px) rotate(0deg);
    }

    75% {
        transform: translate(-40px, 40px) rotate(-5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes float5 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-50px, 30px) rotate(-5deg);
    }

    50% {
        transform: translate(-100px, 0) rotate(0deg);
    }

    75% {
        transform: translate(-50px, -30px) rotate(5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes float6 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(50px, -30px) rotate(5deg);
    }

    50% {
        transform: translate(100px, 0) rotate(0deg);
    }

    75% {
        transform: translate(50px, 30px) rotate(-5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-social-container {
        width: 250px;
        height: 250px;
    }

    .floating-social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .floating-social-icon.facebook {
        left: 20px;
    }

    .floating-social-icon.twitter {
        top: 40px;
    }

    .floating-social-icon.linkedin {
        right: 20px;
    }

    .floating-social-icon.instagram {
        bottom: 40px;
    }

    .floating-social-icon.youtube {
        right: 60px;
    }

    .floating-social-icon.whatsapp {
        bottom: 60px;
    }
}

@media (max-width: 480px) {
    .floating-social-container {
        width: 200px;
        height: 200px;
    }

    .floating-social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .floating-social-icon.facebook {
        left: 15px;
    }

    .floating-social-icon.twitter {
        top: 30px;
    }

    .floating-social-icon.linkedin {
        right: 15px;
    }

    .floating-social-icon.instagram {
        bottom: 30px;
    }

    .floating-social-icon.youtube {
        right: 45px;
    }

    .floating-social-icon.whatsapp {
        bottom: 45px;
    }
}

.founder-profile {
    padding: var(--spacing-xl) 0;
    background-color: #f8f9fa;
}

.founder-profile .section-title {
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-3xl);
    text-align: left;
}

.founder-content {
    max-width: 900px;
    margin: 0 auto;
}

.founder-content p {
    color: var(--primary-color);
    font-size: var(--font-size-lg);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.founder-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .founder-profile .section-title {
        font-size: var(--font-size-2xl);
        text-align: center;
    }

    .founder-content p {
        font-size: var(--font-size-base);
    }
}

.about-flex-container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    width: 100%;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.about-image {
    flex: 0 0 40%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.about-image:hover .about-feature-image {
    transform: scale(1.05);
}

.about-text p {
    color: var(--primary-color);
    font-size: clamp(1.1rem, 1.3vw, 1.25rem);
    line-height: 2;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    width: 100%;
    text-align: left;
    margin-bottom: 1rem;
    padding: 0;
}

.about-text p:first-of-type {
    font-size: clamp(1.25rem, 1.6vw, 1.4rem);
    font-weight: 500;
    opacity: 1;
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .about-flex-container {
        gap: 2rem;
    }

    .about-image {
        flex: 0 0 35%;
    }
}

@media (max-width: 992px) {
    .about-flex-container {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        max-height: 400px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-image {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .about-image {
        max-height: 250px;
    }
}

.client-list {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.client-heading {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.client-names {
    color: var(--primary-color);
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.7;
    text-align: center;
}

.team-member-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a365d 100%);
}

.team-member-name {
    color: #1a365d;
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

.team-member-title {
    color: #ff6b35;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

.team-member-bio {
    color: #2d4a6d;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 0.6rem;
    transition: color 0.3s ease;
    font-weight: 400;
}

.team-member-card:hover .team-member-name,
.team-member-card:hover .team-member-bio {
    color: #ffffff;
}

.team-member-card:hover .team-member-title {
    color: #ffb347;
    opacity: 1;
}

.team-member-card:hover .client-list {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.client-list {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease;
}

.client-heading {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    transition: color 0.3s ease;
}

.client-names {
    color: var(--primary-color);
    font-size: 0.8rem;
    line-height: 1.4;
    opacity: 0.7;
    text-align: center;
    transition: color 0.3s ease;
}

.team-member-photo {
    width: 132px;
    /* Increased from 120px by 10% */
    height: 132px;
    /* Increased from 120px by 10% */
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .team-member-card {
        padding: 1.25rem;
    }

    .team-member-photo {
        width: 110px;
        /* Increased from 100px by 10% */
        height: 110px;
        /* Increased from 100px by 10% */
    }

    .team-member-bio {
        font-size: 0.8rem;
    }

    .client-names {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .team-member-card {
        padding: 1.25rem;
    }

    .team-member-photo {
        width: 100px;
        height: 100px;
    }

    .client-names {
        font-size: 0.75rem;
    }
}

/* Vision Section Styles */
.vision-section {
    background: linear-gradient(135deg, rgba(16, 46, 80, 0.04), rgba(252, 103, 54, 0.07));
    padding: var(--spacing-xxl) 0;
    margin: var(--spacing-xl) 0;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(252, 103, 54, 0.1);
}

.vision-title {
    font-size: 2.8rem;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.vision-highlight {
    color: var(--secondary-color);
    position: relative;
    font-weight: 700;
}

.vision-highlight::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: rgba(252, 103, 54, 0.2);
    bottom: 5px;
    left: 0;
    z-index: -1;
}

.vision-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
}

.vision-content {
    flex: 1;
}

.vision-image {
    flex: 0 0 40%;
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-shape {
    background: radial-gradient(circle, rgba(252, 103, 54, 0.3) 0%, rgba(252, 103, 54, 0.1) 50%, rgba(252, 103, 54, 0.05) 100%);
    width: 320px;
    height: 320px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.8;
    position: absolute;
    animation: morph 8s ease-in-out infinite;
    box-shadow: inset 0 0 20px rgba(252, 103, 54, 0.2);
}

@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    25% {
        border-radius: 50% 50% 70% 30% / 50% 50% 30% 70%;
    }

    50% {
        border-radius: 70% 30% 50% 50% / 40% 60% 60% 40%;
    }

    75% {
        border-radius: 40% 60% 30% 70% / 70% 30% 50% 50%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.vision-text {
    padding: var(--spacing-md) 0;
}

.vision-text .lead-paragraph {
    font-size: var(--font-size-xl);
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    position: relative;
    color: var(--primary-color);
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.9);
    letter-spacing: 0.01em;
}

.vision-quote-mark {
    font-family: Georgia, serif;
    font-size: 3.5rem;
    position: relative;
    color: var(--secondary-color);
    opacity: 0.6;
    font-weight: 700;
    display: inline-block;
    height: 20px;
    line-height: 1;
    vertical-align: text-bottom;
}

.vision-values {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.vision-value {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    flex: 1;
}

.vision-value:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.vision-icon-container {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(252, 103, 54, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    transition: all 0.3s ease;
}

.vision-value:hover .vision-icon-container {
    transform: scale(1.1);
    background-color: rgba(252, 103, 54, 0.15);
    box-shadow: 0 5px 15px rgba(252, 103, 54, 0.2);
}

.vision-value i {
    font-size: 2.2rem;
    color: var(--secondary-color);
}

.vision-value-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-top: var(--spacing-xs);
}

@media (max-width: 992px) {
    .vision-container {
        flex-direction: column;
    }

    .vision-image {
        flex: 0 0 250px;
        width: 100%;
        height: 250px;
        order: -1;
    }

    .vision-shape {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .vision-values {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .vision-value {
        width: 100%;
    }

    .vision-text .lead-paragraph {
        font-size: var(--font-size-lg);
    }
}

/* End Vision Section Styles */