/*
    Theme Name: TechFortress
    Description: This Theme is specially designed for TechFortress
    Theme URL: https://www.tech-fortress.com/
    Author: PINE TECH
    Author URI: 
    Version: 0.1
    Date: 17/01/2026
    Copyright: (c) 2025 TechFortress
*/

:root {
    --primary: #0052cc;
    --primary-dark: #003d99;
    --secondary: #00b4d8;
    --accent: #ff6b35;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --gray: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Header Styles */
.top-bar {
    background: var(--dark);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
}

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

.navbar {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 800;
    font-size: 28px;
    color: var(--primary) !important;
}

.navbar-brand i {
    color: var(--accent);
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
}

@media (min-width: 992px) {

    .navbar-nav .current-menu-item>a,
    .navbar-nav .current_page_item>a {
        color: #00b4d8 !important;
        font-weight: 600;
        position: relative;
    }

    .navbar-nav .current-menu-item>a::after,
    .navbar-nav .current_page_item>a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 100%;
        height: 2px;
        background: #00b4d8;
    }

}


.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 82, 204, 0.3);
    color: #fff;
}


.hero-section {
    min-height: 80vh;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(30deg);
    z-index: 1;
}

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


.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons .btn {
    margin-right: 15px;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
}

.banner {
    min-height: 300px;
    display: flex;
    align-items: center;
}

.btn-light-custom {
    background: #fff;
    color: var(--primary);
}

.btn-outline-light-custom {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline-light-custom:hover {
    background: #fff;
    color: var(--primary);
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 10px;
}

.about-section {
    background: #fff;
}


.about-image img {
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

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

.about-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.about-list li i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.2rem;
}

.services-section {
    background: var(--light);
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 82, 204, 0.15);
    border-color: var(--primary);
}

.service-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-card:hover .icon {
    transform: rotateY(180deg);
}

.service-card .icon i {
    font-size: 2rem;
    color: #fff;
}

.service-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    font-size: 14px;
}

/* Process Section */
.process-section {
    background: #fff;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 30px;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50px;
    right: 0;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.process-step:last-child::after {
    display: none;
}

.process-step .step-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.process-step .step-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.process-step h5 {
    font-weight: 600;
    color: var(--dark);
}

/* Pricing Section */
.pricing-section {
    background: var(--light);
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card:hover {
    box-shadow: 0 30px 60px rgba(0, 82, 204, 0.15);
}

.pricing-card .plan-name {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
}

.pricing-card ul {
    list-style: none;
    padding: 30px 0;
    text-align: left;
}

.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.pricing-card ul li i {
    color: var(--primary);
    margin-right: 10px;
}

/* FAQ Section */
.faq-section {
    background: #fff;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-weight: 600;
    color: var(--dark);
    padding: 20px 25px;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
}

.our-clients {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
}


/* Partners Section */
.partners-section {
    padding: 60px 0;
    background: #fff;
}

.partner-logo {
    padding: 20px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo img {
    max-height: 75px;
    width: 100%;
}

/* Contact Section */
.contact-section {
    background: var(--light);
}

.contact-info {
    background: var(--primary);
    color: #fff;
    padding: 50px;
    border-radius: 20px;
    height: 100%;
}

.contact-info h3 {
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info .info-item i {
    font-size: 1.5rem;
    margin-right: 20px;
    color: var(--secondary);
}

.contact-form {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #eee;
    margin-bottom: 20px;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.client-card {
    text-align: center;
    margin-bottom: 30px;
}

.client-card img {
    width: 200px;
    height: 200px;
    padding: 5px;
    border-radius: 5%;
    object-fit: cover;
    margin-bottom: 20px;
    /*border: 5px solid var(--light);*/
    transition: all 0.3s ease;
}

.client-card h5 {
    font-weight: 600;
    color: var(--light);
}

.client-card p {
    color: var(--light);
    font-size: 14px;
}

.client-card .social-links a {
    color: var(--light);
    margin: 0 10px;
    transition: color 0.3s ease;
}

.client-card .social-links a:hover {
    color: var(--accent);
}

.blog-section {
    background: var(--light);
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card .content {
    padding: 25px;
}

.blog-card .date {
    color: var(--primary);
    font-size: 13px;
    font-weight: 500;
}

.blog-card h5 {
    font-weight: 600;
    margin: 15px 0;
    color: var(--dark);
}

.blog-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.blog-card a:hover {
    text-decoration: underline;
}

footer {
    background: var(--dark);
    color: #fff;
    padding: 80px 0 30px;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 12px;
}

footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

footer .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

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

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

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .stats-bar {
        margin-top: 0;
    }

    .pricing-card.featured {
        transform: none;
    }

    .process-step::after {
        display: none;
    }
}

@media (max-width: 991px) {
    .navbar-brand img {
        width: 45px;
    }
}

.whatsapp {
    position: fixed;
    z-index: 1;
    bottom: 85px;
    right: 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    transition: all 0.3s ease;
}

p.whatsapptext {
    margin: 0;
    margin-bottom: 8px;
    text-align: center;
    background-color: #e1ffe9de;
    border-radius: 15px 5px 15px 5px;
    padding: 7px 7px 5px 7px;
    font-weight: bold;
    line-height: 1.2rem;
    font-size: 1rem;
    position: relative;
    word-wrap: break-word;
    max-width: 200px;
    color: #004303;
}

.whatsappclose {
    width: 100%;
    height: 1.7rem;
}

button.whatsappclose-button {
    padding: 0;
    background-color: #ffffff00;
    font-size: 1.45rem;
    cursor: pointer;
    color: #0000006b;
    transition: all 0.3s ease;
}

button.whatsappclose-button:hover {
    color: #000000;
}