:root {
    --primary-color: #00436b;
    --secondary-color: #747574;
    --accent-color: #2563eb;
    --light-color: #ffffff;
    --dark-color: #0f172a;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --body-font: 'Poppins', sans-serif;
    --heading-font: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    color: var(--secondary-color);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Styles */
.header {
    background-color: var(--light-color);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
}

.header.scrolled {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: rgba(248, 250, 252, 0.98);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem 0;
}

.brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.nav-link.active:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #00436b;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.6)), url('../assets/photos/hero-background-all/index.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: #1e40af;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-hero {
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 26px;
    animation: bouncescroll 2s infinite;
    cursor: pointer;
    z-index: 10;
}


/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    height: 4px;
    width: 60px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

/* About Section */
.about {
    background-color: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Aboutus page in about company in photo */

.about-image-about {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    height: 720px;
}
.about-image-about img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-about:hover img {
    transform: scale(1.05);
}


.about-text h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.expertise-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.expertise-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.expertise-icon {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Enhanced About Company Section Styles */
.about-company-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
}

.about-company-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.about-company-image img {
    width: 100%;
    transition: transform 0.6s ease;
    display: block;
}

.about-company-image:hover img {
    transform: scale(1.04);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--accent-color);
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

.experience-badge .years {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-align: center;
    opacity: 0.9;
}

.about-company-text h3 {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    position: relative;
    display: inline-block;
}

.about-company-text h3:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: var(--accent-color);
    bottom: -10px;
    left: 0;
}

.mission-statement {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.8rem 0;
    position: relative;
    border-left: 4px solid var(--accent-color);
}

.mission-statement p {
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 500;
    color: var(--primary-color);
    margin: 0;
    padding-left: 2rem;
}

.quote-icon {
    position: absolute;
    left: 1rem;
    top: 1.5rem;
    color: var(--accent-color);
    opacity: 0.3;
    font-size: 1.5rem;
}

.values-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.value-item {
    flex: 1;
    min-width: 100px;
    background: white;
    padding: 1rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.expertise-title {
    margin: 2rem 0 1rem;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.expertise-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-3px);
    background: #f0f9ff;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.08);
}

.expertise-card .icon {
    font-size: 1.2rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    background-color: var(--primary-color);
    color: white;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.service-content-home {
    padding: 2rem;
}

.service-content-home h3 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-more {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    font-weight: 500;
    margin-top: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.service-more i {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-more:hover {
    color: #1d4ed8;
}

.service-more:hover i {
    transform: translateX(3px);
}

/* Make sure entire card is clickable but More link gets precedence */
.service-card .service-more {
    position: relative;
    z-index: 2;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-color);
    position: relative;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial {
    flex: 0 0 100%;
    padding: 0 1rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card:before {
    content: '\201C';
    font-family: Georgia, serif;
    position: absolute;
    top: 0;
    left: 20px;
    font-size: 5rem;
    color: rgba(37, 99, 235, 0.1);
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.testimonial-btn {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-btn:hover {
    background: var(--accent-color);
    color: white;
}

/* Team Section */


.management-card {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.management-image {
    height: 100%;
}

.management-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.management-content {
    padding: 2.5rem;
    text-align: left;
}

.management-content h3 {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.management-position {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: block;
}

.management-content p {
    margin-bottom: 1rem;
}

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(to right, var(--primary-color), var(--dark-color));
    color: white;
}

.why-choose-us .section-title,
.why-choose-us .section-subtitle {
    color: white;
    text-align: center;
}

.why-choose-us .section-title:after {
    left: 50%;
    transform: translateX(-50%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.feature-icon-home {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    background-color: var(--light-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-family: var(--body-font);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-logo img {
    height: 50px;
    filter: brightness(0) invert(1);
    margin-bottom: 1.5rem;
}

.footer-about p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bouncescroll {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Clients Section */
.clients {
    background-color: white;
    padding: 5rem 0;
}

.client-slider-container {
    margin-top: 3rem;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.client-slider-container:before,
.client-slider-container:after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.client-slider-container:before {
    left: 0;
    background: linear-gradient(to right, white, rgba(255, 255, 255, 0));
}

.client-slider-container:after {
    right: 0;
    background: linear-gradient(to left, white, rgba(255, 255, 255, 0));
}

.client-track {
    display: flex;
    animation: scrollLogos 30s linear infinite;
    width: calc(180px * 20); /* Double the logos to create seamless loop */
}

.client-logo {
    flex: 0 0 180px;
    height: 100px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-logo {
    width: 150px;
    height: 80px;
    background: rgba(26, 37, 66, 0.05);
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.placeholder-logo:hover {
    background: rgba(26, 37, 66, 0.1);
    transform: scale(1.05);
}

.placeholder-logo:after {
    content: 'Client Logo';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(26, 37, 66, 0.3);
    font-size: 0.9rem;
    font-weight: 500;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Move to half to create seamless loop */
    }
}

/* Pause animation on hover */
.client-slider-container:hover .client-track {
    animation-play-state: paused;
}


/* Responsive Styles */
@media (max-width: 992px) {
    .about-content,
    .contact-container,
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .management-card {
        grid-template-columns: 1fr;
    }

    .management-image {
        height: 400px;
    }

    .about-image-about{
       height: 400px; 
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--light-color);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }
    .hero{
        padding-top: 200px;
    } 

    .hero-title {
        font-size: 2.5rem;
    }

    .scroll-indicator {
        bottom: 4rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .expertise-list {
        grid-template-columns: 1fr;
    }
}

/* Additional styles for about.html */

/* About Hero Section */
.about-hero {
    background: linear-gradient(to right, rgba(0, 67, 107, 0.9), rgba(15, 23, 42, 0.7)),
                url('../assets/photos/hero-background-all/about-us.jpg');
    background-size: cover;
    background-position: center;
}

/* Company Overview Section */
.about-company-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.shadow-effect {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.shadow-effect:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.2), 0 10px 15px -5px rgba(0, 0, 0, 0.1);
}

.domain-expertise {
    margin: 2rem 0;
}

.domain-expertise h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.expertise-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-points li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.expertise-points li:hover {
    transform: translateX(10px);
}

.expertise-points .icon {
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

/* Leadership Section */
.leadership-section {
    background-color: var(--light-color);
}

.leader-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-info {
    padding: 2rem;
}

.leader-info h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.leader-position {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

.leader-connect {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-badge:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.member-image {
    height: 200px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.team-member h4 {
    margin: 1rem 0 0.5rem;
    color: var(--primary-color);
}

.team-member span {
    display: block;
    color: var(--secondary-color);
    font-size: 0.9rem;
    padding-bottom: 1.5rem;
}

/* History Section */
.history-section {
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
    padding: 100px 0;
    position: relative;
}

.history-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiMwZjE3MmEiIGZpbGwtb3BhY2l0eT0iMC4wMyI+PHBhdGggZD0iTTM2IDM0djZoNnYtNmgtNnptMC0zMGg2djZoLTZ6Ii8+PC9nPjwvZz48L3N2Zz4=');
    opacity: 0.5;
    pointer-events: none;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    padding: 1rem 3rem;
    position: relative;
    width: 50%;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    top: 1.5rem;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-date {
    position: absolute;
    top: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.timeline-item:nth-child(odd) .timeline-date {
    right: -6.5rem;
}

.timeline-item:nth-child(even) .timeline-date {
    left: -6.5rem;
}

.timeline-content {
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.history-content {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
    position: relative;
}

.history-visual {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.history-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

.history-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.history-image:hover img {
    transform: scale(1.03);
}

.founding-year {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-color);
    color: #fff;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.founding-year span {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
}

.founding-year h3 {
    font-size: 36px;
    margin: 5px 0 0;
    font-weight: 700;
    font-family: var(--heading-font);
}

.history-story {
    flex: 1;
    padding: 0 20px;
}

.vision-statement {
    position: relative;
    margin-bottom: 40px;
    padding: 10px 40px;
}

.vision-statement i {
    color: var(--primary-color);
    font-size: 24px;
    opacity: 0.7;
}

.vision-statement i.fa-quote-left {
    position: absolute;
    top: 0;
    left: 0;
}

.vision-statement i.fa-quote-right {
    position: absolute;
    bottom: 0;
    right: 0;
}

.vision-statement blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

.history-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.history-text .highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.expertise-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.expertise-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.expertise-badge span {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 14px;
}

.mission-pillars {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.mission-pillar {
    background: white;
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    flex: 1;
    transition: all 0.3s ease;
}

.mission-pillar:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.pillar-icon {
    width: 54px;
    height: 54px;
    background: var(--primary-color);
    opacity: 0.95;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 22px;
}

.mission-pillar h4 {
    font-family: var(--heading-font);
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.mission-pillar p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-color);
    margin: 0;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background-color: white;
}

.gallery-container {
    position: relative;
    margin-top: 3rem;
}

.gallery-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    background-color: var(--accent-color);
    color: white;
}

.gallery-btn.prev {
    left: -25px;
}

.gallery-btn.next {
    right: -25px;
}

.gallery-wrapper {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-item {
    flex: 0 0 100%;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 500;
}

/* Impact Section */
.impact-section {
    background: linear-gradient(to right, var(--primary-color), #1a365d);
    color: white;
    padding: 5rem 0;
}

.impact-section .section-title,
.impact-section .section-subtitle {
    color: white;
    text-align: center;
}

.impact-section .section-title:after {
    left: 50%;
    transform: translateX(-50%);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.impact-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

.impact-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.impact-card h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.impact-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.special-feature {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 4rem;
}

.special-feature h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.feature-intro {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item.active,
.feature-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.check-icon {
    font-size: 1.5rem;
}

.feature-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.example-box {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.example-box span {
    font-weight: 600;
    color: var(--accent-color);
}

.special-feature .btn {
    display: block;
    max-width: 300px;
    margin: 2rem auto 0;
    text-align: center;
}

/* Clients Section */
.about-clients {
    background: var(--light-color);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.client-logo {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.client-logo img {
    max-width: 80%;
    max-height: 80%;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

.client-testimonial-highlight {
    max-width: 800px;
    margin: 4rem auto 2rem;
    text-align: center;
}

.client-testimonial-highlight blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-color);
    position: relative;
    padding: 0 2rem;
    margin: 0 0 1.5rem;
}

.client-testimonial-highlight blockquote:before,
.client-testimonial-highlight blockquote:after {
    content: '"';
    font-size: 3rem;
    position: absolute;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.client-testimonial-highlight blockquote:before {
    top: -20px;
    left: 0;
}

.client-testimonial-highlight blockquote:after {
    bottom: -40px;
    right: 0;
}

.client-testimonial-highlight cite {
    font-weight: 500;
    color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-company-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        right: 20px;
        bottom: 20px;
    }
    
    .values-container {
        flex-wrap: wrap;
    }
    
    .value-item {
        flex: 1 0 40%;
    }
    
    .leader-profile {
        grid-template-columns: 1fr;
    }
    
    .leader-image {
        height: 300px;
    }
    
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-date,
    .timeline-item:nth-child(even) .timeline-date {
        left: -5px;
        top: -25px;
        right: auto;
    }
    
    .gallery-item img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .team-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-controls {
        display: none;
    }
    
    .special-feature {
        padding: 1.5rem;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item img {
        height: 250px;
    }
}

/* Services Page Specific Styles */

/* Services Hero Section */
.services-hero {
    background: linear-gradient(to right, rgba(0, 67, 107, 0.9), rgba(15, 23, 42, 0.7)), 
                url('../assets/photos/hero-background-all/services.jpg');
    background-size: cover;
    background-position: center;
}

/* Services Overview Section */
.services-overview {
    background-color: var(--light-color);
    padding: 5rem 0;
}

.service-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.tab {
    padding: 0.8rem 1.5rem;
    background-color: white;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.tab:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tab.active {
    background-color: var(--accent-color);
    color: white;
}

.service-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.service-content.active {
    display: block;
}

.service-details {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-info h3 {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-info p {
    margin-bottom: 2rem;
    color: var (--secondary-color);
}

.service-features {
    margin: 2rem 0;
}

.service-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-feature:hover,
.service-feature.hover {
    background-color: rgba(37, 99, 235, 0.05);
    transform: translateX(5px);
}

.feature-icon {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.service-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    height: 400px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-cta {
    margin-top: 2rem;
}

/* Process Section */
.process-section {
    background: linear-gradient(to right, var(--primary-color), #1a365d);
    color: white;
    padding: 5rem 0;
    position: relative;
}

.process-section .section-title,
.process-section .section-subtitle {
    color: white;
    text-align: center;
}

.process-section .section-title:after {
    left: 50%;
    transform: translateX(-50%);
}

.process-timeline {
    max-width: 900px;
    margin: 4rem auto 0;
    position: relative;
}

.process-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 36px;
    width: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.process-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.process-step.active {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 72px;
    height: 72px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.step-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
}

.step-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.step-content p {
    opacity: 0.9;
}

/* Success Stories Section */
.success-section {
    background-color: white;
    padding: 5rem 0;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.success-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.success-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.success-icon {
    background-color: var(--accent-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.success-card h3 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.success-metrics {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.metric {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-color);
}

.metric-label {
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-align: center;
}

/* CTA Section */
.service-cta-section {
    background: linear-gradient(to right, var(--primary-color), rgba(15, 23, 42, 0.8)), 
    url('https://images.unsplash.com/photo-1579621970795-87facc2f976d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 5rem 0;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Added form-control styles for select element */
select.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-family: var(--body-font);
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23718096' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
}

select.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles */
@media (max-width: 992px) {
    .service-details {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        order: -1;
        height: 300px;
    }
    
    .service-tabs {
        gap: 0.5rem;
    }
    
    .tab {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .success-metrics {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .tab {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .process-timeline:before {
        left: 25px;
    }
    
    .process-step {
        padding-left: 60px;
    }
}

/* Contact Page Specific Styles */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(to right, rgba(0, 67, 107, 0.9), rgba(15, 23, 42, 0.7)),
                url('../assets/photos/hero-background-all/contact-us.png');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
}


/* Contact Details Section */
.contact-details-section {
    padding: 5rem 0;
    background-color: white;
}

.contact-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: #f8fafc;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.contact-card h3 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.timing {
    color: var (--secondary-color);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-link {
    display: inline-block;
    margin-top: 1.2rem;
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding: 0.3rem 0;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.contact-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Contact Form and Map Section */
.contact-form-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.form-map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contact-form-container .section-title,
.contact-form-container .section-subtitle {
    text-align: left;
}

.contact-form-container .section-subtitle {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-family: var(--body-font);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control.error {
    border-color: #e53e3e;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.3rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--accent-color);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(37, 99, 235, 0.2);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.map-wrapper {
    flex-grow: 1;
    min-height: 350px;
}

.map-wrapper iframe {
    display: block;
}

.map-info {
    background: white;
    padding: 1.5rem;
}

.map-info h3 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.map-actions {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.map-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.map-action:hover {
    text-decoration: underline;
}

/* Connect Section */
.connect-section {
    padding: 5rem 0;
    background-color: white;
}

.social-connect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.social-connect-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.social-connect-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.social-connect-card.active,
.social-connect-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.social-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.social-connect-card.active .social-icon,
.social-connect-card:hover .social-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.social-info {
    position: relative;
    z-index: 2;
}

.social-info h3 {
    font-family: var(--heading-font);
    margin-bottom: 0.3rem;
    font-size: 1.3rem;
}

.social-info p {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Social card colors */
.social-connect-card.facebook {
    background: linear-gradient(135deg, #0866ff, #7098ed);
}

.social-connect-card.twitter {
    background: linear-gradient(135deg, #000000, #404040);
}

.social-connect-card.linkedin {
    background: linear-gradient(135deg, #0077B5, #00A0DC);
}

.social-connect-card.instagram {
    background: linear-gradient(45deg, #833AB4, #FD1D1D, #FCAF45);
}
.social-connect-card.pinterest {
    background: linear-gradient(to right, rgb(189, 8, 28), #d16d7c);
}

.social-connect-card.youtube {
    background: linear-gradient(to right, #c4302b, #ff0000);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0;
}

.faq-icon {
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    margin: 0;
    padding-bottom: 1.5rem;
    color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(to right, var(--primary-color), rgba(15, 23, 42, 0.8)), 
                url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta {
    padding: 1rem 2rem;
    background-color: white;
    color: var (--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

/* Success Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    max-width: 90%;
    width: 500px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.modal-content.show {
    opacity: 1;
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #718096;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-icon {
    font-size: 3.5rem;
    color: #48bb78;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.modal-content h3 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modal-content p {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.modal-btn {
    padding: 0.8rem 2.5rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    background-color: #1d4ed8;
}

/* Animation Class */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .form-map-container {
        grid-template-columns: 1fr;
    }
    
    
}

@media (max-width: 768px) {
    .contact-cards-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .social-connect-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
}

/* WhatsApp Chat Feature */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s ease;
}

.whatsapp-container.show {
    opacity: 1;
    transform: scale(1);
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
}

.whatsapp-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.4;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background-color: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: none;
    flex-direction: column;
    transform: scale(0.9);
    opacity: 0;
    transform-origin: bottom right;
    transition: all 0.3s ease;
}

.whatsapp-chat-box.active {
    display: flex;
    transform: scale(1);
    opacity: 1;
}

.chat-header {
    background-color: #075E54;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-profile {
    display: flex;
    align-items: center;
}

.chat-profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.chat-details h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chat-details p {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
}

.chat-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
}

.chat-body {
    padding: 15px;
    background-image: url('https://web.whatsapp.com/img/bg-chat-tile-light_04fcacde539c58cca6745483d4858c52.png');
    background-color: #E4DDD6;
    flex-grow: 1;
    height: 250px;
    overflow-y: auto;
}

.chat-message {
    max-width: 85%;
    padding: 8px 12px;
    margin-bottom: 10px;
    border-radius: 7px;
    position: relative;
    word-wrap: break-word;
}

.chat-message p {
    margin: 0 0 5px 0;
}

.message-time {
    font-size: 11px;
    opacity: 0.7;
    display: block;
    text-align: right;
}

.received {
    background-color: white;
    border-top-left-radius: 0;
    align-self: flex-start;
}

.sent {
    background-color: #DCF8C6;
    border-top-right-radius: 0;
    align-self: flex-end;
    margin-left: auto;
}

.chat-footer {
    padding: 10px 15px;
    background-color: #F0F0F0;
}

#whatsappForm {
    display: flex;
    align-items: center;
}

#whatsappInput {
    flex-grow: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 20px;
    font-family: inherit;
    outline: none;
}

.chat-send {
    width: 40px;
    height: 40px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.chat-send:hover {
    background-color: #128C7E;
}

/* Responsive styles */
@media (max-width: 480px) {
    .whatsapp-chat-box {
        width: 300px;
        right: 0;
    }
    
    .whatsapp-container {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }

    #whatsappInput {
        width: 80%;
    }
}

/* Growth & Journey Section */
.growth-journey-section {
    padding: 100px 0;
    background: linear-gradient(to right, rgba(248, 250, 252, 0.9), rgba(255, 255, 255, 0.9));
    position: relative;
    overflow: hidden;
}

.growth-journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiMwMDAiIGZpbGwtb3BhY2l0eT0iMC4wMyI+PHBhdGggZD0iTTM2IDM0djZoNnYtNmgtNnptNi02aDZ2LTZoLTZ2NnoiLz48L2c+PC9nPjwvZz48L3N2Zz4=');
    opacity: 0.4;
}



.section-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #192a56);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.intro-text {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 900px;
    margin: 0 auto 50px;
}

.achievements-container {
    max-width: 900px;
    margin: 0 auto;
}

.achievement-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.achievement-line {
    position: relative;
    padding-right: 30px;
}

.achievement-line::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    width: 2px;
    height: calc(100% + 30px);
    background: linear-gradient(to bottom, var(--accent-color), rgba(37, 99, 235, 0.1));
}

.achievement-item:last-child .achievement-line::before {
    display: none;
}

.achievement-dot {
    width: 24px;
    height: 24px;
    background: white;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: block;
    position: relative;
}

.achievement-dot::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.achievement-content {
    padding-top: 2px;
}

.achievement-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

.highlight-text {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 110%;
}

/* Our Strength Section */
.our-strength-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.strength-content {
    max-width: 1000px;
    margin: 0 auto;
}

.strength-visual {
    display: flex;
    gap: 40px;
}

.strength-left {
    flex: 0 0 50px;
    position: relative;
}

.strength-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), rgba(15, 23, 42, 0.1));
    border-radius: 2px;
}

.strength-right {
    flex: 1;
}

.strength-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 50px;
    position: relative;
    padding-left: 25px;
    border-left: 3px solid var(--accent-color);
}

.key-strengths {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px 30px;
}

.strength-point {
    position: relative;
}

.strength-point i {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 15px;
    display: inline-block;
    opacity: 0.9;
}

.strength-point h4 {
    font-family: var(--heading-font);
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
    position: relative;
}

.strength-point h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.strength-point p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Enhanced Key Strengths Styling */
.key-strengths {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px 30px;
    margin-top: 50px;
}

.strength-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    padding: 20px;
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.strength-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, var(--accent-color), rgba(37, 99, 235, 0.3));
    transition: height 0.4s ease;
    border-radius: 3px;
}

.strength-point:hover {
    background: rgba(248, 250, 252, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.strength-point:hover::before {
    height: 100%;
}

.strength-icon-container {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.strength-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    opacity: 0.1;
    border-radius: 12px;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.strength-point:hover .strength-icon-bg {
    transform: rotate(0deg);
    opacity: 0.2;
}

.strength-point i {
    font-size: 24px;
    color: var(--accent-color);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.strength-point:hover i {
    transform: scale(1.2);
}

.strength-content {
    flex: 1;
}

.strength-point h4 {
    color: var(--primary-color);
    font-family: var(--heading-font);
    font-size: 20px;
    margin: 0 0 10px;
    position: relative;
    padding-bottom: 10px;
    transition: color 0.3s ease;
}

.strength-point h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.strength-point:hover h4::after {
    width: 70px;
}

.strength-point p {
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
    font-size: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .key-strengths {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .strength-point {
        padding: 15px;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .key-strengths {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .growth-journey-section,
    .our-strength-section {
        padding: 70px 0;
    }
    
    .strength-visual {
        flex-direction: column;
        gap: 20px;
    }
    
    .strength-left {
        display: none;
    }
    
    .key-strengths {
        grid-template-columns: 1fr;
    }
    
    .intro-text {
        font-size: 16px;
    }
    
    .achievement-content p {
        font-size: 16px;
    }
}

/* Our Core Process Section */
.core-process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.core-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiMwZjE3MmEiIGZpbGwtb3BhY2l0eT0iMC4wMyI+PHBhdGggZD0iTTM2IDM0djZoNnYtNmgtNnptNi02aDZ2LTZoLTZ2NnoiLz48L2c+PC9nPjwvc3ZnPg==');
    opacity: 0.5;
    pointer-events: none;
}

.core-process-container {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.core-process-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;
}

.process-graphic {
    position: relative;
    width: 360px;
    height: 360px;
}

.process-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
    z-index: 5;
}

.center-icon {
    font-size: 24px;
    margin-bottom: 2px;
}

.process-center span {
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 18px;
}


.core-process-content {
    flex: 1;
    padding: 20px;
}

.process-statement {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.process-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--accent-color);
    border-radius: 5px 0 0 5px;
}

.process-statement p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

.process-statement .highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.concierge-box {
    background: var(--primary-color);
    color: white;
    border-radius: 15px;
    padding: 25px 30px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.15);
    position: relative;
    overflow: hidden;
}

.concierge-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(circle at center, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    transform: translate(50%, -50%);
    border-radius: 50%;
    pointer-events: none;
}

.concierge-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}

.concierge-box h3 {
    margin: 0 0 10px;
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 600;
}

.concierge-box p {
    margin: 0;
    opacity: 0.9;
    font-size: 16px;
}




/* Responsive design */
@media (max-width: 991px) {
    .core-process-container {
        flex-direction: column;
    }
    
}

@media (max-width: 768px) {
    .core-process-section {
        padding: 70px 0;
    }
    
    .process-statement p {
        font-size: 16px;
    }
    
    
}


/* Loading Screen */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-wrapper.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader {
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out;
}

.dot1 {
    background-color: var(--primary-color);
    animation-delay: 0s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.dot2 {
    background-color: var(--ligh-color);
    animation-delay: -0.32s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.dot3 {
    background-color: var(--secondary-color);
    animation-delay: -0.16s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

@keyframes bounce {
    0%, 80%, 100% { 
        transform: scale(0);
    }
    40% { 
        transform: scale(1);
    }
}

.loader-wrapper.fade-out {
    opacity: 0;
    pointer-events: none;
}


/* Professional Punchline Banner */
.punchline-banner {
    background: --light-color;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.punchline-banner::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
}

.punchline-banner::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
}

.punchline-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.punchline-left, .punchline-right {
    flex: 0 0 auto;
    padding: 0 25px;
}

.punchline-icon {
    color: var(--primary-color);
    font-size: 32px;
}

.punchline-slider {
    flex: 1;
    overflow: hidden;
    height: 60px;
    position: relative;
}

.punchline-track {
    position: relative;
    height: 100%;
    width: 100%;
}

.punchline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-family: var(--heading-font, 'Playfair Display');
    font-size: 28px;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.punchline.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive styles */
@media (max-width: 768px) {
    .punchline {
        font-size: 22px;
    }
    
    .punchline-icon {
        font-size: 24px;
    }
    
    .punchline-slider {
        height: 80px;
    }
    
    .punchline-banner {
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .punchline {
        font-size: 20px;
        padding: 0 10px;
    }
    
    .punchline-left, .punchline-right {
        padding: 0 15px;
    }
    
    .punchline-slider {
        height: 100px;
    }
}