/* === GLOBAL === */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f8f9fa;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

section.scroll-fade-in {
  max-width: 1140px;
  margin: auto;
  padding: 60px 20px;
}

/* === SCROLL ANIMATION === */
.scroll-fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.navbar {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0077cc;
}
.navbar nav a {
  margin-left: 15px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* Services Horizontal Menu */
.service-menu .tab {
  padding: 12px 16px;
  text-decoration: none;
  font-weight: 600;
  color: #000;
  position: relative;
  border-bottom: 3px solid transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

/* Always-visible underlines by class */
.service-menu .red {
  border-bottom: 3px solid #f44336;
}
.service-menu .purple {
  border-bottom: 3px solid #9c27b0;
}
.service-menu .blue {
  border-bottom: 3px solid #03a9f4;
}
.service-menu .orange {
  border-bottom: 3px solid #ff9800;
}
.service-menu .green {
  border-bottom: 3px solid #4caf50;
}
.service-menu .darkblue {
  border-bottom: 3px solid #3f51b5;
}
.service-menu .lightgreen {
  border-bottom: 3px solid #8bc34a;
}
.service-menu .black {
  border-bottom: 3px solid #000;
}

.resume-section {
  position: relative;
  background-color: #f4f9ff;
  padding: 60px 0;
  overflow: hidden;
}

.resume-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.resume-left {
  flex: 1;
  max-width: 550px;
  animation: fadeInUp 1s ease-out;
}

.resume-left h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.resume-left p {
  margin-bottom: 20px;
}

.resume-form input[type="text"],
.resume-form input[type="email"],
.resume-form input[type="file"] {
  display: block;
  width: 100%;
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.form-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.resume-form button {
  padding: 12px 20px;
  background-color: #e94025;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  background-color: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 4px;
  font-weight: 600;
}

.whatsapp-btn img {
  margin-right: 8px;
}

.resume-right img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

#bgParticles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}

/* Scroll Animation */
.scroll-fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Keyframe */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.services {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.service-card {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 8px;
}

.why-us {
  padding: 60px 0;
  background: #f0f8ff;
  text-align: center;
}

.cta-banner {
  background: #0077cc;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}
.cta-banner button {
  padding: 10px 20px;
  background: #fff;
  color: #0077cc;
  border: none;
  border-radius: 4px;
  font-weight: bold;
}

.footer {
  background: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}
/* ===== Top Contact + Auth Bar ===== */
.topbar {
  background: #fff;
  border-bottom: 1px solid #ddd;
  font-family: Arial, sans-serif;
}

.topbar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  flex-wrap: wrap;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.topbar-left span,
.topbar-left a,
.topbar-right a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}

.topbar a:hover {
  text-decoration: underline;
}
@media (max-width: 576px) {
  .topbar-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .topbar-left,
  .topbar-right {
    justify-content: space-between;
    width: 100%;
  }
}



/* ===== Brand + Service Menu ===== */
.brandbar {
  background: #fff;
  border-bottom: 1px solid #eee;
}

/* Brand Navigation Bar */
.brand-nav {
  display: flex;
  align-items: center;
  justify-content: space-between; /* space between logo and menu */
  padding: 10px 30px;
  background-color: #fff;
  flex-wrap: wrap; /* allows wrapping on smaller screens */
}

/* Logo Wrapper */
.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Zoom effect on hover */
.logo-wrapper:hover {
  transform: scale(1.05); /* subtle zoom */
}

/* Logo Image */
.brand-logo {
  height: 70px; /* Adjust height */
  width: auto;
  object-fit: contain;
}


/* === Service Menu Hover Fill Style (Y-Axis style) === */
.service-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-left: auto; /* Pushes the menu to the right */
}

.service-menu .tab {
  padding: 12px 16px;
  text-decoration: none;
  font-weight: 500;
  color: #000;
  border-bottom: 4px solid transparent;
  border-right: 1px solid #ddd; /* vertical divider */
  
}

/* Optional: Remove border from last item */
.service-menu .tab:last-child {
  border-right: none;
}

/* Always-visible underline colors */
.service-menu .red        { border-bottom-color: #f44336; }
.service-menu .purple     { border-bottom-color: #9c27b0; }
.service-menu .blue       { border-bottom-color: #03a9f4; }
.service-menu .orange     { border-bottom-color: #ff9800; }
.service-menu .green      { border-bottom-color: #4caf50; }
.service-menu .darkblue   { border-bottom-color: #3f51b5; }
.service-menu .lightgreen { border-bottom-color: #8bc34a; }
.service-menu .black      { border-bottom-color: #000; }

.service-menu .tab:hover {
  background-color: #f9f9f9;
}

/* Colored background fill on hover */
.service-menu .red:hover {
  background: #f44336;
  color: white;
}
.service-menu .purple:hover {
  background: #9c27b0;
  color: white;
}
.service-menu .blue:hover {
  background: #03a9f4;
  color: white;
}
.service-menu .orange:hover {
  background: #ff9800;
  color: white;
}
.service-menu .green:hover {
  background: #4caf50;
  color: white;
}
.service-menu .darkblue:hover {
  background: #3f51b5;
  color: white;
}
.service-menu .lightgreen:hover {
  background: #8bc34a;
  color: white;
}
.service-menu .black:hover {
  background: #000;
  color: white;
}
/* === Homepage Banner with WhatsApp + Actions === */
.homepage-banner {
  background: #fff;
  padding: 40px 0;
}
.banner-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
}
.banner-left {
  position: relative;
  flex: 1;
  min-width: 300px;
  border-radius: 6px;
  overflow: hidden; /* This is the key! */
}

.banner-left img {
  width: 100%;
  display: block;
}
.homepage-banner {
  background: #fff;
  padding: 40px 0;
  border: 1px solid #ddd; /* light grey border */
  border-radius: 6px;
  margin: 20px auto;
}
.right-items a {
  margin-left: 15px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.chat-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 4px 10px;
  width: 100%;
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.3;
  text-decoration: none;
  display: block;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.chat-overlay .chat-row p {
  margin: 0;
}
.chat-number {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}
.chat-number img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}


.banner-right {
  flex: 1;
  min-width: 300px;
  padding-left: 40px; /* adds spacing between left and right blocks */
}

.banner-right h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #222;
}
.action-buttons {
  display: grid;
  grid-template-columns: repeat(2, 150px);
  gap: 15px;
  margin-bottom: 20px;
}
.action {
  display: inline-block;
  padding: 15px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
}
.action.yellow { background: #f4b400; }
.action.purple { background: #7e57c2; }
.action.blue   { background: #039be5; }
.action.green  { background: #43a047; }

.help-line {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.help-line img {
  width: 24px;
  height: 24px;
}
.help-line a {
  color: #d32f2f;
  text-decoration: none;
  font-weight: bold;
}
/* Modal overlay */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

/* Modal content */
.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px 40px;
  width: 90%;
  max-width: 720px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.modal-content h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

.social-icons img {
  height: 48px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.social-icons img:hover {
  transform: scale(1.1);
}

.modal-form {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

.modal-form .left-form,
.modal-form .right-form {
  flex: 1;
}

.modal-form input,
.modal-form select {
  width: 92%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 0.95rem;
}

.phone-row {
  display: flex;
  gap: 10px;
}

.terms-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
  gap: 20px;
  flex-wrap: wrap;
}

.terms-row label {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.toggle {
  appearance: none;
  width: 40px;
  height: 20px;
  background: #ccc;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  outline: none;
}
.toggle::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s;
}
.toggle:checked {
  background: #e84118;
}
.toggle:checked::before {
  left: 22px;
}

.submit-btn {
  display: block;
  margin: 30px auto 0;
  background-color: #e84118;
  color: white;
  border: none;
  padding: 12px 40px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
}
.submit-btn:hover {
  background-color: #c23616;
}

.close-btn {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 24px;
  cursor: pointer;
}

/* Submit button */
.submit-btn {
  width: 25%;
  margin-top: 20px;
  background-color: #e84118;
  color: white;
  border: none;
  padding: 14px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
}
.modal-content.login-box {
  max-width: 420px;
  padding: 30px 40px;
  border-radius: 8px;
  margin: 5% auto;
}

.login-box h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.subtitle {
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: #444;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 15px;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 10px 0 20px;
  color: #888;
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ccc;
}
.divider:not(:empty)::before {
  margin-right: .75em;
}
.divider:not(:empty)::after {
  margin-left: .75em;
}

.form-wrapper {
  max-width: 320px;
  margin: 0 auto;
}

.form-wrapper input {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-weight: 500;
}

.checkbox-left {
  text-align: left;
  margin-bottom: 15px;
  margin-top: -8px;
  padding-left: 4px;
}

.checkbox-left label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  white-space: nowrap;
}


.submit-btn {
  display: block;
  width: 50%;
  background: #e84118;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-size: 16px;
  margin-top: 10px;
  cursor: pointer;
}
.submit-btn:hover {
  background: #c23616;
}

.link-row {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 15px;
}
.link-row a {
  color: #007bff;
  text-decoration: none;
}
.link-row a:hover {
  text-decoration: underline;
}

.divider-line {
  margin: 25px 0 10px;
  border: none;
  border-top: 1px solid #ddd;
}

.support-text {
  text-align: center;
  font-size: 0.85rem;
  color: #333;
}

/* Consulting section */
.consulting-wrapper {
  background-color: #fff;
  padding-top: 2px;
}

.consulting-section {
  background-color: #a42286;
  padding: 0;
}

.consulting-container {
  max-width: 1140px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}

.consulting-image {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  height: 100%;         /* Make sure it fills section height */
  display: flex;        /* Needed to stretch img properly */
}

.consulting-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.consulting-content {
  flex: 1;
  background-color: #a42286;
  color: white;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 40px;
}

.vertical-bar.purple-bar {
  width: 10px;
  height: 100px;
  background-color: #ef4b24;
  margin-right: 20px;
}

.consulting-content .content-box h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: bold;
}

.consulting-content .content-box p {
  font-size: 16px;
  margin-bottom: 25px;
}

.consulting-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.consult-btn {
  padding: 10px 16px;
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.consult-btn:hover {
  background-color: #fff;
  color: #a42286;
}


/* Career Section */
.career-wrapper {
  background-color: #fff;
  padding-top: 2px;
}

.career-section {
  background-color: #00a9b7;
  padding: 0;
}

.career-container {
  max-width: 1140px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  flex-direction: row-reverse;
}

.career-image {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
}

.career-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career-content {
  flex: 1;
  background-color: #00a9b7;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 40px;
}

.vertical-bar.orange-bar {
  width: 10px;
  height: 100px;
  background-color: #ef4b24;
  margin-right: 20px;
}

.content-box h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: bold;
}

.content-box p {
  font-size: 16px;
  margin-bottom: 25px;
}

.career-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 12px;
  max-width: 400px;
}

.career-btn {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  text-align: center;
  padding: 12px 18px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.career-btn:hover {
  background-color: #fff;
  color: #00a9b7;
}

.career-btn.wide {
  grid-column: span 2;
}



/* Study */
.study-wrapper {
  background-color: #fff;
  padding-top: 2px;
}

.study-section {
  background-color: #ffc107;
  padding: 0;
}

.study-container {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  max-width: 1140px;
  margin: auto;
}

.study-image {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
}

.study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.study-content {
  flex: 1;
  background-color: #ffc107;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 40px;
}

.vertical-bar.yellow-bar {
  width: 10px;
  height: 100px;
  background-color: #e84118;
  margin-right: 20px;
}

.study-content .content-box h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: bold;
}

.study-content .content-box p {
  font-size: 16px;
  margin-bottom: 25px;
}

.study-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 12px;
  max-width: 400px;
}

.study-btn {
  background-color: transparent;
  color: #000;
  border: 1px solid #111;
  text-align: center;
  padding: 12px 18px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.study-btn:hover {
  background-color: #111;
  color: #fff;
}

.study-btn.wide {
  grid-column: span 2;
}


/* Launch Your Venture (Business) Section */
.venture-wrapper {
  background-color: #fff;
  padding-top: 2px;
}

.venture-section {
  background-color: #232c88;
  padding: 0;
}

.venture-container {
  max-width: 1140px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  flex-direction: row-reverse;

}

.venture-image {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
}

.venture-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venture-content {
  flex: 1;
  background-color: #232c88;
  color: white;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 40px;
}

.vertical-bar.blue-bar {
  width: 10px;
  height: 100px;
  background-color: #ef4b24;
  margin-right: 20px;
}

.venture-content .content-box h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: bold;
}

.venture-content .content-box p {
  font-size: 16px;
  margin-bottom: 25px;
}

.venture-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 12px;
  max-width: 400px;
}

.venture-btn {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  text-align: center;
  padding: 12px 18px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.venture-btn:hover {
  background-color: #fff;
  color: #232c88;
}

/* News */
.news-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}
.section-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
  color: #222;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.news-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}
.news-card:hover {
  transform: translateY(-5px);
}
.news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.news-content {
  padding: 20px;
}
.news-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}
.news-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}
.news-content a {
  font-weight: bold;
  color: #e84118;
  text-decoration: none;
}
.news-content a:hover {
  text-decoration: underline;
}

/* Testimonials */
.testimonials-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1140px;
  margin: auto;
}

.testimonial-card {
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.6s forwards;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.4s; }

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-top: 15px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-info img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.client-info h4 {
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
  color: #111;
}

.client-info span {
  font-size: 0.85rem;
  color: #666;
}

.stars {
  color: #f7c634;
  font-size: 1rem;
  margin-top: 3px;
}

/* Animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* footer */
.main-footer {
  background-color: #f4f4f4;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
}

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col h4 {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li a {
  color: #333;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.footer-col p {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid #ccc;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
}

.social-icons a {
  display: inline-block;
  margin: 0 10px;
  font-size: 18px;
  color: #000;
}

@media (max-width: 768px) {
  .footer-cols {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-col {
    width: 100%;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 30px;
  max-width: 400px;
  width: 90%;
  border-radius: 8px;
  position: relative;
  animation: fadeIn 0.3s ease;
}

.modal-content h3 {
  margin-top: 0;
  font-size: 22px;
  margin-bottom: 16px;
}

.modal-content input,
.modal-content select {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
}

.modal-content button {
  padding: 10px 20px;
  background-color: #e6391f;
  color: white;
  border: none;
  cursor: pointer;
}

.modal .close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 20px;
  cursor: pointer;
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background-color: #25D366;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: background 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #1ebc59;
}
/* Fix popup positioning */
.consulting-buttons {
  position: relative;
  display: inline-block; /* ensures relative positioning for popup */
}

.popup-form {
  position: absolute;
  top: 48px; /* adjust to space below the button */
  left: 0;
  background: #fff;
  padding: 20px;
  width: 320px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  z-index: 1000;
  display: none;
  border: 1px solid #ddd;
}

.popup-form input,
.popup-form textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.popup-form button {
  background-color: #5a2ca0;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

/*
.contact-section {
  padding: 30px;
  background: #fff;
}

.contact-container {
  display: flex;
  border: 1px solid #ccc;
  max-width: 1000px;
  margin: auto;
}

.contact-left img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.contact-left {
  flex: 1;
  background-color: #f6f6f6;
}

.contact-right {
  flex: 1;
  padding: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 10px;
  border: none;
  border-bottom: 1px solid #999;
  outline: none;
}

.phone-row {
  display: flex;
  gap: 10px;
}

.toggle-row,
.terms-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

button[type="submit"] {
  background: #e7361e;
  color: #fff;
  padding: 12px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}
*/




/* Responsive form section */
@media (max-width: 768px) {
  .resume-container {
    flex-direction: column;
    padding: 30px 16px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .resume-left,
  .resume-right {
    width: 100%;
    padding: 0;
  }

  .resume-right img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
  }

  .resume-form input[type="text"],
  .resume-form input[type="email"],
  .resume-form input[type="file"],
  .resume-form button,
  .resume-form .whatsapp-btn {
    width: 100%;
    box-sizing: border-box;
  }

  .form-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}


/* Responsive consulting section */
@media (max-width: 768px) {
  .consulting-section {
    padding: 20px;
    text-align: center;
  }

  .consulting-section img {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin-bottom: 20px;
  }

  .consulting-section .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .consulting-section .cta-buttons a {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .resume-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .resume-section .left-content,
  .resume-section .right-form {
    width: 100%;
    max-width: 90%;
  }

  .right-form img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
  }

  .right-form input,
  .right-form select,
  .right-form button {
    width: 100%;
    margin-bottom: 10px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .consulting-section {
    text-align: center;
    padding: 20px 10px;
  }

  .consulting-section img {
    max-width: 100%;
    height: auto;
    margin: 0 auto 20px;
  }

  .consulting-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .consulting-buttons a {
    width: 100%;
    max-width: 250px;
  }
}
@media (max-width: 768px) {
  .banner-right {
    padding: 20px;
    text-align: center;
  }

  .banner-right h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .action-buttons .action {
    width: 80%;
    max-width: 250px;
    text-align: center;
    padding: 12px;
    font-size: 16px;
  }

  .help-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }

  .help-line img {
    width: 120px;
    height: auto;
    margin-bottom: 10px;
  }


  .help-line span {
    font-size: 14px;
    color: #444;
  }

  .help-line span a {
    color: #e6391f;
    font-weight: 500;
    text-decoration: underline;
  }
}
/* Mobile-specific layout for resume banner */
@media (max-width: 768px) {
  .resume-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 16px;
    text-align: center;
  }

  .resume-banner h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .resume-banner p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .resume-banner img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
  }

  .resume-banner form {
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    padding: 0 10px;
  }

  .resume-banner input,
  .resume-banner button {
    width: 100%;
    box-sizing: border-box;
  }

  .resume-banner .submit-btn,
  .resume-banner .whatsapp-btn {
    width: 100%;
    font-size: 1rem;
  }
}

/* Mobile responsiveness for Career Section */
@media (max-width: 768px) {
  .career-container {
    flex-direction: column;
    padding: 20px 16px;
  }

  .career-image,
  .career-content {
    max-width: 100%;
    width: 100%;
  }

  .career-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 16px;
  }

  .vertical-bar.orange-bar {
    margin: 0 0 16px 0;
    height: 60px;
  }

  .content-box h2 {
    font-size: 1.5rem;
  }

  .content-box p {
    font-size: 1rem;
  }

  .career-buttons {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .career-btn.wide {
    grid-column: span 1;
  }
}
@media (max-width: 768px) {
  .study-section,
  .venture-section {
    padding: 0 16px;
  }

  .study-container,
  .venture-container {
    max-width: 100%;
    padding: 30px 15px;
    box-sizing: border-box;
  }

  .study-content,
  .venture-content {
    padding: 20px 15px;
  }

  .study-buttons,
  .venture-buttons {
    grid-template-columns: 1fr;
  }

  .vertical-bar {
    display: none;
  }
}

