/* Color Variables */
:root {
    --primary-color: #2E8B57;
    --primary-light: #90EE90;
    --primary-dark: #006400;
    --secondary-color: #87CEEB;
    --secondary-light: #E0F6FF;
    --secondary-dark: #4682B4;
    --accent-color: #FFD700;
    --accent-light: #FFFACD;
    --accent-dark: #DAA520;
    --success-color: #32CD32;
    --success-light: #98FB98;
    --success-dark: #228B22;
    --info-color: #20B2AA;
    --info-light: #AFEEEE;
    --info-dark: #008B8B;
}

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header Styles */
.navbar-brand {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-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 1000 1000"><polygon fill="%23ffffff20" points="0,200 300,0 600,100 1000,0 1000,300 700,400 400,300 0,500"/></svg>') no-repeat center;
    background-size: cover;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

#hero-title-1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

#hero-subtitle-1 {
    font-size: 1.5rem;
    color: var(--secondary-dark);
    margin-bottom: 1rem;
}

#hero-desc-1 {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    padding: 12px 24px;
    font-weight: 500;
}

/* Section Styles */
section {
    scroll-margin-top: 80px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-dark);
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    color: var(--primary-color);
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem;
    color: var(--primary-dark);
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
}

/* Service Cards */
.service-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.service-card .card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.service-card .card-text {
    font-size: 0.95rem;
    color: #666;
}

.service-card ul li {
    padding: 0.2rem 0;
    font-size: 0.9rem;
}

.price-tag {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

/* Pricing Cards */
.pricing-card {
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.border-primary {
    border: 2px solid var(--primary-color);
}

.pricing-card .card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.pricing-card .price {
    margin: 1.5rem 0;
}

.pricing-card ul {
    margin: 1.5rem 0;
}

.pricing-card ul li {
    padding: 0.3rem 0;
    font-size: 0.95rem;
}

/* Team Section */
.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.team-member h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 1rem 0 0.3rem;
}

.team-member p {
    font-size: 0.9rem;
    margin: 0;
}

/* Review Cards */
.review-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-card .card-text {
    font-style: italic;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.reviewer h6 {
    font-weight: 600;
    color: var(--primary-dark);
}

/* Case Study Cards */
.case-study-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.case-study-card:hover {
    transform: translateY(-5px);
}

.case-study-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.case-study-card .card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
}

/* Process Steps */
.process-step {
    position: relative;
}

.step-number, .process-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.process-step h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.9rem;
    color: #666;
}

/* Timeline */
.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    padding-right: 2rem;
    margin-right: 50%;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    padding-left: 2rem;
    margin-left: 50%;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    position: relative;
}

.timeline-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

/* Career Cards */
.career-card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.career-card:hover {
    transform: translateY(-5px);
}

.career-card .card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
}

/* Info Cards */
.info-card {
    background: white;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    color: var(--primary-color);
}

.info-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 1rem 0 0.5rem;
}

.info-card p {
    font-size: 0.9rem;
    color: #666;
}

/* Blog Cards */
.blog-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.blog-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.blog-card .card-text {
    font-size: 0.9rem;
    color: #666;
}

/* FAQ Cards */
.faq-card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.faq-card:hover {
    transform: translateY(-3px);
}

.faq-card .card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
}

.faq-card .card-text {
    font-size: 0.9rem;
    color: #666;
}

/* Gallery */
#gallery img {
    transition: transform 0.3s ease;
    cursor: pointer;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info .info-item {
    text-align: center;
}

.contact-info .info-item i {
    color: var(--primary-color);
}

.contact-info .info-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0.5rem 0;
}

.contact-info .info-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Footer */
footer {
    background: #2c3e50;
}

footer h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

footer p {
    font-size: 0.9rem;
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

footer ul li {
    margin-bottom: 0.3rem;
}

footer ul li a {
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: var(--primary-light);
}

/* Breadcrumb */
.breadcrumb-nav {
    border-bottom: 1px solid #eee;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.breadcrumb-item:hover img {
    opacity: 1;
}

/* Additional Page Styles */
.info-item, .tech-item, .assessment-item, .development-phase, .wind-benefit, .wind-service, .project-type, .benefit-item {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.info-item:hover, .tech-item:hover, .assessment-item:hover, .development-phase:hover, .wind-benefit:hover, .wind-service:hover, .project-type:hover, .benefit-item:hover {
    transform: translateY(-3px);
}

.info-item i, .tech-item i, .assessment-item i, .development-phase i, .wind-benefit i, .wind-service i, .project-type i, .benefit-item i {
    color: var(--primary-color);
}

.info-item h5, .tech-item h5, .assessment-item h5, .development-phase h5, .wind-benefit h5, .wind-service h5, .project-type h5, .benefit-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0.8rem 0 0.5rem;
}

.info-item p, .tech-item p, .assessment-item p, .development-phase p, .wind-benefit p, .wind-service p, .project-type p, .benefit-item p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color);
}

.bg-primary {
    background-color: var(--primary-color);
}

/* Responsive Adjustments */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
    }
}

@media (max-width: 768px) {
    #hero-title-1 {
        font-size: 2rem;
    }
    
    #hero-subtitle-1 {
        font-size: 1.2rem;
    }
    
    .hero-buttons .btn {
        padding: 10px 20px;
        margin-bottom: 0.5rem;
    }
    
    .team-member img {
        width: 100px;
        height: 100px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
        padding-left: 3rem;
        margin-left: 0;
        margin-right: 0;
    }
} 

.hero-section h1 {
    padding-top: 175px;
}


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
