:root {
  --nav-bar-brand: #fff;
  --brand-900: #002f6c;
  --brand-700: #004c9a;
  --accent: #71c554;
  --muted: #6c757d;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #222;
  background: #f9f9f9;
}

.card,
.btn {
  border-radius: 0 !important;
}

/* Navbar */

.navbar {
  transition: all 0.4s ease-in-out;
  backdrop-filter: blur(10px);
}

.navbar.scrolled {
  background: var(--brand-900);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.25);
}

.navbar-brand {
  background: var(--nav-bar-brand);
  border-radius: 30px;
}

.nav-link {
  color: #fff !important;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent) !important;
}

.logo-image {
  height: 44px;
}

/* Hero */

.hero {
  padding-top: 56px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(
      90deg,
      rgba(0, 47, 108, 0.95) 0%,
      rgba(0, 76, 154, 0.9) 60%
    ),
    url("./assets/images/hero-background.jpeg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero .left {
  padding: 2rem;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--accent);
}

.hero .lead {
  font-size: 1.05rem;
  color: #e7f2ff;
  margin-bottom: 1rem;
}

.typed {
  color: #fff;
  font-weight: 600;
}

.hero .computer-screen {
  background-image: url(../images/Computer-Screen.png);
  width: 350px;
  height: 300px;
  background-size: cover;
  overflow: hidden;
  padding: 28px 19px;
}

.hero .computer-screen .carousel-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #71c55455;
}

.hero .computer-screen .carousel-item .carousel-caption {
  width: 100%;
  padding-bottom: 0;
  padding-top: 0;
  top: 20%;
  left: 50%;
  bottom: auto;
  right: 0;
  transform: translate(-50%, 0);
}

.hero .computer-screen .carousel-item .carousel-caption .carousel-caption-text {
  background-color: #ffffffcc;
  padding: 15px;
}

.hero .computer-screen .carousel-item .carousel-caption h6 {
  color: var(--brand-900);
}
.hero .computer-screen .carousel-item .carousel-caption ul li {
  text-align: left;
  font-size: small;
  color: var(--brand-900);
}

.about-section ul li {
  margin-bottom: 8px;
}

.about-section ul li i {
  color: var(--accent);
}

/* Services */

.service-card,
.why-card {
  border: none;
  border-radius: 14px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  background: #fff;
}

.service-card:hover,
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(2, 48, 80, 0.12);
}

.service-card h6,
.services-subtitle,
.why-card h5 {
  color: var(--brand-900);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 28px;
  color: var(--accent);
}

/* Parallax */

.parallax {
  background: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1500&q=80")
    center/cover fixed no-repeat;
  color: #fff;
  text-align: center;
  position: relative;
}

.parallax .overlay {
  background: #71c55455;
  padding: 50px 0;
  display: inline-block;
  width: 100%;
}

.parallax div.rounded-circle {
  background-color: var(--accent);
}

.parallax i {
  font-size: 40px;
  color: var(--nav-bar-brand);
}

.why-title {
  position: relative;
}

.why-title p {
  color: var(--brand-900)
}

.why-title::before {
  border-radius: 2px;
  content: "";
  position: absolute;
  left: 24px;
  top: 20px;
  width: 4px;
  height: calc(100% - 40px);
  background: var(--accent);
}

.why-title::after {
  border-radius: 2px;
  content: "";
  position: absolute;
  right: 24px;
  top: 20px;
  width: 4px;
  height: calc(100% - 40px);
  background: var(--accent);
}

.counter {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}

.offer-card {
  border-radius: 12px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.offer-title {
  color: #004c9a;
}

.offer-subtitle {
  font-size: 16px;
  margin-bottom: 20px;
}

.pricing-box {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  transition: 0.3s;
}

.pricing-box h6 {
  color: #004c9a;
  font-weight: 600;
}

.pricing-box h3 {
  color: #71c554;
  font-weight: 700;
}

.pricing-box.highlight {
  background: #f6fbff;
  border: 2px solid #71c554;
}

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

.offer-btn {
  background: #004c9a;
  color: white;
  padding: 10px 25px;
  border-radius: 6px;
  font-weight: 600;
}

.offer-btn:hover {
  background: #003a75;
  color: white;
}

.limited-text {
  color: #d9534f;
  font-weight: 600;
  margin-top: 10px;
}

.contact-info {
  margin-top: 15px;
  font-size: 14px;
  color: #555;
}

.contact-wrapper {
  position: relative;
}

/* Top background section */

.contact-header {
  background: #004c9a;
  padding: 80px 20px 120px;
}

.contact-header h2 {
  font-weight: 700;
}

.contact-header p {
  opacity: 0.9;
  max-width: 600px;
  margin: auto;
}

/* Cards overlapping */

.contact-cards {
  margin-top: -80px;
}

/* Contact cards */

.contact-box {
  background: white;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.contact-box:hover {
  transform: translateY(-6px);
}

.contact-icon {
  font-size: 40px;
  color: #71c554;
  margin-bottom: 15px;
}

.contact-box h5 {
  color: #004c9a;
  font-weight: 600;
}

.contact-box p {
  color: #666;
  font-size: 14px;
}

.contact-link {
  display: inline-block;
  margin-top: 10px;
  color: #004c9a;
  font-weight: 500;
  text-decoration: none;
}

.contact-link:hover {
  color: #71c554;
}

.contact-btn {
  background: #71c554;
  color: white;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-top: 10px;
}

.contact-btn:hover {
  background: #5bb13e;
  color: white;
}

.email-btn {
  background: #004c9a;
}

.email-btn:hover {
  background: #003b78;
}

/* Contact & Footer */

.contact-card {
  border-radius: 12px;
  background: #fff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

footer {
  background: var(--brand-900);
  color: #eaf5ff;
  padding: 28px 0;
  margin-top: 40px;
}

footer a {
  color: #cfeeff;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: var(--accent);
  text-decoration: underline;
}

@media (max-width: 767px) {
  .hero {
    min-height: 70vh;
    padding: 60px 0;
  }
  .hero .right {
    margin-top: 30px;
    text-align: center;
  }
}
