/* Main Styles */
/* 3D Background Shapes */
.bg-3d-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: rgba(210, 230, 255, 0.3);
    border-radius: 50%;
    filter: drop-shadow(0 20px 30px rgba(0, 100, 200, 0.15));
    backdrop-filter: blur(2px);
    animation: float 20s infinite ease-in-out;
}

.shape1 {
    width: 280px;
    height: 280px;
    top: -80px;
    left: -60px;
    background: radial-gradient(circle at 30% 30%, #d9e9ff, #b8d4ff);
    animation-delay: 0s;
}

.shape2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -100px;
    background: radial-gradient(circle at 70% 70%, #f0f5ff, #d3e2fd);
    animation-duration: 28s;
    animation-delay: 2s;
}

.shape3 {
    width: 200px;
    height: 200px;
    top: 30%;
    right: 15%;
    background: radial-gradient(circle at 20% 20%, #ffffff, #cde1ff);
    filter: blur(6px);
    animation-duration: 15s;
    animation-delay: 1s;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-25px) rotate(2deg) scale(1.02); }
    100% { transform: translateY(0px) rotate(0deg) scale(1); }
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px -10px rgba(0, 40, 80, 0.1), 0 1px 2px rgba(0,0,0,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

.navbar-brand {
    font-weight: 700;
    color: #1f4c8f;
    letter-spacing: -0.02em;
    font-size: 1.8rem;
    text-shadow: 0 2px 5px rgba(60, 120, 200, 0.15);
}

.nav-link {
    color: #2d4b6e;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #1f4c8f;
    transform: translateY(-2px);
}

/* Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 32px;
    padding: 2rem 1.5rem;
    box-shadow: 0 20px 40px -15px rgba(31, 66, 119, 0.2),
    0 8px 20px -8px rgba(0,32,64,0.1),
    inset 0 1px 1px rgba(255,255,255,0.9);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: fit-content;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 35px 55px -20px rgba(28, 78, 145, 0.3), 0 10px 25px -10px rgba(0,60,120,0.2);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, #ffffff, #f0f7ff);
    border-radius: 30px 30px 30px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #2b6c9e;
    margin-bottom: 1.5rem;
    box-shadow: 0 15px 20px -10px rgba(55, 94, 148, 0.2), inset 0 -2px 0 rgba(0,0,0,0.02);
    border: 1px solid rgba(255,255,255,0.7);
}

/* Buttons */
.btn-3d {
    border-radius: 50px;
    padding: 0.8rem 2.2rem;
    font-weight: 600;
    border: none;
    background: white;
    box-shadow: 0 10px 18px -8px rgba(29, 78, 140, 0.3), 0 0 0 1px rgba(255,255,255,0.7) inset, 0 -2px 0 rgba(0,0,0,0.02) inset;
    transition: all 0.15s ease;
    color: #1b4c7c;
}

.btn-3d:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 25px -10px rgba(31, 84, 150, 0.4), 0 0 0 1px white inset;
    background: #f5faff;
    color: #0d2b4e;
}

.btn-3d:active {
    transform: translateY(2px);
    box-shadow: 0 5px 12px -6px #1e3b5e, 0 0 0 1px #d9e8ff inset;
}

.btn-primary-3d {
    background: linear-gradient(145deg, #ffffff, #ecf5ff);
    color: #145388;
    border: 1px solid rgba(80, 140, 210, 0.3);
}

.btn-outline-primary {
    background: transparent;
    border: 1px solid rgba(43, 108, 158, 0.3);
    color: #2b6c9e;
}

/* Hero Section */
.display-3d {
    text-shadow: 0 1px 0 #cbd5e1, 0 2px 0 #b3c0d0, 0 5px 10px rgba(170, 200, 240, 0.3);
    font-weight: 700;
    color: #0d2b4e;
    letter-spacing: -0.02em;
}

.hero-3d-placeholder {
    background: rgba(235, 245, 255, 0.6);
    border-radius: 60% 40% 40% 60% / 70% 50% 50% 40%;
    width: 100%;
    max-width: 400px;
    height: 300px;
    margin: 0 auto;
    box-shadow: 20px 30px 40px -20px rgba(48, 93, 148, 0.3), inset -5px -5px 15px rgba(255,255,255,0.7), inset 5px 5px 15px rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #517ea6;
    font-size: 2rem;
    backdrop-filter: blur(5px);
    animation: float 12s infinite;
}

/* Profile Tag */
.profile-tag {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(4px);
    border-radius: 100px;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(88, 130, 180, 0.1);
    border: 1px solid rgba(255,255,255,0.9);
}

.profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #c7dfff;
    margin-right: 8px;
}

/* Blog Cards */
.blog-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 35px -15px rgba(31, 66, 119, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 45px -15px rgba(28, 78, 145, 0.25);
}

.blog-img {
    height: 200px;
    background: linear-gradient(135deg, #e5f0ff, #d3e3fd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #3973b3;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 1.8rem 1.5rem 2rem;
}

.blog-date {
    font-size: 0.85rem;
    color: #5f7d9c;
    letter-spacing: 0.3px;
}

.blog-title {
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0.5rem 0 0.8rem;
    color: #0d2b4e;
}

.blog-excerpt {
    color: #2f4057;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.blog-link {
    color: #2b6c9e;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s;
}

.blog-link:hover {
    gap: 0.8rem;
    color: #1a4c7a;
}

/* Job Cards */
.job-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 24px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px -15px rgba(28, 78, 145, 0.2);
}

.job-company-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffffff, #f0f7ff);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #2b6c9e;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.7);
}

.job-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #0d2b4e;
}

.job-company {
    color: #2b6c9e;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.job-meta {
    display: flex;
    gap: 1rem;
    color: #5f7d9c;
    font-size: 0.9rem;
    margin: 1rem 0;
}

.job-meta i {
    margin-right: 0.3rem;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.skill-badge {
    background: rgba(43, 108, 158, 0.1);
    border-radius: 50px;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    color: #2b6c9e;
    border: 1px solid rgba(255,255,255,0.5);
}

/* Stat Cards */
.stat-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 15px 30px -10px rgba(31, 66, 119, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f4c8f;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #2f4057;
    font-size: 1rem;
}

/* Footer */
.footer-3d {
    background: rgba(248, 250, 255, 0.85);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 -20px 40px -20px rgba(0,30,60,0.1);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #1f4c8f;
    text-shadow: 0 2px 5px rgba(60, 120, 200, 0.15);
}

.footer-title {
    font-weight: 600;
    color: #0d2b4e;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
}

.footer-link {
    color: #2f4b6e;
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: #1a4c7a;
    transform: translateX(5px);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    color: #2b6c9e;
    font-size: 1.2rem;
    margin-right: 0.8rem;
    transition: all 0.2s ease;
    border: 1px solid rgba(255,255,255,0.9);
    box-shadow: 0 5px 15px rgba(0,40,80,0.1);
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px);
    background: white;
    color: #1a4c7a;
    box-shadow: 0 10px 20px rgba(0,60,120,0.15);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #2f4b6e;
    font-size: 0.95rem;
}

.contact-item i {
    color: #2b6c9e;
    font-size: 1.2rem;
    width: 24px;
}

.copyright {
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: #4f658a;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .display-3d {
        font-size: 2.5rem;
    }

    .hero-3d-placeholder {
        height: 200px;
    }

    .stat-number {
        font-size: 2rem;
    }
}
/* Blog content styling */
.blog-content-single {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2d3a4f;
}

.blog-content-single h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: #0d2b4e;
}

.blog-content-single h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: #1a3b5e;
}

.blog-content-single p {
    margin-bottom: 1.5rem;
}

.blog-content-single ul,
.blog-content-single ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-content-single li {
    margin-bottom: 0.5rem;
}

.blog-content-single blockquote {
    background: rgba(43, 108, 158, 0.05);
    border-left: 4px solid #2b6c9e;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 16px 16px 0;
    font-style: italic;
}

.blog-content-single img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 1.5rem 0;
}

/* Pagination styling */
.pagination {
    gap: 0.5rem;
}

.page-link {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.8);
    color: #2b6c9e;
    border-radius: 50px !important;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: white;
    color: #1a4c7a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(31, 66, 119, 0.1);
}

.page-item.active .page-link {
    background: #2b6c9e;
    border-color: #2b6c9e;
    color: white;
}

.page-item.disabled .page-link {
    background: rgba(255,255,255,0.3);
    color: #9aa9b9;
}