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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background:  #FF0000;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    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;
}

.nav-logo h2 {
    color: #f9f7f7;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    margin-left: 10px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #000507;
}

.nav-cta .cta-button {
    background: #0b25ec;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 8, 11, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a2332 0%, #2a5a6b 50%, #005bf8 100%);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%2300a8ff" stop-opacity="0.1"/><stop offset="100%" stop-color="%2300a8ff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/><circle cx="700" cy="800" r="80" fill="url(%23a)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 50, 0.4);
    z-index: -1;
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #00a8ff;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-cta {
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 165, 0, 0.4);
}

/* Value Proposition Section */
.value-prop {
    padding: 6rem 0;
    background: #f8f9fa;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.content-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.content-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.value-statements {
    margin-top: 2rem;
}

.statement {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00a8ff;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.visual-element, .visual-element-2 {
    height: 400px;
    background: linear-gradient(135deg, #00a8ff, #0078d4);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.visual-element::before, .visual-element-2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

/* Solutions Section */

.solutions {
    padding: 6rem 0;
    background: #1a2332;
    color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 3rem;
    color: #00a8ff;
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.solution-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    padding: 6rem 0;
    background: white;
}

.why-choose .content-text h2 {
    color: #1a2332;
}

.why-list {
    list-style: none;
    margin: 2rem 0;
}

.why-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.why-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00a8ff;
    font-weight: bold;
    font-size: 1.2rem;
}

.emphasis {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #00a8ff, #0078d4);
    color: white;
    border-radius: 8px;
    font-size: 1.2rem;
    text-align: center;
}

/* Expertise Section */
.expertise {
    padding: 6rem 0;
    background: #f8f9fa;
}

.expertise .section-title {
    color: #1a2332;
}

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

.expertise-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.expertise-card .card-icon {
    color: #ff0400;
}

.expertise-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a2332;
}

.expertise-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Industry Impact Section */
.industry-impact {
    padding: 6rem 0;
    background: #1a2332;
    color: white;
    text-align: center;
}

.industry-impact .section-title {
    color: white;
}

.section-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #00a8ff;
    font-weight: 500;
}

.impact-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.impact-statement {
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    padding: 2rem;
    border-radius: 12px;
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #00a8ff, #0078d4);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-button.large {
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button.large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 165, 0, 0.4);
}

/* Footer */
.footer {
    background: #321a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: #ff0000;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

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

.link-group h4 {
    margin-bottom: 1rem;
    color: #ff1500;
}

.link-group a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-grid.reverse {
        grid-template-columns: 1fr;
    }
    
    .content-grid.reverse .content-visual {
        order: -1;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
}


/* Fund Intelligence Section */
.fund-intelligence {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.fund-intelligence .section-title {
    color: #1a2332;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    color: #00a8ff;
    font-weight: 500;
    margin-bottom: 3rem;
}

.fund-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.fund-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #f10b0b;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 2rem;
    color: #00a8ff;
    margin-right: 1rem;
    min-width: 50px;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a2332;
    margin: 0;
}

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

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00a8ff;
    font-weight: bold;
    font-size: 1.1rem;
}

.fund-conclusion {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.fund-conclusion h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 1.5rem;
}

.fund-conclusion p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.conclusion-statement {
    background: linear-gradient(135deg, #00a8ff, #0078d4);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Responsive adjustments for fund intelligence */
@media (max-width: 768px) {
    .fund-features {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-header {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .fund-conclusion h3 {
        font-size: 1.6rem;
    }
    
    .conclusion-statement {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
}


/* Chat Commerce Section */
.chat-commerce {
    padding: 6rem 0;
    background: #1a2332;
    color: white;
}

.chat-commerce .section-title {
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

.chat-commerce .section-subtitle {
    color: #ffa500;
    text-align: center;
    margin-bottom: 3rem;
}

.chat-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.chat-intro .intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.chat-intro .intro-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.chat-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.chat-strengths h3,
.strategic-strengths h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #00a8ff;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-strengths h3 i {
    color: #4caf50;
}

.strategic-strengths h3 i {
    color: #ffa500;
}

.strengths-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.strength-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #4caf50;
}

.strength-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #4caf50;
}

.strength-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.strategy-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.strategy-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #ffa500;
}

.strategy-item i {
    color: #ffa500;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.strategy-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

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

.chat-commerce .conclusion-statement {
    background: linear-gradient(135deg, #ffa500, #ff8c00);
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.5;
}

/* Responsive adjustments for chat commerce */
@media (max-width: 768px) {
    .chat-features {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .strengths-grid {
        grid-template-columns: 1fr;
    }
    
    .chat-commerce .conclusion-statement {
        font-size: 1.1rem;
        padding: 2rem;
    }
}


/* Page-specific styles */
.nav-link.active {
    color: #00a8ff !important;
    font-weight: 600;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a2332 0%, #2a5a6b 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page Styles */
.about-content {
    padding: 6rem 0;
}

.values-section {
    margin-top: 4rem;
    text-align: center;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a2332;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    color: #00a8ff;
    margin-bottom: 1rem;
}
.value-icon {
    font-size: 3rem;
    color: #00a8ff;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.story-section {
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.story-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a2332;
    text-align: center;
}

.story-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Solutions Page Styles */
.solutions-page {
    padding: 6rem 0;
}

.solution-card.large {
    padding: 3rem;
    margin-bottom: 2rem;
}

.solution-details {
    margin-top: 2rem;
}

.solution-details h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.solution-details ul {
    list-style: none;
    padding: 0;
}

.solution-details li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.solution-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00a8ff;
    font-weight: bold;
}

.why-choose-solutions {
    margin-top: 4rem;
    text-align: center;
}

.why-choose-solutions h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a2332;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-item i {
    font-size: 3rem;
    color: #ffa500;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a2332;
}

/* Fund Intelligence Page Styles */
.fund-intelligence-page {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.idiyacore-section {
    margin-top: 4rem;
    text-align: center;
}

.idiyacore-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a2332;
}

.core-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.core-feature {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.core-feature i {
    font-size: 3rem;
    color: #00a8ff;
    margin-bottom: 1rem;
}

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

/* Chat Commerce Page Styles */
.chat-commerce-page {
    padding: 6rem 0;
    background: #1a2332;
    color: white;
}

.chat-applications {
    margin-top: 4rem;
}

.chat-applications h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    text-align: center;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.application-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #ffa500;
}

.app-icon {
    font-size: 3rem;
    color: #ffa500;
    margin-bottom: 1rem;
}

.application-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.future-vision {
    margin-top: 4rem;
}

.future-vision h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
    text-align: center;
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
}

.vision-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.future-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.future-item i {
    color: #ffa500;
    font-size: 1.2rem;
}

/* Expertise Page Styles */
.expertise-page {
    padding: 6rem 0;
}

.expertise-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.expertise-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.expertise-intro p {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.methodology-section {
    margin-top: 6rem;
    text-align: center;
}

.methodology-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a2332;
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: left;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.certifications-section {
    margin-top: 4rem;
    text-align: center;
}

.certifications-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a2332;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.cert-item i {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 1rem;
}

.cert-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

/* Contact Page Styles */
.contact-page {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.method-icon {
    font-size: 1.5rem;
    color: #00a8ff;
    margin-top: 0.2rem;
}

.method-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a2332;
}

.method-info p {
    color: #555;
    margin-bottom: 0.25rem;
}

.response-time h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.response-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.response-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
}

.response-item i {
    color: #00a8ff;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a2332;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1a2332;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00a8ff;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
}

.submit-btn {
    background: linear-gradient(135deg, #00a8ff, #0078d4);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.cta-section {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-secondary {
    background: transparent;
    color: #00a8ff;
    border: 2px solid #00a8ff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: #00a8ff;
    color: white;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .future-features {
        grid-template-columns: 1fr;
    }
    
    .methodology-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button-secondary,
    .cta-button.large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .methodology-steps {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .benefits-grid,
    .applications-grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }
}

.team-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}


.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Force 2 per row */
  gap: 40px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr; /* Stack on mobile */
  }
}

.team-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #222;
}

.team-card h3 p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 400;
  color: #777;
}

blockquote {
  background: #f9f9f9;
  border-left: 5px solid #ccc;
  padding: 15px 20px;
  margin: 20px 0;
  font-style: italic;
  font-size: 0.95rem;
  color: #444;
}

blockquote p {
  margin-bottom: 0.7rem;
  text-align: justify;
}

blockquote span {
  display: block;
  margin-top: 5px;
  font-size: 0.85rem;
  color: #999;
}

/*Hamburger Button*/
.hamburger {
  display:none;
  position: absolute;
  top: 15px;
  right: 20px;
  background: #ee0606;
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  z-index: 1000;
}

/* Sidebar */
.sidebar {
    width: 250px;
    height: 100vh;
    background: #FF0000;
    position: fixed;
    top: 0;
    right: -250px; /* Hidden by default */
    transition: right 0.3s ease;
    padding-top: 60px;
}

.sidebar.active {
    right: 0; /* Slide in when active */
}

.sidebar a {
    display: block;
    color: #000000;
    padding: 15px 20px;
    text-decoration: none;
    transition: background 0.2s;
}

.sidebar a:hover {
    background: #555;
}

/* Main Content */
.content {
    margin: 20px;
    padding: 20px;
}

/* Responsive Design */
/* Mobile-only styling */
@media (max-width: 600px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    display: none;
  }

  .sidebar {
    width: 200px;
    right: -200px;
  }

  .sidebar.active {
    right: 0;
  }
}