﻿html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/* Public nav styles */
.nav-link {
    color: #333;
    padding: 8px 12px;
    border-radius: 6px;
}

    .nav-link:hover {
        background-color: #007bff;
        color: #fff;
    }

/* 🔁 Responsive logo */
@media (max-width: 992px) {
    .logo-img {
        height: 70px;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 50px;
    }
}

.navbar-brand:hover .logo-img {
    transform: scale(1.05);
}

/* 🌐 Hero Section */
.hero-section {
    height: 90vh;
    background: linear-gradient(135deg, #007bff, #004aad);
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
}

.hero-logo {
    height: 120px;
    width: auto;
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 6rem 2rem;
    }

    .hero-logo {
        height: 80px;
    }
}

/* ✨ Hover Card Animation */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .hover-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

:root {
    --primary-blue: #007bff;
    --dark-blue: #004aad;
}

.bg-hero {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    padding: 6rem 0;
}

.hero-logo {
    height: 120px;
    width: auto;
}

@media (max-width: 768px) {
    .hero-logo {
        height: 80px;
    }
}

.card i {
    display: block;
    text-align: center;
}

.btn-light {
    color: var(--dark-blue);
    background-color: #fff;
    border: none;
}

    .btn-light:hover {
        background-color: #f8f9fa;
    }

.bg-light {
    background-color: #f8f9fa !important;
}

.text-white {
    color: #fff !important;
}

/* 🌐 Techomo Theme */
:root {
    --techomo-blue: #0066cc;
    --techomo-dark: #003366;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.hero {
    background: linear-gradient(90deg, #f5f9ff 0%, #ffffff 100%);
    min-height: 85vh;
    padding: 80px 0;
}

    .hero h1 {
        color: var(--techomo-dark);
    }

    .hero .btn-primary {
        background-color: var(--techomo-blue);
        border-color: var(--techomo-blue);
    }

.btn-outline-primary:hover {
    background-color: var(--techomo-blue);
    color: #fff;
}

/* Section Headings */
section h2 {
    color: var(--techomo-dark);
}

/* Footer */
.footer {
    background-color: var(--techomo-dark);
}

/* Cards Hover */
.card:hover {
    transform: translateY(-6px);
    transition: all 0.3s ease-in-out;
}

.navbar-brand img.logo-img {
    height: 130px;
    width: auto;
    transition: transform 0.3s ease;
}

    .navbar-brand img.logo-img:hover {
        transform: scale(1.05);
    }

@media (max-width: 768px) {
    .navbar-brand img.logo-img {
        height: 60px;
    }
}

.form-control:focus,
.form-select:focus {
    border-color: #007bff !important;
    box-shadow: 0 0 5px 2px rgba(0,123,255,0.5) !important;
    outline: none !important;
}
