/* =====================================================
   BNCA & CO - Chartered Accountants Website
   Color Palette based on ICAI Logo:
   Primary (Navy):    #1B3A5C
   Secondary (Saffron): #FF9933
   Accent (Green):    #138808
   Dark:              #0d1f33
   Light:             #f8f9fa
   ===================================================== */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: #333; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- Animations --- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes rotateIn { from { opacity: 0; transform: rotate(-10deg) scale(0.9); } to { opacity: 1; transform: rotate(0) scale(1); } }
@keyframes countUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes borderGlow { 0%, 100% { box-shadow: 0 0 5px rgba(255,153,51,0.3); } 50% { box-shadow: 0 0 20px rgba(255,153,51,0.6); } }

.animate { opacity: 0; }
.animate.animated { animation-duration: 0.8s; animation-fill-mode: forwards; }
.animate.animated.fade-up { animation-name: fadeInUp; }
.animate.animated.fade-left { animation-name: fadeInLeft; }
.animate.animated.fade-right { animation-name: fadeInRight; }
.animate.animated.fade-in { animation-name: fadeIn; }
.animate.animated.scale-in { animation-name: scaleIn; }

/* --- Top Bar --- */
.top-bar { background: #0d1f33; color: #ccc; padding: 8px 0; font-size: 13px; }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; gap: 24px; }
.top-bar-left span { display: flex; align-items: center; gap: 6px; }
.top-bar-left i { color: #FF9933; }
.top-bar-right { display: flex; gap: 12px; }
.top-bar-right a { color: #ccc; transition: color 0.3s; }
.top-bar-right a:hover { color: #FF9933; }

/* --- Navbar --- */
.navbar { background: #fff; padding: 12px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.08); transition: all 0.3s; }
.navbar.scrolled { padding: 8px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.12); }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 48px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-size: 22px; font-weight: 800; color: #1B3A5C; line-height: 1.1; }
.logo-tagline { font-size: 11px; color: #FF9933; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }
.nav-menu { display: flex; gap: 6px; align-items: center; }
.nav-menu a { padding: 8px 16px; color: #333; font-weight: 500; font-size: 15px; border-radius: 6px; transition: all 0.3s; position: relative; }
.nav-menu a:hover, .nav-menu a.active { color: #FF9933; background: rgba(255,153,51,0.08); }
.nav-menu a::after { content: ''; position: absolute; bottom: 2px; left: 50%; width: 0; height: 2px; background: #FF9933; transition: all 0.3s; transform: translateX(-50%); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 60%; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 5px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: #1B3A5C; margin: 5px 0; border-radius: 3px; transition: all 0.3s; }

/* --- Hero Section --- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; background: linear-gradient(135deg, #1B3A5C 0%, #0d1f33 60%, #102a44 100%); overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 80%; height: 200%; background: radial-gradient(ellipse, rgba(255,153,51,0.08) 0%, transparent 70%); }
.hero-particles { position: absolute; width: 100%; height: 100%; overflow: hidden; }
.hero-particles span { position: absolute; width: 4px; height: 4px; background: rgba(255,153,51,0.3); border-radius: 50%; animation: float 6s infinite; }
.hero-particles span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { top: 60%; left: 30%; animation-delay: 1s; width: 6px; height: 6px; }
.hero-particles span:nth-child(3) { top: 40%; left: 60%; animation-delay: 2s; }
.hero-particles span:nth-child(4) { top: 80%; left: 80%; animation-delay: 3s; width: 5px; height: 5px; }
.hero-particles span:nth-child(5) { top: 10%; left: 90%; animation-delay: 4s; }
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 650px; }
.hero-badge { display: inline-block; background: rgba(255,153,51,0.15); color: #FF9933; padding: 6px 18px; border-radius: 30px; font-size: 13px; font-weight: 500; margin-bottom: 20px; border: 1px solid rgba(255,153,51,0.3); animation: fadeInUp 0.8s ease; }
.hero h1 { font-size: 52px; font-weight: 800; line-height: 1.15; margin-bottom: 20px; animation: fadeInUp 0.8s ease 0.2s both; }
.hero h1 span { color: #FF9933; }
.hero p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 32px; line-height: 1.7; animation: fadeInUp 0.8s ease 0.4s both; }
.hero-buttons { display: flex; gap: 16px; animation: fadeInUp 0.8s ease 0.6s both; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 8px; font-weight: 600; font-size: 15px; cursor: pointer; transition: all 0.3s; border: none; font-family: inherit; }
.btn-primary { background: #FF9933; color: #fff; box-shadow: 0 4px 15px rgba(255,153,51,0.4); }
.btn-primary:hover { background: #e6862e; transform: translateY(-2px); box-shadow: 0 6px 25px rgba(255,153,51,0.5); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: #FF9933; color: #FF9933; transform: translateY(-2px); }
.btn-secondary { background: #1B3A5C; color: #fff; }
.btn-secondary:hover { background: #15304d; transform: translateY(-2px); }
.btn-success { background: #138808; color: #fff; }
.btn-success:hover { background: #0f6e06; }
.hero-stats { display: flex; gap: 48px; margin-top: 50px; animation: fadeInUp 0.8s ease 0.8s both; }
.hero-stat { text-align: center; }
.hero-stat .number { font-size: 36px; font-weight: 800; color: #FF9933; }
.hero-stat .label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* --- Section Common --- */
.section { padding: 90px 0; }
.section-light { background: #f8f9fa; }
.section-dark { background: #1B3A5C; color: #fff; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .subtitle { display: inline-block; color: #FF9933; font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.section-header h2 { font-size: 38px; font-weight: 700; color: #1B3A5C; margin-bottom: 16px; }
.section-dark .section-header h2 { color: #fff; }
.section-header p { color: #666; font-size: 16px; max-width: 600px; margin: 0 auto; }
.section-dark .section-header p { color: rgba(255,255,255,0.7); }
.section-header .line { width: 60px; height: 4px; background: linear-gradient(90deg, #FF9933, #138808); margin: 16px auto 0; border-radius: 2px; }

/* --- Features / Why Choose Us --- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.feature-card { background: #fff; border-radius: 12px; padding: 36px 28px; text-align: center; box-shadow: 0 5px 30px rgba(0,0,0,0.06); transition: all 0.4s; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, #FF9933, #138808); transform: scaleX(0); transition: transform 0.4s; }
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { width: 70px; height: 70px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 20px; transition: all 0.4s; }
.feature-icon.blue { background: rgba(27,58,92,0.1); color: #1B3A5C; }
.feature-icon.orange { background: rgba(255,153,51,0.1); color: #FF9933; }
.feature-icon.green { background: rgba(19,136,8,0.1); color: #138808; }
.feature-card:hover .feature-icon { transform: rotateY(180deg); }
.feature-card h3 { font-size: 20px; color: #1B3A5C; margin-bottom: 12px; }
.feature-card p { color: #666; font-size: 14px; line-height: 1.7; }

/* --- Services Preview --- */
.services-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 40px; }
.services-tabs .tab-btn { padding: 10px 24px; border: 2px solid #e0e0e0; border-radius: 30px; background: #fff; color: #555; font-weight: 500; cursor: pointer; transition: all 0.3s; font-family: inherit; font-size: 14px; }
.services-tabs .tab-btn:hover, .services-tabs .tab-btn.active { border-color: #FF9933; color: #FF9933; background: rgba(255,153,51,0.05); }
.service-tab-content { display: none; animation: fadeInUp 0.5s ease; }
.service-tab-content.active { display: block; }

/* --- Services Page Cards --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.service-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 5px 30px rgba(0,0,0,0.06); transition: all 0.4s; position: relative; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.service-card-header { background: linear-gradient(135deg, #1B3A5C, #0d1f33); padding: 28px; position: relative; overflow: hidden; }
.service-card-header::after { content: ''; position: absolute; top: -50%; right: -50%; width: 100%; height: 200%; background: radial-gradient(ellipse, rgba(255,153,51,0.1), transparent 70%); }
.service-card-header h3 { color: #fff; font-size: 22px; font-weight: 700; position: relative; z-index: 1; display: flex; align-items: center; gap: 12px; }
.service-card-header .service-icon { width: 50px; height: 50px; background: rgba(255,153,51,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #FF9933; flex-shrink: 0; }
.service-card-body { padding: 28px; }
.service-list { display: grid; gap: 10px; }
.service-list-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: #f8f9fa; border-radius: 8px; transition: all 0.3s; cursor: pointer; border-left: 3px solid transparent; }
.service-list-item:hover { background: rgba(255,153,51,0.08); border-left-color: #FF9933; transform: translateX(5px); }
.service-list-item i { color: #FF9933; font-size: 14px; flex-shrink: 0; }
.service-list-item span { font-size: 14px; color: #444; font-weight: 500; }
.service-card-footer { padding: 0 28px 28px; }
.service-card-footer .btn { width: 100%; justify-content: center; padding: 12px; }

/* --- Stats Counter --- */
.stats-section { background: linear-gradient(135deg, #1B3A5C, #0d1f33); padding: 70px 0; position: relative; overflow: hidden; }
.stats-section::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; z-index: 1; }
.stat-item { text-align: center; color: #fff; }
.stat-number { font-size: 48px; font-weight: 800; color: #FF9933; margin-bottom: 8px; }
.stat-label { font-size: 15px; color: rgba(255,255,255,0.7); }
.stat-icon { font-size: 32px; color: rgba(255,153,51,0.3); margin-bottom: 12px; }

/* --- About Preview --- */
.about-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; }
.about-image-main { border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.about-image-badge { position: absolute; bottom: -20px; right: -20px; background: #FF9933; color: #fff; padding: 20px 28px; border-radius: 12px; text-align: center; box-shadow: 0 10px 30px rgba(255,153,51,0.3); animation: float 3s ease-in-out infinite; }
.about-image-badge .badge-number { font-size: 36px; font-weight: 800; line-height: 1; }
.about-image-badge .badge-text { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.about-text h2 { font-size: 36px; font-weight: 700; color: #1B3A5C; margin-bottom: 20px; }
.about-text p { color: #666; margin-bottom: 16px; line-height: 1.8; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.about-feature { display: flex; align-items: center; gap: 10px; }
.about-feature i { color: #138808; font-size: 18px; }
.about-feature span { font-weight: 500; color: #333; font-size: 14px; }

/* --- Testimonials --- */
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card { flex: 0 0 calc(33.333% - 20px); margin: 0 10px; background: #fff; border-radius: 12px; padding: 32px; box-shadow: 0 5px 30px rgba(0,0,0,0.06); }
.testimonial-stars { color: #FF9933; margin-bottom: 16px; font-size: 16px; }
.testimonial-text { color: #555; font-size: 14px; line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, #1B3A5C, #FF9933); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 18px; }
.testimonial-info h4 { color: #1B3A5C; font-size: 15px; }
.testimonial-info p { color: #999; font-size: 12px; }

/* --- CTA Section --- */
.cta-section { background: linear-gradient(135deg, #FF9933 0%, #e6862e 100%); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; left: -10%; width: 50%; height: 200%; background: radial-gradient(ellipse, rgba(255,255,255,0.1), transparent); }
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { color: #fff; font-size: 36px; font-weight: 700; margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.9); font-size: 18px; margin-bottom: 32px; }
.cta-content .btn { background: #fff; color: #FF9933; font-weight: 700; }
.cta-content .btn:hover { background: #1B3A5C; color: #fff; }

/* --- Page Banner --- */
.page-banner { background: linear-gradient(135deg, #1B3A5C, #0d1f33); padding: 100px 0 60px; text-align: center; position: relative; overflow: hidden; }
.page-banner::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E"); }
.page-banner h1 { color: #fff; font-size: 42px; font-weight: 700; position: relative; z-index: 1; animation: fadeInUp 0.6s ease; }
.page-banner .breadcrumb { color: rgba(255,255,255,0.6); margin-top: 12px; font-size: 14px; position: relative; z-index: 1; }
.page-banner .breadcrumb a { color: #FF9933; }
.page-banner .breadcrumb a:hover { text-decoration: underline; }

/* --- About Page --- */
.about-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.value-card { background: #fff; border-radius: 12px; padding: 32px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.06); transition: all 0.3s; border-bottom: 4px solid transparent; }
.value-card:hover { transform: translateY(-5px); border-bottom-color: #FF9933; box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.value-card i { font-size: 40px; color: #FF9933; margin-bottom: 18px; }
.value-card h3 { color: #1B3A5C; font-size: 20px; margin-bottom: 12px; }
.value-card p { color: #666; font-size: 14px; line-height: 1.7; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.team-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.06); transition: all 0.3s; text-align: center; }
.team-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.team-avatar { width: 100%; height: 250px; background: linear-gradient(135deg, #1B3A5C, #FF9933); display: flex; align-items: center; justify-content: center; }
.team-avatar i { font-size: 80px; color: rgba(255,255,255,0.3); }
.team-info { padding: 24px; }
.team-info h3 { color: #1B3A5C; font-size: 20px; margin-bottom: 4px; }
.team-info .role { color: #FF9933; font-size: 14px; font-weight: 500; margin-bottom: 12px; }
.team-info p { color: #666; font-size: 13px; line-height: 1.6; }

/* --- Timeline --- */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, #FF9933, #138808); transform: translateX(-50%); }
.timeline-item { display: flex; justify-content: flex-end; padding: 0 0 40px; width: 50%; position: relative; }
.timeline-item:nth-child(even) { align-self: flex-end; justify-content: flex-start; margin-left: 50%; }
.timeline-content { background: #fff; padding: 24px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.06); max-width: 350px; position: relative; }
.timeline-content::before { content: ''; position: absolute; top: 20px; width: 12px; height: 12px; background: #FF9933; border-radius: 50%; }
.timeline-item:nth-child(odd) .timeline-content { margin-right: 30px; }
.timeline-item:nth-child(odd) .timeline-content::before { right: -36px; }
.timeline-item:nth-child(even) .timeline-content { margin-left: 30px; }
.timeline-item:nth-child(even) .timeline-content::before { left: -36px; }
.timeline-content .year { color: #FF9933; font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.timeline-content h3 { color: #1B3A5C; font-size: 16px; margin-bottom: 8px; }
.timeline-content p { color: #666; font-size: 13px; line-height: 1.6; }

/* --- Careers Page --- */
.careers-hero { text-align: center; margin-bottom: 50px; }
.careers-hero h2 { color: #1B3A5C; font-size: 32px; margin-bottom: 12px; }
.careers-hero p { color: #666; max-width: 600px; margin: 0 auto; }

.career-form { max-width: 750px; margin: 0 auto; background: #fff; border-radius: 16px; padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.career-form h3 { color: #1B3A5C; font-size: 24px; margin-bottom: 24px; text-align: center; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; color: #333; font-size: 14px; }
.form-group label .required { color: #e53935; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 2px solid #e8e8e8; border-radius: 8px;
    font-size: 14px; font-family: inherit; transition: all 0.3s; background: #fafafa;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #FF9933; outline: none; background: #fff; box-shadow: 0 0 0 4px rgba(255,153,51,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group .file-label { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border: 2px dashed #e8e8e8; border-radius: 8px; cursor: pointer; transition: all 0.3s; background: #fafafa; }
.form-group .file-label:hover { border-color: #FF9933; background: rgba(255,153,51,0.05); }
.form-group .file-label i { color: #FF9933; font-size: 20px; }
.form-group .file-label input[type="file"] { display: none; }
.form-group .file-info { font-size: 12px; color: #999; margin-top: 4px; }

/* --- Contact Page --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.contact-info-card { background: linear-gradient(135deg, #1B3A5C, #0d1f33); border-radius: 16px; padding: 40px; color: #fff; }
.contact-info-card h3 { font-size: 24px; margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-info-item i { width: 44px; height: 44px; background: rgba(255,153,51,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #FF9933; font-size: 18px; flex-shrink: 0; }
.contact-info-item h4 { font-size: 16px; margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; color: rgba(255,255,255,0.7); }
.contact-form-card { background: #fff; border-radius: 16px; padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.contact-form-card h3 { color: #1B3A5C; font-size: 24px; margin-bottom: 24px; }

.email-table-section { margin-top: 60px; }
.email-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.06); }
.email-table thead { background: linear-gradient(135deg, #1B3A5C, #0d1f33); color: #fff; }
.email-table th { padding: 16px 24px; text-align: left; font-weight: 600; font-size: 14px; }
.email-table td { padding: 16px 24px; border-bottom: 1px solid #f0f0f0; font-size: 14px; }
.email-table tr:last-child td { border-bottom: none; }
.email-table tr:hover td { background: rgba(255,153,51,0.04); }
.email-table .email-link { color: #FF9933; font-weight: 500; }

/* --- Knowledge Base --- */
.knowledge-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 24px; }
.knowledge-card { background: #fff; border-radius: 12px; padding: 28px; box-shadow: 0 5px 20px rgba(0,0,0,0.06); transition: all 0.3s; border-left: 4px solid #FF9933; }
.knowledge-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.knowledge-card .category { display: inline-block; background: rgba(255,153,51,0.1); color: #FF9933; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; margin-bottom: 12px; }
.knowledge-card h3 { color: #1B3A5C; font-size: 18px; margin-bottom: 10px; }
.knowledge-card p { color: #666; font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.knowledge-card .meta { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #999; }
.knowledge-card .download-btn { display: inline-flex; align-items: center; gap: 6px; color: #1B3A5C; font-weight: 600; font-size: 13px; transition: color 0.3s; }
.knowledge-card .download-btn:hover { color: #FF9933; }

/* --- Legal Pages --- */
.legal-content { max-width: 800px; margin: 0 auto; background: #fff; border-radius: 16px; padding: 48px; box-shadow: 0 5px 30px rgba(0,0,0,0.06); }
.legal-content h2 { color: #1B3A5C; font-size: 24px; margin: 32px 0 16px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: #555; line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content ul li { color: #555; line-height: 1.8; margin-bottom: 8px; list-style: disc; }

/* --- Alert Messages --- */
.alert { padding: 14px 20px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; display: flex; align-items: center; gap: 10px; animation: slideDown 0.4s ease; }
.alert-success { background: #e8f5e9; color: #2e7d32; border-left: 4px solid #138808; }
.alert-error { background: #ffebee; color: #c62828; border-left: 4px solid #c62828; }
.alert-info { background: #e3f2fd; color: #1565c0; border-left: 4px solid #1565c0; }

/* --- Footer --- */
.footer { position: relative; }
.footer-wave { line-height: 0; }
.footer-wave svg { width: 100%; height: 80px; }
.footer-content { background: #1B3A5C; padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-logo h3 { color: #fff; font-size: 24px; margin-bottom: 4px; }
.footer-logo p { color: #FF9933; font-size: 13px; font-weight: 500; }
.footer-about { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.7; margin-top: 16px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: #fff; transition: all 0.3s; }
.footer-social a:hover { background: #FF9933; transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-size: 17px; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 3px; background: #FF9933; border-radius: 2px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 14px; transition: all 0.3s; display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: #FF9933; transform: translateX(4px); }
.footer-contact li { color: rgba(255,255,255,0.6); font-size: 14px; display: flex; gap: 10px; margin-bottom: 14px; }
.footer-contact li i { color: #FF9933; margin-top: 3px; }
.footer-bottom { background: #152d47; padding: 18px 0; }
.footer-bottom-content { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom-content p { color: rgba(255,255,255,0.5); font-size: 13px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 13px; transition: color 0.3s; }
.footer-links a:hover { color: #FF9933; }

/* --- Scroll to Top --- */
.scroll-top { position: fixed; bottom: 30px; right: 30px; width: 46px; height: 46px; border-radius: 12px; background: #FF9933; color: #fff; border: none; cursor: pointer; font-size: 18px; display: none; align-items: center; justify-content: center; z-index: 999; transition: all 0.3s; box-shadow: 0 4px 15px rgba(255,153,51,0.4); }
.scroll-top.visible { display: flex; animation: fadeInUp 0.4s ease; }
.scroll-top:hover { background: #1B3A5C; transform: translateY(-3px); }

/* --- Admin Styles --- */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar { width: 260px; background: linear-gradient(180deg, #1B3A5C, #0d1f33); color: #fff; padding: 24px 0; position: fixed; top: 0; left: 0; bottom: 0; overflow-y: auto; z-index: 100; }
.admin-sidebar-logo { padding: 0 24px 24px; border-bottom: 1px solid rgba(255,255,255,0.1); text-align: center; }
.admin-sidebar-logo h3 { font-size: 20px; }
.admin-sidebar-logo p { font-size: 12px; color: #FF9933; }
.admin-nav { padding: 20px 0; }
.admin-nav a { display: flex; align-items: center; gap: 12px; padding: 12px 24px; color: rgba(255,255,255,0.7); font-size: 14px; transition: all 0.3s; border-left: 3px solid transparent; }
.admin-nav a:hover, .admin-nav a.active { color: #fff; background: rgba(255,255,255,0.05); border-left-color: #FF9933; }
.admin-nav a i { width: 20px; text-align: center; }
.admin-main { flex: 1; margin-left: 260px; background: #f0f2f5; min-height: 100vh; }
.admin-header { background: #fff; padding: 16px 30px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 50; }
.admin-header h2 { color: #1B3A5C; font-size: 22px; }
.admin-header-actions { display: flex; align-items: center; gap: 16px; }
.admin-content { padding: 30px; }

.admin-card { background: #fff; border-radius: 12px; box-shadow: 0 2px 15px rgba(0,0,0,0.05); margin-bottom: 24px; }
.admin-card-header { padding: 20px 24px; border-bottom: 1px solid #f0f0f0; display: flex; justify-content: space-between; align-items: center; }
.admin-card-header h3 { color: #1B3A5C; font-size: 18px; }
.admin-card-body { padding: 24px; }

.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 24px; }
.admin-stat-card { background: #fff; border-radius: 12px; padding: 24px; box-shadow: 0 2px 15px rgba(0,0,0,0.05); display: flex; align-items: center; gap: 16px; }
.admin-stat-icon { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.admin-stat-icon.blue { background: rgba(27,58,92,0.1); color: #1B3A5C; }
.admin-stat-icon.orange { background: rgba(255,153,51,0.1); color: #FF9933; }
.admin-stat-icon.green { background: rgba(19,136,8,0.1); color: #138808; }
.admin-stat-icon.red { background: rgba(229,57,53,0.1); color: #e53935; }
.admin-stat-info h4 { font-size: 28px; color: #333; }
.admin-stat-info p { font-size: 13px; color: #999; }

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { background: #f8f9fa; padding: 12px 16px; text-align: left; font-size: 13px; color: #666; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.admin-table td { padding: 14px 16px; border-bottom: 1px solid #f0f0f0; font-size: 14px; }
.admin-table tr:hover td { background: #fafafa; }
.admin-table .badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.badge-new { background: #e3f2fd; color: #1565c0; }
.badge-reviewed { background: #fff3e0; color: #e65100; }
.badge-shortlisted { background: #e8f5e9; color: #2e7d32; }
.badge-rejected { background: #ffebee; color: #c62828; }
.badge-hired { background: #e0f2f1; color: #00695c; }
.badge-unread { background: #e3f2fd; color: #1565c0; }
.badge-read { background: #fff3e0; color: #e65100; }
.badge-replied { background: #e8f5e9; color: #2e7d32; }

.admin-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 6px; font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.3s; border: none; font-family: inherit; }
.admin-btn-sm { padding: 5px 10px; font-size: 12px; }
.admin-btn-primary { background: #FF9933; color: #fff; }
.admin-btn-primary:hover { background: #e6862e; }
.admin-btn-secondary { background: #1B3A5C; color: #fff; }
.admin-btn-secondary:hover { background: #15304d; }
.admin-btn-success { background: #138808; color: #fff; }
.admin-btn-success:hover { background: #0f6e06; }
.admin-btn-danger { background: #e53935; color: #fff; }
.admin-btn-danger:hover { background: #c62828; }
.admin-btn-outline { background: transparent; border: 1px solid #ddd; color: #666; }
.admin-btn-outline:hover { border-color: #FF9933; color: #FF9933; }

.admin-modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1000; align-items: center; justify-content: center; }
.admin-modal-overlay.active { display: flex; }
.admin-modal { background: #fff; border-radius: 12px; max-width: 600px; width: 90%; max-height: 85vh; overflow-y: auto; animation: scaleIn 0.3s ease; }
.admin-modal-header { padding: 20px 24px; border-bottom: 1px solid #f0f0f0; display: flex; justify-content: space-between; align-items: center; }
.admin-modal-header h3 { color: #1B3A5C; font-size: 18px; }
.admin-modal-close { background: none; border: none; font-size: 24px; cursor: pointer; color: #999; }
.admin-modal-body { padding: 24px; }
.admin-modal-footer { padding: 16px 24px; border-top: 1px solid #f0f0f0; display: flex; justify-content: flex-end; gap: 10px; }

/* --- Login Page --- */
.login-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #1B3A5C 0%, #0d1f33 100%); position: relative; overflow: hidden; }
.login-page::before { content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%; background: radial-gradient(ellipse, rgba(255,153,51,0.05), transparent); }
.login-card { background: #fff; border-radius: 16px; padding: 48px; max-width: 420px; width: 90%; box-shadow: 0 20px 60px rgba(0,0,0,0.3); position: relative; z-index: 1; animation: scaleIn 0.5s ease; }
.login-logo { text-align: center; margin-bottom: 32px; }
.login-logo h2 { color: #1B3A5C; font-size: 26px; font-weight: 800; }
.login-logo p { color: #FF9933; font-size: 13px; }
.login-security { text-align: center; margin-top: 20px; }
.login-security i { color: #138808; }
.login-security span { font-size: 12px; color: #999; }

/* --- Pagination --- */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; }
.pagination a, .pagination span { padding: 8px 14px; border-radius: 6px; font-size: 14px; font-weight: 500; transition: all 0.3s; }
.pagination a { background: #fff; color: #666; border: 1px solid #e0e0e0; }
.pagination a:hover { border-color: #FF9933; color: #FF9933; }
.pagination .active { background: #FF9933; color: #fff; border: 1px solid #FF9933; }

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero h1 { font-size: 38px; }
    .about-preview { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .admin-stats { grid-template-columns: repeat(2, 1fr); }
    .timeline::before { left: 20px; }
    .timeline-item, .timeline-item:nth-child(even) { width: 100%; margin-left: 0; justify-content: flex-start; }
    .timeline-item .timeline-content, .timeline-item:nth-child(even) .timeline-content { margin-left: 50px; margin-right: 0; }
    .timeline-item .timeline-content::before, .timeline-item:nth-child(even) .timeline-content::before { left: -36px; right: auto; }
}

@media (max-width: 768px) {
    .top-bar-content { flex-direction: column; gap: 6px; font-size: 12px; }
    .nav-toggle { display: block; }
    .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
    .nav-menu.active { display: flex; }
    .nav-menu a { padding: 12px 16px; width: 100%; }
    .hero { min-height: 70vh; padding: 60px 0; }
    .hero h1 { font-size: 30px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .hero-buttons { flex-direction: column; }
    .section { padding: 60px 0; }
    .section-header h2 { font-size: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-content { flex-direction: column; gap: 10px; text-align: center; }
    .page-banner h1 { font-size: 30px; }
    .admin-sidebar { transform: translateX(-100%); transition: transform 0.3s; }
    .admin-sidebar.active { transform: translateX(0); }
    .admin-main { margin-left: 0; }
    .admin-stats { grid-template-columns: 1fr; }
    .knowledge-grid { grid-template-columns: 1fr; }
    .email-table { display: block; overflow-x: auto; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 26px; }
    .hero-stat .number { font-size: 28px; }
    .stats-grid { grid-template-columns: 1fr; }
    .career-form { padding: 24px; }
    .contact-info-card, .contact-form-card { padding: 24px; }
    .legal-content { padding: 24px; }
}
