﻿/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: 'Inter', sans-serif;
    color: #2d3748;
    background-color: #f7fafc;
}

a {
    color: #2b6cb0;
    text-decoration: none;
    transition: color 0.3s ease;
}

    a:hover {
        color: #2c5282;
    }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 20px;
    bottom: 20px;
    z-index: 99999;
    background: #2b6cb0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .back-to-top i {
        font-size: 24px;
        color: #fff;
        line-height: 48px;
    }

    .back-to-top:hover {
        background: #2c5282;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 90px; /* Taller header */
    background: linear-gradient(135deg, #2b6cb0 0%, #2c5282 100%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
}

    #header.header-scrolled {
        height: 96px; /* shrink slightly on scroll */
        background: linear-gradient(135deg, #2b6cb0 0%, #2c5282 100%);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

.sticky-logo {
    display: flex;
    align-items: center;
    margin-right: 180px;
}

.header-logo {
    height: 95px; /* 🚀 Much larger logo */
    width: auto;
    display: block;
    margin-right: 180px;
}

/* Adjust navbar to align with bigger logo */
.navbar ul > li > a {
    padding: 20px 18px; /* more vertical padding so text aligns with logo */
    font-size: 18px; /* slightly bigger text to balance */
}

/*--------------------------------------------------------------
# Responsive Logo
--------------------------------------------------------------*/

/* Large tablets / small laptops */
@media (max-width: 1200px) {
    #header {
        height: 100px;
    }

    .header-logo {
        width: 450px;
        object-fit: cover;
        height: 300px;
    }

    .navbar ul > li > a {
        padding: 16px 16px;
        font-size: 17px;
    }
}

/* Tablets */
@media (max-width: 991px) {
    #header {
        height: 88px;
    }

    .header-logo {
        height: 70px;
        margin-right: 14px;
    }

    .navbar ul > li > a {
        padding: 14px 14px;
        font-size: 16px;
    }
}

/* Phones */
@media (max-width: 575px) {
    #header {
        height: 76px;
    }

    .header-logo {
        height: 60px;
        margin-right: 12px;
    }

    .navbar ul > li > a {
        padding: 12px 12px;
        font-size: 15px;
    }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        padding: 10px 20px;
        font-size: 16px;
        font-weight: 500;
        color: #ffffff; /* Changed to white for better contrast */
        transition: all 0.3s ease;
    }

        .navbar a:hover,
        .navbar .active,
        .navbar li:hover > a {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.2); /* Semi-transparent white background */
            border-radius: 4px;
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 0;
        top: calc(100% + 10px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        border-radius: 4px;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 14px;
            color: #2d3748;
        }

            .navbar .dropdown ul a:hover,
            .navbar .dropdown ul .active:hover,
            .navbar .dropdown ul li:hover > a {
                color: #2b6cb0;
                background: #edf2f7;
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        visibility: visible;
        top: 100%;
    }

.mobile-nav-toggle {
    color: #ffffff; /* Changed to white for better contrast */
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }

    .navbar-mobile {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.9);
        transition: 0.3s;
    }

        .navbar-mobile ul {
            display: block;
            position: absolute;
            top: 55px;
            right: 15px;
            bottom: 15px;
            left: 15px;
            padding: 10px 0;
            background: #fff;
            border-radius: 8px;
        }

        .navbar-mobile a,
        .navbar-mobile a:focus {
            padding: 10px 20px;
            font-size: 16px;
            color: #2d3748;
        }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 90vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2b6cb0 0%, #2c5282 100%);
}

    #hero::after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        width: 50%;
        height: 100%;
        background: url("../img/TechageFrontOffice.png") center center no-repeat;
        background-size: cover;
        opacity: 0.2;
    }

    #hero .carousel-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: left;
        max-width: 600px;
        margin-left: 5%;
    }

    #hero h2 {
        color: #fff;
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    #hero p {
        color: #edf2f7;
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    #hero .btn-get-started {
        background: #ffffff;
        color: #2b6cb0;
        padding: 12px 32px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s ease;
    }

        #hero .btn-get-started:hover {
            background: #2c5282;
            color: #fff;
        }

    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }

    #hero .carousel-control-next-icon,
    #hero .carousel-control-prev-icon {
        font-size: 32px;
        color: #fff;
    }

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 80px 0;
}

.section-bg {
    background-color: #f7fafc;
}

.section-title {
    text-align: center;
    padding-bottom: 40px;
}

    .section-title h2 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .section-title p {
        font-size: 16px;
        color: #4a5568;
    }

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .services .icon-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

.services .icon {
    width: 64px;
    height: 64px;
    background: #edf2f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .services .icon i {
        font-size: 28px;
        color: #2b6cb0;
    }

.services .title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.services .description {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .icon-box {
    margin-bottom: 30px;
}

.why-us .icon {
    width: 56px;
    height: 56px;
    background: #edf2f7;
    border-radius: 8px;
}

    .why-us .icon i {
        font-size: 24px;
        color: #2b6cb0;
    }

.why-us .icon-box:hover .icon {
    background: #2b6cb0;
}

    .why-us .icon-box:hover .icon i {
        color: #fff;
    }

.why-us .title {
    font-size: 20px;
    margin-left: 80px;
}

.why-us .description {
    margin-left: 80px;
    font-size: 15px;
    color: #4a5568;
}

/* Modern Technologies Section Styles */
.technologies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.tech-item {
    display: flex;
    align-items: center;
    background: #f1f7ff;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
}

    .tech-item i {
        font-size: 20px;
        color: #2b6cb0;
        margin-right: 10px;
    }

/* Methodology Features */
.methodology-features {
    margin-top: 15px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

    .feature-item i {
        font-size: 24px;
        color: #2b6cb0;
        margin-right: 15px;
        margin-top: 5px;
    }

    .feature-item h5 {
        margin-bottom: 5px;
        font-size: 16px;
    }

    .feature-item p {
        font-size: 14px;
        color: #4a5568;
        margin: 0;
    }

/* Feature Cards */
.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: #edf2f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .feature-icon i {
        font-size: 32px;
        color: #2b6cb0;
    }

.feature-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    color: #4a5568;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .technologies-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

        .feature-item i {
            margin-right: 0;
            margin-bottom: 10px;
        }
}



/*--------------------------------------------------------------
        # Cloud Technology Visualization
        --------------------------------------------------------------*/
.cloud-tech-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748);
    color: #e2e8f0;
}

.cloud-visualization {
    position: relative;
    height: 500px;
    margin: 40px 0;
    overflow: hidden;
}

.cloud {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    height: 180px;
    background: linear-gradient(145deg, #4a5568, #718096);
    border-radius: 100px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

    .cloud:before {
        content: '';
        position: absolute;
        top: -50px;
        left: 50px;
        width: 100px;
        height: 100px;
        background: inherit;
        border-radius: 50%;
        box-shadow: 120px -30px 0 30px inherit, 220px 10px 0 40px inherit;
    }

.server {
    width: 80px;
    height: 120px;
    background: linear-gradient(to bottom, #2b6cb0, #2c5282);
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.server-lights {
    position: absolute;
    bottom: 15px;
    display: flex;
    gap: 5px;
}

.light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #48bb78;
    animation: pulse 2s infinite;
}

    .light:nth-child(2) {
        background: #ed8936;
        animation-delay: 0.5s;
    }

    .light:nth-child(3) {
        background: #e53e3e;
        animation-delay: 1s;
    }

/* Devices */
.devices {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    z-index: 20;
}

.device {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.laptop {
    width: 160px;
    height: 120px;
    background: #2d3748;
    border-radius: 10px 10px 0 0;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.laptop-screen {
    width: 140px;
    height: 90px;
    background: linear-gradient(45deg, #2b6cb0, #4299e1);
    border-radius: 5px;
    position: absolute;
    top: 10px;
    left: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 12px;
    text-align: center;
    padding: 10px;
}

.laptop-base {
    width: 180px;
    height: 10px;
    background: #4a5568;
    border-radius: 0 0 5px 5px;
    margin-top: -5px;
}

.tablet {
    width: 100px;
    height: 130px;
    background: #2d3748;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.tablet-screen {
    width: 90px;
    height: 120px;
    background: linear-gradient(45deg, #2b6cb0, #4299e1);
    border-radius: 8px;
    position: absolute;
    top: 5px;
    left: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 10px;
    text-align: center;
    padding: 10px;
}

.phone {
    width: 70px;
    height: 130px;
    background: #2d3748;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 60px;
    height: 120px;
    background: linear-gradient(45deg, #2b6cb0, #4299e1);
    border-radius: 8px;
    position: absolute;
    top: 5px;
    left: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 9px;
    text-align: center;
    padding: 10px;
}

/* Data connections */
.connection {
    position: absolute;
    background: rgba(66, 153, 225, 0.6);
    z-index: 5;
}

.connection-1 {
    width: 4px;
    height: 150px;
    left: 30%;
    top: 230px;
}

.connection-2 {
    width: 4px;
    height: 150px;
    left: 50%;
    top: 230px;
}

.connection-3 {
    width: 4px;
    height: 150px;
    left: 70%;
    top: 230px;
}

.data-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #4299e1;
    border-radius: 50%;
    z-index: 15;
    animation: float 3s infinite ease-in-out;
}

.node-1 {
    top: 240px;
    left: 29.5%;
    animation-delay: 0s;
}

.node-2 {
    top: 260px;
    left: 49.5%;
    animation-delay: 0.4s;
}

.node-3 {
    top: 250px;
    left: 69.5%;
    animation-delay: 0.8s;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.feature {
    background: rgba(45, 55, 72, 0.7);
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

    .feature h3 {
        color: #63b3ed;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }

        .feature h3 i {
            margin-right: 10px;
        }

    .feature p {
        color: #a0aec0;
        line-height: 1.5;
    }




/*--------------------------------------------------------------
# About Hero Section
--------------------------------------------------------------*/
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #2b6cb0 0%, #2c5282 100%);
    color: #fff;
}

    .about-hero h1 {
        font-size: 2.8rem;
        font-weight: 800;
        margin-bottom: 1rem;
    }

    .about-hero .lead {
        font-size: 1.25rem;
        font-weight: 400;
        margin-bottom: 0;
    }

    .about-hero .breadcrumb {
        background: transparent;
        padding: 0;
    }

    .about-hero .breadcrumb-item a {
        color: rgba(255, 255, 255, 0.8);
    }

    .about-hero .breadcrumb-item.active {
        color: #fff;
    }

    .about-hero .breadcrumb-item + .breadcrumb-item::before {
        color: rgba(255, 255, 255, 0.6);
    }

/*--------------------------------------------------------------
# About Content Section
--------------------------------------------------------------*/
.about-content {
    padding: 80px 0;
}

.highlight-box {
    border-left: 4px solid #2b6cb0;
}

/*--------------------------------------------------------------
# Industries Section
--------------------------------------------------------------*/
.industries-section {
    padding: 80px 0;
}

.industry-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .industry-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    }

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.stat-box {
    transition: transform 0.3s ease;
}

    .stat-box:hover {
        transform: translateY(-10px);
    }

.stat-icon {
    color: #2b6cb0;
}

.stat-counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5282;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features-section {
    padding: 80px 0;
}

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

    .section-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #2c5282;
    }

    .section-header p {
        font-size: 1.1rem;
        color: #6c757d;
    }

.nav-pills .nav-link {
    padding: 0.8rem 1.5rem;
    font-weight: 500;
    color: #495057;
    border-radius: 50px;
    margin: 0 0.5rem;
}

    .nav-pills .nav-link.active,
    .nav-pills .show > .nav-link {
        background-color: #2b6cb0;
        color: #fff;
    }

.feature-item {
    transition: transform 0.3s ease;
    height: 100%;
}

    .feature-item:hover {
        transform: translateY(-5px);
    }

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta-section {
    padding: 60px 0;
}

    .cta-section h2 {
        font-size: 2.2rem;
        font-weight: 700;
    }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #1a202c;
    padding: 60px 0 30px;
    color: #e2e8f0;
}

.footer-top {
    padding-bottom: 30px;
}

.footer-info h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

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

.footer-links li {
    padding: 5px 0;
}

.footer-links a {
    color: #a0aec0;
    transition: color 0.3s;
}

    .footer-links a:hover {
        color: #2b6cb0;
    }

.footer-contact p {
    margin-bottom: 0.5rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #2d3748;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #fff;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s;
}

    .social-links a:hover {
        background: #2b6cb0;
        color: #fff;
    }

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    font-size: 0.9rem;
}

.credits {
    text-align: center;
    font-size: 0.9rem;
    color: #a0aec0;
}

    .credits a {
        color: #2b6cb0;
    }

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 992px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .stats-section .stat-box {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
        text-align: center;
    }

        .about-hero .breadcrumb {
            justify-content: center !important;
            margin-top: 1rem;
        }

    .about-content,
    .industries-section,
    .stats-section,
    .features-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .nav-pills .nav-link {
        margin-bottom: 10px;
    }

    .cta-section {
        text-align: center;
    }

        .cta-section .btn {
            margin-top: 1rem;
        }
}

@media (max-width: 576px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }

    .stat-counter {
        font-size: 2rem;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #1a202c;
    padding: 60px 0 30px;
    color: #e2e8f0;
}

    #footer .footer-top {
        background: none;
        border: none;
        padding: 0 0 30px;
    }

        #footer .footer-top h4 {
            font-size: 20px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 20px;
        }

        #footer .footer-top .footer-links ul a {
            color: #e2e8f0;
        }

            #footer .footer-top .footer-links ul a:hover {
                color: #2b6cb0;
            }

        #footer .footer-top .social-links a {
            background: #2d3748;
        }

            #footer .footer-top .social-links a:hover {
                background: #2b6cb0;
            }

    #footer .copyright {
        font-size: 14px;
        color: #e2e8f0;
    }

    #footer .credits {
        font-size: 13px;
        color: #a0aec0;
    }
