.dark-color-background-ta{
    background: #0A2A4A;
}

.dark-color-ta{
    color: #312d2a;
}

.header-logo-size{
    height: 47px;
}

@media (max-width: 768px) {
    .header-logo-size{
        height: 34px;
    }
}

@media (min-width: 1200px){
    .home-slider {
        max-width: none !important;
    }
}

.nav-top-bg-color{
    background: #F4F8FB;
}

.font-unbounded{
    font-family: Unbounded, sans-serif !important;
}




/* home page */
/* introduction section */

.hero-section {
    background: linear-gradient(135deg, #F4F8FB 0%, #A3D4FF 100%);
    border-bottom: 1px solid #e5e5e5;
}

.premium-badge {
    background: #1A73E8;
    color: #fff;
    padding: 13px 55px;
    font-size: 14px;
    border-radius: 50px;
}

.hero-title {
    font-size: 2.2rem;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.05rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons .btn {
    padding: 12px 28px;
    font-size: 1rem;
    border-radius: 10px;
}

.hero-img {
    max-width: 480px;
    width: 100%;
    filter: drop-shadow(0px 8px 25px rgba(0,0,0,0.15));
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
    .hero-img {
        max-width: 300px;
    }
}

@media (max-width: 991px) {
    .hero-subtitle {
        max-width: 100%;
    }
    .hero-img {
        max-width: 380px;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-img {
        max-width: 520px;
    }
}





/* our services */

.services-section {
    background: #F4F8FB;
    padding-top: 70px;
    padding-bottom: 70px;
}

.section-badge {
    background: #1A73E8;
    color: #fff;
    padding: 13px 65px;
    border-radius: 50px;
    font-size: 14px;
}

.services-title {
    font-size: 2.3rem;
    color: #0A2A4A;
}

.service-subtitle {
    max-width: 650px;
    margin: auto;
    font-size: 1rem;
}

.service-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 28px;
    transition: all 0.3s ease;
    border: 1px solid #e3e6ea;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.08);
    border-color: #1A73E8;
}

.service-icon i {
    font-size: 36px;
    color: #1A73E8;
    background: #A3D4FF;
    padding: 18px;
    border-radius: 18px;
}

@media (max-width: 575px) {

    .services-title {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-icon i {
        font-size: 30px;
        padding: 15px;
    }

    .service-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 991px) {

    .services-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 28px;
    }
}

@media (min-width: 1200px) {
    .services-title {
        font-size: 2.6rem;
    }
}





/* Industry Expertise */

.industry-section {
    /* background: #F4F8FB; */
}

.industry-title {
    font-size: 2.4rem;
    color: #0A2A4A;
}
.industry-subtitle {
    max-width: 650px;
    margin: auto;
    font-size: 1rem;
}

.industry-card {
    background: #fff;
    border-radius: 15px;
    transition: all 0.35s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26,115,232,0.12);
    border-color: #1A73E8;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: #A3D4FF;
    color: #0A2A4A;
    font-size: 28px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease;
}
.industry-card:hover .icon-box {
    background: #1A73E8;
    color: #fff;
}

@media (max-width: 991px) {
    .industry-title { font-size: 2rem; }
    .industry-subtitle { font-size: 0.95rem; }
    .icon-box { width: 60px; height: 60px; font-size: 24px; }
}

@media (max-width: 575px) {
    .industry-title { font-size: 1.7rem; }
    .industry-subtitle { font-size: 0.9rem; }
    .icon-box { width: 55px; height: 55px; font-size: 22px; }
}





/* Our Tech Stack */

.tech-stack-section {
    /* background: #F4F8FB; */
}

.tech-stack-title {
    font-size: 2.5rem;
    color: #0A2A4A;
}

.tech-stack-subtitle {
    font-size: 1rem;
    max-width: 700px;
    margin: auto;
    color: #555;
}

.tech-stack-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.tech-item {
    width: 123px;
    height: 123px;
    background: #fff;
    border-radius: 50%;
    padding: 20px;
    transition: all 0.35s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tech-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.tech-item h6 {
    font-size: 0.85rem;
    color: #0A2A4A;
    font-weight: 600;
    text-align: center;
}

.tech-item:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 30px rgba(26,115,232,0.15);
    border-color: #1A73E8;
}
.tech-item:hover img {
    transform: scale(1.2);
}

@media(max-width: 991px) {
    .tech-item { width: 100px; height: 100px; padding: 15px; }
    .tech-item img { width: 50px; height: 50px; }
    .tech-stack-title { font-size: 2rem; }
    .tech-stack-subtitle { font-size: 0.95rem; }
}
@media(max-width: 575px) {
    .tech-item { width: 80px; height: 80px; padding: 12px; }
    .tech-item img { width: 40px; height: 40px; }
    .tech-stack-title { font-size: 1.7rem; }
    .tech-stack-subtitle { font-size: 0.9rem; }
}





/* milestone of excellence */

.milestone-section {
    background: #ffffff;
}

.milestone-title {
    font-size: 2.5rem;
    color: #0A2A4A;
}

.milestone-subtitle {
    max-width: 700px;
    margin: auto;
    font-size: 1rem;
}

.milestone-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0px 8px 25px rgba(26,115,232,0.10);
    transition: all 0.3s ease;
}

.milestone-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 35px rgba(26,115,232,0.25);
}

.milestone-icon i {
    font-size: 40px;
    color: #1A73E8;
}

.milestone-card .counter {
    font-size: 2rem;
    font-weight: 700;
    color: #0A2A4A;
}

.milestone-text {
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

@media(max-width: 575px) {
    .milestone-title {
        font-size: 1.8rem;
    }
    .milestone-card {
        padding: 20px;
    }
    .milestone-card .counter {
        font-size: 1.6rem;
    }
}





/* about us */

.about-section {
    background: #F4F8FB;
}

.about-title {
    font-size: 32px;
    color: #1A73E8;
}

.about-text {
    font-size: 16px;
    color: #0A2A4A;
    line-height: 1.8;
}

.about-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e7eef5;
    transition: .3s;
}

.about-card:hover {
    border-color: #1A73E8;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.15);
    transform: translateY(-3px);
}

.about-image-wrapper {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.about-image {
    transition: 0.4s ease;
}

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





/* contact us */

.contact-section {
    /* background: #F4F8FB; */
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0A2A4A;
}

.contact-subtitle {
    color: #1A73E8;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-info-card,
.contact-form-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.info-item {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #0A2A4A;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1A73E8;
    color: white;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: 0.3s ease;
}

.social-icon:hover {
    background: #0A2A4A;
}

.contact-btn {
    background: #1A73E8;
    color: white;
    font-size: .9rem;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.3s ease;
}

.contact-btn:hover {
    background: #0A2A4A;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }
    .contact-info-card,
    .contact-form-card {
        padding: 20px;
    }
    .contact-btn {
        width: 100%;
    }
}





/* portfolio */

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 25px;
    width: 100%;
    background: linear-gradient(181deg, transparent, rgba(0,0,0,0.7));
    opacity: 0;
    transition: .4s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}





/* our products */

.products-section {
    background: linear-gradient(135deg, #F4F8FB 0%, #A3D4FF22 100%);
}

.product-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid #e6e6e6;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(26, 115, 232, 0.15);
    border-color: #1A73E8;
}

.product-icon {
    width: 70px;
    height: 70px;
}

.product-btn {
    background: #1A73E8;
    color: white;
    border-radius: 50px;
    padding: 6px 20px;
    font-size: 14px;
    transition: 0.3s;
}

.product-btn:hover {
    background: #0A2A4A;
    color: #fff;
}

@media (max-width: 576px) {
    .product-card {
        padding: 25px;
    }
    .product-icon {
        width: 60px;
        height: 60px;
    }
}
