/*
Theme Name: Astra Child
Theme URI: https://yourdomain.com
Description: Child theme for Astra
Author: Krishna Das
Template: astra
Version: 1.0
*/

/* Your custom styles below */

/* GLOBAL */
/* CONTAINER */
.hms-container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* BUTTONS */
.hms-btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    margin-right: 10px;
}

/* BUTTON VARIANTS */
.hms-btn-primary {
    background: #2563eb;
    color: #fff;
}

.hms-btn-primary:hover {
    background: #1d4ed8;
}

.hms-btn-outline {
    border: 2px solid #2563eb;
    color: #2563eb;
    background: transparent;
}

.hms-btn-outline:hover {
    background: #2563eb;
    color: #fff;
}

/* CARDS */
.hms-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.hms-card:hover {
    transform: translateY(-5px);
}

/* SECTIONS */
.hms-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}


/* SUBTITLE */
.hms-subtitle {
    color: #666;
    margin-bottom: 40px;
}

/* 🔥 FIX FULL HEIGHT ISSUE */
.main-navigation li {
    display: flex !important;
    align-items: center;   /* center vertically */
}

/* Active menu */
.current-menu-item > a,
.current_page_item > a,
.hms-active > a {
    color: #ffffff !important;
    background: #0073aa;

    display: inline-block;
    padding: 6px 14px;
    border-radius: 6px;

    line-height: 3;
}

/* Remove full-height effect */
.main-navigation li > a {
    height: auto !important;
    display: inline-block !important;
}

/* Hover */
.main-navigation a:hover {
    background: #e6f2ff;
    color: #000;
}
