/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.section-title span {
    color: #2980b9;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: 2px solid #2980b9;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2980b9, #1c5a82);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #2980b9;
    border: 2px solid #2980b9;
}

.btn-secondary:hover {
    background: #2980b9;
    color: white;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.logo-tag {
    font-size: 0.8rem;
    color: #7f8c8d;
    font-style: italic;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    transition: color 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.nav-links a:hover {
    color: #3498db;
}

.nav-cta {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white !important;
    padding: 8px 20px;
    border-radius: 4px;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #2980b9, #1c5a82);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #2c3e50;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9));
    padding-top: 140px;
    padding-bottom: 80px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content .highlight {
    color: #2980b9;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    padding: 10px;
}

.stat-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #2980b9;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Clients Section */
.clients {
    background: #f8f9fa;
    padding: 60px 0;
}

.clients-content {
    text-align: center;
}

.client-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.client-item {
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.client-item i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 15px;
}

.client-item h4 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    margin-bottom: 5px;
}

.client-tagline {
    font-size: 1.1rem;
    color: #34495e;
    font-style: italic;
}

/* Problems Section */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.problem-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #3498db;
    transition: transform 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 15px;
}

.problem-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Approach Section */
.approach {
    background: #f8f9fa;
}

.approach-text p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 30px;
    line-height: 1.7;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-number {
    background: #3498db;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
}

.step h4 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    margin-bottom: 5px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #3498db;
    transition: transform 0.3s;
}

.service-card.featured {
    transform: scale(1.05);
    border-top-color: #e74c3c;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 20px;
}

.service-card.featured .service-icon {
    color: #e74c3c;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: #27ae60;
}

/* Testimonials */
.testimonials {
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-content p {
    font-style: italic;
    color: #34495e;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author h4 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    margin-bottom: 5px;
}

/* Signature Offer */
.signature-offer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 80px 0;
}

.signature-offer .section-title {
    color: white;
}

.offer-subtitle {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #ecf0f1;
}

.offer-timeline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.timeline-week {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
}

.timeline-week h3 {
    font-family: 'Montserrat', sans-serif;
    color: #3498db;
    margin-bottom: 20px;
}

.timeline-week ul {
    list-style: none;
}

.timeline-week li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.timeline-week li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
}

.offer-cta {
    text-align: center;
}

.offer-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Contact Section */
.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #34495e;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.info-icon {
    font-size: 1.5rem;
    color: #3498db;
    margin-top: 5px;
}

.info-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    margin-bottom: 5px;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-container h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #7f8c8d;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

/* Form Success Message */
.form-success-message {
    margin-top: 20px;
    padding: 18px 20px;
    border: 1px solid #b7dfc5;
    border-radius: 8px;
    background: #f0faf3;
    color: #245c35;
    font-size: 15px;
    line-height: 1.6;
}

.form-success-message strong {
    font-size: 17px;
    display: block;
    margin-bottom: 4px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #ecf0f1;
    margin-bottom: 10px;
}

.footer-legal {
    font-size: 0.9rem;
    color: #bdc3c7;
    margin-top: 20px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    color: #3498db;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #3498db;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

/* Chat Button */
.chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

#chatToggle {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.4);
    transition: all 0.3s;
}

#chatToggle:hover {
    transform: scale(1.1);
}

.chat-box {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.2);
    display: none;
}

.chat-box.active {
    display: block;
}

.chat-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 15px 20px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
    font-size: 1rem;
}

#chatClose {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.chat-messages {
    height: 300px;
    overflow-y: auto;
    padding: 20px;
}

.message {
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 10px;
    max-width: 80%;
}

.message.bot {
    background: #f1f2f6;
    margin-right: auto;
}

.message.user {
    background: #3498db;
    color: white;
    margin-left: auto;
}

.chat-input {
    display: flex;
    padding: 15px;
    border-top: 1px solid #eee;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#chatSend {
    background: #3498db;
    color: white;
    border: none;
    padding: 0 15px;
    margin-left: 10px;
    border-radius: 4px;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .client-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .offer-timeline {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .chat-box {
        width: 300px;
        right: -20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .service-card,
    .testimonial-card {
        padding: 25px 20px;
    }
}
/* Make Image Logo Smaller */
.small-logo {
    height: 90px !important;  /* Adjust this number */
    width: auto !important;
    max-width: 600px !important;
}

.logo {
    display: flex;
    align-items: center;
}

/* ========================================
   EXPERIENCE HIGHLIGHTS SECTION
   ======================================== */

.experience {
    background: #f8f9fa;
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-top: -15px;
    margin-bottom: 50px;
}

/* Experience Intro */
.experience-intro {
    display: flex;
    align-items: center;
    gap: 30px;
    background: white;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.experience-badge {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    min-width: 120px;
    flex-shrink: 0;
}

.badge-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #3498db;
    line-height: 1;
}

.badge-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ecf0f1;
}

.experience-text {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.8;
    margin: 0;
    flex: 1;
}

.experience-text strong {
    color: #2c3e50;
}

/* Competencies */
.competencies-title,
.results-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.competencies-title::after,
.results-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #3498db;
    margin: 10px auto 0;
}

.competencies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.competency-card {
    background: white;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 4px solid #3498db;
    transition: transform 0.3s;
}

.competency-card:hover {
    transform: translateY(-5px);
}

.competency-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.competency-card h4 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.competency-card p {
    color: #34495e;
    line-height: 1.7;
    font-size: 0.95rem;
}

.competency-card strong {
    color: #2980b9;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.result-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    border-top: 4px solid #2980b9;
    transition: transform 0.3s;
}

.result-card:hover {
    transform: translateY(-5px);
}

.result-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #2980b9;
    line-height: 1;
    margin-bottom: 10px;
}

.result-card:nth-child(2) .result-number {
    color: #27ae60;
}

.result-card:nth-child(3) .result-number {
    color: #e67e22;
}

.result-card:nth-child(4) .result-number {
    font-size: 2.5rem;
    color: #8e44ad;
}

.result-card h4 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.result-card p {
    color: #34495e;
    line-height: 1.7;
    font-size: 0.95rem;
}

.result-card strong {
    color: #2c3e50;
}

/* Responsive */
@media (max-width: 768px) {
    .experience-intro {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .experience-badge {
        width: 100%;
    }
    
    .competencies-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .competencies-title,
    .results-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .result-number {
        font-size: 2.2rem;
    }
    
    .experience-text {
        font-size: 1rem;
    }
}
