/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  background-color: #fff;
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.section-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}
.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

/* ===== HEADER / NAVIGATION ===== */
.site-header {
  background: #ffffff;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0073e6;
}
.logo span {
  color: #00b894;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.main-nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  padding: 8px 10px;
  transition: 0.3s ease;
}
.main-nav a:hover,
.main-nav .quote-btn {
  color: #fff;
  background: #0073e6;
  border-radius: 5px;
}
.has-dropdown {
  position: relative;
}
.has-dropdown:hover .dropdown {
  display: block;
}
.dropdown {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  display: none;
  min-width: 180px;
  z-index: 100;
}
.dropdown li {
  padding: 10px;
}
.dropdown li a {
  display: block;
  color: #333;
}
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.slide {
  min-width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}
.slide-content {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: #fff;
  max-width: 600px;
}
.slide-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.slide-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.cta-btn {
  background: #00b894;
  color: #fff;
  padding: 10px 20px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.cta-btn:hover {
  background: #0073e6;
}

/* ===== SLIDER NAV DOTS ===== */
.slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.nav-dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background: #fff;
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.5;
}
.nav-dot.active {
  opacity: 1;
  background: #00b894;
}

/* ===== FLOATING QUOTE FORM ===== */
.quote-form-panel {
  position: absolute;
  top: 15%;
  right: 5%;
  background: #ffffffee;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  max-width: 90%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.quote-form-panel h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.quote-form-panel form {
  display: flex;
  flex-direction: column;
}
.quote-form-panel input,
.quote-form-panel select,
.quote-form-panel textarea {
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.quote-form-panel button {
  background: #0073e6;
  color: #fff;
  border: none;
  padding: 10px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
}
.quote-form-panel button:hover {
  background: #00b894;
}
/* ===== INDUSTRIES & LANGUAGES GRID ===== */
.industries-grid,
.languages-grid,
.awards-grid,
.features-grid,
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
.industry-card,
.language-card,
.award-card,
.feature-card,
.country-card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s ease;
}
.industry-card i,
.language-card i,
.award-card i,
.feature-card i {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #0073e6;
}
.country-card {
  font-size: 1.2rem;
  background: #fff;
  border: 1px solid #eee;
}
.country-card span {
  display: block;
  margin-top: 5px;
}
.industry-card:hover,
.feature-card:hover,
.country-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* ===== TEXT FOCUS SECTION (ProzWorld) ===== */
.text-focus-section {
  background: #f5f7fa;
  padding: 60px 0;
}
.text-focus-section p {
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ===== WORKFLOW SECTION ===== */
.workflow-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
.workflow-step {
  flex: 1 1 220px;
  background: #f2f2f2;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
}
.step-icon i {
  font-size: 2rem;
  color: #00b894;
  margin-bottom: 10px;
}

/* ===== TIMELINE SECTION ===== */
.timeline {
  position: relative;
  padding-left: 20px;
}
.timeline-item {
  position: relative;
  margin-bottom: 30px;
}
.timeline-year {
  font-weight: bold;
  font-size: 1.2rem;
  color: #0073e6;
  margin-bottom: 5px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10px;
  height: 100%;
  width: 2px;
  background: #00b894;
}

/* ===== FAQ ACCORDION ===== */
.faq-accordion {
  max-width: 900px;
  margin: auto;
}
.faq-item {
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  padding: 15px;
  cursor: pointer;
}
.faq-answer {
  display: none;
  padding: 0 15px 15px 15px;
  color: #444;
}
.faq-item.active .faq-answer {
  display: block;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.testimonial-card {
  flex: 1 1 300px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.testimonial-card img {
  border-radius: 50%;
  margin-bottom: 15px;
}
.rating {
  color: #f1c40f;
  font-size: 1.2rem;
}

/* ===== SPEAK TO DIRECTOR SECTION ===== */
.speak-direct-section {
  background: #e3f2fd;
  padding: 60px 20px;
}
.speak-direct-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}
.speak-direct-text {
  flex: 1;
}
.speak-direct-text h2 {
  margin-bottom: 10px;
}
.cta-buttons a {
  display: inline-block;
  margin-right: 10px;
  padding: 10px 20px;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}
.whatsapp-btn {
  background: #25d366;
}
.secondary-btn {
  background: #0073e6;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #111;
  color: #ccc;
  padding: 60px 20px 30px;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.footer-col h4, .footer-col h3 {
  color: #fff;
  margin-bottom: 15px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.2s;
}
.footer-col ul li a:hover {
  color: #00b894;
}
.social-icons a {
  margin-right: 10px;
  color: #00b894;
  font-size: 1.2rem;
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #222;
  font-size: 0.9rem;
  color: #888;
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 768px) {
  .main-nav ul {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 5%;
    width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 999;
  }
  .main-nav ul.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
    color: #0073e6;
  }
  .speak-direct-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-slider,
  .slide {
    height: 85vh;
  }
  .quote-form-panel {
    position: static;
    margin: 30px auto 0 auto;
    width: 100%;
    max-width: 350px;
  }
}














.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 20px;
  padding: 10px;
  font-size: 18px;
  background: #0073e6;
  color: white;
  border: none;
  border-radius: 50%;
  display: none;
  cursor: pointer;
  z-index: 999;
}
.scroll-top-btn.visible {
  display: block;
}
.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-in-out;
}
.feature-card, .industry-card, .timeline-item {
  opacity: 0;
  transform: translateY(40px);
}





