/* 
   Agenor Software Website Stylesheet
   Modern and Clean Design
*/

/* General Styles */
:root {
    --primary-color: #0077cc; /* Vivid blue */
    --secondary-color: #00aa8d; /* Teal/green */
    --dark-color: #121212; /* Nearly black */
    --darker-color: #080808; /* Pure black for backgrounds */
    --light-color: #e9e9e9; /* Light gray for text */
    --accent-color: #4ecca3; /* Bright green accent */
    --accent-secondary: #00d4ff; /* Bright blue accent */
    --text-color: #e0e0e0; /* Light text for dark background */
    --transition: all 0.3s ease;
    --lighter-color: #f9f5f2; /* Light beige for card backgrounds */
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 110px; /* Account for fixed navbar with top bar */
    background-color: var(--darker-color);
    background-image: radial-gradient(circle at 50% 50%, var(--darker-color) 0%, var(--dark-color) 100%);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--light-color);
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

.btn {
    border-radius: 30px;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.section-header p {
    color: var(--light-color);
    font-size: 1.1rem;
}

section {
    padding: 5rem 0;
}

/* Top Bar */
.top-bar {
    background-color: var(--darker-color);
    color: var(--text-muted);
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 162, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact {
    display: flex;
    gap: 20px;
}

.top-contact a {
    color: var(--text-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.top-contact a:hover {
    color: var(--accent-secondary);
}

.top-social {
    display: flex;
    gap: 15px;
}

.top-social a {
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition);
}

.top-social a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    background-color: var(--dark-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: fixed !important;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999 !important;
}

.navbar.scrolled {
    padding: 0.4rem 0;
    background-color: rgba(0, 0, 0, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    transition: var(--transition);
    filter: brightness(1.2) contrast(1.1);
}

.navbar-light .navbar-nav .nav-link {
    color: var(--light-color) !important;
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    position: relative;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.navbar-light .navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
    box-shadow: 0 0 8px rgba(0, 230, 118, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover:after,
.navbar-light .navbar-nav .nav-link.active:after {
    transform: scaleX(1);
}

.dropdown-menu {
    border: none;
    background-color: rgba(10, 10, 10, 0.95);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    padding: 1rem 0;
    border: 1px solid rgba(0, 162, 255, 0.2);
    backdrop-filter: blur(10px);
    margin-top: 5px;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    transition: var(--transition);
    color: var(--light-color);
}

.dropdown-item:hover {
    background-color: rgba(0, 170, 141, 0.1);
    color: var(--accent-color);
}

.language-toggle {
    font-weight: 600;
    color: var(--accent-secondary) !important;
}

/* Hero Section */
.hero-section {
    background-color: var(--darker-color);
    position: relative;
    color: white;
    padding: 10rem 0 8rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0,10,20,0.95) 0%, rgba(0,20,40,0.9) 100%), url('../img/hero-pattern.svg');
    background-size: cover;
    background-position: center;
    position: relative;
}

@keyframes float {
    0% { transform: translateY(0px); opacity: 0.4; }
    50% { transform: translateY(-15px); opacity: 0.8; }
    100% { transform: translateY(0px); opacity: 0.4; }
}

/* Hakkımızda Sayfası Stilleri */
.about-hero-section {
    background-color: var(--darker-color);
    position: relative;
    color: white;
    padding: 12rem 0 6rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0,10,20,0.95) 0%, rgba(0,20,40,0.9) 100%);
    background-size: cover;
    background-position: center;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><rect fill="none" width="20" height="20"/><rect fill="rgba(0,119,204,0.1)" width="1" height="1" x="1" y="1"/></svg>');
    z-index: 1;
    opacity: 0.3;
}

.about-hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-padding {
    padding: 5rem 0;
}

.about-content-section {
    background-color: var(--darker-color);
    color: var(--text-color);
}

.about-info h2 {
    color: var(--light-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.about-values {
    background-color: rgba(0, 10, 20, 0.4);
    border: 1px solid rgba(0, 119, 204, 0.2);
    border-radius: var(--border-radius);
}

.about-values h3 {
    color: var(--light-color);
    font-weight: 600;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.values-list i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.values-list h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.values-list p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.about-image {
    overflow: hidden;
    border: 1px solid rgba(0, 119, 204, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-image img {
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Timeline Styles */
.timeline-section {
    position: relative;
    padding: 3rem 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    position: absolute;
    background-color: var(--darker-color);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    right: -10px;
    top: 15px;
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content {
    padding: 20px;
    background: rgba(0, 10, 20, 0.4);
    border: 1px solid rgba(0, 119, 204, 0.2);
    border-radius: var(--border-radius);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.timeline-content h4 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

.timeline-content p {
    margin-bottom: 0;
    color: var(--text-color);
}

/* Team Section Styles */
.team-section {
    background-color: var(--dark-color);
    position: relative;
}

/* Özellik Listesi Stilleri */
.feature-card {
    border: 1px solid rgba(0, 119, 204, 0.2);
    background-color: rgba(0, 10, 20, 0.4);
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.feature-card .card-header {
    background: linear-gradient(135deg, #0077cc, #00cc99);
    color: #ffffff;
    padding: 1.25rem 1.5rem;
    border-bottom: none;
    font-weight: 700;
    display: block;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.feature-title {
    margin: 0;
    color: #ffffff !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    width: 100%;
    text-align: center;
}

@media (max-width: 767px) {
    .feature-title {
        font-size: 1.2rem !important;
    }
    
    .feature-card .card-header {
        padding: 1rem;
    }
}

.feature-card .card-body {
    padding: 1.5rem;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 119, 204, 0.1);
}

.feature-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.feature-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 30px;
    margin-right: 1rem;
    text-align: center;
}

.feature-list li span {
    color: var(--text-color);
    font-size: 1rem;
}

/* İletişim Bölümü Metinleri */
.contact-text {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Buton Stilleri */
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), transparent);
}

.team-member {
    background-color: rgba(0, 10, 20, 0.4);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 119, 204, 0.1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 119, 204, 0.3);
}

.member-img {
    position: relative;
    overflow: hidden;
}

.social-links {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 15px 0 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover .social-links {
    bottom: 0;
}

.social-links a {
    color: var(--light-color);
    margin: 0 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.member-info {
    text-align: center;
    padding: 1.5rem;
}

.member-info h4 {
    color: var(--light-color);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.member-info p {
    color: var(--accent-secondary);
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 767px) {
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-dot {
        left: 30px;
        right: auto;
    }
    
    .timeline-item:nth-child(even) .timeline-dot {
        left: 30px;
    }
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 119, 204, 0.2) 0%, transparent 20%),
        radial-gradient(circle at 80% 60%, rgba(0, 170, 141, 0.2) 0%, transparent 20%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><rect fill="rgba(0,119,204,0.05)" width="1" height="1" x="20" y="20"/><rect fill="rgba(0,170,141,0.05)" width="1" height="1" x="40" y="40"/><rect fill="rgba(0,119,204,0.05)" width="1" height="1" x="60" y="60"/><rect fill="rgba(0,170,141,0.05)" width="1" height="1" x="80" y="80"/></svg>');
    z-index: 1;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    z-index: 1;
}

.hero-section:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--darker-color), transparent);
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.hero-image {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--darker-color);
    position: relative;
    z-index: 1;
    color: var(--text-color);
}

.about-image {
    position: relative;
    z-index: 1;
}

.about-image:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 5px solid var(--secondary-color);
    top: 20px;
    left: 20px;
    z-index: -1;
    border-radius: 10px;
}

/* Solutions Section */
.solutions-section {
    padding: 80px 0 100px;
    background-color: #111111;
    margin: 0;
    position: relative;
    overflow: hidden;
    color: var(--light-color);
}

.solution-cards-container {
    display: flex;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    gap: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.solution-cards-container::-webkit-scrollbar {
    display: none;
}

.solution-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    height: 340px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 170, 141, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 20px;
}

.solution-button {
    margin-top: auto;
    padding-top: 15px;
}

.solution-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 170, 141, 0.3);
    background-color: #1c1c1c;
}

.solution-card .btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.solution-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 170, 141, 0.4);
}

.solution-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 119, 204, 0.3), rgba(0, 170, 141, 0.3));
    margin-bottom: 1.5rem;
    color: var(--light-color);
    font-size: 1.8rem;
    border: 1px solid rgba(0, 170, 141, 0.4);
}

.solution-card:hover .solution-icon {
    background: linear-gradient(135deg, rgba(0, 119, 204, 0.6), rgba(0, 170, 141, 0.6));
    color: white;
    transform: scale(1.05);
}

.solution-card h3 {
    margin: 15px 0;
    font-size: 1.5rem;
    color: var(--light-color);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Partners Section */
.partners-section {
    background-color: var(--darker-color);
    border-bottom: 1px solid rgba(0, 170, 141, 0.2);
}

.partners-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.partner-logo {
    padding: 1rem;
    background-color: var(--dark-color);
    border: 1px solid rgba(0, 170, 141, 0.2);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 119, 204, 0.1);
    transition: var(--transition);
}

.partner-logo:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-color: var(--dark-color);
    color: var(--text-color);
}

.contact-form {
    background-color: var(--dark-color);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 170, 141, 0.2);
    box-shadow: 0 10px 30px rgba(0, 119, 204, 0.1);
}

.form-control {
    background-color: rgba(18, 18, 18, 0.5);
    color: var(--light-color);
    border: 1px solid rgba(0, 170, 141, 0.2);
}

.form-control:focus {
    background-color: rgba(18, 18, 18, 0.8);
    border-color: var(--primary-color);
    color: var(--light-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 119, 204, 0.25);
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
    color: var(--light-color);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    margin-top: 0.5rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    border-radius: 30px;
    padding: 0.8rem 1.2rem;
    border: 1px solid rgba(0, 170, 141, 0.2);
    margin-bottom: 1rem;
    height: auto;
    background-color: rgba(18, 18, 18, 0.5);
    color: var(--light-color);
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* Navbar */
.navbar-toggler {
    border: 1px solid rgba(0, 170, 141, 0.5);
    padding: 0.25rem;
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Technologies Section */
.technologies-section {
    background-color: var(--darker-color);
    padding: 5rem 0;
    border-top: 1px solid rgba(0, 162, 255, 0.1);
    border-bottom: 1px solid rgba(0, 162, 255, 0.1);
}

.tech-header {
    margin-bottom: 3rem;
}

.tech-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.tech-divider {
    height: 3px;
    width: 80px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin-bottom: 2rem;
}

.tech-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.tech-description .highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.tech-icons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.tech-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 10px;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.5), rgba(10, 10, 10, 0.8));
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tech-icon:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 162, 255, 0.15);
}

.tech-icon i {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.tech-icon span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--dark-color);
    padding: 5rem 0;
}

.testimonials-slider {
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.3), rgba(15, 15, 15, 0.5));
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.testimonial-company {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light-color);
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-color);
}

.testimonial-rating span {
    font-weight: 600;
}

.testimonial-rating .stars {
    display: flex;
    color: #ff5a5f;
}

.review-count {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.7), rgba(20, 20, 20, 0.9));
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 162, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 162, 255, 0.12);
}

.testimonial-quote {
    flex: 1;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
}

.testimonial-author {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--accent-secondary);
}

.testimonial-verified {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-verified i {
    color: var(--accent-color);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--primary-color);
}

@media (max-width: 992px) {
    .tech-icons-container {
        gap: 1rem;
    }
    
    .tech-icon {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
}

/* Footer */
.footer {
    background-color: var(--darker-color);
    color: white;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 170, 141, 0.2);
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer h5 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer h5:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons {
    margin-top: 1.5rem;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

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

/* Solution Pages */
.solution-header {
    background: linear-gradient(to right, var(--bs-primary), var(--bs-success));
    padding: 120px 0 80px;
    color: #fff;
    position: relative;
}

.solution-detail-header {
    background: linear-gradient(45deg, #000, #121212);
    border-bottom: 4px solid var(--bs-primary);
    padding: 130px 0 60px;
}

.solution-content {
    padding: 80px 0;
    background-color: #121212;
    color: #f8f9fa;
}

.solution-description {
    background-color: #000;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.1);
    border-left: 4px solid var(--bs-primary);
}

.app-section {
    margin-bottom: 40px;
    color: #f8f9fa;
}

.app-section h2, .app-section h3 {
    color: var(--bs-primary);
    margin-bottom: 20px;
}

.app-section p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.app-section ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.app-section ul li {
    margin-bottom: 10px;
    position: relative;
}

.app-section ul li:before {
    content: "•";
    color: var(--bs-success);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.solution-features {
    background-color: #151515;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 4px solid var(--bs-success);
}

.solution-features h3 {
    color: var(--bs-success);
    margin-bottom: 20px;
}

.solution-sidebar {
    background-color: #151515;
    padding: 25px;
    border-radius: 10px;
    position: sticky;
    top: 100px;
}

.solution-logo {
    width: 100px;
    height: 100px;
    background-color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.solution-logo i {
    font-size: 3rem;
    color: var(--primary-color);
}

.solution-content {
    padding: 5rem 0;
}

.solution-feature {
    margin-bottom: 2rem;
}

.solution-feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 6rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-image:after {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 4rem 0;
        text-align: center;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .section-header {
        text-align: center;
    }
    
    .section-header h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-section {
        text-align: center;
    }
    
    .about-image {
        margin-top: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer h5:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeIn {
    animation: fadeIn 1s ease forwards;
}

