/* =============================================
   INCORVA CORPORATE VENTURES LLP
   Global Stylesheet – Shared across all pages
   ============================================= */

:root {
  --orange: #FF6B00;
  --orange2: #FF8E00;
  --blue: #1A237E;
  --blue2: #3949AB;
  --green: #00C853;
  --yellow: #FFD600;
  --cyan: #00B8D9;
  --purple: #7C3AED;
  --pink: #FF3D7F;
  --white: #fff;
  --light: #f7f9ff;
  --text: #1a1a2e;
  --text2: #555;
  --shadow: 0 8px 32px rgba(26,35,126,0.13);
  --radius: 18px;
  --grad-orange: linear-gradient(135deg, #FF6B00, #FFD600);
  --grad-blue: linear-gradient(135deg, #1A237E, #3949AB);
  --grad-green: linear-gradient(135deg, #00C853, #00E676);
  --grad-nav: linear-gradient(90deg, #1A237E 0%, #3949AB 60%, #FF6B00 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text); background: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== INNER PAGE NAVBAR ===== */
.inner-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: var(--grad-nav);
  box-shadow: 0 4px 24px rgba(26,35,126,0.25);
}
.inner-navbar .navbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.inner-navbar .brand { display: flex; align-items: center; gap: 12px; }
.inner-navbar .brand-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--grad-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff; box-shadow: 0 4px 16px rgba(255,107,0,0.4);
}
.inner-navbar .brand-name { font-size: 20px; font-weight: 800; color: #fff; line-height: 1.1; }
.inner-navbar .brand-sub { font-size: 9px; color: rgba(255,255,255,0.7); letter-spacing: 1.5px; text-transform: uppercase; }
.inner-navbar .nav-links { list-style: none; display: flex; align-items: center; gap: 2px; }
.inner-navbar .nav-links a {
  color: rgba(255,255,255,0.88); font-size: 13px; font-weight: 500;
  padding: 8px 12px; border-radius: 8px; transition: all 0.22s;
}
.inner-navbar .nav-links a:hover, .inner-navbar .nav-links a.active {
  background: rgba(255,255,255,0.15); color: #fff;
}
.inner-navbar .nav-links .cta-btn a {
  background: var(--grad-orange); color: #fff !important;
  padding: 8px 20px; border-radius: 25px; font-weight: 700;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.mobile-nav { display: none; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 120px 0 80px;
  background: var(--grad-nav);
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -200px; right: -100px;
}
.page-hero::after {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
  bottom: -150px; left: -80px;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  color: #FFD600; font-size: 12px; font-weight: 700;
  padding: 7px 20px; border-radius: 25px; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 18px;
  backdrop-filter: blur(6px);
}
.page-hero h1 {
  font-size: clamp(30px, 5vw, 56px); font-weight: 900;
  color: #fff; margin-bottom: 14px; line-height: 1.15;
}
.page-hero h1 span { color: #FFD600; }
.page-hero p {
  font-size: clamp(14px, 2vw, 18px); color: rgba(255,255,255,0.85);
  max-width: 600px; margin: 0 auto 30px; line-height: 1.7;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  flex-wrap: wrap;
}
.breadcrumb a, .breadcrumb span {
  font-size: 13px; color: rgba(255,255,255,0.7); transition: color 0.2s;
}
.breadcrumb a:hover { color: #FFD600; }
.breadcrumb .sep { color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: #FFD600; font-weight: 600; }

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.section-alt { background: #f7f9ff; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad-orange);
  color: #fff; font-size: 12px; font-weight: 700;
  padding: 6px 18px; border-radius: 20px; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 14px;
}
.section-title {
  font-size: clamp(26px, 4vw, 42px); font-weight: 800;
  color: var(--blue); line-height: 1.2; margin-bottom: 14px;
}
.section-title span { color: var(--orange); }
.section-desc {
  font-size: 16px; color: var(--text2);
  max-width: 600px; margin: 0 auto; line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--grad-orange);
  color: #fff; font-weight: 700; font-size: 15px;
  padding: 13px 32px; border-radius: 35px;
  box-shadow: 0 6px 22px rgba(255,107,0,0.45);
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(255,107,0,0.6); }
.btn-secondary {
  background: var(--grad-blue);
  color: #fff; font-weight: 700; font-size: 15px;
  padding: 13px 32px; border-radius: 35px;
  box-shadow: 0 6px 22px rgba(26,35,126,0.3);
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer;
}
.btn-secondary:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(26,35,126,0.45); }
.btn-outline {
  background: transparent; border: 2px solid var(--orange);
  color: var(--orange); font-weight: 700; font-size: 15px;
  padding: 11px 30px; border-radius: 35px; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
}
.btn-outline:hover { background: var(--orange); color: #fff; transform: translateY(-3px); }

/* ===== CARDS ===== */
.card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 32px; transition: all 0.35s;
  border: 2px solid transparent;
}
.card:hover { transform: translateY(-8px); border-color: var(--orange); box-shadow: 0 20px 60px rgba(26,35,126,0.16); }

/* ===== CONTACT FORM ===== */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--blue); margin-bottom: 7px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 13px 18px; border-radius: 12px;
  border: 2px solid #e0e4f0; font-size: 14px; font-family: 'Poppins', sans-serif;
  color: var(--text); transition: border-color 0.25s, box-shadow 0.25s;
  background: #fff; outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,107,0,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== FOOTER SHARED ===== */
.site-footer {
  background: linear-gradient(135deg, #0D1440 0%, #1A237E 100%);
  color: rgba(255,255,255,0.8); padding: 70px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-about p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.7); max-width: 300px; margin-top: 16px; }
.social-links { display: flex; gap: 10px; margin-top: 22px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8); font-size: 16px; transition: all 0.3s;
}
.social-links a:hover { background: var(--orange); color: #fff; transform: translateY(-3px); }
.footer-col h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 36px; height: 3px; background: var(--orange); border-radius: 2px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.7); font-size: 14px; transition: all 0.25s; display: flex; align-items: center; gap: 7px; }
.footer-col ul li a:hover { color: #FFD600; padding-left: 6px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.fci-icon { color: var(--orange); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.fci-text { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.footer-bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.55); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-bottom-links a:hover { color: #FFD600; }

/* ===== SCROLL TO TOP ===== */
#scrollTop {
  position: fixed; bottom: 30px; right: 30px; z-index: 990;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--grad-orange);
  color: #fff; font-size: 18px; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 6px 20px rgba(255,107,0,0.45);
  opacity: 0; pointer-events: none; transition: all 0.3s;
}
#scrollTop.show { opacity: 1; pointer-events: auto; }
#scrollTop:hover { transform: translateY(-4px); }

.whatsapp-float {
  position: fixed; bottom: 30px; left: 30px; z-index: 990;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5); transition: all 0.3s;
}
.whatsapp-float:hover { transform: scale(1.12); }

/* ===== FADE ANIMATION ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: all 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .inner-navbar .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav {
    display: block; position: fixed; top: 70px; left: 0; right: 0;
    background: #1A237E; z-index: 998; padding: 16px 0;
    transform: translateY(-120%); transition: transform 0.35s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  }
  .mobile-nav.open { transform: translateY(0); }
  .mobile-nav ul { list-style: none; padding: 0 20px; }
  .mobile-nav ul li { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .mobile-nav ul li a { display: flex; align-items: center; gap: 10px; padding: 14px 10px; color: rgba(255,255,255,0.88); font-size: 15px; font-weight: 500; }
  .mobile-nav ul li a:hover { color: #FFD600; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { padding: 100px 0 60px; }
}
