* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #1a3c6e;
  --accent: #f5a623;
  --text: #333;
  --light: #f8f9fa;
  --white: #fff;
  --black: #000;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
}

body { font-family: 'Poppins', sans-serif; color: var(--text); overflow-x: hidden; }

.container { max-width: 1300px; margin: 0 auto; padding: 0 20px; }

@media (max-width: 480px) {
  .container { padding: 0 16px; }
}
.accent { color: var(--accent); }
.section-tag { color: var(--accent); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 12px; color: var(--primary); }
.section-header p { color: #666; max-width: 550px; margin: 0 auto; }

/* Buttons */
.btn-primary { background: var(--accent); color: var(--white); padding: 13px 30px; border-radius: 6px; font-weight: 600; text-decoration: none; border: none; cursor: pointer; font-size: 0.95rem; transition: all 0.3s; display: inline-block; }
.btn-primary:hover { background: #e09510; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,166,35,0.4); }
.btn-outline { background: transparent; color: var(--white); padding: 13px 30px; border-radius: 6px; font-weight: 600; text-decoration: none; border: 2px solid var(--white); font-size: 0.95rem; transition: all 0.3s; display: inline-block; }
.btn-outline:hover { background: var(--white); color: var(--primary); }

/* Top Bar */
.topbar { background: #0d2444; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 8px 0; font-size: 0.8rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; gap: 20px; }
.topbar-left a { color: rgba(255,255,255,0.7); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color 0.3s; }
.topbar-left a:hover { color: var(--accent); }
.topbar-left a i { color: var(--accent); font-size: 0.75rem; }
.topbar-right { display: flex; gap: 0; }
.topbar-right a { color: rgba(255,255,255,0.65); text-decoration: none; padding: 3px 12px; border-right: 1px solid rgba(255,255,255,0.15); font-size: 0.78rem; transition: color 0.3s; white-space: nowrap; }
.topbar-highlight { background: var(--accent); color: #fff !important; padding: 3px 12px; border-radius: 4px; font-weight: 600; border-right: none !important; }
.topbar-highlight:hover { background: #e09510; color: #fff !important; }

/* Navbar */
.navbar { position: fixed; top: 37px; width: 100%; z-index: 1000; padding: 5px 0; transition: all 0.3s;background: #fff !important; }
.hero { padding-top: 0; }
.navbar.scrolled { background: var(--primary); padding: 12px 0; box-shadow: var(--shadow); top: 0; }
.navbar.navbar-inner { background: var(--primary); padding: 14px 0; box-shadow: var(--shadow); top: 37px; }
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.3rem; font-weight: 700; color: var(--white); text-decoration: none; }
.logo i { color: var(--accent); font-size: 1.5rem; }
.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { color: var(--black); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.3s; display: flex;}
.nav-links a:hover { color: var(--accent); }
.btn-nav { background: var(--accent); color: var(--white); padding: 10px 22px; border-radius: 6px; font-weight: 600; text-decoration: none; font-size: 0.88rem; transition: all 0.3s; }
.btn-nav:hover { background: #e09510; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 25px; height: 2px; background: var(--black); transition: all 0.3s; }

/* Hero */
.hero { min-height: 100vh; background: linear-gradient(135deg, #0d2444 0%, #1a3c6e 50%, #1e4d8c 100%); display: flex; align-items: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: rgba(245,166,35,0.08); border-radius: 50%; }
.hero::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 400px; height: 400px; background: rgba(255,255,255,0.04); border-radius: 50%; }
.hero-content { position: relative; z-index: 1; padding: 140px 0 80px; width: 100%; }
.hero-tag { color: var(--accent); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.hero-content h1 { font-size: 3.5rem; font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 20px; }
.hero-sub { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 550px; margin-bottom: 35px; line-height: 1.7; }
.hero-btns { display: flex; gap: 16px; margin-bottom: 60px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 50px; flex-wrap: wrap; }
.stat h3 { font-size: 2rem; font-weight: 700; color: var(--accent); }
.stat p { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

/* Services */
.services { padding: 90px 0; background: #f4f6f9; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white); border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(0,0,0,0.13); }
.service-card-img {
  position: relative; height: 200px; overflow: hidden;
}
.service-card-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.4s; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-img::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(to bottom, transparent 40%, rgba(13,36,68,0.7) 100%);
}
.service-card-img .svc-cat-badge {
  position:absolute; bottom:14px; left:16px; z-index:1;
  background: var(--accent); color:#fff;
  font-size:0.7rem; font-weight:700; padding:3px 12px;
  border-radius:20px; text-transform:uppercase; letter-spacing:1px;
}
.service-card-body { padding: 22px 24px 24px; flex:1; display:flex; flex-direction:column; }
.service-card-body h3 { font-size:1.05rem; font-weight:700; color:var(--primary); margin-bottom:10px; line-height:1.4; }
.service-card-body p { color:#666; font-size:0.88rem; line-height:1.65; flex:1; margin-bottom:18px; }
.service-card-footer { display:flex; justify-content:space-between; align-items:center; border-top:1px solid #f0f0f0; padding-top:14px; margin-top:auto; }
.service-card-footer a { color:var(--primary); font-size:0.83rem; font-weight:600; text-decoration:none; display:flex; align-items:center; gap:6px; transition:all 0.3s; }
.service-card-footer a:hover { color:var(--accent); gap:10px; }
.service-card-footer a i { font-size:0.75rem; }

/* About */
.about { padding: 90px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.img-box { position: relative; }
.img-box img { width: 100%; border-radius: 16px; box-shadow: var(--shadow); }
.exp-badge { position: absolute; bottom: -20px; right: -20px; background: var(--accent); color: var(--white); padding: 20px 25px; border-radius: 12px; text-align: center; box-shadow: 0 8px 25px rgba(245,166,35,0.4); }
.exp-badge h3 { font-size: 1.8rem; font-weight: 700; }
.exp-badge p { font-size: 0.8rem; font-weight: 500; }
.about-content h2 { font-size: 2.2rem; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.about-content p { color: #666; line-height: 1.7; margin-bottom: 14px; }
.about-list { list-style: none; margin: 20px 0 30px; }
.about-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-weight: 500; }
.about-list li i { color: var(--accent); }

/* Why Us */
.why-us { padding: 90px 0; background: var(--primary); }
.why-us .section-header h2 { color: var(--white); }
.why-us .section-header p { color: rgba(255,255,255,0.7); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { background: rgba(255,255,255,0.08); padding: 35px 25px; border-radius: 12px; text-align: center; border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s; }
.why-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-5px); }
.why-card i { font-size: 2rem; color: var(--accent); margin-bottom: 16px; }
.why-card h3 { color: var(--white); font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.6; }

.blog-section { padding: 60px 0; background: var(--light); }
.blog-layout { display: flex; gap: 40px; align-items: flex-start; }
.blog-main { flex: 1; min-width: 0; }
.blog-sidebar { width: 320px; flex-shrink: 0; position: sticky; top: 100px; }
.article-card { background: var(--white); padding: 28px; border-radius: 10px; box-shadow: var(--shadow); margin-bottom: 24px; border-left: 4px solid transparent; transition: border-color 0.3s; }
.article-card:hover { border-left-color: var(--accent); }
.article-cat { background: var(--primary); color: var(--white); font-size: 0.72rem; font-weight: 600; padding: 3px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 1px; }
.article-card h3 { margin: 12px 0 10px; font-size: 1.05rem; font-weight: 600; }
.article-card h3 a { color: var(--primary); text-decoration: none; transition: color 0.3s; }
.article-card h3 a:hover { color: var(--accent); }
.article-card p { color: #666; font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.btn-readmore { background: var(--primary); color: var(--white); padding: 8px 22px; border-radius: 5px; font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: background 0.3s; display: inline-block; }
.btn-readmore:hover { background: var(--accent); }

/* Pagination */
.pagination { display: flex; gap: 8px; margin-top: 10px; }
.pagination a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 6px; background: var(--white); color: var(--primary); font-size: 0.88rem; font-weight: 600; text-decoration: none; box-shadow: var(--shadow); transition: all 0.3s; }
.pagination a.active, .pagination a:hover { background: var(--accent); color: var(--white); }
.pagination a:last-child { width: auto; padding: 0 14px; }

/* Sidebar */
.sidebar-widget { background: var(--white); padding: 22px; border-radius: 10px; box-shadow: var(--shadow); margin-bottom: 24px; }
.sidebar-widget h4 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--accent); }
.sidebar-widget select { width: 100%; padding: 9px 12px; border: 1.5px solid #e0e0e0; border-radius: 6px; font-family: 'Poppins', sans-serif; font-size: 0.88rem; outline: none; color: var(--text); }

/* Featured Posts */
.fp-nav { float: right; font-size: 0.75rem; color: #999; cursor: pointer; }
.fp-nav i { padding: 2px 5px; transition: color 0.3s; }
.fp-nav i:hover { color: var(--accent); }
.featured-slider { overflow: hidden; }
.featured-post { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
.featured-post:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.featured-post img { width: 60px; height: 50px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.featured-post a { color: var(--primary); text-decoration: none; font-size: 0.85rem; font-weight: 500; line-height: 1.4; display: block; margin-bottom: 4px; transition: color 0.3s; }
.featured-post a:hover { color: var(--accent); }
.featured-post span { color: #999; font-size: 0.75rem; }

/* Topics */
.topic-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.topic-list a { display: flex; justify-content: space-between; align-items: center; color: #555; text-decoration: none; font-size: 0.88rem; padding: 6px 0; border-bottom: 1px solid #f0f0f0; transition: color 0.3s; }
.topic-list a:hover { color: var(--accent); }
.topic-list span { background: var(--primary); color: var(--white); font-size: 0.72rem; padding: 2px 8px; border-radius: 10px; }

/* News */
.news-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.news-list a { color: #555; text-decoration: none; font-size: 0.88rem; padding: 6px 0; border-bottom: 1px solid #f0f0f0; display: block; transition: color 0.3s; }
.news-list a:hover { color: var(--accent); }

/* Newsletter */
.sidebar-widget p { color: #666; font-size: 0.85rem; margin-bottom: 12px; }
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form input { padding: 10px 12px; border: 1.5px solid #e0e0e0; border-radius: 6px; font-family: 'Poppins', sans-serif; font-size: 0.88rem; outline: none; }
.newsletter-form input:focus { border-color: var(--primary); }
.newsletter-form button { background: var(--primary); color: var(--white); padding: 10px; border: none; border-radius: 6px; font-weight: 600; font-size: 0.88rem; cursor: pointer; transition: background 0.3s; }
.newsletter-form button:hover { background: var(--accent); }

/* Topics Section */
.topics-section { padding: 80px 0; background: var(--light); }
.topics-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 30px; }
.topics-header h2 { font-size: 2.2rem; font-weight: 700; color: var(--primary); }
.topics-arrows { display: flex; gap: 10px; align-items: center; }
.topics-arrows .art-arrow {
  position: static; transform: none;
  width: 38px; height: 38px; background: var(--primary); color: var(--white);
  border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.85rem; box-shadow: 0 4px 12px rgba(0,0,0,0.2); transition: background 0.3s;
}
.topics-arrows .art-arrow:hover { background: var(--accent); }
.topics-scroll {
  display: flex; gap: 22px;
  overflow-x: auto; scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.topics-scroll::-webkit-scrollbar { display: none; }
.topic-blog-card {
  flex: 0 0 calc((100% - 44px) / 3); background: var(--white); border-radius: 12px;
  box-shadow: var(--shadow); overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.topic-blog-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.13); }
.topic-blog-thumb { position: relative; height: 170px; overflow: hidden; }
.topic-blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.topic-blog-card:hover .topic-blog-thumb img { transform: scale(1.06); }
.topic-blog-body { padding: 18px; }
.topic-blog-body h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; line-height: 1.45; }
.topic-blog-body h3 a { color: var(--primary); text-decoration: none; transition: color 0.3s; }
.topic-blog-body h3 a:hover { color: var(--accent); }
.topic-blog-body p { color: #666; font-size: 0.83rem; line-height: 1.6; margin-bottom: 14px; }
@media (max-width: 768px) { .topics-header { flex-direction: column; align-items: flex-start; gap: 14px; } .topic-blog-card { flex: 0 0 calc((100% - 22px) / 2); } }
@media (max-width: 480px) { .topic-blog-card { flex: 0 0 85%; } }

/* Blogs (old 3-col kept for reference) */
.blogs { padding: 90px 0; background: var(--white); }
.blogs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--white); border-radius: 12px; box-shadow: var(--shadow); overflow: hidden; transition: all 0.3s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0,0,0,0.12); }
.blog-img { position: relative; overflow: hidden; height: 200px; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-cat { position: absolute; top: 14px; left: 14px; background: var(--accent); color: var(--white); font-size: 0.75rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; }
.blog-body { padding: 22px; }
.blog-meta { font-size: 0.78rem; color: #999; margin-bottom: 10px; }
.blog-meta i { color: var(--accent); }
.blog-body h3 { font-size: 1rem; font-weight: 600; color: var(--primary); margin-bottom: 10px; line-height: 1.5; }
.blog-body h3 a { color: inherit; text-decoration: none; transition: color 0.3s; }
.blog-body h3 a:hover { color: var(--accent); }
.blog-body p { color: #666; font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; }
.blog-read { color: var(--primary); font-size: 0.85rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: all 0.3s; }
.blog-read:hover { color: var(--accent); gap: 10px; }

/* Testimonials */
.testimonials { padding: 90px 0; background: var(--light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: var(--white); padding: 30px; border-radius: 12px; box-shadow: var(--shadow); }
.stars { color: var(--accent); margin-bottom: 14px; }
.testimonial-card p { color: #555; font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.client { display: flex; align-items: center; gap: 12px; }
.client-avatar { width: 44px; height: 44px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; overflow: hidden; }
.client h4 { font-size: 0.95rem; font-weight: 600; color: var(--primary); }
.client span { font-size: 0.8rem; color: #888; }

/* Contact */
.contact { padding: 90px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 2.2rem; font-weight: 700; color: var(--primary); margin-bottom: 14px; }
.contact-info > p { color: #666; line-height: 1.7; margin-bottom: 30px; }
.info-items { display: flex; flex-direction: column; gap: 20px; }
.info-item { display: flex; align-items: flex-start; gap: 16px; }
.info-item i { width: 44px; height: 44px; background: var(--primary); color: var(--accent); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.info-item h4 { font-size: 0.9rem; font-weight: 600; color: var(--primary); margin-bottom: 3px; }
.info-item p { color: #666; font-size: 0.88rem; }
.contact-form { background: var(--white); padding: 40px; border-radius: 16px; box-shadow: var(--shadow); }
.contact-form form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input, .contact-form select, .contact-form textarea {
  padding: 13px 16px; border: 1.5px solid #e0e0e0; border-radius: 8px; font-family: 'Poppins', sans-serif; font-size: 0.9rem; color: var(--text); transition: border-color 0.3s; outline: none; width: 100%;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--primary); }
.contact-form textarea { resize: vertical; }
.contact-form .btn-primary { width: 100%; justify-content: center; display: flex; align-items: center; gap: 8px; }

/* Footer */
.footer { background: #0d2444; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 50px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.socials { display: flex; gap: 12px; }
.socials a { width: 36px; height: 36px; background: rgba(255,255,255,0.1); color: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: all 0.3s; text-decoration: none; }
.socials a:hover { background: var(--accent); }
.footer-links h4 { color: var(--white); font-size: 1rem; font-weight: 600; margin-bottom: 18px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li { color: rgba(255,255,255,0.6); font-size: 0.88rem; display: flex; align-items: center; gap: 8px; }
.footer-links ul li a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.3s; }
.footer-links ul li a:hover { color: var(--accent); }
.footer-links ul li i { color: var(--accent); font-size: 0.8rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom-inner p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 0; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.82rem; padding: 0 12px; border-right: 1px solid rgba(255,255,255,0.2); transition: color 0.3s; }
.footer-bottom-links a:last-child { border-right: none; }
.footer-bottom-links a:hover { color: var(--accent); }

/* Dropdown Menu */
.has-dropdown { position: relative; }
.has-dropdown > a { display: flex; align-items: center; gap: 5px; }
.has-dropdown > a i { font-size: 0.7rem; transition: transform 0.3s; }
.has-dropdown:hover > a i { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  padding: 20px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 999;
  border-top: 3px solid var(--accent);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-col h5 {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}
.dropdown-col a {
  display: block;
  color: #555 !important;
  font-size: 0.88rem;
  padding: 6px 0;
  transition: all 0.2s;
  border-bottom: none;
}
.mega-dropdown { display: flex; gap: 30px; min-width: 380px; }
.mega-dropdown .dropdown-col { flex: 1; }


/* Responsive */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar-left { display: none; }
  .topbar-right { flex-wrap: wrap; gap: 4px; }
  .navbar { background: var(--primary); box-shadow: var(--shadow); }
  .topbar-right { flex-wrap: wrap; gap: 4px; }
  .topbar-right a { border-right: none; padding: 2px 8px; font-size: 0.72rem; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 70px; left: 0;
    width: 100%; background: var(--primary);
    padding: 20px; gap: 0;
    max-height: 80vh; overflow-y: auto;
  }
  .nav-links > li { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-links > li > a { padding: 12px 0; display: flex; justify-content: space-between; color: #FFF;}
  .dropdown {
    position: static; background: rgba(0,0,0,0.2); box-shadow: none;
    border-radius: 0; border-top: none; padding: 10px 15px;
    opacity: 1; visibility: visible; transform: none; display: none;
  }
  .has-dropdown.mobile-open .dropdown { display: block; }
  .dropdown-col a { color: rgba(255,255,255,0.8) !important; }
  .dropdown-col a:hover { color: var(--accent) !important; }

  /* Hero mobile */
  .hero { min-height: auto; }
  .hero-content { padding: 120px 16px 40px; }
  .hero-content h1 { font-size: 1.9rem; line-height: 1.3; }
  .hero-sub { font-size: 0.92rem; margin-bottom: 28px; }
  .hero-btns { flex-direction: column; gap: 12px; margin-bottom: 40px; align-items: flex-start; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline { width: auto; text-align: center; display: inline-block; padding: 13px 28px; }
  .hero-stats { gap: 24px; }
  .stat h3 { font-size: 1.6rem; }
  .stat p { font-size: 0.78rem; }

  /* Blog layout mobile */
  .blog-layout { flex-direction: column !important; gap: 24px; }
  .blog-sidebar { width: 100% !important; position: static !important; }

  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .exp-badge { right: 10px; bottom: -15px; }
  .services-grid, .testimonials-grid, .blogs-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 1.8rem; }
  .contact-form { padding: 24px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.6rem; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .stat h3 { font-size: 1.4rem; }
}


.table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
}

.custom-table th,
.custom-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: middle;
}

.custom-table th {
    background: #f5f6f8;
    color: #222;
    font-weight: 600;
    white-space: nowrap;
}

.custom-table tbody tr {
    transition: background 0.2s ease;
}

.custom-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.custom-table tbody tr:hover {
    background: #f1f5f9;
}

.custom-table td {
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-table {
        min-width: 700px;
    }

    .custom-table th,
    .custom-table td {
        padding: 10px 12px;
        font-size: 13px;
    }
}
