/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* Navigation Bar */
.navbar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    border-bottom: 2px solid #ffd700;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

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

.hero-text {
    text-align: left;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-hero {
    display: inline-block;
    padding: 15px 40px;
    background-color: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

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

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

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

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    color: #667eea;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1rem;
    color: #555;
}

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

.service-card li {
    padding: 5px 0;
    color: #666;
}

.service-card li:before {
    content: "✓ ";
    color: #667eea;
    font-weight: bold;
    margin-right: 8px;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #f9f9f9;
    padding: 80px 20px;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature {
    background: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.feature h4 {
    color: #667eea;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature p {
    color: #666;
    line-height: 1.8;
}

/* Content Section */
.content-section {
    background-color: white;
    padding: 60px 20px;
    min-height: calc(100vh - 200px);
}

.content-section .container {
    max-width: 900px;
}

.content-section h1 {
    color: #667eea;
    font-size: 2.5rem;
    margin-bottom: 10px;
    margin-top: 20px;
}

.last-updated {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 30px;
    font-style: italic;
}

.content-section h2 {
    color: #667eea;
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-section h3 {
    color: #764ba2;
    font-size: 1.3rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-section h4 {
    color: #667eea;
    font-size: 1.1rem;
    margin-top: 15px;
    margin-bottom: 8px;
}

.content-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.content-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.content-section li {
    margin-bottom: 8px;
    color: #555;
}

.content-section a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.content-section a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.contact-form {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 30px;
    border-radius: 10px;
}

.contact-form h2 {
    color: #667eea;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 5px rgba(102, 126, 234, 0.3);
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.form-note {
    font-size: 0.85rem;
    color: #999;
    margin-top: 10px;
}

.contact-info {
    background: white;
}

.contact-info h2 {
    color: #667eea;
    margin-bottom: 20px;
}

.info-box {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.info-box h3 {
    color: #667eea;
    margin-bottom: 10px;
}

.contact-detail {
    font-weight: bold;
    color: #764ba2;
    margin-top: 5px;
}

.intro-text {
    font-size: 1.1rem;
    color: #666;
    margin: 20px 0;
}

/* FAQ Section */
.faq-section {
    margin-top: 60px;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
}

.faq-section h2 {
    color: #667eea;
    margin-bottom: 30px;
}

.faq-item {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-item h4 {
    color: #667eea;
    margin-bottom: 10px;
    cursor: pointer;
}

.faq-item p {
    color: #666;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-top: 60px;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
}

.footer-links a:hover {
    border-bottom: 2px solid #ffd700;
}

/* CTA Home Section */
.cta-home {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    margin-top: 60px;
}

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

.cta-text h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-text p {
    color: rgba(255,255,255,0.95);
    font-size: 1.1rem;
    line-height: 1.8;
}

.btn-cta-home {
    display: inline-block;
    padding: 15px 40px;
    background-color: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.btn-cta-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background-color: #f5f5f5;
}

.cta-image {
    flex: 1;
}

.cta-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Responsive adjustments for hero and CTA */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text {
        text-align: center;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-content {
        grid-template-columns: 1fr;
    }

    .cta-text h2 {
        font-size: 1.8rem;
    }

    .cta-text p {
        font-size: 1rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .services h2,
    .why-choose-us h2 {
        font-size: 2rem;
    }

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

    .features {
        grid-template-columns: 1fr;
    }

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

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

    .content-section h2 {
        font-size: 1.4rem;
    }

    .faq-section {
        padding: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.3rem;
    }

    .nav-menu {
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .hero {
        padding: 40px 20px;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .content-section {
        padding: 30px 20px;
    }

    .content-section h1 {
        font-size: 1.5rem;
    }

    .content-section h2 {
        font-size: 1.2rem;
    }

    .service-card {
        padding: 20px;
    }

    .feature {
        padding: 15px;
    }
}

/* About Us Page */
.hero-about, .hero-services, .hero-portfolio, .hero-team, .hero-blog {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero-about h2, .hero-services h2, .hero-portfolio h2, .hero-team h2, .hero-blog h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-about p, .hero-services p, .hero-portfolio p, .hero-team p, .hero-blog p {
    font-size: 1.3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

.value-box {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    text-align: center;
}

.value-box h3 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.value-box p {
    color: #666;
    line-height: 1.8;
}

.stats-section {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    margin: 60px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-card h3 {
    color: #667eea;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.stat-card p {
    color: #666;
    font-size: 1.1rem;
}

.mission-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
    text-align: center;
}

.mission-section h2 {
    color: #667eea;
    margin-bottom: 20px;
}

.mission-section p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Service Detail Pages */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
    align-items: start;
}

.service-detail.alternate {
    grid-template-columns: 1fr 1fr;
}

.service-detail.alternate .service-detail-text {
    order: 2;
}

.service-detail.alternate .service-detail-image {
    order: 1;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.service-detail-text {
    flex: 1;
}

.service-detail-text h2 {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 15px;
}

.service-detail-text h4 {
    color: #764ba2;
    margin-top: 20px;
    margin-bottom: 10px;
}

.service-detail-text ul {
    margin-left: 20px;
}

.service-detail-text li {
    margin-bottom: 10px;
    color: #666;
}

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 10px;
    margin-top: 60px;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.btn-cta {
    display: inline-block;
    padding: 15px 40px;
    background-color: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Portfolio Page */
.portfolio-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
    align-items: start;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.portfolio-item.alternate {
    grid-template-columns: 1fr 1fr;
}

.portfolio-item.alternate .portfolio-content {
    order: 2;
}

.portfolio-item.alternate .portfolio-image {
    order: 1;
}

.portfolio-image {
    flex: 1;
}

.portfolio-image img {
    width: 100%;
    border-radius: 10px;
}

.portfolio-content {
    flex: 1;
}

.portfolio-content h3 {
    color: #667eea;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.portfolio-content p {
    color: #666;
    margin-bottom: 10px;
}

.portfolio-content h4 {
    color: #764ba2;
    margin-top: 15px;
    margin-bottom: 10px;
}

.portfolio-content ul {
    margin-left: 20px;
}

.portfolio-content li {
    color: #666;
    margin-bottom: 8px;
}

.portfolio-stats {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    margin-top: 60px;
    text-align: center;
}

/* Team Page */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.team-member {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.team-member h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.team-member .role {
    color: #667eea;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.team-member .bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.team-member .expertise {
    color: #764ba2;
    font-size: 0.9rem;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.team-culture {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    margin-top: 60px;
}

.team-culture h2 {
    color: #667eea;
    text-align: center;
    margin-bottom: 30px;
}

.team-culture > p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.culture-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.culture-item h4 {
    color: #667eea;
    margin-bottom: 10px;
}

.culture-item p {
    color: #666;
    line-height: 1.6;
}

.join-team {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 10px;
    margin-top: 60px;
    text-align: center;
}

.join-team h2 {
    color: white;
    margin-bottom: 15px;
}

.join-team p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
}

.join-team a {
    color: #ffd700;
}

/* Blog Page */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    color: #667eea;
    font-size: 0.9rem;
    font-weight: bold;
}

.blog-card h3 {
    color: #333;
    font-size: 1.4rem;
    margin: 10px 0;
    line-height: 1.4;
}

.blog-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-card ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.blog-card li {
    color: #666;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.read-more {
    color: #667eea;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #764ba2;
    margin-left: 5px;
}

.newsletter-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 10px;
    margin-top: 60px;
    text-align: center;
}

.newsletter-section h2 {
    color: white;
    margin-bottom: 15px;
}

.newsletter-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 12px 30px;
    background-color: white;
    color: #667eea;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .service-detail {
        grid-template-columns: 1fr;
    }

    .service-detail.alternate {
        grid-template-columns: 1fr;
    }

    .service-detail-text {
        order: auto !important;
    }

    .service-detail-image {
        order: auto !important;
    }

    .portfolio-item {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .portfolio-item.alternate {
        grid-template-columns: 1fr;
    }

    .portfolio-content {
        order: auto !important;
    }

    .portfolio-image {
        order: auto !important;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .hero-about h2, .hero-services h2, .hero-portfolio h2, .hero-team h2, .hero-blog h2 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-form {
        flex-direction: column;
    }
}
