:root {
  --primary-color: #2563eb;
  --secondary-color: #1e293b;
  --accent-color: #60a5fa;
  --light-bg: #f8fafc;
  --white: #ffffff;
  --text-body: #64748b;
  --border-radius: 12px;
  --section-padding: 5rem 0;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-body);
  background-color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  color: var(--secondary-color);
  font-weight: 700;
}

a {
  text-decoration: none;
}
.section-padding {
  padding: var(--section-padding);
}
.bg-light-custom {
  background-color: var(--light-bg);
}
.text-primary-custom {
  color: var(--primary-color);
}

.btn-primary-custom {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
}
.btn-primary-custom:hover {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-custom {
  background-color: transparent;
  color: var(--secondary-color);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--secondary-color);
  transition: all 0.3s ease;
}
.btn-outline-custom:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.section-title {
  margin-bottom: 3rem;
  text-align: center;
}
.section-title span {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}
.section-title h2 {
  font-size: 2.5rem;
}
.top-bar {
  background-color: var(--secondary-color);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.6rem 0;
  font-size: 0.85rem;
}
.top-bar i {
  margin-right: 0.4rem;
  color: var(--accent-color);
}
.top-bar-social a {
  color: rgba(255, 255, 255, 0.8);
  margin-left: 1rem;
  transition: 0.3s;
}
.top-bar-social a:hover {
  color: var(--white);
}
.navbar {
  padding: 1rem 0;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}
.navbar-brand img{
  object-fit: cover;
  width: 165px;
}
.nav-link {
  color: var(--secondary-color);
  font-weight: 500;
  margin: 0 0.8rem;
  transition: color 0.3s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}
.navbar-sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.8rem 0;
}
.hero-section {
  padding: 4.5rem 0 6rem 0;
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.hero-content p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 90%;
}
.hero-img {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}
.hero-shape {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 50%;
  height: 100%;
  background: var(--primary-color);
  opacity: 0.09;
  border-radius: 50%;
  z-index: 0;
  filter: blur(80px);
}

.about-img-wrapper {
  position: relative;
}
.about-img {
  border-radius: var(--border-radius);
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.experience-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: var(--primary-color);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}
.experience-badge h3 {
  color: var(--white);
  margin: 0;
  font-size: 2rem;
}
.check-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}
.check-list i {
  color: var(--primary-color);
  margin-right: 10px;
  background: rgba(37, 99, 235, 0.1);
  padding: 5px;
  border-radius: 50%;
  font-size: 0.8rem;
}

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 45%, #dbeafe 100%);
  padding: 2.5rem 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}
.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: 0.3s;
}
.service-card:hover .service-icon {
  background: var(--primary-color);
  color: var(--white);
}
.service-card ul {
  padding-left: 0;
  list-style: none;
  margin-top: 1rem;
  font-size: 0.9rem;
}
.service-card ul li {
  margin-bottom: 0.5rem;
  color: var(--text-body);
}
.service-card ul li::before {
  content: "\2022";
  color: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.stats-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../images/stats-img.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  background-blend-mode: darken;
  color: var(--white);
  padding: 4rem 0;
}
.stat-item {
  text-align: center;
}
.stat-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}
.counter {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
.stat-desc {
  opacity: 0.8;
  font-size: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 2.8rem 1.5rem 1rem;
  opacity: 0;
  transition: 0.3s;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay h5 {
  color: var(--white);
  margin: 0;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-radius);
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.06),
    rgba(96, 165, 250, 0.12)
  );
  border: 1px solid #e2e8f0;
  transition: 0.3s;
}
.feature-card:hover {
  background: #f1f5f9;
}
.feature-icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  font-size: 1.8rem;
  color: var(--primary-color);
}

.testimonial-card {
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 50%, #dbeafe 100%);
  border: 1px solid #e2e8f0;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  margin: 15px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  &:hover {
    background: var(--primary-color);
    color: var(--white);
  }
}
.testimonial-card:hover h5,
.testimonial-card:hover small {
  color: var(--white) !important;
}
.stars {
  color: #fbbf24;
  margin-bottom: 1rem;
}
.client-img {
  width: 60px !important;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
}
.quote-icon {
  font-size: 2rem;
  color: #e2e8f0;
  margin-bottom: 1rem;
  display: block;
}

.cta-section {
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--primary-color) 50%,
    #0f172a 100%
  );
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
}
.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-section p {
  opacity: 0.8;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info-box {
  background: var(--primary-color);
  color: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  height: 100%;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.contact-info-item i {
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.7);
}
.map-container {
  width: 100%;
  height: 480px;
  filter: grayscale(100%);
  transition: filter 0.3s;
}
.map-container:hover {
  filter: grayscale(0%);
}
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 4rem 0 0;
  font-size: 0.9rem;
}
.footer h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer ul li {
  margin-bottom: 0.8rem;
}
.footer ul li a {
  color: #94a3b8;
  transition: 0.3s;
}
.footer ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}
.copyright {
  background: #020617;
  padding: 1.5rem 0;
  margin-top: 3rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-img {
    margin-top: 3rem;
  }
  .experience-badge {
    padding: 1rem;
    right: 10px;
    bottom: -10px;
  }
  .section-title h2 {
    font-size: 2rem;
  }
}
