@import 'bootstrap/scss/bootstrap';
@import 'bootstrap-icons/font/bootstrap-icons';
@import url("https://cdn.rawgit.com/mfd/09b70eb47474836f25a21660282ce0fd/raw/e06a670afcb2b861ed2ac4a1ef752d062ef6b46b/Gilroy.css");

body {
  font-family: 'Gilroy', Arial, Helvetica, sans-serif;
}

/* Base Colors */

.primary-color {
  color: #1e3c94;
}

.secondary-color {
  color: #f8c561;
}

.ternary-color {
  color: #f47f21;
}

/* BG Colors */

.primary-bgcolor {
  background-color: #1e3c94;
}

.secondary-bgcolor {
  background-color: #f8c561;
}

.ternary-bgcolor {
  background-color: #f47f21;
}

/* Navbar */

.navbar-brand-logo {
  width: 80px;
}

.hero {
  background-color: #1e3c94;
  height: 65vh;
  clip-path: polygon(0px 0px, 100% 0px, 100% 90%, 0px 100%);
}

/* Services Section */
.services {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  height: 100%;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2rem;
}

.service-image {
  max-height: 150px;
}

/* About Section */
.about {
  padding: 80px 0;
}

.about-stats {
  background: linear-gradient(135deg, #1e3c94, #f47f21);
  color: white;
  padding: 60px 0;
  margin-top: 50px;
}

.stat-item {
  text-align: center;
  margin-bottom: 30px;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  display: block;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info {
  padding: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: #1e3c94;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 1.2rem;
}

/* Footer */
.footer {
  background-color: #1e3c94;
  color: white;
  padding: 50px 0 30px;
}

.footer-social a {
  color: white;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #f8c561;
}

.footer-logo {
  height: 60px;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Button styles */
.btn-primary-custom {
  background-color: #1e3c94;
  border-color: #1e3c94;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: #f47f21;
  border-color: #f47f21;
  transform: translateY(-2px);
}

.btn-secondary-custom {
  background-color: #f8c561;
  border-color: #f8c561;
  color: #1e3c94;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
  background-color: #f47f21;
  border-color: #f47f21;
  color: white;
  transform: translateY(-2px);
}

