@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

:root {
  --primary-color: #2c5aa0;
  --secondary-color: #1a365d;
  --accent-color: #4a90a4;
  --light-blue: #e6f3ff;
  --dark-blue: #1a202c;
  --text-dark: #2d3748;
  --text-light: #718096;
  --white: #ffffff;
  --light-gray: #f7fafc;
  --border-radius: 15px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Titillium Web", sans-serif;
  font-size: 16px;
  color: var(--text-dark);
}

h1,
h2,
h3,
h4 {
  font-family: "Titillium Web", sans-serif;
}

p {
  line-height: 1.9;
  font-size: 1rem;
}

.navbar {
  background: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-family: "Titillium Web", sans-serif ;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link::before {
  position: absolute;
  content: "";
  width: 0;
  height: 4px;
  bottom: -1px;
  left: 50%;
  background: #c5cef0;
  transition: all 0.3s ease ;
}

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

.navbar-nav .nav-link:hover:before,
.navbar-nav .nav-link.active:before {
    width: 100%;
    left: 0;
}

.navbar-nav .nav-link.nav-contact::before {
    display: none;
}

.hero-section {
  height: 75vh;
  background: linear-gradient(
    to bottom,
     rgba(255,255,255,0) -1%,
     rgba(167,171,217,0) 39%,
     rgb(10, 11, 24) 100%
     ),
     url("../images/home-banner.webp");
  background-size: cover;
  background-position: top center;
}

.home-hero-title h1 {
  font-size: 1.79rem;
  font-weight: normal;
}

.home-hero-title, .hero-title {
  margin-bottom: 6rem;
  color: var(--white);
}

.hero-title h1 {
  font-size: 2.2rem;
  font-weight: 700;
}

.inner-banner{
  height: 75vh;
  background-position: center center;
}

.hero-section.about-banner {
  background-image: linear-gradient(
      to bottom,
     rgba(255,255,255,0) -1%,
     rgba(167,171,217,0) 39%,
     rgb(10, 11, 24) 100%
    ),
    url("../images/about-banner.webp");
}

.hero-section.service-banner {
  background-image: linear-gradient(
      to bottom,
     rgba(255,255,255,0) -1%,
     rgba(167,171,217,0) 39%,
     rgb(10, 11, 24) 100%
     ),
    url("../images/sevices-banner.webp");
    background-position: center 64%;
}
.hero-section.industries-banner {
  background-image: linear-gradient(
      to bottom,
     rgba(255,255,255,0) -1%,
     rgba(167,171,217,0) 39%,
     rgb(10, 11, 24) 100%
    ),
    url("../images/industries-banner.webp");
}
.hero-section.team-banner {
  background-image: linear-gradient(
      to bottom,
     rgba(255,255,255,0) -1%,
     rgba(167,171,217,0) 39%,
     rgb(10, 11, 24) 100%
    ),
    url("../images/team-banner.webp");
}
.hero-section.contact-banner {
  background-image: linear-gradient(
      to bottom,
     rgba(255,255,255,0) -1%,
     rgba(167,171,217,0) 39%,
     rgb(10, 11, 24) 100%
    ),
    url("../images/contact-banner.webp");
}
.hero-section.blog-banner {
  background-image: linear-gradient(
      to bottom,
     rgba(255,255,255,0) -1%,
     rgba(167,171,217,0) 39%,
     rgb(10, 11, 24) 100%
    ),
    url("../images/blog-banner.webp");
}

.btn-outline-primary {
  background: #c5cef0;
  border: 2px solid #abb6e1;
  color: var(--text-dark);
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateX(2px);
  border-color: var(--primary-color);
}

.section-padding {
  padding: 150px 0;
}

.section-header h2 {
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-header h2 span {
  font-weight: 600;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: #c5cef0;
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: center;
}

.about-image img {
  border-radius: var(--border-radius);
  transition: transform 0.3s ease;
}

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

.service-image img {
  border-radius: var(--border-radius);
  transition: transform 0.3s ease;
  min-height: 400px;
  object-fit: cover;
}

.service-image img.industries-image{
  min-height: 300px;
}

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

.team-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(44, 90, 160, 0.15);
}

.team-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.team-location {
  color: var(--accent-color);
  font-weight: 600;
}

.team-info p {
  color: var(--text-light);
  line-height: 1.7;
}

.blog-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(44, 90, 160, 0.15);
}

.blog-image {
  height: 200px;
}

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

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-date {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
}

.blog-content h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.blog-content p {
  color: var(--text-light);
  line-height: 1.6;
}

.blog-link {
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: var(--accent-color);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  border: 1px solid #cad7ee;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); */
}

.contact-form .form-control {
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-info-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid #cad7ee;
  /* box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08); */
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(44, 90, 160, 0.15);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
  font-size: 1.5rem;
}

.contact-info-card h5 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-info-card p {
  color: var(--text-light);
  margin: 0;
}

.contact-info {
  font-size: 1.15rem;
  color: var(--text-dark);
}

.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  padding: 80px 0;
}

.dark-footer {
  background-color: #111827;
  color: white;
  position: relative;
  overflow: hidden;
}

.top-footer {
  padding: 5rem 0;
}

.footer-logo p {
  font-size: 0.875rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.footer-section-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: #9ca3af;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s ease;
}

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

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: #374151;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.social-link:hover {
  background-color: #3b82f6;
  background-color: var(--primary-color);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid #374151;
}

.footer-copyright {
  color: #9ca3af;
  font-size: 0.875rem;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  margin-bottom: 0.5rem;
}

.legal-link {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: var(--white);
}

.footer-link:focus,
.social-link:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}
.bg-primary{background-color: var(--primary-color) !important;}
.text-primary{color:var(--primary-color) !important;}
.blog .sidebar .list-group-item a{text-decoration: none;color:var(--primary-color) !important;}
.blog ol li{padding-bottom: 5px;}