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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.about-section{
    text-align: center;
}
/* Header Styles */
.header {
    background: rgba(255, 255, 255);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #f0f0f0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 32px;
    width: auto;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.nav-link {
    background: none;
    border: none;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0.75rem 0.75rem;
    text-decoration: none;
    position: relative;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.nav-link:hover,
.nav-link.active {
    color: #4f4e9e;
    transform: scale(1.05);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #4f4e9e;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.contact-btn {
    background: transparent;
    border: 2px solid #333;
    color: #333;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.contact-btn:hover {
    background: #333;
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.2s ease;
}

.mobile-menu-btn:hover {
    transform: scale(0.95);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #f0f0f0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
}

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

.mobile-nav .nav-link {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav .nav-link:hover {
    background: rgba(79, 78, 158, 0.1);
    color: #4f4e9e;
}

.mobile-nav .nav-link::after {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 400px;
    max-height: 400px;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    animation: fadeInUp 0.8s ease-out;
}

/* Removed hero badge styles */

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Removed hero description, stats, and actions styles */

.cta-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cta-btn.primary {
    background: #4f4e9e;
    color: white;
}

.cta-btn.primary:hover {
    background: #3f3e8e;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 78, 158, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #333;
}

.section-description {
    font-size: 1.125rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: #f4f4f4;
    color: #333;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

/* Track Record Section */
.track-record {
    background: #f6f8ff;
    padding: 4rem 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.client-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.client-card:hover {
    box-shadow: 0 10px 30px rgba(79, 78, 158, 0.1);
}

.client-logo {
    max-height: 48px;
    max-width: 96px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.client-ticker {
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    color: #333;
}

/* Sectors Section */
.sectors {
    padding: 4rem 0;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.sector-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 1rem;
    padding: 1.5rem;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.sector-card:hover {
    box-shadow: 0 10px 30px rgba(79, 78, 158, 0.1);
}

.sector-icon {
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sector-icon-img {
    width: 56px;
    height: 56px;
    transition: all 0.3s ease;
}

/* Removed hover effect from sector icons */

.sector-title {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    color: #333;
    transition: color 0.3s ease;
}

/* Removed hover effect from sector titles */

/* Leadership Section */
.leadership {
    background: #ffffff;
    padding: 4rem 0;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.leader-card {
    background: white;
    border-radius: 1.5rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.leader-card:hover {
    box-shadow: 0 20px 40px rgba(79, 78, 158, 0.15);
}

.leader-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.leader-info {
    text-align: left;
}

.leader-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #333;
    transition: color 0.3s ease;
}

/* Removed hover effect from leader names */

.leader-role {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 0;
}

.leader-bio {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* Leadership Profiles Layout */
.leaders-profiles {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.leader-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    padding: 2rem;
    background: white;
    border-bottom: 1px solid #dddddd;
}

.leader-left {
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
}

.leader-left .leader-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.leader-info {
    display: flex;
    flex-direction: column;
    gap: 0rem;
}

.leader-company {
    color: #4f4e9e;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

.leader-email {
    margin: 0;
}

.leader-email a {
    color: #4f4e9e;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.leader-email a:hover {
    text-decoration: underline;
}

.leader-bio p {
    margin-bottom: 1rem;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.leader-bio p:last-child {
    margin-bottom: 0;
}

/* Services Section */
.services {
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 1.5rem;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(79, 78, 158, 0.1);
}

.service-icon {
    font-size: 4rem;
    color: #4f4e9e;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

/* Removed hover effect from service icons */

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
    transition: color 0.3s ease;
}

/* Removed hover effect from service titles */

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: #666;
    font-size: 0.875rem;
}

.service-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    margin: 0.5rem 0.75rem 0 0;
    flex-shrink: 0;
}

/* Three Phase Section */
.three-phase {
    background: #f6f8ff;
    padding: 4rem 0;
}

.phases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.phase-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.phase-card:hover {
    box-shadow: 0 20px 40px rgba(79, 78, 158, 0.15);
}

.phase-header {
    background: #414141;
    color: white;
    padding: 1.5rem;
    text-align: center;
    transition: background-color 0.3s ease;
}

/* Removed hover effect from phase headers */

.phase-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.phase-content {
    padding: 1.5rem;
}

.phase-list {
    list-style: none;
    padding: 0;
}

.phase-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: #666;
    font-size: 0.875rem;
}

.phase-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    margin: 0.5rem 0.75rem 0 0;
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    background: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #4f4e9e;
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out;
}

.cta-description {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Footer */
.footer {
    background: #f2f2f2;
    padding: 4rem 0 2rem;
}

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

.footer-links {
    display: flex;
    justify-content: flex-end;
}

.footer-main {
    max-width: 400px;
}

.footer-logo {
    cursor: pointer;
    transition: transform 0.2s ease;
    margin-bottom: 1.5rem;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-description {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    color: #666;
    margin-bottom: 0.5rem;
}

.footer-contact p {
    color: #666;
    margin-bottom: 0.5rem;
}

.footer-addresses {
    margin-top: 1.5rem;
}

.address-item {
    margin-bottom: 1rem;
}

.address-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.address-text {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid #ccc;
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    color: #666;
    font-size: 0.875rem;
}



/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .leader-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .leader-left .leader-image {
        width: 150px;
        height: 150px;
    }
    
    .phases-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    .sectors{
        padding: 4rem 1rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    

} 