/* ==========================================
   Techxus Infotech Website
   style.css (Part 1)
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#f8fafc;
    color:#222;
    line-height:1.7;

}

a{

    text-decoration:none;

}

img{

    max-width:100%;

}

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

/* HEADER */

header{

    position:sticky;
    top:0;
    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    z-index:999;

}

header .container{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;

}

.logo h2{

    color:#0d6efd;
    font-size:28px;
    font-weight:700;

}

nav ul{

    display:flex;
    list-style:none;

}

nav ul li{

    margin-left:30px;

}

nav ul li a{

    color:#333;
    font-weight:500;
    transition:.3s;

}

nav ul li a:hover,
nav ul li a.active{

    color:#0d6efd;

}

/* HERO */

.hero{

    background:linear-gradient(135deg,#0d6efd,#4f46e5);
    color:white;
    text-align:center;
    padding:120px 20px;

}

.hero h1{

    font-size:50px;
    margin-bottom:20px;

}

.hero p{

    font-size:20px;
    max-width:850px;
    margin:auto auto 35px;

}

/* BUTTON */

.btn{

    display:inline-block;
    background:#0d6efd;
    color:#fff;
    padding:14px 32px;
    border-radius:8px;
    font-weight:600;
    margin:8px;
    transition:.3s;

}

.btn:hover{

    transform:translateY(-3px);
    background:#084298;

}

.btn-outline{

    background:transparent;
    border:2px solid white;
    color:white;

}

.btn-outline:hover{

    background:white;
    color:#0d6efd;

}

/* PAGE HEADER */

.page-header{

    background:#0d6efd;
    color:white;
    text-align:center;
    padding:70px 20px;

}

.page-header h1{

    font-size:42px;
    margin-bottom:10px;

}

.page-header p{

    font-size:18px;

}

/* SECTION */

.section{

    padding:80px 0;

}

.section h2{

    font-size:36px;
    margin-bottom:20px;
    color:#0d6efd;

}

.section p{

    margin-bottom:18px;

}

.light{

    background:#eef5ff;

}

/* CARDS */

.cards{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:35px;

}

.card{

    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
    transition:.3s;

}

.card:hover{

    transform:translateY(-8px);

}

.card h3{

    margin-bottom:15px;
    color:#0d6efd;

}

/* LIST */

ul{

    padding-left:20px;

}

ul li{

    margin-bottom:10px;

}

/* FORM */

form{

    margin-top:30px;

}

input,
textarea{

    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:8px;
    margin-top:8px;
    margin-bottom:20px;
    font-family:Poppins;

}

input:focus,
textarea:focus{

    outline:none;
    border-color:#0d6efd;

}

button{

    border:none;
    cursor:pointer;
}

/* IFRAME */

iframe{

    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

/* ==========================================
   style.css (Part 2)
   ========================================== */

/* CONTACT SECTION */

.contact-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
    align-items:flex-start;

}

.contact-info{

    background:#fff;
    padding:35px;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.contact-info h3{

    color:#0d6efd;
    margin-bottom:20px;

}

.contact-info p{

    margin-bottom:15px;

}

/* FEATURE BOX */

.feature-box{

    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:30px;

}

.feature-icon{

    width:60px;
    height:60px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    flex-shrink:0;

}

.feature-content h4{

    margin-bottom:8px;
    color:#0d6efd;

}

/* APP CARD */

.app-card{

    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;

}

.app-card:hover{

    transform:translateY(-10px);

}

.app-card img{

    width:100%;
    height:220px;
    object-fit:cover;

}

.app-body{

    padding:25px;

}

.app-body h3{

    color:#0d6efd;
    margin-bottom:12px;

}

.badge{

    display:inline-block;
    background:#e7f1ff;
    color:#0d6efd;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;

}

/* TABLE */

.table-responsive{

    overflow-x:auto;

}

table{

    width:100%;
    border-collapse:collapse;
    background:#fff;
    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

table th{

    background:#0d6efd;
    color:#fff;
    padding:16px;

}

table td{

    padding:15px;
    border-bottom:1px solid #eee;

}

/* ALERT */

.alert{

    background:#eef6ff;
    border-left:5px solid #0d6efd;
    padding:18px;
    border-radius:8px;
    margin:25px 0;

}

/* FAQ */

.faq-item{

    background:#fff;
    border-radius:10px;
    margin-bottom:18px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.06);

}

.faq-question{

    padding:18px 22px;
    font-weight:600;
    background:#f7f9fc;

}

.faq-answer{

    padding:20px 22px;

}

/* STATS */

.stats{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    margin-top:45px;

}

.stat{

    background:#fff;
    padding:35px;
    border-radius:14px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.stat h3{

    font-size:42px;
    color:#0d6efd;
    margin-bottom:10px;

}

/* CTA */

.cta{

    background:linear-gradient(135deg,#0d6efd,#4f46e5);
    color:#fff;
    text-align:center;
    padding:90px 20px;

}

.cta h2{

    color:#fff;
    margin-bottom:20px;

}

.cta p{

    max-width:750px;
    margin:auto auto 30px;

}

/* FOOTER */

footer{

    background:#0f172a;
    color:#fff;
    padding:60px 20px 25px;

}

footer a{

    color:#cbd5e1;

}

footer a:hover{

    color:#fff;

}

.footer-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:35px;
    margin-bottom:35px;

}

.footer-title{

    margin-bottom:18px;
    color:#fff;

}

.footer-links{

    list-style:none;
    padding:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.15);
    margin-top:30px;
    padding-top:20px;
    text-align:center;
    font-size:14px;
    color:#cbd5e1;

}

/* BACK TO TOP */

.back-top{

    position:fixed;
    right:25px;
    bottom:25px;
    width:48px;
    height:48px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    transition:.3s;

}

.back-top:hover{

    transform:translateY(-5px);

}

/* ==========================================
   style.css (Part 3)
   Responsive + Animation + Utilities
========================================== */

/* ANIMATIONS */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero h1,
.hero p,
.hero .btn {

    animation: fadeUp .8s ease forwards;

}

.card {

    animation: zoomIn .5s ease;

}

/* HOVER EFFECT */

.card:hover {

    box-shadow: 0 18px 40px rgba(13, 110, 253, .18);

}

.btn {

    transition: all .3s ease;

}

.btn:hover {

    transform: translateY(-4px);

}

/* IMAGE */

img {

    border-radius: 12px;

}

.app-card img {

    transition: .4s;

}

.app-card:hover img {

    transform: scale(1.05);

}

/* HAMBURGER */

.menu-toggle {

    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #0d6efd;

}

/* UTILITIES */

.text-center {

    text-align: center;

}

.text-left {

    text-align: left;

}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-5 {
    margin-top: 50px;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.mb-4 {
    margin-bottom: 40px;
}

.mb-5 {
    margin-bottom: 50px;
}

.pt-5 {

    padding-top: 50px;

}

.pb-5 {

    padding-bottom: 50px;

}

.rounded {

    border-radius: 12px;

}

.shadow {

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

/* RESPONSIVE */

@media (max-width:991px) {

    .hero {

        padding: 90px 20px;

    }

    .hero h1 {

        font-size: 40px;

    }

    .section h2 {

        font-size: 30px;

    }

}

@media (max-width:768px) {

    header .container {

        flex-direction: column;
        align-items: flex-start;

    }

    .menu-toggle {

        display: block;
        position: absolute;
        right: 25px;
        top: 22px;

    }

    nav {

        width: 100%;
        display: none;

    }

    nav.active {

        display: block;

    }

    nav ul {

        flex-direction: column;
        width: 100%;
        margin-top: 20px;

    }

    nav ul li {

        margin: 15px 0;

    }

    .hero {

        padding: 70px 20px;

    }

    .hero h1 {

        font-size: 34px;

    }

    .hero p {

        font-size: 17px;

    }

    .page-header {

        padding: 55px 20px;

    }

    .page-header h1 {

        font-size: 32px;

    }

    .cards {

        grid-template-columns: 1fr;

    }

    .contact-grid {

        grid-template-columns: 1fr;

    }

    .footer-grid {

        grid-template-columns: 1fr;

    }

}

@media (max-width:480px) {

    .container {

        width: 92%;

    }

    .logo h2 {

        font-size: 22px;

    }

    .hero h1 {

        font-size: 28px;

    }

    .hero p {

        font-size: 16px;

    }

    .btn {

        width: 100%;
        text-align: center;
        margin: 10px 0;

    }

    .section {

        padding: 55px 0;

    }

    .section h2 {

        font-size: 26px;

    }

    .card {

        padding: 22px;

    }

}

/* SCROLLBAR */

::-webkit-scrollbar {

    width: 8px;

}

::-webkit-scrollbar-thumb {

    background: #0d6efd;
    border-radius: 20px;

}

::-webkit-scrollbar-track {

    background: #e5e7eb;

}

/* SELECTION */

::selection {

    background: #0d6efd;
    color: white;

}