﻿/*=========================================================
    VGentix Technologies Pvt. Ltd.
    Home Page
=========================================================*/


/*==========================
        Hero
===========================*/

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #020817;
    overflow: hidden;
    padding-top: 110px;
}

    .hero .container {
        position: relative;
        z-index: 2;
    }

.hero-image {
    width: 100%;
    max-width: 620px;
    height: auto;
    animation: floatImage 4s ease-in-out infinite;
}

.hero h1 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

    .hero-buttons .btn {
        min-width: 180px;
    }


/*==========================
        Services
===========================*/

.service-card {
    height: 100%;
}


/*==========================
        Products
===========================*/

.glass-cards {
    height: 100%;
}


/*==========================
        Why Section
===========================*/

.why-section {
    background: url('/images/about.png') center center/cover no-repeat;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

    .why-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(2,8,23,.75);
    }

    .why-section .container {
        position: relative;
        z-index: 2;
    }

    .why-section .list-group-item {
        background: transparent;
        color: #fff;
        border-color: rgba(255,255,255,.15);
        padding: 18px;
        font-size: 1rem;
    }


/*==========================
        CTA
===========================*/

.glass-cards.text-center {
    padding: 60px 40px;
}


/*==========================
        Floating Animation
===========================*/

@keyframes floatImage {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}


/*==========================
        Tablet
===========================*/

@media (max-width:992px) {

    .hero {
        text-align: center;
        padding-top: 140px;
        min-height: auto;
        padding-bottom: 80px;
    }

    .hero-image {
        max-width: 450px;
        margin: 40px auto 0;
    }

    .hero-buttons {
        justify-content: center;
    }

    .why-section {
        min-height: auto;
        padding: 100px 0;
    }
}


/*==========================
        Mobile
===========================*/

@media (max-width:768px) {

    .hero {
        padding-top: 120px;
    }

        .hero h1 {
            font-size: 2.4rem;
        }

        .hero p {
            font-size: 1rem;
        }

    .hero-buttons {
        flex-direction: column;
    }

        .hero-buttons .btn {
            width: 100%;
        }

    .hero-image {
        max-width: 340px;
    }

    .glass-cards {
        padding: 25px;
    }
}


/*==========================
        Small Mobile
===========================*/

@media (max-width:576px) {

    .hero {
        padding-top: 110px;
    }

        .hero h1 {
            font-size: 2rem;
        }

        .hero p {
            font-size: .95rem;
        }

    .hero-image {
        max-width: 280px;
    }

    .glass-cards {
        padding: 20px;
    }

        .glass-cards h4 {
            font-size: 1.25rem;
        }
}


/*==========================
        Extra Small
===========================*/

@media (max-width:400px) {

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-image {
        max-width: 240px;
    }
}
