/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Color Palette - 5 main colors with light/dark shades */
    --primary-green: #3b6a28;
    --primary-green-light: #4d9b49;
    --primary-green-dark: #1c361b;
    
    --accent-teal: #1e696c;
    --accent-teal-light: #3eaab0;
    --accent-teal-dark: #084441;
    
    --earth-brown: #8e470d;
    --earth-brown-light: #b27b26;
    --earth-brown-dark: #5b3b10;
    
    --sky-blue: #447ed8;
    --sky-blue-light: #7db3f9;
    --sky-blue-dark: #3a5f9c;
    
    --sunset-orange: #fb9955;
    --sunset-orange-light: #fc8965;
    --sunset-orange-dark: #e26853;
    
    /* Additional Colors */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #777a7c;
    --dark-gray: #4b5057;
    --black: #000000;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
    --gradient-secondary: linear-gradient(135deg, var(--sky-blue), var(--primary-green-light));
    --gradient-accent: linear-gradient(135deg, var(--sunset-orange), var(--earth-brown));
}

/* ===== 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: var(--dark-gray);
    font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-green-dark);
}

h1 {
    font-size: 2.63rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.54rem;
    color: var(--accent-teal);
}

h4 {
    font-size: 1.29rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* ===== NAVBAR ===== */
.navbar-brand {
    font-size: 1.64rem;
    font-weight: 700;
    color: var(--primary-green);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-green);
}

/* ===== BREADCRUMB ===== */
.breadcrumb-nav {
    padding: 0.5rem 0;
}

.breadcrumb-img {
    height: 24px;
    width: auto;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: var(--gradient-primary);
    color: var(--white);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../CYB_images/hero-bg.webp') center/cover no-repeat;
    opacity: 0.2;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-top: 178px;
}

.hero-section h2 {
    color: var(--accent-teal-light);
    font-size: 1.63rem;
    margin-bottom: 1.58rem;
}

.hero-section p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* ===== FEATURE CARDS ===== */
.feature-card, .service-card, .pricing-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 9px 17px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover, .service-card:hover, .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ===== FEATURE ITEMS ===== */
.feature-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-6px);
}

.feature-icon, .solution-icon, .standard-icon, .partner-icon, .cert-icon, .education-icon, .info-icon, .contact-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.sustainability-icon, .tech-icon {
    font-size: 2.58rem;
    color: var(--accent-teal);
    margin-bottom: 1rem;
}

/* ===== SERVICE CARDS ===== */
.service-card img {
    border-radius: 8px;
    margin-bottom: 1rem;
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-card ul li {
    padding: 0.25rem 0;
    color: var(--medium-gray);
}

.service-card ul li::before {
    content: '✓';
    color: var(--primary-green);
    margin-right: 0.5rem;
}

.price {
    font-size: 1.54rem;
    font-weight: 700;
    color: var(--accent-teal);
    text-align: center;
    margin-top: 1rem;
}

/* ===== PRICING CARDS ===== */
.pricing-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
    border: 7px solid var(--primary-green);
}

.pricing-card.featured h4,
.pricing-card.featured .price {
    color: var(--white);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.pricing-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-card ul li::before {
    content: '✓';
    color: var(--primary-green);
    margin-right: 0.5rem;
    font-weight: bold;
}

.pricing-card.featured ul li::before {
    color: var(--white);
}

/* ===== TEAM SECTION ===== */
.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-member h5 {
    color: var(--primary-green);
    margin-bottom: 0.75rem;
}

.team-member p {
    color: var(--medium-gray);
    font-size: 0.99rem;
}

/* ===== REVIEW CARDS ===== */
.review-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
    margin-bottom: 2rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.review-card h5 {
    color: var(--accent-teal);
    font-size: 1rem;
}

/* ===== CASE STUDY CARDS ===== */
.case-study-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
}

.case-study-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-study-card h4 {
    padding: 1rem;
    margin-bottom: 0.56rem;
}

.case-study-card p {
    padding: 0 1rem 1rem;
    color: var(--medium-gray);
}

/* ===== PROCESS STEPS ===== */
.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.59rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h4 {
    color: var(--primary-green);
}

/* ===== TIMELINE ===== */
.timeline-item {
    text-align: center;
}

.timeline-year {
    background: var(--accent-teal);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
}

.timeline-item h4 {
    color: var(--primary-green);
}

/* ===== CAREER ITEMS ===== */
.career-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.career-item h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.career-item span {
    background: var(--accent-teal);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 1.02rem;
}

/* ===== INFO CARDS ===== */
.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
}

/* ===== BLOG CARDS ===== */
.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card h4 {
    padding: 1rem 1rem 0.5rem;
    color: var(--primary-green);
}

.blog-card p {
    padding: 0 1rem;
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.blog-card a {
    color: var(--accent-teal);
    text-decoration: none;
    font-weight: 500;
    padding: 0 1rem 1rem;
    display: block;
}

.blog-card a:hover {
    color: var(--accent-teal-dark);
}

/* ===== FAQ ACCORDION ===== */
.accordion-button {
    background: var(--light-gray);
    color: var(--primary-green);
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-green);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(56, 104, 42, 0.25);
}

/* ===== GALLERY ===== */
.gallery img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* ===== CONTACT FORM ===== */
.form-control {
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(29, 82, 28, 0.25);
}

.form-control.is-invalid {
    border-color: #c7405c;
    box-shadow: 0 0 0 0.2rem rgba(212, 35, 64, 0.25);
}

.form-control.is-valid {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(48, 103, 35, 0.25);
}

.invalid-feedback {
    display: block;
    color: #d0294d;
    font-size: 0.95rem;
    margin-top: 0.36rem;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--gradient-secondary);
}

.btn-primary:disabled {
    opacity: 0.6;
    transform: none;
    cursor: not-allowed;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark-gray);
}

footer h5 {
    color: var(--white);
    margin-bottom: 1rem;
}

footer p, footer li {
    color: var(--medium-gray);
    margin-bottom: 0.69rem;
}

footer a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-green-light);
}

/* ===== ADDITIONAL PAGE STYLES ===== */
.solution-card, .standard-card, .project-card, .metric-card, .goal-card,
.sustainability-card, .tech-card, .partner-card, .cert-card, .education-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
    text-align: center;
}

.solution-card:hover, .standard-card:hover, .project-card:hover,
.sustainability-card:hover, .tech-card:hover, .partner-card:hover,
.cert-card:hover, .education-card:hover {
    transform: translateY(-3px);
}

.project-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.metric-number, .goal-year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-teal);
    display: block;
    margin-bottom: 1rem;
}

.goal-year {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* ===== SPACE PAGE ===== */
#space {
    background: var(--gradient-primary);
    color: var(--white);
    min-height: 100vh;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    padding-top: 175px;
}
    
    .hero-section h2 {
        font-size: 1.31rem;
    }
    
    .team-member img {
        width: 100px;
        height: 100px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.32rem;
    }
}

/* ===== UTILITIES ===== */
.text-primary {
    color: var(--primary-green);
}

.text-accent {
    color: var(--accent-teal);
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-secondary {
    background: var(--gradient-secondary);
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
