@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy: #0B1D35;
  --navy-light: #132d4f;
  --blue: #2B5EA7;
  --orange: #F47B20;
  --orange-dark: #d96a15;
  --orange-light: #f9a825;
  --bg-light: #F5F7FA;
  --white: #FFFFFF;
  --text-dark: #1A1A2E;
  --text-medium: #555;
  --text-light: #888;
  --border: #e0e4e8;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --radius: 10px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
}

h1,h2,h3,h4,h5,h6 { font-family:'Poppins',sans-serif; font-weight:700; line-height:1.25; }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p { color: var(--text-medium); }
a { text-decoration:none; color:inherit; transition: var(--transition); }
img { max-width:100%; display:block; }
ul { list-style:none; }
.container { max-width:1200px; margin:0 auto; padding:0 20px; }

/* BUTTONS */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:14px 32px; border-radius:6px; font-weight:600;
  font-size:0.95rem; cursor:pointer; border:none;
  transition: var(--transition); letter-spacing:0.3px;
}
.btn-primary { background:var(--orange); color:#fff; }
.btn-primary:hover { background:var(--orange-dark); transform:translateY(-2px); box-shadow:0 6px 20px rgba(244,123,32,0.35); }
.btn-outline { background:transparent; border:2px solid #fff; color:#fff; }
.btn-outline:hover { background:#fff; color:var(--navy); }
.btn-dark { background:var(--navy); color:#fff; }
.btn-dark:hover { background:var(--navy-light); transform:translateY(-2px); }

.section-label {
  display:inline-block; font-size:0.8rem; font-weight:700;
  text-transform:uppercase; letter-spacing:3px; color:var(--orange);
  margin-bottom:12px;
}
.section-title { margin-bottom:16px; }
.section-subtitle { max-width:640px; margin:0 auto 48px; color:var(--text-medium); }
.text-center { text-align:center; }

/* NAVBAR */
.navbar {
  position:fixed; top:0; left:0; width:100%; z-index:1000;
  background:rgba(255,255,255,0.97); backdrop-filter:blur(12px);
  box-shadow:0 2px 16px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.navbar .container {
  display:flex; align-items:center; justify-content:space-between;
  height:85px;
}
.nav-logo { display:flex; align-items:center; gap:10px; }
.nav-logo img { height:70px; }
.nav-links { display:flex; align-items:center; gap:32px; }
.nav-links a {
  font-size:0.92rem; font-weight:500; color:var(--text-dark);
  position:relative; padding:4px 0;
}
.nav-links a:not(.dropdown-toggle)::after {
  content:''; position:absolute; bottom:-2px; left:0; width:0;
  height:2px; background:var(--orange); transition:var(--transition);
}
.nav-links a:not(.dropdown-toggle):hover::after, .nav-links a.active::after { width:100%; }
.nav-links a:hover { color:var(--orange); }
.nav-cta .btn { padding:10px 24px; font-size:0.88rem; }

/* Dropdown */
.dropdown { position:relative; }
.dropdown-toggle { cursor:pointer; display:flex; align-items:center; gap:6px; }
.dropdown-toggle::after {
  content:'\f078'; font-family:'Font Awesome 6 Free'; font-weight:900;
  font-size:0.6rem; transition:transform 0.3s ease;
}
.dropdown:hover .dropdown-toggle::after { transform:rotate(180deg); }
.dropdown-menu {
  position:absolute; top:100%; left:-16px;
  background:#fff; border-radius:8px; box-shadow:var(--shadow-lg);
  min-width:240px; padding:12px 0; opacity:0; visibility:hidden;
  transform:translateY(10px); transition:var(--transition);
}
.dropdown:hover .dropdown-menu { opacity:1; visibility:visible; transform:translateY(4px); }
.dropdown-menu a {
  display:block; padding:10px 24px; font-size:0.88rem;
}
.dropdown-menu a:hover { background:var(--bg-light); color:var(--orange); }

/* Mobile */
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:4px; }
.hamburger span { display:block; width:24px; height:2.5px; background:var(--text-dark); border-radius:2px; transition:var(--transition); }

/* HERO - Full BG Image Slider */
.hero {
  position:relative; min-height:94vh; display:flex; align-items:center;
  overflow:hidden; padding-top:85px;
}
.hero-slides {
  position:absolute; inset:0; z-index:0;
}
.hero-slide {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:0; transition:opacity 1.2s ease;
}
.hero-slide.active { opacity:1; }
.hero-slide::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(11,29,53,0.92) 0%, rgba(11,29,53,0.7) 50%, rgba(11,29,53,0.3) 100%);
}
.hero .container { position:relative; z-index:2; max-width:100%; margin:0; padding:0 20px 0 clamp(40px, 8vw, 140px); }
.hero-content { max-width:580px; }
.hero-label {
  display:inline-block; font-size:0.78rem; font-weight:600;
  text-transform:uppercase; letter-spacing:3px; color:var(--orange);
  margin-bottom:20px;
  animation: fadeSlideRight 0.8s ease both;
}
.hero h1 {
  color:#fff; margin-bottom:20px; font-size:clamp(2.2rem,4.5vw,3.4rem);
  animation: fadeSlideRight 0.8s 0.15s ease both;
}
.hero p {
  color:rgba(255,255,255,0.8); font-size:1.08rem;
  margin-bottom:36px; max-width:520px; line-height:1.8;
  animation: fadeSlideRight 0.8s 0.3s ease both;
}
.hero-buttons {
  display:flex; gap:16px; flex-wrap:wrap;
  animation: fadeSlideRight 0.8s 0.45s ease both;
}
@keyframes fadeSlideRight {
  from { opacity:0; transform:translateX(-30px); }
  to { opacity:1; transform:translateX(0); }
}

/* Hero slider dots */
.hero-dots {
  position:absolute; bottom:40px; left:20px;
  display:flex; gap:10px; z-index:5;
}
.hero-dots span {
  width:12px; height:12px; border-radius:50%;
  background:rgba(255,255,255,0.3); cursor:pointer;
  transition:var(--transition); border:2px solid transparent;
}
.hero-dots span:hover { background:rgba(255,255,255,0.6); }
.hero-dots span.active { background:var(--orange); width:36px; border-radius:6px; border-color:var(--orange); }

/* ABOUT INTRO */
.about-intro { padding:100px 0; }
.about-intro .container { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.about-img { position:relative; border-radius:var(--radius); overflow:hidden; }
.about-img img { width:100%; height:400px; object-fit:cover; border-radius:var(--radius); }
.about-img-badge {
  position:absolute; bottom:-20px; right:-20px;
  background:var(--orange); color:#fff; padding:20px 28px;
  border-radius:var(--radius); font-weight:700; font-size:1.1rem;
  box-shadow:0 8px 24px rgba(244,123,32,0.3);
}
.about-text .section-label { margin-bottom:8px; }
.about-text h2 { margin-bottom:20px; }
.about-text > p { margin-bottom:20px; }
.about-features { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin:24px 0 32px; }
.about-feature {
  display:flex; align-items:center; gap:10px;
  font-size:0.9rem; font-weight:500; color:var(--text-dark);
}
.about-feature i { color:var(--orange); font-size:1rem; }

/* SERVICES */
.services { padding:100px 0; background:var(--bg-light); }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.service-card {
  background:#fff; border-radius:var(--radius); padding:36px 28px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border:1px solid var(--border);
  position:relative; overflow:hidden;
}
.service-card::before {
  content:''; position:absolute; top:0; left:0; width:100%;
  height:4px; background:linear-gradient(90deg, var(--orange), var(--orange-light));
  transform:scaleX(0); transform-origin:left;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card:hover::before { transform:scaleX(1); }
.service-card:hover {
  transform:translateY(-8px);
  box-shadow:0 20px 50px rgba(0,0,0,0.12);
  border-color:transparent;
}
.service-icon {
  width:56px; height:56px; border-radius:12px;
  background:linear-gradient(135deg, var(--orange), #f9a825);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px; font-size:1.4rem; color:#fff;
  transition: all 0.4s ease;
}
.service-card:hover .service-icon {
  transform:scale(1.1) rotate(-5deg);
  box-shadow:0 8px 20px rgba(244,123,32,0.3);
}
.service-card h3 { margin-bottom:12px; transition: color 0.3s ease; }
.service-card:hover h3 { color:var(--orange); }
.service-card p { font-size:0.9rem; margin-bottom:16px; }
.service-link {
  font-size:0.88rem; font-weight:600; color:var(--orange);
  display:inline-flex; align-items:center; gap:6px;
  transition: all 0.3s ease;
}
.service-link:hover { gap:12px; color:var(--orange-dark); }

/* SECTORS */
.sectors { padding:100px 0; }
.sectors-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.sector-card {
  display:flex; align-items:center; gap:14px;
  padding:20px 24px; border-radius:var(--radius);
  border:1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor:pointer; background:#fff;
}
.sector-card:hover {
  border-color:var(--orange); transform:translateY(-4px);
  box-shadow:0 12px 32px rgba(244,123,32,0.12);
}
.sector-icon {
  font-size:1.5rem; color:var(--orange); min-width:32px;
  text-align:center; transition:transform 0.3s ease;
}
.sector-card:hover .sector-icon { transform:scale(1.2); }
.sector-card span { font-weight:600; font-size:0.92rem; transition:color 0.3s; }
.sector-card:hover span { color:var(--orange); }

/* STATS */
.stats {
  padding:60px 0;
  background:linear-gradient(135deg, var(--navy) 0%, #0f3460 100%);
}
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:32px; text-align:center; }
.stat-item h3 { font-size:2.8rem; color:var(--orange); margin-bottom:4px; }
.stat-item p { color:rgba(255,255,255,0.75); font-size:0.9rem; font-weight:500; }

/* CTA BANNER */
.cta-banner {
  padding:80px 0;
  background:linear-gradient(135deg, #0aa7ca, #0672a9);
  position:relative; overflow:hidden;
}
.cta-banner::before {
  content:''; position:absolute; right:-150px; top:-100px;
  width:450px; height:450px; border-radius:50%;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: inset 0 0 40px rgba(255,255,255,0.05);
}
.cta-banner::after {
  content:''; position:absolute; right:100px; bottom:-150px;
  width:350px; height:350px; border-radius:50%;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: inset 0 0 40px rgba(255,255,255,0.05);
}
.cta-banner .container {
  display:flex; align-items:center; justify-content:space-between;
  position:relative; z-index:2;
}
.cta-banner h2 { color:#fff; max-width:600px; }
.cta-banner p { color:#fff; margin-top:8px; line-height: 1.6; max-width: 600px; }
.cta-banner .btn-white {
  background:#fff; color:#0672a9;
  border-radius:6px; padding:12px 28px;
  font-weight:600; font-size:0.95rem; border:none; cursor:pointer;
  display:inline-flex; align-items:center; justify-content:center;
  transition: var(--transition);
}
.cta-banner .btn-white:hover {
  background:#f5f5f5; transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(0,0,0,0.1);
}

/* WHY US */
.why-us { padding:100px 0; background:var(--bg-light); }
.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; overflow:hidden; }
.why-img img { border-radius:var(--radius); width:100%; height:420px; object-fit:cover; }
.why-item { display:flex; gap:16px; margin-bottom:28px; }
.why-item-icon {
  min-width:48px; height:48px; border-radius:10px;
  background:rgba(244,123,32,0.1); display:flex;
  align-items:center; justify-content:center;
  color:var(--orange); font-size:1.2rem;
}
.why-item h4 { margin-bottom:6px; font-size:1rem; }
.why-item p { font-size:0.88rem; }

/* SUCCESS STORIES */
.stories { padding:100px 0; }
.stories-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.story-card {
  border-radius:var(--radius); overflow:hidden;
  box-shadow:var(--shadow);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.story-card:hover {
  transform:translateY(-8px);
  box-shadow:0 20px 50px rgba(0,0,0,0.15);
}
.story-card img {
  width:100%; height:180px; object-fit:cover;
  transition:transform 0.6s ease;
}
.story-card:hover img { transform:scale(1.08); }
.story-card-body { padding:20px; }
.story-card h4 { font-size:0.95rem; margin-bottom:8px; transition:color 0.3s; }
.story-card:hover h4 { color:var(--orange); }
.story-card p { font-size:0.82rem; }

/* WORK PROCESS */
.process { padding:80px 0; background:var(--bg-light); }
.process-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:32px; margin-top:48px; }
.process-step { text-align:center; position:relative; }
.process-num {
  width:60px; height:60px; border-radius:50%;
  background:linear-gradient(135deg, var(--orange), #f9a825);
  color:#fff; font-size:1.3rem; font-weight:800;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 18px;
}
.process-step h4 { margin-bottom:8px; }
.process-step p { font-size:0.85rem; }

/* CONTACT PAGE */
.page-hero {
  padding:140px 0 60px;
  background:linear-gradient(135deg, var(--navy), #0f3460);
  position:relative;
}
.page-hero::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'%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");
}
.page-hero .container { position:relative; z-index:2; }
.page-hero .section-label { color:var(--orange); }
.page-hero h1 { color:#fff; margin-bottom:16px; }
.page-hero p { color:rgba(255,255,255,0.7); max-width:560px; }

.contact-section { padding:80px 0; }
.contact-grid { display:grid; grid-template-columns:1fr 1.3fr; gap:60px; }
.contact-info h3 { margin-bottom:24px; }
.contact-item { display:flex; gap:16px; margin-bottom:28px; }
.contact-item-icon {
  min-width:44px; height:44px; border-radius:10px;
  background:rgba(244,123,32,0.1); display:flex;
  align-items:center; justify-content:center;
  color:var(--orange); font-size:1.1rem;
}
.contact-item h4 { font-size:0.95rem; margin-bottom:4px; }
.contact-item p { font-size:0.85rem; }
.social-links { display:flex; gap:12px; margin-top:24px; }
.social-links a {
  width:40px; height:40px; border-radius:50%;
  background:var(--bg-light); display:flex;
  align-items:center; justify-content:center;
  color:var(--text-medium); font-size:1rem;
  transition:var(--transition);
}
.social-links a:hover { background:var(--orange); color:#fff; }

.contact-form { background:#fff; padding:40px; border-radius:var(--radius); box-shadow:var(--shadow); }
.contact-form h3 { margin-bottom:24px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
.form-group { margin-bottom:16px; }
.form-group label { display:block; font-size:0.85rem; font-weight:600; margin-bottom:6px; }
.form-group input, .form-group textarea, .form-group select {
  width:100%; padding:12px 16px; border:1px solid var(--border);
  border-radius:6px; font-family:inherit; font-size:0.9rem;
  transition:var(--transition); background:#fff;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline:none; border-color:var(--orange);
  box-shadow:0 0 0 3px rgba(244,123,32,0.1);
}
.form-group textarea { resize:vertical; min-height:120px; }
.form-submit { width:100%; padding:14px; font-size:1rem; }

/* FAQ */
.faq { padding:80px 0; background:var(--bg-light); }
.faq-list { max-width:720px; margin:0 auto; }
.faq-item { background:#fff; border-radius:8px; margin-bottom:12px; overflow:hidden; border:1px solid var(--border); }
.faq-question {
  padding:18px 24px; font-weight:600; font-size:0.95rem;
  cursor:pointer; display:flex; justify-content:space-between;
  align-items:center; transition:var(--transition);
}
.faq-question:hover { color:var(--orange); }
.faq-question::after { content:'+'; font-size:1.3rem; color:var(--orange); transition:var(--transition); }
.faq-item.active .faq-question::after { content:'−'; }
.faq-answer { padding:0 24px; max-height:0; overflow:hidden; transition:max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height:200px; padding-bottom:18px; }
.faq-answer p { font-size:0.9rem; }

/* FOOTER */
.footer {
  background:var(--navy); padding:60px 0 0; color:#fff;
}
.footer-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr 1.2fr; gap:40px; }
.footer-brand img { height:60px; margin-bottom:16px; }
.footer-brand p { font-size:0.85rem; margin-bottom:20px; color:#fff; }
.footer h4 {
  color:#fff; font-size:0.85rem; text-transform:uppercase;
  letter-spacing:2px; margin-bottom:20px;
}
.footer ul li { margin-bottom:10px; }
.footer ul a { font-size:0.88rem; }
.footer ul a:hover { color:var(--orange); padding-left:4px; }
.footer-contact p { font-size:0.85rem; margin-bottom:10px; display:flex; gap:8px; align-items:flex-start; color:#fff; }
.footer-contact i { color:var(--orange); margin-top:3px; }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,0.1);
  padding:20px 0; margin-top:40px;
  display:flex; justify-content:space-between;
  align-items:center; font-size:0.82rem;
}
.footer-bottom a:hover { color:var(--orange); }

/* ANIMATIONS */
.fade-up {
  opacity:0; transform:translateY(40px);
  transition:opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.fade-up.visible { opacity:1; transform:translateY(0); }
.fade-left {
  opacity:0; transform:translateX(-40px);
  transition:opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.fade-left.visible { opacity:1; transform:translateX(0); }
.fade-right {
  opacity:0; transform:translateX(40px);
  transition:opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.fade-right.visible { opacity:1; transform:translateX(0); }

/* Image hover zoom */
.about-img img, .why-img img { transition: transform 0.6s ease; }
.about-img:hover img, .why-img:hover img { transform:scale(1.04); }

/* Process step hover */
.process-step { transition:all 0.3s ease; }
.process-step:hover { transform:translateY(-6px); }
.process-num { transition:all 0.3s ease; }
.process-step:hover .process-num { transform:scale(1.1); box-shadow:0 8px 24px rgba(244,123,32,0.3); }

/* Why item hover */
.why-item { transition:all 0.3s ease; padding:12px; border-radius:8px; }
.why-item:hover { background:rgba(244,123,32,0.04); }
.why-item-icon { transition:all 0.3s ease; }
.why-item:hover .why-item-icon { background:var(--orange); color:#fff; transform:scale(1.05); }

/* Stat counter hover */
.stat-item { transition:transform 0.3s ease; }
.stat-item:hover { transform:scale(1.05); }

/* Button ripple */
.btn { position:relative; overflow:hidden; }
.btn::after {
  content:''; position:absolute; width:0; height:0;
  background:rgba(255,255,255,0.2); border-radius:50%;
  transform:translate(-50%,-50%); transition:width 0.6s, height 0.6s;
}

/* SCROLL TO TOP */
.scroll-top {
  position:fixed; bottom:30px; right:30px;
  width:44px; height:44px; border-radius:50%;
  background:var(--orange); color:#fff; border:none;
  font-size:1.1rem; cursor:pointer; opacity:0;
  visibility:hidden; transition:var(--transition);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 16px rgba(244,123,32,0.35); z-index:999;
}
.scroll-top.visible { opacity:1; visibility:visible; }
.scroll-top:hover { transform:translateY(-4px); box-shadow:0 8px 24px rgba(244,123,32,0.45); }

/* UTILITY GRIDS */
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:40px; }
.grid-2-align { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }

/* RESPONSIVE */
@media(max-width:1024px) {
  .services-grid, .stories-grid { grid-template-columns:repeat(2,1fr); }
  .sectors-grid { grid-template-columns:repeat(2,1fr); }
  .process-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:768px) {
  .nav-links, .nav-cta { display:none; }
  .hamburger { display:flex; }
  .mobile-menu {
    position:fixed; top:85px; left:0; width:100%;
    background:#fff; box-shadow:var(--shadow-lg);
    padding:20px; display:none; flex-direction:column; gap:16px;
    z-index:999;
  }
  .mobile-menu.active { display:flex; }
  .mobile-menu a { padding:12px 0; font-weight:500; border-bottom:1px solid var(--border); }
  .mobile-menu .btn { text-align:center; justify-content:center; }
  .hero { min-height:80vh; }
  .hero h1 { font-size:2rem; }
  .about-intro .container, .why-grid, .contact-grid { grid-template-columns:1fr; }
  .services-grid, .stats-grid, .sectors-grid, .stories-grid, .process-grid { grid-template-columns:1fr; }
  .grid-2, .grid-2-align { grid-template-columns:1fr; }
  .cta-banner .container { flex-direction:column; text-align:center; gap:24px; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; gap:10px; text-align:center; }
  .form-row { grid-template-columns:1fr; }
  .about-features { grid-template-columns:1fr; }
  .hero-buttons { flex-direction:column; }
}
