/* Main Homepage Professional Polishing */
:root {
    --primary-green: #499202;
    --primary-orange: #E47203;
}

/* General Section Styling */
.gt-section {
    padding: 80px 0;
}

.gt-bg-white {
    background-color: #ffffff;
}

.gt-bg-lgtGrey {
    background-color: #f8f9fa !important;
}

/* Typography Refinement */
.gt-section-title {
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.gt-title-divider {
    width: 50px;
    height: 3px;
    background: var(--primary-green);
    margin: 0 auto 25px;
}

/* Icon Section Polishing */
.gt-index-icon-font {
    font-size: 40px !important;
    color: var(--primary-orange) !important;
    background: #fff8f0;
    width: 90px;
    height: 90px;
    line-height: 90px !important;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.col-xxl-4:hover .gt-index-icon-font {
    background: var(--primary-orange);
    color: #fff !important;
    transform: translateY(-5px);
}

.gt-margin-top-20 h2 {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #444 !important;
}

.gt-margin-top-20 article p {
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

/* Profile Grid Alignment */
.gt-profile-grid {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.gt-profile-grid [class*="col-"] {
    display: flex;
    flex-direction: column;
    padding-right: 10px;
    padding-left: 10px;
}

/* Profile Card Professional Look */
.gt-profile-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gt-profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.gt-profile-card-img {
    height: 260px;
    overflow: hidden;
}

.gt-profile-card-img img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gt-profile-card:hover .gt-profile-card-img img {
    transform: scale(1.1);
}

.gt-profile-card-img img {
    transition: transform 0.5s ease;
}

.gt-profile-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gt-profile-name {
    font-size: 18px !important;
    font-weight: 700;
    color: var(--primary-green) !important;
    margin-bottom: 5px !important;
}

.gt-profile-id {
    font-size: 12px !important;
    color: #999;
}

.gt-profile-details {
    padding: 0;
    margin: 15px 0;
}

.gt-profile-details li {
    font-size: 13px !important;
    color: #666;
    margin-bottom: 6px;
}

.gt-profile-details li i {
    color: var(--primary-green);
    margin-right: 8px;
    width: 15px;
}

.gt-view-profile-btn {
    border-radius: 30px !important;
    font-weight: 700 !important;
    padding: 10px !important;
    text-transform: uppercase;
    font-size: 12px !important;
    letter-spacing: 0.5px;
    margin-top: auto;
    /* Pushes the button to the bottom */
}

/* Search Strip Polishing */
.inPrem2Search {
    background: #fff !important;
    padding: 30px 0 !important;
    margin-top: -30px !important;
    position: relative;
    z-index: 50;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
    border-radius: 12px !important;
    border: 1px solid #eee !important;
}

.inPrem2Search label {
    font-weight: 700;
    color: var(--primary-green) !important;
    font-size: 13px;
    margin-bottom: 8px;
    display: block;
}

.inPrem2Search .gt-form-control {
    border: 1px solid #ddd !important;
    height: 46px !important;
    border-radius: 8px !important;
}

.gt-btn-orange {
    background: var(--primary-orange) !important;
    border: none !important;
    border-radius: 8px !important;
    height: 46px !important;
    font-weight: 700 !important;
    margin-top: 25px !important;
}

.gt-btn-orange:hover {
    background: #c36203 !important;
}