/* ====================================================
   SHREE KALYAN ENTERPRISES - PREMIUM STYLES
   ==================================================== */

/* ----- GLOBAL ----- */
:root {
    --primary: #0B3D91;
    --secondary: #007BFF;
    --accent: #FFC107;
    --bg-light: #F8FBFF;
    --dark: #071C34;
    --white: #FFFFFF;
    --shadow: 0 15px 40px rgba(0,0,0,0.06);
    --shadow-hover: 0 25px 60px rgba(11,61,145,0.12);
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-weight: 800;
    color: var(--dark);
}

.section-tag {
    display: inline-block;
    background: rgba(11,61,145,0.08);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* ----- HERO SECTION ----- */
.hero-premium {
    min-height: 100vh;
    background: linear-gradient(135deg, #071c34 0%, #0b3d91 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    padding: 100px 0;
}

.hero-premium::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path d="M10 10 L90 10 L90 90 L10 90 Z" stroke="white" stroke-width="1" fill="none"/><path d="M20 20 L80 20 L80 80 L20 80 Z" stroke="white" stroke-width="0.5" fill="none"/></svg>') repeat;
    opacity: 0.08;
    animation: rotateBg 60s linear infinite;
}

@keyframes rotateBg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: #000;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-premium h1 {
    color: #ffffff !important;   /* Force white */
    text-shadow: 0 2px 10px rgba(0,0,0,0.3); /* improve contrast */
    z-index: 2;
    position: relative;
}

.hero-premium p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    border-radius: 50px;
    padding: 14px 35px;
    font-weight: 600;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
}
.hero-features span {
    background: rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 50px;
    text-align: center;
}

/* Hero Image & Floating Cards */
.hero-image-wrapper {
    position: relative;
    padding: 20px;
}
.hero-image-wrapper img {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 18px 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    text-align: center;
    animation: floatY 4s ease-in-out infinite;
    color: var(--dark);
}
.floating-card h4 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
}
.floating-card small {
    font-size: 13px;
    color: #666;
}
.card1 { top: 10%; left: -10%; animation-delay: 0s; }
.card2 { bottom: 20%; right: -5%; animation-delay: 1.5s; }
.card3 { top: 50%; right: -15%; animation-delay: 3s; }

@keyframes floatY {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ----- STATISTICS SECTION ----- */
.stats-section {
    padding: 60px 0;
    background: var(--bg-light);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}
.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(11,61,145,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 30px;
    color: var(--primary);
}
.stat-number {
    font-size: 44px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 5px;
}
.stat-card p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* ----- SERVICES SECTION ----- */
.services-premium {
    padding: 100px 0;
    background: #fff;
}
.service-card-premium {
    background: #fff;
    border-radius: 24px;
    padding: 35px 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #f0f4f9;
    height: 100%;
}
.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #0dcaf0);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.service-card-premium:hover::before {
    transform: scaleX(1);
}
.service-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}
.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(11,61,145,0.08), rgba(13,202,240,0.08));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}
.service-card-premium:hover .service-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05) rotate(-5deg);
}
.service-category {
    display: inline-block;
    background: rgba(11,61,145,0.06);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.service-card-premium h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}
.service-card-premium p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: gap 0.3s;
    margin-top: 15px;
}
.service-link:hover {
    gap: 14px;
    color: var(--dark);
}

/* ----- ABOUT SECTION ----- */
.about-premium {
    padding: 100px 0;
    background: var(--bg-light);
}
.about-image-wrapper {
    position: relative;
}
.experience-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 20px 25px;
    border-radius: 16px;
    color: #fff;
    text-align: center;
    box-shadow: 0 15px 40px rgba(11,61,145,0.25);
}
.experience-badge .year {
    display: block;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}
.experience-badge .label {
    font-size: 13px;
    opacity: 0.9;
}
.about-subtitle {
    font-size: 18px;
    color: var(--primary);
    font-weight: 600;
}
.about-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}
.mv-box {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #f0f4f9;
}
.mv-box i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 10px;
}
.mv-box h4 {
    font-size: 18px;
    font-weight: 700;
}
.mv-box p {
    font-size: 14px;
    color: #666;
}

/* ----- WHY CHOOSE US ----- */
.why-choose-premium {
    padding: 100px 0;
    background: #fff;
}
.feature-card-premium {
    background: #fff;
    padding: 35px 25px;
    border-radius: 24px;
    border: 1px solid #f0f4f9;
    transition: all 0.4s ease;
    height: 100%;
}
.feature-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}
.feature-card-premium h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}
.feature-card-premium p {
    color: #666;
    line-height: 1.7;
}

/* ----- PROJECTS ----- */
.projects-premium {
    padding: 100px 0;
    background: var(--bg-light);
}
.project-card-premium {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}
.project-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.project-image {
    position: relative;
    overflow: hidden;
}
.project-image img {
    height: 280px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.project-card-premium:hover img {
    transform: scale(1.08);
}
.project-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    background: #fff;
    color: #071c34;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
.project-status.completed { background: #10b981; color: #fff; }
.project-status.ongoing { background: #f59e0b; color: #fff; }
.project-status.commissioned { background: var(--primary); color: #fff; }
.project-content {
    padding: 25px;
}
.project-category {
    display: inline-block;
    background: rgba(11,61,145,0.08);
    color: var(--primary);
    padding: 3px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}
.project-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0;
}
.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    color: #666;
}
.project-meta i {
    color: var(--primary);
    width: 18px;
}
.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    margin-top: 12px;
    transition: gap 0.3s;
}
.project-link:hover { gap: 14px; }

/* ----- TESTIMONIALS ----- */
.testimonials-premium {
    padding: 100px 0;
    background: #fff;
}
.testimonial-card-premium {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #f0f4f9;
    transition: all 0.4s ease;
    height: 100%;
}
.testimonial-card-premium:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.quote-icon {
    font-size: 36px;
    color: var(--primary);
    opacity: 0.15;
    margin-bottom: 15px;
}
.rating {
    margin-bottom: 15px;
}
.rating i {
    color: #ddd;
    font-size: 16px;
}
.rating i.active {
    color: #f59e0b;
}
.testimonial-card-premium p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f4f9;
}
.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}
.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.author-avatar i { color: #fff; }
.testimonial-author h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}
.testimonial-author span {
    font-size: 14px;
    color: #666;
}

/* ----- TEAM ----- */
.team-premium {
    padding: 100px 0;
    background: var(--bg-light);
}
.team-card-premium {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: all 0.4s ease;
}
.team-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.team-image {
    height: 260px;
    overflow: hidden;
}
.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.team-card-premium:hover img {
    transform: scale(1.05);
}
.team-info {
    padding: 20px;
}
.team-info h4 {
    font-size: 18px;
    font-weight: 700;
}
.team-info .designation {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}
.team-info .qualification {
    font-size: 13px;
    color: #888;
}

/* ----- BLOG ----- */
.blog-premium {
    padding: 100px 0;
    background: #fff;
}
.blog-card-premium {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}
.blog-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.blog-card-premium:hover img {
    transform: scale(1.05);
}
.blog-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 13px;
}
.blog-content {
    padding: 25px;
}
.blog-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.blog-content p {
    color: #666;
    line-height: 1.6;
}
.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: gap 0.3s;
}
.blog-link:hover { gap: 14px; }

/* ----- CTA SECTION (Consultation) ----- */
.cta-premium {
    padding: 100px 0;
    background: linear-gradient(135deg, #071c34, #0b3d91);
    color: #fff;
}
.cta-premium h2 {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
}
.cta-premium .btn {
    border-radius: 50px;
    padding: 14px 40px;
    font-weight: 700;
}
.cta-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    color: #333;
}
.cta-form-wrapper h3 {
    color: var(--dark);
}
.cta-form .form-control {
    border-radius: 12px;
    padding: 12px 16px;
    border: 2px solid #eef2f7;
    transition: border 0.3s;
}
.cta-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(11,61,145,0.08);
}
.btn-submit {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    width: 100%;
    transition: all 0.3s;
}
.btn-submit:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(11,61,145,0.25);
}

/* ----- ADDITIONAL SECTIONS (Industries, Process, etc.) ----- */
.industries-section {
    padding: 80px 0;
    background: #fff;
}
.industry-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.industry-item {
    background: var(--bg-light);
    padding: 25px 15px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}
.industry-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.industry-item i {
    font-size: 36px;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}
.industry-item span {
    font-weight: 600;
}

.process-section {
    padding: 80px 0;
    background: var(--bg-light);
}
.process-timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 130px;
}
.process-step .step-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 10px;
}
.process-step .step-label {
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}
.process-step .step-arrow {
    font-size: 24px;
    color: var(--primary);
    margin: 5px 0;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 992px) {
    .hero-premium h1 { font-size: 40px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .industry-grid { grid-template-columns: repeat(3, 1fr); }
    .floating-card { display: none; }
}
@media (max-width: 768px) {
    .hero-premium h1 { font-size: 30px; }
    .hero-features { grid-template-columns: repeat(2, 1fr); }
    .stat-number { font-size: 30px; }
    .section-header h2 { font-size: 28px; }
    .cta-premium h2 { font-size: 30px; }
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
.navbar-nav .nav-link {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 18px !important;
    transition: all 0.3s ease;
    color: rgba(255,255,255,0.8) !important;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ffc107 !important;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}
.navbar-nav .nav-link i {
    margin-right: 6px;
    font-size: 14px;
}
body {
    padding-top: 80px; /* adjust based on your header height */
}
/* Social Icons Fix - Make them visible */
.social-icons a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 36px !important;
    height: 36px !important;
    background: rgba(255,255,255,0.1) !important;
    border-radius: 50% !important;
    margin-right: 6px !important;
    transition: all 0.3s ease;
    color: #ffffff !important;
    font-size: 15px !important;
    text-decoration: none !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
}
.social-icons a:hover {
    background: #ffc107 !important;
    color: #071c34 !important;
    transform: translateY(-3px);
    border-color: #ffc107 !important;
}
/* Remove gap between header and hero */
.hero-premium {
    margin-top: 0 !important;
    padding-top: 10px !important;
}
/* ==============================================
   LEADERSHIP SECTION STYLES
   ============================================== */

.leadership-section {
    padding: 80px 0;
    background: #ffffff;
}

.leader-profile-image .image-placeholder {
    background: linear-gradient(135deg, #e8edf4, #d5dce6);
    border-radius: 20px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #c0c8d4;
    transition: all 0.3s ease;
}
.leader-profile-image .image-placeholder i {
    font-size: 80px;
    color: #b0b8c4;
}
.leader-profile-image .image-placeholder:hover {
    border-color: #0b3d91;
    background: linear-gradient(135deg, #d5dce6, #c0c8d4);
}

.leader-profile {
    padding: 0 10px;
}

.leader-profile .credentials-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(11,61,145,0.06);
    color: #0b3d91;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(11,61,145,0.08);
    transition: all 0.3s ease;
}
.badge-premium:hover {
    background: #0b3d91;
    color: #fff;
    transform: translateY(-2px);
}
.badge-premium i {
    font-size: 13px;
}

.expertise-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f0f4f9;
    color: #071c34;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.expertise-tag:hover {
    background: #0b3d91;
    color: #fff;
}
.expertise-tag i {
    color: #ffc107;
    font-size: 11px;
}

.leader-profile .professional-profile p {
    margin-bottom: 8px;
}
.leader-profile .professional-profile strong {
    color: #071c34;
}

@media (max-width: 992px) {
    .leadership-section { padding: 60px 0; }
    .leader-profile-image .image-placeholder { min-height: 280px; }
    .leader-profile-image .image-placeholder i { font-size: 60px; }
    .leader-profile h3 { font-size: 24px !important; }
    .leader-profile .badge-premium { font-size: 11px; padding: 4px 12px; }
    .expertise-tag { font-size: 11px; padding: 3px 12px; }
}

@media (max-width: 768px) {
    .leadership-section { padding: 40px 0; }
    .leader-profile-image .image-placeholder { min-height: 220px; }
    .leader-profile-image .image-placeholder i { font-size: 50px; }
    .leader-profile { padding: 0; }
    .leader-profile h3 { font-size: 20px !important; }
    .leader-profile .professional-profile p { font-size: 14px; }
    .badge-premium { font-size: 10px; padding: 3px 10px; }
    .expertise-tag { font-size: 10px; padding: 3px 10px; }
    .leader-profile .credentials-badges { gap: 5px; }
}

@media (max-width: 576px) {
    .leader-profile-image .image-placeholder { min-height: 180px; }
    .leader-profile-image .image-placeholder i { font-size: 40px; }
    .leader-profile h3 { font-size: 18px !important; }
    .leader-profile .designation { font-size: 14px !important; }
    .expertise-tag { font-size: 9px; padding: 2px 8px; }
}
/* ==============================================
   EXPERT TEAM SECTION STYLES
   ============================================== */

.expert-team-section {
    padding: 80px 0;
    background: #f8fbff;
}

.team-card-premium {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0f4f9;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.team-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(11,61,145,0.1);
    border-color: transparent;
}

.team-card-image {
    background: linear-gradient(135deg, #e8edf4, #d5dce6);
    padding: 30px 0 20px;
    text-align: center;
    position: relative;
}
.team-card-image i {
    font-size: 56px;
    color: #b0b8c4;
}
.team-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0b3d91, #0dcaf0);
}

.team-card-body {
    padding: 24px 22px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.team-card-body h4 {
    font-size: 18px;
    font-weight: 700;
    color: #071c34;
    margin-bottom: 2px;
}
.team-card-body .designation {
    font-size: 14px;
    color: #0b3d91;
    font-weight: 600;
    margin-bottom: 12px;
}

.qualifications {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}
.qual-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(11,61,145,0.06);
    color: #0b3d91;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(11,61,145,0.06);
}
.qual-badge i {
    font-size: 11px;
    color: #ffc107;
}

.team-card-body .bio {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
    flex: 1;
}
.team-card-body .bio p {
    margin: 0;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f0f4f9;
}
.exp-tag {
    font-size: 11px;
    color: #666;
    background: #f8fbff;
    padding: 3px 12px;
    border-radius: 50px;
    border: 1px solid #f0f4f9;
    transition: all 0.3s ease;
}
.exp-tag:hover {
    background: #0b3d91;
    color: #fff;
    border-color: #0b3d91;
}

@media (max-width: 768px) {
    .expert-team-section { padding: 50px 0; }
    .team-card-image i { font-size: 40px; }
    .team-card-body { padding: 18px 16px 22px; }
    .team-card-body h4 { font-size: 16px; }
    .team-card-body .designation { font-size: 13px; }
    .qual-badge { font-size: 10px; padding: 2px 10px; }
    .team-card-body .bio { font-size: 13px; }
    .exp-tag { font-size: 10px; padding: 2px 10px; }
}
/* ==============================================
   TEAM STRENGTH SECTION
   ============================================== */

.team-strength-section {
    padding: 80px 0;
    background: #ffffff;
}

.strength-card {
    background: #f8fbff;
    border-radius: 18px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid #f0f4f9;
    transition: all 0.4s ease;
    height: 100%;
}
.strength-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(11,61,145,0.06);
    border-color: #0b3d91;
}
.strength-card .icon {
    font-size: 40px;
    color: #0b3d91;
    margin-bottom: 15px;
    display: block;
}
.strength-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #071c34;
    margin-bottom: 8px;
}
.strength-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .team-strength-section { padding: 50px 0; }
    .strength-card { padding: 25px 20px; }
    .strength-card .icon { font-size: 32px; }
    .strength-card h4 { font-size: 16px; }
    .strength-card p { font-size: 13px; }
}
/* ==============================================
   PREMIUM DROPDOWN MENU STYLES
   ============================================== */

.dropdown-menu-premium {
    background: #071c34;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 12px 8px;
    min-width: 280px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    backdrop-filter: blur(20px);
    margin-top: 8px;
}

.dropdown-menu-premium .dropdown-item {
    color: rgba(255,255,255,0.8);
    padding: 10px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    position: relative;
}

.dropdown-menu-premium .dropdown-item:hover {
    background: rgba(255,255,255,0.06);
    color: #ffc107;
    transform: translateX(4px);
}

.dropdown-menu-premium .dropdown-item i {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #ffc107;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.dropdown-menu-premium .dropdown-item:hover i {
    background: rgba(255,193,7,0.15);
    color: #ffc107;
}

.dropdown-menu-premium .dropdown-item span {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dropdown-menu-premium .dropdown-item small {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    font-weight: 400;
    margin-top: 1px;
}

.dropdown-menu-premium .dropdown-item:hover small {
    color: rgba(255,255,255,0.6);
}

.dropdown-menu-premium .dropdown-divider {
    margin: 8px 16px;
    border-color: rgba(255,255,255,0.06);
}

/* Dropdown Arrow Animation */
.dropdown-toggle[aria-expanded="true"] i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .dropdown-menu-premium {
        background: #071c34;
        border: none;
        border-radius: 0;
        padding: 8px 0;
        min-width: auto;
        box-shadow: none;
        backdrop-filter: none;
    }
    .dropdown-menu-premium .dropdown-item {
        padding: 10px 20px;
        border-radius: 0;
    }
    .dropdown-menu-premium .dropdown-item:hover {
        transform: none;
        background: rgba(255,255,255,0.04);
    }
    .dropdown-menu-premium .dropdown-item i {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

/* Active State for Dropdown Items */
.dropdown-menu-premium .dropdown-item.active {
    background: rgba(255,193,7,0.08);
    color: #ffc107;
}

.dropdown-menu-premium .dropdown-item.active i {
    background: rgba(255,193,7,0.15);
    color: #ffc107;
}

/* Hover Glow Effect */
.dropdown-menu-premium .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: #ffc107;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transform: scaleY(0.5);
    transition: all 0.3s ease;
}

.dropdown-menu-premium .dropdown-item:hover::before {
    opacity: 1;
    transform: scaleY(1);
}


/* ==============================================
   STATISTICS CARDS - Equal Height
   ============================================== */

.stat-card {
    background: #ffffff;
    padding: 32px 20px 28px;
    border-radius: 16px;
    border: 1px solid #eef2f7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: rgba(11, 61, 145, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 26px;
    color: #0b3d91;
}

.stat-number {
    font-size: 44px;
    font-weight: 800;
    color: #071c34;
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-card p {
    font-size: 15px;
    font-weight: 500;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .stat-number { font-size: 36px; }
    .stat-card { min-height: 170px; padding: 24px 16px 20px; }
    .stat-icon { width: 56px; height: 56px; }
    .stat-icon i { font-size: 22px; }
}

@media (max-width: 576px) {
    .stat-number { font-size: 28px; }
    .stat-card { min-height: 150px; padding: 18px 12px 16px; }
    .stat-icon { width: 48px; height: 48px; }
    .stat-icon i { font-size: 18px; }
    .stat-card p { font-size: 13px; }
}