/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navigation Bar */
.navbar {
    background: #0d1b2a;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-logo i {
    margin-right: 0.5rem;
    color: #4361ee;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    margin-left: 1.5rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #4361ee;
}

.nav-btn {
    background: #4361ee;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.nav-btn:hover {
    background: #3a56d4;
    color: white !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(13, 27, 42, 0.8), rgba(13, 27, 42, 0.8)),
    url('https://images.unsplash.com/photo-1563089145-599997674d42?auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 8rem 0 5rem;
    margin-top: 60px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.btn-primary {
    display: inline-block;
    background: #4361ee;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #3a56d4;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0d1b2a;
}

/* Tools Section */
.tools {
    padding: 5rem 0;
    background: #f8f9fa;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.tool-card:hover {
    transform: translateY(-5px);
}

.tool-card i {
    font-size: 3rem;
    color: #4361ee;
    margin-bottom: 1rem;
}

.tool-card h3 {
    margin-bottom: 1.5rem;
    color: #0d1b2a;
}

.tool-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tool-links a {
    display: block;
    padding: 0.75rem;
    background: #f1f5f9;
    border-radius: 5px;
    color: #4361ee;
    text-decoration: none;
    transition: background 0.3s;
}

.tool-links a:hover {
    background: #4361ee;
    color: white;
}

/* Services Section */
.services {
    background: #f1f5f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 3rem;
    color: #4361ee;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #0d1b2a;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3,
.contact-form h3 {
    margin-bottom: 1.5rem;
    color: #0d1b2a;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 0.5rem;
    color: #4361ee;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: #0d1b2a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #4361ee;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: #4361ee;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* AI Chatbots Section */
.ai-chatbots {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.ai-chatbots h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #0d1b2a;
    font-size: 2.5rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.chatbots-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr 0.5fr;
    background: linear-gradient(135deg, #4361ee, #3a56d4);
    color: white;
    font-weight: 700;
    padding: 1.5rem;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr 0.5fr;
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.table-row:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    display: flex;
    align-items: center;
    padding: 0.5rem;
}

.btn-access {
    background: linear-gradient(135deg, #4361ee, #3a56d4);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
}

.btn-access:hover {
    background: linear-gradient(135deg, #3a56d4, #2e4bc0);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

/* Responsive Design for Chatbots Table */
@media (max-width: 768px) {
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .table-header {
        display: none;
    }
    
    .table-cell {
        padding: 0.5rem 0;
    }
    
    .table-cell:before {
        content: attr(data-label);
        font-weight: 700;
        color: #4361ee;
        margin-right: 0.5rem;
        min-width: 120px;
        display: inline-block;
    }
    
    .table-row {
        padding: 1.5rem;
        border: 1px solid #e9ecef;
        border-radius: 8px;
        margin-bottom: 1rem;
        background: white;
    }
    
    .chatbots-table {
        background: transparent;
        box-shadow: none;
    }
}
/* AI Tools Section */
.ai-tools {
    padding: 5rem 0;
    background: white;
}

.ai-tools h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #0d1b2a;
    font-size: 2.5rem;
    font-weight: 700;
}

.ai-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ai-tool-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ai-tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4361ee, #3a56d4);
}

.ai-tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.ai-tool-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.ai-tool-header i {
    font-size: 2rem;
    color: #4361ee;
    background: linear-gradient(135deg, #4361ee, #3a56d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-tool-header h3 {
    color: #0d1b2a;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.ai-tool-content {
    color: #666;
    line-height: 1.6;
}

.ai-tool-content p {
    margin-bottom: 1rem;
}

.ai-tool-content strong {
    color: #0d1b2a;
}

.ai-tool-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.ai-tool-links .btn-access {
    background: linear-gradient(135deg, #4361ee, #3a56d4);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.ai-tool-links .btn-access:hover {
    background: linear-gradient(135deg, #3a56d4, #2e4bc0);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

/* Responsive Design for AI Tools */
@media (max-width: 768px) {
    .ai-tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ai-tool-card {
        padding: 1.5rem;
    }
    
    .ai-tool-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .ai-tool-links {
        justify-content: center;
    }
}