:root {
    --primary-color: #0b2135;
    --secondary-color: #0174c3;
    --accent-color: #00d2ff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --transition: all 0.3s ease;
}

* {
    font-family: gothic-light;
}

.site-text {
    color: var(--secondary-color);
}

.site-bg {
    background: var(--secondary-color);
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    background-color: #fff;
    line-height: 1.6;
}

/* Header Redesign */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.navbar-brand img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #005a9c;
    border-color: #005a9c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 116, 195, 0.2);
}

/* Hero Section */
#main-banner {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

#main-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 33, 53, 0.9) 0%, rgba(11, 33, 53, 0.6) 100%);
    z-index: 1;
}

#main-banner .container {
    position: relative;
    z-index: 2;
}

#main-banner h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Cards Layout */
.media-box {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.media-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.media-box .info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem;
    color: white;
    text-align: center;
}

.media-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

/* Footer Redesign */
.site-footer {
    background-color: var(--primary-color);
    color: #e2e8f0;
    padding: 80px 0 40px;
}

.site-footer h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.site-footer ul {
    list-style: none;
    padding: 0;
}

.site-footer ul li {
    margin-bottom: 0.75rem;
}

.site-footer ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.site-footer ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.site-footer a[href^="tel:"]:hover,
.site-footer a[href^="mailto:"]:hover {
    color: #fff !important;
    padding-left: 1.5rem;
    transition: var(--transition);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 30px;
    font-size: 0.9rem;
    color: #64748b;
}

/* Utilities */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.service-desc-card {
    padding: 24px;
    border-radius: 36px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0px 5px 30px 0px rgba(44, 44, 44, 0.1);
}

.service-desc-card::before {
    content: "";
    display: block;
    background: var(--secondary-color);
    position: absolute;
    transition: 0.4s;
    width: 0%;
    height: 100%;
    z-index: -1;
    bottom: 0;
    left: 0%;
}

.service-desc-card .icon {
    width: 70px;
    height: 70px;
    font-size: 2.2rem;
    border-radius: 20px;
    box-shadow: 0px 5px 30px 0px rgba(44, 44, 44, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background: #fff;
}

.service-desc-card.active,
.service-desc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    color: #fff;

}

.service-desc-card.active::before,
.service-desc-card:hover::before {
    width: 100%;
}

/* Blog Section Redesign */
.articles article {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.articles article:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.post-img {
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}

.post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.articles article:hover .post-img img {
    transform: scale(1.05);
}

.articles .title a {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.3;
    display: block;
    margin-bottom: 15px;
    transition: var(--transition);
}

.articles .title a:hover {
    color: var(--secondary-color);
}

.articles .excerpt p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.entry-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.entry-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.entry-meta i {
    color: var(--secondary-color);
}

.post-footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    margin-top: 5px;
}

/* Sidebar Styling */
.services-sidebar .widget {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}

.widget_recent_entries ul,
.widget_categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_recent_entries li,
.widget_categories li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.widget_recent_entries li:last-child,
.widget_categories li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.widget_recent_entries li a,
.widget_categories li a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.widget_recent_entries li a:hover,
.widget_categories li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

/* Search Box Redesign */
.widget_search .input-group {
    background: #f8fafc;
    border-radius: 12px;
    padding: 5px;
    border: 1px solid #e2e8f0;
}

.widget_search .form-control {
    background: transparent;
    border: none;
    padding: 0.6rem 1rem;
    box-shadow: none;
}

.widget_search .btn-primary {
    border-radius: 10px !important;
    padding: 0.5rem 1rem;
}

/* Pagination */
.pagination {
    gap: 10px;
}

.pagination .page-link {
    border: none;
    border-radius: 10px !important;
    color: var(--text-dark);
    font-weight: 600;
    padding: 10px 18px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    margin: 0 2px;
}

.pagination .page-item.active .page-link {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
}

.pagination .page-link:hover {
    background-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Blog Detail Specific Styles */
.blog-details-content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--primary-color) !important;
}

.blog-details-content .blog-main-img {
    height: 70vh;
}

.post-text * {
    background-color: transparent !important;
    color: var(--text-dark) !important;
    font-family: gothic-light !important;
}

.post-text h1,
.post-text h2,
.post-text h3,
.post-text h4,
.post-text h5,
.post-text h6,
.post-text strong,
.post-text b {
    font-family: gothic-bold !important;
}

.post-text img {
    height: 300px;
    border-radius: 30px;
}

.quote-box {
    position: relative;
    overflow: hidden;
}

.quote-box::after {
    content: '\f10e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    bottom: 10px;
    font-size: 4rem;
    color: rgba(1, 116, 195, 0.05);
}

.hover-primary:hover {
    color: var(--secondary-color) !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3);
}

.text-accent {
    color: var(--accent-color) !important;
}

.scale-sm {
    transition: transform 0.3s ease;
}

.btn-primary:hover .scale-sm {
    transform: translateX(5px);
}

/* Career Detail Specific Styles */
.career-detail-content h2 {
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.career-detail-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.career-detail-content .list-unstyled i {
    font-size: 1.1rem;
}

#apply-form {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
}

#apply-form .form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
}

#apply-form .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(1, 116, 195, 0.1);
}

.sticky-top {
    transition: var(--transition);
}