:root {
  --primary: #1A2C58;
  --secondary: #F5AF76;
  --dark: #1a1a1a;
  --light: #f8f9fa;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* Navbar */
.navbar {
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e9ecef;
}

.navbar-light .navbar-nav .nav-link {
  color: #666 !important;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

.navbar-light .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  background:

    url('https://images.pexels.com/photos/3183150/pexels-photo-3183150.jpeg?auto=compress&cs=tinysrgb&w=1200') no-repeat center/cover;

  background-blend-mode: overlay;
  background-attachment: fixed;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0%;
  right: 0%;
  width: 100%;
  height: 200%;
  background-color: #1a2c58e1;
  background-blend-mode: overlay;
  background-attachment: fixed;
}

@keyframes moveBackground {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

.hero-section .display-4 {
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
}

.hero-section .lead {
  font-size: 1.2rem;
  font-weight: 300;
}

.badge {
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gradient Lines */
.gradient-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

/* Gradient Cards */
.gradient-card {
  background-color : #1A2C58;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gradient-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(11, 94, 215, 0.2);
}

.gradient-card-1 {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary) 100%);
}

.gradient-card-2 {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

/* Gradient Icons */
.gradient-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gradient-icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(11, 94, 215, 0.3);
}

.gradient-icon-alt {
  background:  var(--primary);
}

.gradient-icon-sm {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.gradient-icon-sm:hover {
  transform: scale(1.15);
}

.gradient-icon-sm-alt {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

/* Icon Box */
.icon-box {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* Cards */
.expertise-card,
.domain-card,
.blog-card {
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.expertise-card:hover,
.domain-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

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

.blog-image img {
  transition: transform 0.3s ease;
}

/* Value Cards */
.value-card {
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.value-card:hover {
  background: white !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

/* Buttons */
.btn-primary {color: #ffffff !important;}

.btn-gradient {
  background: #1A2C58;
  color: #ffffff;
  border: none;
  font-weight: 600;
  padding: 12px 32px;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  background: #1a2c58ba;
  box-shadow: 0 10px 25px rgba(11, 94, 215, 0.3);
  transform: translateY(-2px);
  color: #ffffff !important;
}

.btn-outline-light {
  border: 2px solid white;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.btn-light {
  background: white;
  color: var(--primary);
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.btn-light:hover {
  background: #f1f3f5;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* Form */
.form-control {
  border-radius: 12px;
  border: 1px solid #e9ecef;
  padding: 12px 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(11, 94, 215, 0.15);
  background: white;
}

.form-label {
  color: #333;
  margin-bottom: 8px;
}

/* Social Icons */
.social-icon {
  width: 40px;
  height: 40px;
  background: #333;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.social-icon:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(11, 94, 215, 0.3);
}

/* Footer Links */
.footer-link {
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--secondary) !important;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-section {
    min-height: auto;
    padding-top: 80px;
  }

  .hero-section .display-4 {
    font-size: 2rem;
  }

  .display-5 {
    font-size: 2rem;
  }

  .col-lg-2-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Typography */
.display-5 {
  font-weight: 800;
  line-height: 1.2;
}

.fw-bold {
  font-weight: 700;
}

/* Spacing */
section {
  overflow-x: hidden;
}

/* Object Fit */
.object-fit-cover {
  object-fit: cover;
}