@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
}

:root {
  --primary-gradient: linear-gradient(135deg, #e6f7ff 0%, #ffffff 100%);
  --primary-color: #0066cc;
  --hover-color: #0059b3;
}

body {
  background: var(--primary-gradient);
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Roboto", serif;
}

/* Navbar Styles */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

.navbar-brand img {
  height: 55px;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.logo-container {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.nav-link {
  color: #333 !important;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem !important;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.btn-login,
.btn-signup {
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

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

.btn-login:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-signup {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: white;
}

.btn-signup:hover {
  background-color: var(--hover-color);
  border-color: var(--hover-color);
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 80px 20px;
  color: white;
  background-color: #f6f6f8;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: bold;
  animation: fadeInDown 1s ease-in-out;
  margin-top: 5vw;
  color: #5e9ddc;
  user-select: none;
}

.hero-section p {
  font-size: 1.4rem;
  font-style: italic;
  animation: fadeInUp 1s ease-in-out;
  color: #5e9ddc;
  user-select: none;
}

/* Full-Width Image */
.full-image {
  width: 100%;
  height: auto;
  animation: fadeIn 2s ease-in-out;
}

.about-section {
  display: flex;
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  position: relative;
  background: white;
}

.image-grid {
  width: 50%;
  position: relative;
  height: 600px;
}

.image-box {
  position: absolute;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-box:hover img {
  transform: scale(1.05);
}

/* Top Image */
.top-image {
  width: 60%;
  height: 250px;
  top: 0;
  left: 0;
  animation: slideInTop 1s ease-out;
}

/* Center Image with Experience Text */
.center-image {
  width: 70%;
  height: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  animation: scaleIn 1s ease-out;
}

/* Side Image */
.side-image {
  width: 50%;
  height: 220px;
  bottom: 0;
  right: 0;
  animation: slideInRight 1s ease-out;
}

.experience-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  opacity: 0;
  animation: fadeIn 0.5s ease-out 1s forwards;
}

.text-content {
  width: 50%;
  padding: 20px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.text-content h2 {
  font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 25px;
  animation: slideInRight 1s ease-out;
}

.text-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
  animation: fadeIn 1s ease-out 0.5s;
}

/* Animation Keyframes */
@keyframes slideInTop {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }

  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.image-container {
  position: relative;
  display: inline-block;
}

.fade-image {
  display: block;
  width: 100%;
  position: relative;
}

.image-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
  pointer-events: none;
}

/* Custom Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 1s ease-out;
}

/* Custom Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 1s ease-out;
}

/* Flexbox Layout for Sections */
.sections-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 0;
  user-select: none;
}

.section {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #2c3e50;
}

.section-content {
  font-size: 1rem;
  line-height: 1.6;
  color: #34495e;
}

/* SVG Icons */
.icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.growfinix-recognition-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  user-select: none;
}

.recognition-content {
  max-width: 1200px;
  margin: 0 auto;
}

.recognition-header {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: flex-start;
}

.recognition-title {
  flex: 1;
  padding-right: 20px;
}

.recognition-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
}

.recognition-title p {
  font-size: 1.25rem;
  font-weight: 500;
  color: #ff7e5f;
  line-height: 1.5;
}

.recognition-description {
  flex: 1;
}

.recognition-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.certification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.certification-item {
  background: white;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.certification-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.certification-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 10px;
  padding: 15px;
  background: #f8f9fa;
  transition: transform 0.3s ease;
}

.certification-item:hover img {
  transform: scale(1.05);
}

.certification-item span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
}

/* Animation classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-card {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  user-select: none;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-number {
  font-size: 24px;
  font-weight: bold;
  color: #17a2b8;
  background: #e0f7fa;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 20px;
}

.stats-section {
  padding: 60px 0;
  background: #f8f9fa;
  text-align: center;
  user-select: none;
}

.stat-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: scale(1.05);
}

.stat-icon {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 10px;
}

.counter {
  font-size: 32px;
  font-weight: bold;
}

        /* Footer Styles */
        .footer {
          background: #1e293b;
          color: white;
          padding: 4rem 0 2rem;
      }

      .footer-logo {
          height: 150px;
          margin-bottom: 1rem;
      }

      .footer-links h5 {
          color: #94a3b8;
          margin-bottom: 1.5rem;
      }

      .footer-links ul {
          list-style: none;
          padding: 0;
      }

      .footer-links li {
          margin-bottom: 0.8rem;
      }

      .footer-links a {
          color: #e2e8f0;
          text-decoration: none;
          transition: all 0.3s ease;
      }

      .footer-links a:hover {
          color: var(--primary-color);
      }

      .social-links a {
          color: white;
          margin-right: 1rem;
          font-size: 1.5rem;
          transition: all 0.3s ease;
      }

      .social-links a:hover {
          color: var(--primary-color);
          transform: translateY(-3px);
      }

      .copyright {
          border-top: 1px solid #334155;
          margin-top: 3rem;
          padding-top: 2rem;
          text-align: center;
          color: #94a3b8;
      }


@media (max-width: 768px) {
  .logo-container {
    width: 35px;
    height: 35px;
  }

  .navbar-brand {
    font-size: 1.25rem;
  }

  .footer {
    padding: 2rem 0 1rem;
}

.footer-section {
    margin-bottom: 2rem;
}

  .hero-section {
    padding: 60px 15px;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1.2rem;
  }
  .sections-container {
    flex-direction: column;
  }

  .section {
    min-width: 100%;
  }
  .growfinix-recognition-section {
    padding: 60px 20px;
  }

  .recognition-title h2 {
    font-size: 2rem;
  }

  .recognition-title p {
    font-size: 1.1rem;
  }

  .certification-grid {
    gap: 20px;
  }

  .status_count {
    gap: 20px;
  }
}
/* Responsive Design */
@media (max-width: 992px) {
  .about-section {
    flex-direction: column;
  }

  .image-grid,
  .text-content {
    width: 100%;
  }

  .image-grid {
    height: 400px;
    margin-bottom: 40px;
  }

  .top-image {
    width: 50%;
    height: 180px;
  }

  .center-image {
    width: 60%;
    height: 200px;
  }

  .side-image {
    width: 45%;
    height: 160px;
  }

  .experience-overlay {
    font-size: 1.2rem;
    padding: 10px 20px;
  }
  .recognition-header {
    flex-direction: column;
    gap: 30px;
  }

  .recognition-title,
  .recognition-description {
    padding-right: 0;
  }

  .certification-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
