/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #2c3e50;
  line-height: 1.6;
  background: #f9f9f9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #007BFF;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover,
a:focus {
  color: #0056b3;
  outline: none;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

/* Buttons */
.btn {
  background: #007BFF;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,123,255,0.3);
  display: inline-block;
  text-align: center;
  user-select: none;
}
.btn:hover,
.btn:focus {
  background: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,86,179,0.4);
  outline: none;
  text-decoration: none;
}
.btn-primary {
  background: #007BFF;
  box-shadow: 0 5px 15px rgba(0,123,255,0.4);
}
.btn-primary:hover,
.btn-primary:focus {
  background: #0056b3;
  box-shadow: 0 10px 30px rgba(0,86,179,0.5);
}

/* Hero Section */
.hero {
  background: url('https://storage.googleapis.com/workspace-0f70711f-8b4e-4d94-86f1-2a93ccde5887/image/79f7b18b-3a4d-4678-bd9c-83d3c9f9b059.png') center/cover no-repeat;
height: 100vh;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 80px 30px;
  border-radius: 16px;
  max-width: 900px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.7);
  animation: fadeInUp 1.2s ease forwards;
  opacity: 0;
  transform: translateY(40px);
}
.hero h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}
.hero p {
  font-size: 1.5rem;
  margin-bottom: 40px;
  font-weight: 500;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Value Propositions / Features */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}
.feature {
  flex: 1 1 280px;
  background: white;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0,0,0,0.07);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease;
  position: relative;
  cursor: default;
}
.feature:hover,
.feature:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  outline: none;
}
.feature h3 {
  margin: 20px 0 15px;
  font-weight: 700;
  font-size: 1.3rem;
  color: #34495e;
  letter-spacing: 0.03em;
}.value-props h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.2rem;
  color: #007BFF;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
  padding: 0 1rem;
}

.feature {
  background: white;
  padding: 1.8rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgb(0 0 0 / 0.15);
}

.feature h3 {
  margin-top: 0.6rem;
  font-size: 1.3rem;
  color: #003366;
}

.feature p {
  margin-top: 0.5rem;
  color: #555;
  font-size: 1rem;
  line-height: 1.4;
}

.feature p {
  font-weight: 500;
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

/* Animated icon before each feature */
.feature::before {
  content: '🌐';
  font-size: 3.2rem;
  display: block;
  margin: 0 auto 12px;
  animation: spin 8s linear infinite;
  filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.1));
  user-select: none;
  will-change: transform;
  transition: transform 0.3s ease;
}
.feature:hover::before {
  transform: scale(1.2) rotate(15deg);
}

/* Custom icons */
.feature:nth-child(1)::before { content: '🚦'; }
.feature:nth-child(2)::before { content: '💡'; }
.feature:nth-child(3)::before { content: '👥'; }
.feature:nth-child(4)::before { content: '📢'; }
.feature:nth-child(5)::before { content: '💰'; }
.feature:nth-child(6)::before { content: '📊'; }
.feature:nth-child(7)::before { content: '🌍'; }


@keyframes spin {
  from { transform: rotate(0deg);}
  to { transform: rotate(360deg);}
}

/* Services / Courses */
.courses-section {
  width: 100%;
  
  background: linear-gradient(135deg, rgba(173, 216, 230, 0.2), rgba(70, 130, 180, 0.2));

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); 
  border-radius: 12px; /* rounded corners */
  padding: 60px 0;
}
.services-grid, 
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 28px;
  margin-top: 40px;

}

.service-card {
  background: white;
  border-left: 6px solid #007BFF;
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  user-select: none;
}
.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0, 86, 179, 0.18);
  outline: none;
}
.service-card h3 {
  color: #007BFF;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 1.25rem;
}
.service-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.4;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  display: block;
  background-color: #f9f9f9;
  padding: 1.6rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.12);
}

.service-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
  color: #003366;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.4;
}


/* Insights Hub */
.tabs {
  display: flex;
  gap: 12px;
  margin: 25px 0 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.tab {
  padding: 10px 22px;
  background: #eee;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  color: #555;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}
.tab.active,
.tab:hover,
.tab:focus {
  background: #007BFF;
  color: white;
  box-shadow: 0 6px 18px rgba(0,123,255,0.4);
  outline: none;
}
.search-bar {
  width: 100%;
  max-width: 500px;
  padding: 14px 18px;
  margin: 0 auto 28px;
  border: 2px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  display: block;
}
.search-bar:focus {
  border-color: #007BFF;
  outline: none;
}
.insight-card {
  background: white;
  padding: 18px 22px;
  margin-bottom: 18px;
  border-left: 5px solid #007BFF;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
}
.insight-card:hover,
.insight-card:focus-within {
  box-shadow: 0 10px 32px rgba(0, 123, 255, 0.15);
  transform: translateY(-4px);
  outline: none;
}
.insights-header {
  text-align: center;
  margin-bottom: 30px;
}
.insights-header .subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-top: 8px;
}

.insights-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 30px;
}
.insights-controls .search-bar {
  flex: 1;
  padding: 10px 14px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.insights-controls .insights-dropdown {
  padding: 10px 14px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  min-width: 180px;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.insight-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.insight-card h3 {
  margin-top: 10px;
  font-size: 1.2rem;
}
.insight-card p {
  font-size: 0.95rem;
  color: #666;
}
.insight-card a {
  display: inline-block;
  margin-top: 10px;
  color: #007BFF;
  font-weight: 600;
  text-decoration: none;
}
.insight-card a:hover {
  text-decoration: underline;
}

.load-more-container {
  text-align: center;
  margin-top: 30px;
}

/* Partners */
.partners-slider {
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
}

.partners-track {
  display: flex;
  gap: 60px; /* bigger gaps */
  animation: scroll 25s linear infinite;
}

.partners-track img {
  height: 120px; /* bigger logos */
  filter: grayscale(100%);
  transition: filter 0.35s ease, transform 0.35s ease;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.partners-track img:hover {
  filter: none;
  transform: scale(1.15);
}

/* Continuous scrolling keyframes */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* Testimonials */
.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
blockquote {
  background: white;
  border-left: 6px solid #007BFF;
  padding: 30px 35px;
  font-style: italic;
  font-size: 1.15rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  color: #34495e;
  position: relative;
  transition: box-shadow 0.3s ease;
  user-select: none;
}
blockquote:hover,
blockquote:focus-within {
  box-shadow: 0 12px 40px rgba(0,123,255,0.2);
  outline: none;
}

.contact {
  background: linear-gradient(135deg, #0056b3 40%, #007BFF 30%);
  color: white;
  text-align: center;
  padding: 60px 25px;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 8px 40px rgba(0,86,179,0.4);
  user-select: none;
}
.cta{
 background: linear-gradient(135deg, #0056b3 0%, #007BFF 100%);
}
.cta h2, .contact h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 8px rgba(0,0,0,0.25);
}
.cta p, .contact p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  font-weight: 600;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.2);
}

/* Newsletter */
.newsletter-form {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
.newsletter-form input[type="email"] {
  flex: 1 1 320px;
  padding: 15px 18px;
  border: 2.5px solid #ccc;
  border-radius: 12px;
  font-size: 1.1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.newsletter-form input[type="email"]:focus {
  border-color: #007BFF;
  box-shadow: 0 0 10px rgba(0,123,255,0.35);
  outline: none;
}
.newsletter-form .btn {
  padding: 15px 30px;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 12px;
}

/* Background Colors */
.bg-light {
  background: #f1f5f9;
}
.bg-accent {
  background: #e6f0ff;
  box-shadow: inset 0 0 30px rgba(0,123,255,0.1);
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .features-grid,
  .services-grid,
  .partners-grid,
  .testimonial-grid {
    flex-direction: column;
    align-items: center;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-overlay {
    padding: 40px 15px;
    border-radius: 10px;
  }
  .newsletter-form {
    flex-direction: column;
    gap: 12px;
  }
}
