/* Service Detail Sections */
.service-detail-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.service-detail-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-detail-title {
    font-size: 42px;
    font-weight: 700;
    color: #023E8A;
    margin-bottom: 15px;
}

.service-detail-subtitle {
    font-size: 20px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.service-detail-category {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.category-title {
    font-size: 24px;
    font-weight: 600;
    color: #023E8A;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #023E8A;
    transition: background-color 0.3s ease;
}

.service-item:hover {
    background: #e9ecef;
}

.service-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #023E8A;
    margin-bottom: 8px;
}

.service-item p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
}

.service-detail-cta {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #023E8A, #0077B6);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(2, 62, 138, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 62, 138, 0.4);
    background: linear-gradient(135deg, #0077B6, #023E8A);
}

.back-btn {
    display: inline-block;
    padding: 15px 30px;
    background: transparent;
    color: #023E8A;
    text-decoration: none;
    border: 2px solid #023E8A;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #023E8A;
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive Design for Service Details */
@media (max-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-detail-title {
        font-size: 32px;
    }
    
    .service-detail-subtitle {
        font-size: 18px;
    }
    
    .service-detail-category {
        padding: 20px;
    }
    
    .service-detail-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button, .back-btn {
        width: 100%;
        max-width: 300px;
    }
}

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

/* Timeline Success Stories Styles */
.success-stories-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #023E8A;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: #6c757d;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #023E8A;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    margin-bottom: 30px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 4px solid #023E8A;
    border-radius: 50%;
    top: 15px;
    z-index: 1;
}

.timeline-item:nth-child(odd)::after {
    right: -10px;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-year {
    display: inline-block;
    padding: 5px 15px;
    background-color: #023E8A;
    color: #fff;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #023E8A;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #6c757d;
    font-size: 14px;
}

/* Responsive Timeline */
@media screen and (max-width: 768px) {
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 20px;
    }
    
    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(odd)::after {
        left: 30px;
        right: auto;
    }
    
    .timeline-item:nth-child(even)::after {
        left: 30px;
    }
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Navbar Styles */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* Logo Styles */
.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #2c3e50;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 120px;
    margin-right: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #023E8A;
    background-color: #f0f8ff;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 280px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 10px;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #03045E 0%, #023E8A 100%);
    color: #fff;
    transform: translateX(5px);
}

.dropdown-item i {
    font-size: 18px;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.dropdown-content {
    display: flex;
    flex-direction: column;
}

.dropdown-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 2px;
}

.dropdown-desc {
    font-size: 12px;
    opacity: 0.8;
}

/* CTA Button */
.nav-cta {
    margin-left: 20px;
}

.cta-button {
    background: linear-gradient(135deg, #03045E 0%, #023E8A 100%);
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(3, 4, 94, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 4, 94, 0.6);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Main Content */
.main-content {
    margin-top: 70px;
    padding: 0;
}

.hero-section {
    text-align: center;
    min-height: 75vh;
    padding: 0 0;
    background-image: linear-gradient(to bottom, rgba(3, 4, 94, 0.75) 0%, rgba(2, 62, 138, 0.55) 50%, rgba(3, 4, 94, 0.75) 100%), url('../images/background-headline.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-headline {
    font-size: 3rem;
    font-family: 'Merriweather', serif;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.hero-section p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-title {
    font-size: 2.2rem;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #03045E 0%, #023E8A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #03045E 0%, #023E8A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(3, 4, 94, 0.3);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.learn-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #03045E 0%, #023E8A 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    box-shadow: 0 4px 15px rgba(3, 4, 94, 0.4);
}

.service-card:hover .learn-more-btn {
    opacity: 1;
    transform: translateY(0);
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 4, 94, 0.6);
}

/* Our Clients Section */
.clients-section {
    padding: 80px 20px;
    background: #fff;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.clients-header {
    text-align: center;
    margin-bottom: 60px;
}

.clients-title {
    font-size: 2rem;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #03045E 0%, #023E8A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.clients-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.clients-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    overflow: hidden;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 0;
}

.clients-scroll {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
    min-width: calc(200px * 16 + 60px * 15); /* 8 logos * 2 untuk smooth scroll */
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    min-width: 180px;
    flex-shrink: 0;
}

.client-logo:hover {
    transform: translateY(-3px);
    border: 2px solid #023E8A;
    background: #fff;
    position: relative;
    z-index: 10;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-180px * 8 - 60px * 7));
    }
}

@media screen and (max-width: 768px) {
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-140px * 8 - 30px * 7));
        }
    }
}

.logo-placeholder {
    text-align: center;
    color: #666;
    transition: all 0.3s ease;
}

.logo-placeholder i {
    font-size: 32px;
    margin-bottom: 8px;
    display: block;
    color: #023E8A;
    opacity: 0.7;
}

.logo-placeholder span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
}

.client-logo:hover .logo-placeholder {
    color: #023E8A;
}

.client-logo:hover .logo-placeholder i {
    opacity: 1;
    transform: scale(1.1);
}

/* Recent Work Section */
.recent-work-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.recent-work-header {
    text-align: center;
    margin-bottom: 60px;
}

.recent-work-title {
    font-size: 2.2rem;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #03045E 0%, #023E8A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.recent-work-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.recent-work-showcase {
    max-width: 1400px;
    margin: 0 auto;
}

/* Featured Project */
.featured-project {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
    transition: all 0.4s ease;
    border: 1px solid #e9ecef;
}

.featured-project:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.featured-image {
    position: relative;
    background: linear-gradient(135deg, #03045E 0%, #023E8A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.featured-placeholder {
    text-align: center;
    color: #fff;
}

.featured-placeholder i {
    font-size: 64px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.featured-placeholder span {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.8;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.featured-content {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-category {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 15px;
}

.project-category i {
    color: #023E8A;
}

.featured-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.featured-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.project-metrics {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #023E8A;
    line-height: 1;
}

.metric-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    margin-top: 5px;
}

.featured-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 500;
}

.tag-primary {
    background: linear-gradient(135deg, #03045E 0%, #023E8A 100%);
    color: #fff;
}

.tag-secondary {
    background: linear-gradient(135deg, #023E8A 0%, #03045E 100%);
    color: #fff;
}

.tag-accent {
    background: linear-gradient(135deg, #03045E 0%, #0077be 100%);
    color: #fff;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
}

/* Horizontal Card */
.project-card-horizontal {
    grid-column: 1 / -1;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.project-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.project-card-horizontal {
    display: grid;
    grid-template-columns: 300px 1fr;
}

.project-image {
    background: linear-gradient(135deg, #03045E 0%, #023E8A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.project-placeholder {
    color: #fff;
    font-size: 48px;
    opacity: 0.8;
}

.project-content {
    padding: 30px;
}

.project-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.3;
}

.project-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.project-result {
    font-size: 0.9rem;
    color: #023E8A;
    font-weight: 500;
}

.result-highlight {
    color: #ff6b6b;
    font-weight: 700;
}

/* Vertical Card */
.project-card-vertical {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
}

.project-card-vertical:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.project-card-vertical .project-image {
    height: 180px;
    background: linear-gradient(135deg, #023E8A 0%, #03045E 100%);
    position: relative;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 4, 94, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card-vertical:hover .project-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: #fff;
}

.overlay-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.overlay-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.project-card-vertical .project-content {
    padding: 25px;
}

.project-stats {
    margin-top: 15px;
}

.stat {
    display: inline-block;
    background: linear-gradient(135deg, #03045E 0%, #023E8A 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.stat-number {
    font-size: 1.2rem;
    margin-right: 5px;
}

/* Compact Card */
.project-card-compact {
    background: linear-gradient(135deg, #03045E 0%, #023E8A 100%);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    color: #fff;
}

.project-card-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.project-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.project-card-compact .project-content {
    flex: 1;
    padding: 0;
}

.project-card-compact .project-title {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.project-card-compact .project-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.category-tag {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Case Study Specific Styles */
.case-study-card {
    border-left: 4px solid #023E8A;
}

.case-study-card .project-placeholder.ai-theme {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.case-study-card .project-placeholder.security-theme {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.case-study-card .project-placeholder.crm-theme {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.case-study-details {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #023E8A;
}

.case-study-details > div {
    margin-bottom: 15px;
}

.case-study-details > div:last-child {
    margin-bottom: 0;
}

.case-study-details strong {
    color: #023E8A;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.case-study-details ul {
    margin-left: 20px;
    margin-top: 8px;
}

.case-study-details li {
    margin-bottom: 5px;
    color: #555;
    line-height: 1.5;
}

.methodology ul {
    list-style-type: disc;
}

.sample-achievement ul,
.research-focus ul {
    list-style-type: none;
    margin-left: 0;
}

.sample-achievement li::before,
.research-focus li::before {
    content: "✓";
    color: #023E8A;
    font-weight: bold;
    margin-right: 8px;
}

.case-study-details .timeline {
    background: linear-gradient(135deg, #023E8A 0%, #03045E 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 10px;
}

.case-study-details .timeline strong {
    color: white !important;
}

/* Case Study Card Responsive */
@media (max-width: 768px) {
    .case-study-card {
        grid-column: 1 / -1;
    }
    
    .case-study-card .project-card-horizontal {
        grid-template-columns: 1fr;
    }
    
    .case-study-details {
        padding: 15px;
    }
    
    .case-study-details ul {
        margin-left: 15px;
    }
}
}

/* Quote Card */
.project-card-quote {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    border-left: 4px solid #023E8A;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.project-card-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-title {
    font-size: 2.2rem;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #03045E 0%, #023E8A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    border-left: 4px solid #023E8A;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    min-width: 400px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.slider-nav {
    background: linear-gradient(135deg, #03045E 0%, #023E8A 100%);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(3, 4, 94, 0.4);
    z-index: 10;
    flex-shrink: 0;
}

.slider-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 4, 94, 0.6);
}

.slider-nav i {
    font-size: 18px;
}

.slider-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.quote-content {
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 24px;
    color: #023E8A;
    opacity: 0.3;
}

.quote-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 25px;
    padding-left: 25px;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #03045E 0%, #023E8A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.author-position {
    font-size: 0.8rem;
    color: #666;
}

/* Wireframe Demo Styles */
.wireframe-demo {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    text-align: left;
}

.wireframe-demo h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.wireframe-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border: 2px dashed #023E8A;
    border-radius: 8px;
    background: #f0f8ff;
    flex-wrap: wrap;
    gap: 15px;
}

.wireframe-item {
    padding: 10px 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    position: relative;
    font-weight: 500;
    color: #2c3e50;
}

.wireframe-item.cta {
    background: linear-gradient(135deg, #03045E 0%, #023E8A 100%);
    color: #fff;
    border: none;
}

.wireframe-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    margin-top: 5px;
    font-size: 14px;
    min-width: 150px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.wireframe-submenu div {
    padding: 5px 0;
    color: #666;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 10px 0;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        margin: 10px 0;
        min-width: auto;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 20px;
    }

    .wireframe-box {
        flex-direction: column;
        align-items: stretch;
    }

    .wireframe-item {
        text-align: center;
    }

    .wireframe-submenu {
        position: static;
        margin: 10px 0;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .services-section {
        padding: 60px 20px;
    }

    .services-title {
        font-size: 1.8rem;
    }

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

    .service-card {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }

    .logo-text {
        font-size: 20px;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .wireframe-demo {
        padding: 20px;
    }

    .services-title {
        font-size: 1.6rem;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 24px;
    }

    .clients-section {
        padding: 60px 20px;
    }

    .clients-title {
        font-size: 1.8rem;
    }

    .clients-grid {
        gap: 30px;
    }

    .clients-scroll {
        gap: 30px;
        animation-duration: 25s;
        min-width: calc(140px * 16 + 30px * 15);
    }

    .client-logo {
        padding: 15px 20px;
        min-width: 140px;
    }

    .logo-placeholder i {
        font-size: 20px;
    }

    .logo-placeholder span {
        font-size: 0.7rem;
    }

    .recent-work-section {
        padding: 60px 20px;
    }

    .recent-work-title {
        font-size: 1.8rem;
    }

    /* Featured Project Mobile */
    .featured-project {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .featured-image {
        min-height: 250px;
    }

    .featured-content {
        padding: 30px 25px;
    }

    .project-metrics {
        flex-direction: column;
        gap: 20px;
    }

    .featured-title {
        font-size: 1.5rem;
    }

    /* Projects Grid Mobile */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .project-card-horizontal {
        grid-template-columns: 1fr;
    }

    .project-card-horizontal .project-image {
        height: 150px;
        min-height: 150px;
    }

    .project-card-compact {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .project-card-compact .project-content {
        text-align: center;
    }

    .quote-author {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .featured-tags,
    .project-stats {
        justify-content: center;
    }

    .project-metrics {
        justify-content: center;
    }

    /* Testimonials Section Mobile */
    .testimonials-section {
        padding: 60px 20px;
    }

    .testimonials-title {
        font-size: 1.8rem;
    }

    .testimonials-slider-container {
        gap: 10px;
    }

    .testimonials-slider {
        gap: 20px;
        padding: 10px 0;
    }

    .testimonial-card {
        padding: 30px 25px;
        min-width: 320px;
    }

    .quote-text {
        font-size: 0.95rem;
    }

    .quote-author {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .slider-nav i {
        font-size: 16px;
    }
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background-color: #fff;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-title {
    font-size: 2.2rem;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #03045E 0%, #023E8A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.about-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.about-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

/* About Page Specific Styles */
.about-hero-section {
    text-align: center;
    min-height: 50vh;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #03045E 0%, #023E8A 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-title {
    font-size: 3rem;
    font-family: 'Merriweather', serif;
    margin-bottom: 20px;
    color: #fff;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Aspiration Section */
.aspiration-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.aspiration-header {
    text-align: center;
    margin-bottom: 60px;
}

.aspiration-title {
    font-size: 2.5rem;
    font-family: 'Merriweather', serif;
    margin-bottom: 16px;
    color: #fff;
}

.aspiration-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.aspiration-content {
    max-width: 1200px;
    margin: 0 auto;
}

.aspiration-circles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.aspiration-circle {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 40px 30px;
    text-align: center;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.aspiration-circle:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.aspiration-circle h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.aspiration-circle p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.aspiration-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.aspiration-description h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

.aspiration-description p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Achievements Section */
.achievements-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #023E8A;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #023E8A;
    margin-bottom: 15px;
    line-height: 1;
}

.achievement-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Spirit Section */
.spirit-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.spirit-header {
    text-align: center;
    margin-bottom: 60px;
}

.spirit-title {
    font-size: 2.2rem;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: #2c3e50;
    background: linear-gradient(135deg, #03045E 0%, #023E8A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.spirit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.spirit-card {
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.spirit-card.light-blue {
    background: linear-gradient(135deg, #a8c8ec 0%, #7fb3d3 100%);
    color: #2c3e50;
}

.spirit-card.dark-blue {
    background: linear-gradient(135deg, #03045E 0%, #023E8A 100%);
    color: #fff;
}

.spirit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.spirit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.spirit-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.spirit-card.light-blue h3 {
    color: #2c3e50;
}

.spirit-card.dark-blue h3 {
    color: #fff;
}

/* Approach Section */
.approach-section {
    padding: 80px 20px;
    background: #fff;
}

.approach-header {
    text-align: center;
    margin-bottom: 60px;
}

.approach-title {
    font-size: 2.2rem;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: #2c3e50;
    background: linear-gradient(135deg, #03045E 0%, #023E8A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.approach-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.approach-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Active nav link for about page */
.nav-link.active {
    color: #023E8A;
    background-color: #f0f8ff;
}

/* Mobile Responsive for About Page */
@media screen and (max-width: 768px) {
    .about-hero-title {
        font-size: 2.2rem;
    }
    
    .aspiration-title {
        font-size: 2rem;
    }
    
    .aspiration-circles {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .aspiration-circle {
        aspect-ratio: auto;
        border-radius: 16px;
        padding: 30px 25px;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .achievement-number {
        font-size: 2.5rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .spirit-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .spirit-title {
        font-size: 1.8rem;
    }
    
    .spirit-card {
        padding: 30px 25px;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #03045E 0%, #023E8A 100%);
    color: #fff;
    padding: 80px 20px 40px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
}

.footer-logo h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: #fff;
    color: #023E8A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-item i {
    width: 18px;
    color: #fff;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Footer Responsive */
@media screen and (max-width: 768px) {
    .footer {
        padding: 60px 20px 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-section {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button:active {
    transform: translateY(0);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 8px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }
}

/* WhatsApp Button Responsive */
@media screen and (max-width: 768px) {
    .whatsapp-button {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

/* Blog Page Styles */
.blog-header-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.blog-title {
    font-size: 3rem;
    font-family: 'Merriweather', serif;
    margin-bottom: 20px;
    font-weight: 700;
}

.blog-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.blog-content-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.blog-iframe-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 80vh;
    min-height: 600px;
}

.blog-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .blog-title {
        font-size: 2.2rem;
    }
    
    .blog-subtitle {
        font-size: 1rem;
    }
    
    .blog-iframe-container {
        height: 70vh;
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    .blog-header-section {
        padding: 100px 0 40px;
    }
    
    .blog-title {
        font-size: 1.8rem;
    }
    
    .blog-iframe-container {
        height: 60vh;
        min-height: 400px;
        border-radius: 8px;
    }
}

/* Coverage Section */
.coverage-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.coverage-header {
    text-align: center;
    margin-bottom: 60px;
}

.coverage-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #023E8A;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.coverage-subtitle {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.coverage-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #023E8A;
    margin-bottom: 15px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.4;
    font-weight: 500;
}

/* Responsive Design for Coverage Section */
@media (max-width: 768px) {
    .coverage-title {
        font-size: 2rem;
    }
    
    .coverage-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .coverage-title {
        font-size: 1.8rem;
    }
    
    .coverage-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

/* Milestone Section */
.milestone-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.milestone-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.milestone-item {
    text-align: center;
}

.milestone-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    text-align: left;
}

.milestone-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
    line-height: 1;
}

.milestone-description {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.4;
}

/* Responsive Design for Milestone Section */
@media (max-width: 768px) {
    .milestone-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .milestone-title {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .milestone-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .milestone-number {
        font-size: 1.8rem;
    }
    
    .milestone-description {
        font-size: 0.9rem;
    }
}

/* Projects CTA Section */
.projects-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.projects-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.projects-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.cta-text {
    flex: 1;
    max-width: 600px;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

.cta-action {
    flex-shrink: 0;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-button-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button-large:hover::before {
    left: 100%;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    color: #5a67d8;
}

.cta-button-large i {
    transition: transform 0.3s ease;
}

.cta-button-large:hover i {
    transform: translateX(5px);
}

/* CTA Section Responsive */
@media screen and (max-width: 768px) {
    .projects-cta-section {
        padding: 60px 0;
    }
    
    .projects-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-button-large {
        padding: 18px 35px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-button-large {
        padding: 16px 30px;
        gap: 12px;
    }
}

/* Assessment Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    position: relative;
    max-width: 480px;
    max-height: 600px;
    width: auto;
    height: auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.popup-overlay.show .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

.popup-banner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-banner-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.popup-banner-img:hover {
    transform: scale(1.02);
}

/* Responsive popup styles */
@media screen and (max-width: 768px) {
    .popup-content {
        max-width: 90%;
        max-height: 70%;
        width: auto;
        height: auto;
    }
    
    .popup-close {
        width: 30px;
        height: 30px;
        font-size: 18px;
        top: 10px;
        right: 10px;
    }
}

@media screen and (max-width: 480px) {
    .popup-content {
        max-width: 95%;
        max-height: 60%;
    }
}
