:root {
  --blue: #1e3a8a;
  --teal: #2dd4bf;
  --dark: #020617;
  --light: #f8fafc;

  --brand-blue: #2596be;
  --brand-green: #7fc353;
  --card-text-dark: #0f172a;
  --card-text-light: #ffffff;
}


/* =====================
   RESET & BASE
===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #0f172a;
  line-height: 1.6;
}

/* body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: #0f172a;
  background: white;
} */

/* NAV */
.nav {
  background: white;
  border-bottom: 1px solid #e5e7eb;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 42px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
}

/* HERO */
.hero {
  background:
    linear-gradient(135deg, rgba(30,58,138,.92), rgba(2,6,23,.92)),
    url('https://images.unsplash.com/photo-1526378722438-8c8d6b63f5c2');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 140px 20px;
}

.hero-inner {
  max-width: 800px;
  margin: auto;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.1;
}

.hero span {
  color: var(--teal);
}

.hero p {
  font-size: 18px;
  margin: 25px 0 40px;
}

.hero-actions .btn {
  margin-right: 15px;
}

/* BUTTONS */
.btn {
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.primary {
  background: var(--teal);
  color: #022c22;
}

.secondary {
  border: 2px solid white;
  color: white;
}

/* SECTIONS */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
}
.container_logo{
  max-width: 1200px;
 
  padding: 50px 20px;
}
.services h2,
.why h2 {
 /*  text-align: center; 
  margin-bottom: 60px;*/
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  padding: 40px;
  border-radius: 18px;
  background: var(--light);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: transform .3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

/* WHY */
.why {
  background: #f1f5f9;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.checklist li {
  list-style: none;
  margin-bottom: 12px;
}

.checklist li::before {
  content: "✔";
  color: var(--teal);
  margin-right: 10px;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--blue), var(--dark));
  color: white;
  text-align: center;
  padding: 120px 20px;
}

/* FOOTER */
footer {
  background: var(--dark);
  color: #94a3b8;
  text-align: center;
  padding: 30px;
}

/* CHATBOT */
#chatbot-toggle {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #2563eb;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  z-index: 9999;
}

#chatbot {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 340px;
  max-height: 480px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
}

.chatbot-header {
  background: #020617;
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-messages {
  padding: 15px;
  overflow-y: auto;
  flex-grow: 1;
  background: #f8fafc;
}

.bot-message,
.user-message {
  padding: 10px 14px;
  margin-bottom: 10px;
  border-radius: 14px;
  max-width: 80%;
  font-size: 14px;
}

.bot-message {
  background: #e0e7ff;
  align-self: flex-start;
}

.user-message {
  background: #2563eb;
  color: white;
  align-self: flex-end;
  margin-left: auto;
}

.chatbot-input {
  display: flex;
  border-top: 1px solid #e5e7eb;
}

.chatbot-input input {
  flex-grow: 1;
  padding: 12px;
  border: none;
  outline: none;
}

.chatbot-input button {
  padding: 12px 16px;
  background: #2563eb;
  color: white;
  border: none;
  cursor: pointer;
}
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: whatsapp-pulse 2.8s infinite;
}

/* Pulse Animation */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-icon {
  width: 64px;
  height: 64px;
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background: #020617;
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(5px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

/* Tooltip Arrow */
.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #020617;
}

/* Show tooltip on hover (desktop only) */
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* Hide tooltip on small screens */
@media (max-width: 768px) {
  .whatsapp-tooltip {
    display: none;
  }
}
.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand */
.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 80px;
}

.brand-name {
 /*  font-family: "Poppins", "Inter", "Segoe UI", Arial, sans-serif; */
  font-size: 24px;          /* Increased height */
  font-weight: 700;         /* Strong but elegant */
  line-height: 1.6;         /* Tight, premium spacing */
  letter-spacing: 0.3px;   /* Subtle polish */
  /*color: #020617;*/
   color: var(--blue);
 /*  white-space: nowrap; */
}


/* Menu */
.main-nav .nav-menu {
  display: flex;
  list-style: none;
/*   gap: 18px; */
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  padding: 0;
  margin: 0;
}
.nav-menu a {
  
  font-size: 14px;
  font-weight: 600;
 
    color: var(--blue);
  text-decoration: none;

}


/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
  border-radius: 10px;
  padding: 10px 0;
  min-width: 220px;
}

.has-dropdown:hover .dropdown {
  display: block;
}

.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: #334155;
}

.dropdown li a:hover {
  background: #f1f5f9;
}

/* CTA */
.header-cta .cta-button {
  background: #0f172a;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s ease;
}

.header-cta .cta-button:hover {
  background: #020617;
}

/* Mobile */
@media (max-width: 992px) {
 
}
  .partners {
  /* padding: 20px 0; */
  background: #f8fafc;
  text-align: left;
   overflow: hidden;
}

.partners h2 {
  margin-bottom: 40px;
}

.partner-marquee {
  width: 200%;
  overflow: hidden;
  background: transparent;
}

.partner-track {
  display: flex;
  gap: 20px;
  animation: scroll 40s linear infinite;
  will-change: transform;
}

.partner-track img {
  height: 90px;
  width:90px;
  object-fit: contain;
  opacity: 0.9;
  flex-shrink: 0;
  /* padding: 10px 0; */
}

@keyframes scroll {
  0% { 
    transform: translateX(0); 
  }
  100% { 
    transform: translateX(-50%); 
  }
}
/* Hero Animation */
.hero-inner {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1.2s ease-out forwards;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.delay-1 { transition-delay: .15s; }
.delay-2 { transition-delay: .3s; }
.delay-3 { transition-delay: .45s; }


.service-card,
.idea-card {
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover,
.idea-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}
.hero-quote {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.6s;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.service-card {
  padding: 36px;
  border-radius: 20px;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

/* Alternate colors */
.service-card:nth-child(odd) {
  background: linear-gradient(
    135deg,
    var(--brand-blue),
    #0000
  );
  color: var(--card-text-light);
}

.service-card:nth-child(even) {
  background: linear-gradient(
    135deg,
    var(--brand-green),
    #0000
  );
  color: var(--card-text-dark);
}

/* Headings */
.service-card h3 {
  margin-top: 0;
  font-size: 20px;
  font-weight: 700;
}

/* Text */
.service-card p {
  font-size: 14.5px;
  line-height: 1.6;
  opacity: 0.95;
}

/* Hover polish */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,.15);
}

.service-card:nth-child(even) h3 {
  color: #022c22;
}

.service-card:nth-child(even) p {
  color: #042f2e;
}
.thinking {
  /* padding: 120px 0; */
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f8fafc 100%
  );
}

.section-eyebrow {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 16px;
}

.thinking-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 60px;
  color: #e0e7ff;
}

.thinking-title span {
  color: var(--brand-green);
}

.thinking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
}
.thinking-item{
	background: rgba(255, 255, 255, 0.95);
	padding: 36px;
    border-radius: 20px;
    transition: transform .3s ease, box-shadow .3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.thinking-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

.thinking-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
}
.thinking-item::before {
  content: "";
  width: 36px;
  height: 3px;
  background: var(--brand-green);
  display: block;
  margin-bottom: 16px;
  border-radius: 2px;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
  margin-top: 60px;
}

.value-item {
  text-align: left;
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

/* Color variants */
.value-icon.blue {
  background: rgba(30, 58, 138, 0.1);
  color: var(--brand-blue);
}

.value-icon.green {
  background: rgba(45, 212, 191, 0.15);
  color: var(--brand-green);
}

/* SVG sizing */
.value-icon svg {
  width: 26px;
  height: 26px;
}

/* Headings */
.value-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

/* Text */
.value-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
}
.value-item {
  transition: transform .3s ease;
}

.value-item:hover {
  transform: translateY(-4px);
}

.value-item:hover .value-icon {
  transform: scale(1.05);
  transition: transform .3s ease;
}


/* SERVICES BACKGROUND */


/* Dark overlay for readability */
.services-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9),
    rgba(30, 58, 138, 0.85)
  );
 
 
}

/* Content above overlay */
.services-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  margin-top:-100px;
}

/* Headings */
.services-content h2 {
  color: #ffffff;
}

.services-content .section-intro {
  color: #cbd5f5;
  max-width: 720px;
}

/* Service cards (floating look) */
.services-bg .service-card {
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  backdrop-filter: blur(6px);
}

/* Improve contrast */
.services-bg .service-card h3 {
  color: #020617;
}

.services-bg .service-card p {
  color: #334155;
}
.services-bg {
  position: relative;
  padding: 120px 0;
  background-image: url("../assets/images/2.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .services-bg {
    background-attachment: scroll;
  }
}
.hero-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(2, 6, 23, 0.75),
    rgba(30, 58, 138, 0.65)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding-top: 160px;
  color: #ffffff;
  max-width: 800px;
  margin: auto;
}


.hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-content h1 span {
  color: var(--brand-green);
}

.hero-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero-video video {
    display: none;
  }

  .hero-video {
    background: url("../assets/images/3.png") center/cover no-repeat;
  }
}


.why-venture {
 /*  padding: 120px 0; */
  background: #f8fafc;
}

.section-eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-blue);
  margin-bottom: 12px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 64px;
  color: #020617;
}

.section-title span {
  color: var(--brand-green);
}

.venture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
}

.venture-card {
  background: #ffffff;
  padding: 42px 36px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.venture-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(2, 6, 23, 0.12);
}

.venture-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.venture-icon.blue {
  background: rgba(30, 58, 138, 0.12);
  color: var(--brand-blue);
}

.venture-icon.green {
  background: rgba(45, 212, 191, 0.15);
  color: var(--brand-green);
}

.venture-icon svg {
  width: 26px;
  height: 26px;
}

.venture-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #020617;
}

.venture-card p {
  font-size: 15px;
  line-height: 1.65;
  color: #475569;
}
.animate {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ============================
   MOBILE & TABLET FIXES
   ============================ */


/* General scaling */
@media (max-width: 992px) {
  .container,
  .header-container {
    padding: 20px;
  }

  .hero-content,
  .hero-inner {
    max-width: 100%;
    padding: 120px 20px 60px;
    text-align: center;
  }

  .hero h1,
  .hero-content h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions .btn {
   /*  width: 100%; */
    text-align: center;
  }
}

/* Navigation collapse */
@media (max-width: 992px) {
  
  .header-container {
    justify-content: space-between;
  }

  .brand-name {
    font-size: 22px;
	font-weight:700px;
  }

  .brand-logo {
    height: 70px;
  }
}

/* Two-column sections → stacked */
@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .thinking-title,
  .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
}

/* Service cards & grids */
@media (max-width: 768px) {
  .service-grid,
  .thinking-grid,
  .venture-grid,
  .value-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-card,
  .thinking-item,
  .venture-card {
    padding: 28px 24px;
  }
}

/* Partners logos */
@media (max-width: 768px) {
  .partner-track img {
    height: 50px;
    width: auto;
  }
}

/* Hero full height fix on mobile */
@media (max-width: 768px) {
  .hero-video,
  .hero {
    height: auto;
    min-height: 100vh;
  }
}

/* Chatbot & WhatsApp spacing */
@media (max-width: 768px) {
  #chatbot {
    right: 10px;
    left: 10px;
    width: auto;
    bottom: 80px;
    max-height: 70vh;
  }

  #chatbot-toggle,
  .whatsapp-float {
    right: 15px;
    bottom: 15px;
  }
}

/* CTA */
@media (max-width: 768px) {
  .cta {
    padding: 80px 20px;
  }
}

/* Footer */
@media (max-width: 768px) {
  footer {
    font-size: 14px;
    padding: 24px 16px;
  }
}
/* Smaller HERO buttons only on mobile */
@media (max-width: 768px) {
  .hero-actions .primary,
  .hero-actions .secondary {
    padding: 10px 18px;
    font-size: 13px;
    border-radius: 8px;
  }
}


@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 16px;
  }
  
  
.header-container {
    display: flex; 
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
}

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 90px 0;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 30px;
  }




