/* Color Variables */
:root {
    --primary-color: #6c7ae0;
    --primary-light: #8b96e8;
    --primary-dark: #5a6bc7;
    --secondary-color: #a8e6cf;
    --secondary-light: #c4f0db;
    --secondary-dark: #8cd9b8;
    --accent-color: #ffd93d;
    --accent-light: #ffe066;
    --accent-dark: #e6c235;
    --neutral-color: #f8f9fa;
    --neutral-light: #ffffff;
    --neutral-dark: #e9ecef;
    --text-color: #2c3e50;
    --text-light: #6c757d;
    --text-dark: #212529;
}

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    padding-top: 76px;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 600;
}

.display-4 {
    font-size: 2.5rem;
}

.h4 {
    font-size: 1.25rem;
}

.h5 {
    font-size: 1.1rem;
}

.h6 {
    font-size: 1rem;
}

/* Header */
#header {
    background: var(--neutral-light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--neutral-color) 0%, var(--secondary-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236c7ae0' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 122, 224, 0.3);
}

/* Cards */
.card {
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-img-top {
    border-radius: 12px 12px 0 0;
    height: 200px;
    object-fit: cover;
}

/* Feature Cards */
.feature-card {
    background: var(--neutral-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--secondary-light);
    transform: translateY(-3px);
}

/* Services Section */
#services .card {
    border: 2px solid var(--neutral-dark);
}

#services .card:hover {
    border-color: var(--primary-color);
}

/* Team Section */
.team-member img {
    transition: all 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.1);
}

/* Reviews Section */
.fa-star {
    font-size: 1rem;
}

/* Gallery Section */
#gallery img {
    transition: all 0.3s ease;
    border-radius: 8px;
}

#gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* FAQ Section */
#faq .card {
    border-left: 4px solid var(--primary-color);
}

/* Contact Form */
.form-control {
    border-radius: 6px;
    border: 2px solid var(--neutral-dark);
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(108, 122, 224, 0.25);
}

/* Footer */
#footer {
    background: #1a1a1a;
    color: #ffffff;
}

#footer h5,
#footer h6 {
    color: #ffffff;
    font-weight: 600;
}

#footer p {
    color: #e0e0e0;
    line-height: 1.6;
}

#footer a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: var(--primary-light);
    text-decoration: none;
}

#footer .list-unstyled li {
    margin-bottom: 0.5rem;
}

#footer hr {
    border-color: #404040;
    opacity: 0.7;
}

/* Additional Page Styles */
.breadcrumb-section {
    border-bottom: 1px solid var(--neutral-dark);
}

.feature-item,
.analytics-feature,
.integration-card,
.security-feature,
.industry-card,
.project-feature,
.client-feature,
.enterprise-card {
    transition: all 0.3s ease;
    background: var(--neutral-light);
    border-radius: 8px;
}

.feature-item:hover,
.analytics-feature:hover,
.integration-card:hover,
.security-feature:hover,
.industry-card:hover,
.project-feature:hover,
.client-feature:hover,
.enterprise-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Icon Colors */
.text-primary {
    color: var(--primary-color) !important;
}

.text-success {
    color: var(--secondary-color) !important;
}

.text-warning {
    color: var(--accent-color) !important;
}

.text-danger {
    color: #dc3545 !important;
}

/* Price Plan Special Border */
.border-primary {
    border-color: var(--primary-color) !important;
    border-width: 2px !important;
}

/* Contact Info */
.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Utility Classes */
.bg-light {
    background-color: var(--neutral-color) !important;
}

/* Animation Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Responsive Design Helpers */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .card-img-top {
        height: 180px;
    }
} 

.hero-section h1 {
    padding-top: 175px;
}


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

.instagram-link:hover {
    background: #d62976;
    border-color: #d62976;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
