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

:root {
  --primary-color: #0c2e64;
  --secondary-color: #740d15;
  --font-family: "Poppins", sans-serif;
}

body {
  font-family: var(--font-family);
  padding-top: 70px;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}
.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transition: background-color 0.3s ease;
}

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

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transition: background-color 0.3s ease;
}

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

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  transition: background-color 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: white;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* Navbar Styling */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: white;
  transition: background-color 0.3s ease;
}

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

.navbar-light .navbar-nav .nav-link {
  color: var(--primary-color);
  font-weight: 500;
  padding: 0 15px;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

.navbar-nav {
  gap: 20px;
  flex-direction: row;
}

@media (max-width: 1200px) {
  .call-btn {
    display: none;
  }
}

/* Responsive Styles for Small Screens */
@media (max-width: 767px) {
  .navbar-brand img {
    height: 50px;
  }

  /* Stack navbar items vertically */
  .navbar-nav {
    flex-direction: column;
    text-align: center;
  }

  /* Stack and center buttons */
  .d-flex {
    flex-direction: column;
    align-items: center;
  }

  /* Adjust Call-to-Action Button Spacing */
  .call-btn {
    display: block;
    margin-bottom: 10px;
  }
}

/* Hero Section */
.hero-section h1 {
  color: var(--primary-color);
}

.hero-section .image-wrapper {
  position: relative;
  height: 100%;
}

.hero-section .hero-bg-logo {
  width: 100%;
  opacity: 0.15;
  z-index: 1;
}

.hero-section .hero-main-image {
  width: auto;
  object-fit: contain;
  z-index: 2;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }

  .hero-section p {
    font-size: 1rem;
  }
}

/* Sections */
.section-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-family: var(--font-family);
}

/* About Section */
.about-section p {
  color: #666; /* Muted text color for description */
  font-family: var(--font-family);
}

/* Statistic Card Styling */
.stat-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.stat-card p {
  font-size: 1.1rem;
  color: #ffffff;
}

/* What We Do Section */
.service-cards .card {
  border: none;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-cards .card-body {
  padding: 1.5rem;
  text-align: center;
}

.service-cards .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-cards .card-text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-cards .btn-outline-primary {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  transition: background-color 0.3s, color 0.3s;
}

.service-cards .btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .service-cards .card-title {
    font-size: 1.15rem;
  }

  .service-cards .card-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .service-cards {
    flex-direction: column;
  }

  .service-cards .card {
    margin-bottom: 1rem;
  }

  .service-cards .card-title {
    font-size: 1.1rem;
  }

  .service-cards .card-text {
    font-size: 0.9rem;
  }
}

/* Product Development */
.image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.start-up-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.feature {
  margin-bottom: 2rem;
}

.feature-title {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 600;
}

.feature-description {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

/* Tech Stack */
.tech-stack-container {
  border-radius: 15px;
  padding: 1.5rem 2rem;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 90%;
  margin: auto;
}

.tech-icon {
  height: 100px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

@media (max-width: 576px) {
  .tech-icon {
    max-height: 60px;
  }
}

.tech-icon:hover {
  opacity: 1;
}

/* Contact Page */
.map-container iframe {
  width: 100%;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
