/* Global Styles */
:root {
    --primary-color: #2A93D5;
    --secondary-color: #1A5276;
    --accent-color: #F39C12;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --font-primary: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--secondary-color);
}

.btn-link i {
    margin-left: 5px;
    font-size: 0.8rem;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.section-header p {
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo span {
    font-size: 1.6rem;
    display: block;
    margin-left: 5px;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    margin-left: 25px;
    font-weight: 500;
    color: var(--dark-color);
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover, 
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.btn-quote {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-quote:hover {
    background-color: var(--secondary-color);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 1;
    padding: 10px 0;
}

.dropdown-content a {
    padding: 10px 20px;
    display: block;
    margin: 0;
    color: var(--dark-color);
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Slider Styles */
.hero {
    margin-top: 80px;
    height: 80vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    bottom: 100px;
    left: 100px;
    max-width: 600px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.slide-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 100px;
    display: flex;
    align-items: center;
}

.slide-dots {
    display: flex;
    margin: 0 15px;
}

.slide-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-dot.active {
    background-color: white;
    transform: scale(1.2);
}

.prev-slide, .next-slide {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* About Section Styles */
.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-content {
    max-width: 600px;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.about-content p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.about-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Services Section Styles */
.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 30px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(42, 147, 213, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-card ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    color: var(--gray-color);
}

.service-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Projects Section Styles */
.projects-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.project-info {
    padding: 20px;
    background-color: white;
}

.project-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.project-info p {
    color: var(--gray-color);
    margin-bottom: 15px;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

/* Partners Section Styles */
.partners-section {
    padding: 60px 0;
}

.partners-slider {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-logo {
    flex: 0 0 calc(20% - 30px);
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: white;
}

.testimonials-section .section-header h2,
.testimonials-section .section-header p {
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: -10px;
    left: -10px;
    opacity: 0.3;
    font-size: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* CTA Section Styles */
.cta-section {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: white;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-buttons .btn {
    padding: 12px 30px;
}

.cta-buttons .btn-primary {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

.cta-buttons .btn-primary:hover {
    background-color: transparent;
    color: white;
}

.cta-buttons .btn-quote {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-quote:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Footer Styles */
footer {
    background-color: #222;
    color: white;
    padding: 60px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about .logo {
    color: white;
    margin-bottom: 20px;
    display: block;
}

.footer-about .logo span {
    color: rgba(255, 255, 255, 0.7);
}

.footer-about p {
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-services h3,
.footer-links h3,
.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
}

.footer-services ul,
.footer-links ul {
    list-style: none;
}

.footer-services li,
.footer-links li {
    margin-bottom: 10px;
}

.footer-services a,
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-services a:hover,
.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
    margin-top: 3px;
}

.newsletter h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: white;
}

.newsletter form {
    display: flex;
}

.newsletter input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter button:hover {
    background-color: var(--secondary-color);
}

.copyright {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    margin: 50px auto;
    max-width: 600px;
    border-radius: 8px;
    overflow: hidden;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 20px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.5rem;
}

.close-modal {
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(42, 147, 213, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-image {
        position: relative;
        width: 100%;
        transform: none;
        margin-top: 40px;
    }
    
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        margin-top: 20px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        margin: 10px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
.logo span {
    display: none;
}
    
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .slide-content {
        left: 50%;
        transform: translateX(-50%);
        bottom: 60px;
        text-align: center;
        max-width: 90%;
    }
    
    .slider-controls {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-logo {
        flex: 0 0 calc(33.33% - 20px);
    }
}

@media (max-width: 576px) {
    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .partner-logo {
        flex: 0 0 calc(50% - 15px);
    }
}

/* ===== Page Hero Styles ===== */
.page-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.page-hero .container {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    width: 100%;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== About Company Page ===== */
.about-history {
    margin-bottom: 60px;
}

.timeline {
    position: relative;
    padding-left: 30px;
    margin-top: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary-color);
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 60px 0;
}

.mission, .vision {
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.mission i, .vision i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: center;
}

.certs-grid img {
    max-height: 100px;
    width: auto;
    margin: 0 auto;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.certs-grid img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* ===== Team Page ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding: 30px 20px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 5px solid #f8f9fa;
}

.team-member .position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-member .bio {
    color: var(--gray-color);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

.department-teams {
    margin-top: 60px;
}

.dept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.dept-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.dept-card h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.dept-members {
    display: flex;
    align-items: center;
}

.dept-members img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: -15px;
    border: 3px solid white;
}

.dept-members span {
    margin-left: 20px;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.cta-team {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 60px 0;
    margin-top: 60px;
}

.cta-team h2 {
    margin-bottom: 15px;
}

/* ===== Services Pages ===== */
.service-detail {
    padding: 80px 0;
}

.service-overview {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.service-overview h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-process {
    margin-bottom: 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    position: relative;
    padding-top: 50px;
}

.step span {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.service-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 12px 25px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--gray-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
    padding: 20px 0;
}

.tab-content.active {
    display: block;
}

.investment-options {
    margin: 60px 0;
}

.investment-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.invest-card {
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--primary-color);
}

.invest-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-cta {
    background: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.service-cta h2 {
    margin-bottom: 20px;
}

/* ===== Projects Portfolio ===== */
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 8px 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(42, 147, 213, 0.9);
    color: white;
    transition: bottom 0.3s ease;
}

.portfolio-item:hover .project-overlay {
    bottom: 0;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

/* ===== Careers Page ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.jobs-accordion {
    margin-top: 40px;
}

.job-post {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.job-title {
    width: 100%;
    padding: 20px;
    background: white;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
}

.job-title i {
    transition: transform 0.3s ease;
}

.job-title.active i {
    transform: rotate(180deg);
}

.job-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
}

.job-details.active {
    max-height: 1000px;
    padding: 20px;
}

.job-description {
    margin-bottom: 20px;
}

.job-description h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.internship-program {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* ===== Contact Page ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-item {
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.office-hours {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.contact-form {
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-map {
    height: 400px;
    margin: 60px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#officeMap {
    width: 100%;
    height: 100%;
}

.regional-offices {
    margin-top: 60px;
}

.office-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.office-card {
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 3px solid var(--primary-color);
}

.office-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.office-card i {
    color: var(--primary-color);
    margin-right: 8px;
}
/* ===== Page Hero ===== */
.page-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
    color: white;
    text-align: center;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

/* ===== Content Sections ===== */
.content-section {
    padding: 80px 0;
}

.bg-light {
    background-color: #f8f9fa;
}

/* ===== Timeline ===== */
.timeline-container {
    position: relative;
    padding-left: 30px;
    margin-top: 40px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
    padding-left: 30px;
}

.timeline-year {
    position: absolute;
    left: -15px;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* ===== Team Grid ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-details {
    padding: 20px;
}

/* ===== Service Tabs ===== */
.service-tabs {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
}

.service-tabs .tab {
    padding: 15px 30px;
    cursor: pointer;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.service-tabs .tab.active {
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ===== Project Cards ===== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(42, 147, 213, 0.9);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-card:hover img {
    transform: scale(1.05);
}

/* ===== Case Studies Page Styles ===== */
.case-studies-section {
    padding: 80px 0;
}

.case-study-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.case-study-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.case-study-image {
    height: 250px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-content {
    padding: 25px;
}

.case-study-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.case-study-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(42, 147, 213, 0.1);
    color: var(--primary-color);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.case-study-content h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.case-study-excerpt {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.case-study-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
}

.case-study-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.case-study-link:hover i {
    transform: translateX(3px);
}

/* Case Study Single Page */
.case-study-single {
    padding: 80px 0;
}

.case-study-header {
    margin-bottom: 40px;
}

.case-study-header h1 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.case-study-header .meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--gray-color);
}

.case-study-hero-image {
    height: 500px;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.case-study-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-body {
    max-width: 800px;
    margin: 0 auto;
}

.case-study-body h2,
.case-study-body h3 {
    color: var(--secondary-color);
    margin: 30px 0 15px;
}

.case-study-body p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.case-study-body img {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 8px;
}

.case-study-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .case-study-hero-image {
        height: 300px;
    }
    
    .case-study-header .meta {
        flex-direction: column;
        gap: 5px;
    }
}
/* ===== Careers Page Styles ===== */
#vacancies-container {
    margin-top: 30px;
}

.no-vacancies {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.no-vacancies i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.no-vacancies h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.job-post {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.job-title {
    width: 100%;
    padding: 20px;
    background: white;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-primary);
    cursor: pointer;
}

.job-title-left {
    flex: 1;
}

.job-title-right {
    display: flex;
    align-items: center;
}

.job-title span {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.job-meta {
    display: flex;
    gap: 15px;
    margin-top: 5px;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.job-meta i {
    margin-right: 5px;
}

.job-dates {
    text-align: right;
    margin-right: 20px;
    font-size: 0.9rem;
}

.job-dates span {
    display: block;
    color: var(--gray-color);
    font-weight: normal;
}

.job-title i {
    transition: transform 0.3s ease;
}

.job-title.active i {
    transform: rotate(180deg);
}

.job-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
}

.job-details.active {
    max-height: 1000px;
    padding: 20px;
}

.job-description {
    margin-bottom: 20px;
}

.job-description h3 {
    font-size: 1rem;
    margin: 20px 0 10px;
    color: var(--secondary-color);
}

.job-deadline {
    margin-top: 20px;
    padding: 10px;
    background: rgba(220, 53, 69, 0.1);
    border-left: 3px solid var(--danger-color);
    color: var(--danger-color);
    font-size: 0.9rem;
}

.job-deadline i {
    margin-right: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .job-title {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .job-title-right {
        width: 100%;
        margin-top: 10px;
        justify-content: space-between;
    }
    
    .job-dates {
        text-align: left;
    }
    
    .job-dates span {
        display: inline;
        margin-right: 10px;
    }
}
/* Consultancy Specializations */
.specialization-categories {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.category-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.category-header i {
    font-size: 1.8rem;
}

.water-category .category-header { background: #3498db; }
.urban-category .category-header { background: #2ecc71; }
.tech-category .category-header { background: #9b59b6; }
.energy-category .category-header { background: #f39c12; }

.specialization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
}

.specialization-card {
    padding: 1.5rem;
    border-radius: 8px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.specialization-card:hover {
    transform: translateY(-5px);
}

.specialization-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.specialization-card ul {
    list-style-type: none;
}

.specialization-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.specialization-card li:before {
    content: "•";
    color: #3498db;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Project Experiences */
.experience-tabs {
    margin-top: 3rem;
}

.experience-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.experience-image {
    position: relative;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-duration {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.experience-details {
    padding: 1.5rem;
}

.experience-highlights {
    margin: 1.5rem 0;
}

.highlight {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    align-items: flex-start;
}

.highlight i {
    color: #2ecc71;
    margin-top: 0.2rem;
}

/* Methodology Infographic */
.infographic-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.infographic-step {
    position: relative;
    width: 18%;
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-arrow {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    color: #7f8c8d;
    font-size: 1.5rem;
}

@media (max-width: 992px) {
    .infographic-step {
        width: 100%;
        margin-bottom: 1rem;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    .step-arrow {
        display: none;
    }
    .experience-card {
        grid-template-columns: 1fr;
    }
}
/* Company Page Specific Styles */
.company-intro {
    padding: 5rem 0;
    background: #f9f9f9;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.registration-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.badge img {
    height: 30px;
    width: auto;
}

.badge span {
    font-weight: 500;
    color: #2c3e50;
}

/* Timeline Infographic */
.timeline-infographic {
    position: relative;
    padding: 3rem 0;
}

.timeline-path {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #3498db, #2ecc71);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-items {
    position: relative;
    z-index: 2;
}

.timeline-item {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.timeline-year {
    width: 100px;
    height: 100px;
    background: #2c3e50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 2rem;
    border: 5px solid white;
    box-shadow: 0 0 0 4px #2c3e50;
}

.timeline-card {
    width: 40%;
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.timeline-card h3 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.timeline-card p {
    color: #555;
    margin-bottom: 1rem;
}

.timeline-docs, .timeline-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.timeline-docs span, .timeline-bullets span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mv-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mv-card {
    padding: 2.5rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.mv-card.mission {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.mv-card.vision {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
}

.mv-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.mv-card p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Values Infographic */
.values-infographic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.value-icon.integrity { background: #e74c3c; }
.value-icon.innovation { background: #9b59b6; }
.value-icon.sustainability { background: #2ecc71; }
.value-icon.excellence { background: #f39c12; }

.value-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Sectors Chart */
.sectors-chart {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.sector-item {
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.sector-item.water { background: rgba(52, 152, 219, 0.1); border-top: 4px solid #3498db; }
.sector-item.energy { background: rgba(241, 196, 15, 0.1); border-top: 4px solid #f1c40f; }
.sector-item.urban { background: rgba(46, 204, 113, 0.1); border-top: 4px solid #2ecc71; }
.sector-item.realty { background: rgba(155, 89, 182, 0.1); border-top: 4px solid #9b59b6; }

.sector-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.sector-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: white;
}

.sector-item.water .sector-icon { background: #3498db; }
.sector-item.energy .sector-icon { background: #f1c40f; }
.sector-item.urban .sector-icon { background: #2ecc71; }
.sector-item.realty .sector-icon { background: #9b59b6; }

.sector-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.sector-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .intro-content {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .timeline-year {
        margin-bottom: 1.5rem;
    }
    
    .timeline-card {
        width: 80%;
    }
    
    .mv-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .timeline-path {
        left: 50px;
    }
    
    .timeline-item {
        align-items: flex-start;
        text-align: left;
    }
    
    .timeline-year {
        margin-right: 1.5rem;
        margin-bottom: 0;
    }
    
    .timeline-card {
        width: calc(100% - 150px);
    }
}
/* Partners Page Specific Styles */
.partner-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-top: 0.5rem;
}

/* Partnership Visualization */
.partnership-model {
    position: relative;
    height: 500px;
    margin: 5rem auto;
    width: 500px;
    max-width: 100%;
}

.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 10px #f8f9fa, 0 0 0 15px #e9ecef;
    z-index: 4;
}

.center-logo img {
    width: 60px;
    height: auto;
}

.partner-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.partner-ring h3 {
    position: absolute;
    width: 100%;
    text-align: center;
    top: -40px;
    font-size: 1.2rem;
}

.tech-partners {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-color: rgba(52, 152, 219, 0.5);
    animation: rotate 60s linear infinite;
}

.gov-partners {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-color: rgba(46, 204, 113, 0.5);
    animation: rotate-reverse 45s linear infinite;
}

.finance-partners {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    border-color: rgba(155, 89, 182, 0.5);
    animation: rotate 30s linear infinite;
}

.partner-dots {
    position: relative;
    width: 100%;
    height: 100%;
}

.dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    transform: translate(-50%, -50%) scale(1.3);
}

.tech-partners .dot {
    background: #3498db;
}

.gov-partners .dot {
    background: #2ecc71;
}

.finance-partners .dot {
    background: #9b59b6;
}

/* Position dots */
.partner-dots .dot:nth-child(1) { top: 10%; left: 50%; }
.partner-dots .dot:nth-child(2) { top: 50%; left: 90%; }
.partner-dots .dot:nth-child(3) { top: 90%; left: 50%; }
.partner-dots .dot:nth-child(4) { top: 50%; left: 10%; }

.tooltip-text {
    position: absolute;
    background: #2c3e50;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

/* Partner Categories */
.category-card {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.category-header {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.category-header i {
    font-size: 1.8rem;
}

.tech-category .category-header { background: #3498db; }
.gov-category .category-header { background: #2ecc71; }
.finance-category .category-header { background: #9b59b6; }

.category-content {
    padding: 2rem;
    background: white;
}

.partner-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature {
    padding: 1.5rem;
    border-radius: 8px;
    background: #f8f9fa;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #3498db;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.gov-category .feature-icon { background: #2ecc71; }
.finance-category .feature-icon { background: #9b59b6; }

.collaboration-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.type-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.type-item i {
    color: #2ecc71;
    font-size: 1.2rem;
}

.finance-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    background: #f8f9fa;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #9b59b6;
}

.stat-label {
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Logo Grid */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    padding: 1rem 0;
}

.logo-grid img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.logo-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    padding: 2rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #3498db;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.benefit-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* CTA Section */
.cta-partnership {
    padding: 5rem 0;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    text-align: center;
}

.cta-partnership h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-partnership p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .partner-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .partnership-model {
        height: 400px;
        width: 400px;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .partnership-model {
        height: 300px;
        width: 300px;
    }
    
    .center-logo {
        width: 80px;
        height: 80px;
    }
    
    .partner-ring h3 {
        font-size: 1rem;
        top: -30px;
    }
}
/* ===== EPC Page Specific Styles ===== */
.epc-hero {
    background: linear-gradient(135deg, #1A5276 0%, #2A93D5 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    min-width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(to right, #F39C12, #FFC300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Process Infographic */
.epc-process {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.process-infographic {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
}

.process-line {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #2A93D5, #F39C12);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 18%;
}

.step-circle {
    width: 60px;
    height: 60px;
    background: white;
    border: 4px solid #2A93D5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2A93D5;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.process-step:hover .step-circle {
    background: #2A93D5;
    color: white;
    transform: scale(1.1);
}

.process-step h3 {
    margin-bottom: 10px;
    color: #1A5276;
}

/* Sector Expertise */
.sector-expertise {
    padding: 80px 0;
}

.sector-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sector-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: white;
}

.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.sector-header {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.sector-icon {
    font-size: 1.8rem;
}

.biocng-card .sector-header {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.solar-card .sector-header {
    background: linear-gradient(135deg, #f39c12, #f1c40f);
}

.water-card .sector-header {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.infra-card .sector-header {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.sector-content {
    padding: 25px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.tech-tag {
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.biocng-card .tech-tag { color: #27ae60; border: 1px solid rgba(39, 174, 96, 0.3); }
.solar-card .tech-tag { color: #f39c12; border: 1px solid rgba(243, 156, 18, 0.3); }
.water-card .tech-tag { color: #3498db; border: 1px solid rgba(52, 152, 219, 0.3); }
.infra-card .tech-tag { color: #9b59b6; border: 1px solid rgba(155, 89, 182, 0.3); }

/* Project Showcase */
.project-showcase {
    padding: 80px 0;
    background: #f8f9fa;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: white;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.project-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-details {
    padding: 25px;
}

.project-stats {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    font-size: 0.9rem;
}

.project-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.project-stats strong {
    color: #1A5276;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A5276 0%, #2A93D5 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: #1A5276;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .process-infographic {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .process-step {
        width: 100%;
        max-width: 250px;
    }
    
    .process-line {
        display: none;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stat {
        min-width: 120px;
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}
/* ===== Real Estate Specific Styles ===== */
.realestate-hero {
    background: linear-gradient(135deg, #1A5276 0%, #2A93D5 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.realestate-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.realestate-hero .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-top: 4px solid #2A93D5;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: #2A93D5;
    margin-bottom: 10px;
}

/* Valuation Approach Grid */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.approach-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.approach-icon {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #2A93D5;
}

/* Service Tabs */
.service-tabs {
    margin-top: 50px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
}

.tab-btn {
    padding: 15px 25px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #6c757d;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: #2A93D5;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #2A93D5;
}

.tab-content {
    display: none;
    padding: 30px;
}

.tab-content.active {
    display: block;
}

.tab-content-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.tab-text h3 {
    color: #1A5276;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.tab-text ul {
    list-style: none;
    margin-top: 20px;
}

.tab-text li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}

.tab-text li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #2A93D5;
}

.tab-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tab-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.tab-image:hover img {
    transform: scale(1.05);
}

/* ===== Water Sanitation Specific Styles ===== */
.water-hero {
    background: linear-gradient(135deg, #1A5276 0%, #2A93D5 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.water-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.water-hero .container {
    position: relative;
    z-index: 2;
}

/* Technology Showcase */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tech-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.tech-card img {
    max-height: 80px;
    margin-bottom: 20px;
}

/* Case Studies */
.case-study-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.case-study-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.case-study-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.case-study-content {
    padding: 25px;
    background: white;
}

.case-study-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
    font-size: 0.9rem;
}

.case-study-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.case-study-stats strong {
    color: #1A5276;
}

/* Testimonials */
.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before {
    content: '\201C';
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -15px;
    color: rgba(42, 147, 213, 0.1);
    font-family: serif;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.testimonial-author h4 {
    color: #1A5276;
    margin-bottom: 5px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .tab-content-inner {
        grid-template-columns: 1fr;
    }
    
    .tab-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-btn {
        text-align: left;
        border-bottom: 1px solid #eee;
    }
    
    .tab-btn.active::after {
        bottom: 0;
        left: auto;
        right: 0;
        width: 3px;
        height: 100%;
    }
}
