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

:root {
  /* Color Palette matching original site */
  --primary-color: #1A365D; /* Navy blue for main headings */
  --secondary-color: #2D3748; /* Dark grey for text */
  --accent-color: #000000; /* Black for buttons */
  
  --bg-main: #FFFFFF;
  --bg-header: #F1FCD6; /* Pale yellow/green for header */
  --bg-gradient: linear-gradient(135deg, #E2E8F0 0%, #FDF4FF 50%, #FEF08A 100%);
  
  --text-main: #2D3748;
  --text-muted: #4A5568;
  
  --border-color: #E2E8F0;
  
  /* Typography */
  --font-sans: 'Inter', sans-serif;
  
  /* Layout & Spacing */
  --max-width: 1200px;
  
  /* Transitions & Shadows */
  --transition-smooth: all 0.3s ease;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
}

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

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

ul, ol {
  list-style: none;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

h1 { font-size: 3.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2.5rem; letter-spacing: -0.01em; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

/* Utility Classes for premium feel */
.glass-panel {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-md);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 9999px; /* Pill shape */
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
}

.btn-primary {
  background-color: var(--accent-color);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: #333333;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.btn-outline:hover {
  background-color: var(--accent-color);
  color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .container { padding: 0 1rem; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-delay-100 { animation-delay: 100ms; }
.animate-delay-200 { animation-delay: 200ms; }
.animate-delay-300 { animation-delay: 300ms; }


/* --- Header Styles --- */
.Header-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg-header); /* Pale yellow */
  padding: 1rem 0;
}

.Header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.Header-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.05em;
  display: flex;
  align-items: center;
}

.Header-logo img {
  height: 40px;
  margin-right: 0.5rem;
}

.Header-menu {
  display: flex;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.Header-menuLink {
  color: var(--text-main);
  font-weight: 500;
  position: relative;
}

.Header-menuLink::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.Header-menuLink:hover::after {
  width: 100%;
}

.Header-inquireBtn {
  margin-left: auto;
}


/* --- Hero Styles --- */
.Hero-hero {
  padding: 6rem 0;
  background: var(--bg-main);
}

.Hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.Hero-left {
  flex: 1;
  max-width: 600px;
}

.Hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.Hero-hero h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-weight: 800;
  text-transform: uppercase;
}

.Hero-hero h1 span {
  display: block;
  color: #4A5568;
  font-size: 3rem;
  text-transform: none;
  font-weight: 700;
  margin-top: 0.5rem;
}

.Hero-hero p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.Hero-imageMosaic {
  width: 100%;
  max-width: 500px;
  height: 500px;
  background-color: #FEE2E2; /* Placeholder for the mosaic */
  border-radius: 40px 150px 40px 150px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 992px) {
  .Hero-content {
    flex-direction: column;
    text-align: center;
  }
  .Hero-hero h1 {
    font-size: 3rem;
  }
  .Hero-hero h1 span {
    font-size: 2rem;
  }
}


/* --- StartupsSMEs Styles --- */
.StartupsSMEs-section {
  padding: 6rem 0;
  background: var(--bg-main);
}

.StartupsSMEs-heading {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 4rem;
}

.StartupsSMEs-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
}

.StartupsSMEs-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.StartupsSMEs-col h3 {
  font-size: 1.5rem;
  color: var(--text-main);
  font-weight: 600;
  margin-top: 1rem;
}

.StartupsSMEs-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.StartupsSMEs-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.StartupsSMEs-imagePlaceholder {
  border-radius: 24px;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.StartupsSMEs-circlePlaceholder {
  border-radius: 50%;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.StartupsSMEs-rectPlaceholder {
  border-radius: 16px;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 992px) {
  .StartupsSMEs-grid {
    grid-template-columns: 1fr;
  }
  .StartupsSMEs-imagePlaceholder {
    aspect-ratio: 16/9;
  }
}


/* --- BridgeTalentGap Styles --- */
.BridgeTalentGap-section {
  padding: 8rem 0;
  
}

.BridgeTalentGap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.BridgeTalentGap-left h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 2rem;
}

.BridgeTalentGap-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.BridgeTalentGap-card {
  background: white;
  padding: 1.5rem 1rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
  color: var(--primary-color);
  font-size: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

@media (max-width: 992px) {
  .BridgeTalentGap-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .BridgeTalentGap-right {
    grid-template-columns: 1fr;
  }
}


/* --- LeverageIndia Styles --- */
.LeverageIndia-section {
  padding: 4rem 0 8rem;
  
}

.LeverageIndia-topGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

.LeverageIndia-accordionList {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.LeverageIndia-accordionItem {
  background: white;
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-main);
  border: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.LeverageIndia-rightContent h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.LeverageIndia-rightContent p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.LeverageIndia-bottomGrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.LeverageIndia-bottomTitle h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.LeverageIndia-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  height: 100%;
}

.LeverageIndia-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.LeverageIndia-card ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.LeverageIndia-card li {
  margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
  .LeverageIndia-topGrid, .LeverageIndia-bottomGrid {
    grid-template-columns: 1fr;
  }
}


/* --- TalentAssessment Styles --- */
.TalentAssessment-section {
  padding: 4rem 0 8rem;
  
}

.TalentAssessment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.TalentAssessment-cards {
  display: flex;
  gap: 1.5rem;
}

.TalentAssessment-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  flex: 1;
  text-align: center;
}

.TalentAssessment-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.TalentAssessment-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.TalentAssessment-rightContent h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.TalentAssessment-whyChooseUs {
  text-align: center;
  font-size: 3rem;
  color: var(--text-main);
  margin-top: 6rem;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 992px) {
  .TalentAssessment-grid {
    grid-template-columns: 1fr;
  }
  .TalentAssessment-cards {
    flex-direction: column;
  }
}


/* --- Footer Styles --- */
.Footer-footer {
  background: linear-gradient(to right, #FDE08B, #C3EFA0, #A0EAC3);
  color: var(--text-main);
  padding: 4rem 0 4rem;
}

.Footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr 1.5fr;
  gap: 2rem;
}

.Footer-column h3 {
  color: var(--text-main);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.Footer-column p {
  color: var(--text-main);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.Footer-linkList {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.Footer-linkList a {
  color: var(--text-main);
  font-size: 0.95rem;
}

.Footer-linkList a:hover {
  text-decoration: underline;
}

.Footer-socialMedia {
  margin-top: 2rem;
}

.Footer-iconRow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.Footer-iconRow a {
  text-decoration: underline;
}

.Footer-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.Footer-logo img {
  height: 80px;
  width: auto;
}

@media (max-width: 992px) {
  .Footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .Footer-grid {
    grid-template-columns: 1fr;
  }
}


/* --- HeroGraphic Styles --- */
.HeroGraphic-container {
  position: relative;
  width: 600px;
  height: 540px;
  transition: transform 0.HeroGraphic-3s ease;
  transform-origin: center;
}

.HeroGraphic-shape {
  position: absolute;
  overflow: hidden;
  transition: all 0.HeroGraphic-4s cubic-bezier(0.HeroGraphic-4, 0, 0.HeroGraphic-2, 1);
  background-size: cover;
  background-position: center;
}

.HeroGraphic-container:hover {
  transform: scale(1.02);
}
.HeroGraphic-container:hover .HeroGraphic-hoverShiftLeft {
  transform: translateX(-5px);
}
.HeroGraphic-container:hover .HeroGraphic-hoverShiftRight {
  transform: translateX(5px);
}

/* --- TOP ROW (0 - 180px) --- */
.HeroGraphic-topDarkGreen {
  top: 0; left: 0; width: 70px; height: 180px;
  background-color: #314E42;
  border-top-left-radius: 90px;
}

.HeroGraphic-topLightBlue {
  top: 0; left: 70px; width: 70px; height: 180px;
  background-color: #C6D8E9;
}

.HeroGraphic-topTan {
  top: 0; left: 140px; width: 460px; height: 180px;
  background-color: #F3DABB;
  display: flex;
  align-items: center;
  justify-content: center;
}

.HeroGraphic-topPink {
  top: 0; left: 420px; width: 180px; height: 180px;
  background-color: #FBB6D9;
  border-bottom-left-radius: 180px;
  z-index: 2;
}

/* --- MIDDLE ROW (180px - 360px) --- */
.HeroGraphic-midYellow {
  top: 180px; left: 0; width: 340px; height: 180px;
  background-color: #FCE182;
}

.HeroGraphic-midPurple {
  top: 180px; left: 420px; width: 180px; height: 180px;
  background-color: #A8A3FA;
  border-top-right-radius: 90px;
  border-bottom-right-radius: 90px;
  z-index: 1;
}

.HeroGraphic-midDarkGreenCircle {
  top: 180px; left: 350px; width: 180px; height: 180px;
  background-color: #047857;
  border-radius: 50%;
  z-index: 2;
}

.HeroGraphic-midIllustrationCircle {
  top: 180px; left: 260px; width: 180px; height: 180px;
  background-color: #E2C8B8;
  border-radius: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

/* --- BOTTOM ROW (360px - 540px) --- */
.HeroGraphic-bottomTan {
  top: 360px; left: 0; width: 240px; height: 180px;
  background-color: #F2DDC1;
  border-bottom-left-radius: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.HeroGraphic-bottomPurple {
  top: 360px; left: 240px; width: 360px; height: 180px;
  background-color: #CCBFFD;
  border-top-right-radius: 90px;
  border-bottom-right-radius: 90px;
}


/* Scale for smaller screens */
@media (max-width: 1200px) {
  .HeroGraphic-container {
    transform: scale(0.8);
  }
}

@media (max-width: 992px) {
  .HeroGraphic-container {
    transform: scale(0.6);
    margin: -100px auto;
  }
}

@media (max-width: 768px) {
  .HeroGraphic-container {
    transform: scale(0.5);
    margin: -150px auto;
  }
}



.unified-gradient-bg {
  background: var(--bg-gradient);
}
.WhyChooseUs-section {
  padding: 6rem 0;
  background: var(--bg-main);
}

.WhyChooseUs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.WhyChooseUs-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border: 1px solid #E2E8F0;
}

.WhyChooseUs-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1E293B;
}

.WhyChooseUs-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.25;
}

.WhyChooseUs-text h3 {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  font-weight: 600;
}

.WhyChooseUs-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .WhyChooseUs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .WhyChooseUs-grid { grid-template-columns: 1fr; }
}

/* --- Modal Styles --- */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: #333333;
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  position: relative;
  font-family: inherit;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.modal-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal-form-group label {
  color: #fff;
  font-size: 0.9rem;
}

.modal-form-group input,
.modal-form-group textarea {
  background: #EDEDED;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #333;
  font-family: inherit;
}

.modal-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.modal-form-group input:focus,
.modal-form-group textarea:focus {
  outline: 2px solid #555;
}

.modal-submit {
  background: #fff;
  color: #333;
  border: none;
  border-radius: 9999px;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: opacity 0.2s;
}

.modal-submit:hover {
  opacity: 0.9;
}

/* --- About Us Styles --- */
.AboutUs-section {
  padding: 6rem 0;
  text-align: center;
  background: white;
}
.AboutUs-title {
  font-size: 3rem;
  color: var(--text-main);
  margin-bottom: 4rem;
  font-weight: 500;
}
.AboutUs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.AboutUs-card {
  padding: 3rem 2rem;
  border-radius: 40px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.AboutUs-card h3 {
  font-size: 2rem;
  color: var(--text-main);
  margin-bottom: 1rem;
  font-weight: 400;
}
.AboutUs-card p {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.6;
}
.AboutUs-card.vision { background: #EBD3FE; }
.AboutUs-card.mission { background: #FEF3CC; }
.AboutUs-card.approach { background: #FFB3C6; }
.AboutUs-card.why { background: #A7F3D0; }

@media (max-width: 992px) {
  .AboutUs-grid { grid-template-columns: 1fr; }
}

/* --- Services Page Styles --- */
.Services-title {
  font-size: 3.5rem;
  text-align: center;
  margin: 4rem 0;
  color: var(--text-main);
  font-weight: 500;
}

.Services-wrapper {
  padding: 4rem 0;
}

.Service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 4rem auto;
  gap: 4rem;
  scroll-margin-top: 120px;
}

.Service-row.reverse {
  flex-direction: row-reverse;
}

.Service-text-col {
  flex: 1;
}

.Service-text-col h2 {
  font-size: 2.5rem;
  color: var(--text-main);
  font-weight: 500;
}

.Service-row.reverse .Service-text-col {
  text-align: right;
}

.Service-card-col {
  flex: 1.5;
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.Service-card-col p {
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.Service-hide-btn {
  color: #3B82F6;
  text-decoration: underline;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.WhyWorkWithUs-section {
  padding: 6rem 0;
  background: white;
}

.WhyWorkWithUs-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: var(--text-main);
}

.WhyWorkWithUs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.WhyWorkWithUs-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  text-align: center;
}

.WhyWorkWithUs-card h3 {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.WhyWorkWithUs-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .Service-row, .Service-row.reverse {
    flex-direction: column;
    text-align: left;
    gap: 2rem;
  }
  .Service-row.reverse .Service-text-col {
    text-align: left;
  }
  .WhyWorkWithUs-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Services Expand/Collapse --- */
.Service-card-col.collapsed p:not(:first-of-type) {
  display: none;
}

.Service-card-col.collapsed p:first-of-type::after {
  content: " ...";
}

.Service-toggle-btn {
  color: #3B82F6;
  text-decoration: underline;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  margin-top: 0.5rem;
}

/* --- Contact Us Page Styles --- */
.Contact-section {
  padding: 6rem 0;
  background: var(--bg-main);
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}

.Contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(167, 243, 208, 0.15) 0%, transparent 50%);
  z-index: 0;
}

.Contact-section .container {
  position: relative;
  z-index: 1;
}

.Contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.Contact-title {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.Contact-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.Contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.Contact-info {
  padding: 3rem 2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #1A365D 0%, #2D3748 100%);
  color: white;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.Contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.Contact-icon {
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.Contact-info-item h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.Contact-info-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.Contact-form-wrapper {
  padding: 3rem;
  border-radius: 24px;
  background: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
}

.Contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: #F8FAFC;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 4px rgba(26, 54, 93, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.Contact-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1.125rem;
  margin-top: 1rem;
}

@media (max-width: 992px) {
  .Contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

.Header-hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--text-main); padding: 0.5rem; }

/* --- Mobile Optimization --- */
@media (max-width: 768px) {
  .Header-nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
  }
  .Header-hamburger {
    display: block;
  }
  .Header-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
  }
  .Header-menu.active {
    display: flex;
  }
  .Hero-hero {
    padding: 3rem 0;
  }
  .Hero-hero h1 {
    font-size: 2.2rem;
  }
  .Hero-hero h1 span {
    font-size: 1.5rem;
  }
  .Hero-hero p {
    font-size: 1rem;
  }
  .StartupsSMEs-heading,
  .BridgeTalentGap-left h2,
  .LeverageIndia-rightContent h2,
  .LeverageIndia-bottomTitle h2,
  .TalentAssessment-rightContent h2,
  .AboutUs-title,
  .Services-title,
  .WhyWorkWithUs-title,
  .Contact-title {
    font-size: 2rem;
  }
}

/* --- New Minimal Contact Page Styles --- */
.Contact-header-minimal {
  text-align: center;
  margin-bottom: 2rem;
}

.Contact-header-minimal h1 {
  font-size: 3.5rem;
  font-weight: 400;
  color: #333;
}

.Contact-form-minimal {
  max-width: 900px;
  margin: 0 auto 5rem auto;
}

.form-group-minimal {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-group-minimal label {
  font-size: 0.9rem;
  color: #555;
}

.form-group-minimal input,
.form-group-minimal textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.3s ease;
}

.form-group-minimal input:focus,
.form-group-minimal textarea:focus {
  outline: none;
  border-color: #333;
}

.form-group-minimal textarea {
  resize: vertical;
}

.Contact-submit-minimal {
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: opacity 0.3s;
}

.Contact-submit-minimal:hover {
  opacity: 0.8;
}

.Connect-section {
  text-align: center;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.Connect-section h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 3rem;
}

.Connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1250px;
  margin: 0 auto;
}

.Connect-card {
  background: #fff;
  padding: 3rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.Connect-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 1.5rem;
  color: #333;
}

.Connect-card h3 {
  font-size: 1.1rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 1rem;
}

.Connect-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .Connect-grid {
    grid-template-columns: 1fr;
  }
}
