/*==========================
    GLOBAL CSS
==========================*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;

  background: #f8fafc;

  color: #1e293b;

  overflow-x: hidden;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;

  margin: 0;

  padding: 0;
}

img {
  max-width: 100%;
}

section {
  padding: 100px 0;
}

.container {
  max-width: 1200px;
}

/*====================================
            NAVBAR
=====================================*/

.custom-navbar {
  background: rgba(15, 23, 42, 0.85);

  backdrop-filter: blur(18px);

  transition: 0.4s;

  padding: 18px 0;

  z-index: 9999;
}

.navbar-brand {
  font-size: 24px;

  font-weight: 700;

  color: #fff;
}

.logo {
  width: 42px;

  margin-right: 10px;
}

.logo-text {
  color: #fff;

  font-size: 24px;

  font-weight: 700;
}

.nav-link {
  color: #fff;

  margin-left: 22px;

  font-weight: 500;

  transition: 0.3s;
}

.nav-link:hover {
  color: #38bdf8;
}

.nav-link.active {
  color: #38bdf8;
}

.quote-btn {
  background: #2563eb;

  color: #fff;

  padding: 12px 26px;

  border-radius: 50px;

  font-weight: 600;

  transition: 0.3s;
}

.quote-btn:hover {
  background: #38bdf8;

  color: #fff;

  transform: translateY(-3px);
}

.navbar-toggler {
  border: none;

  box-shadow: none;
}

.navbar-toggler i {
  color: #fff;

  font-size: 26px;
}

/*====================================
            HERO SECTION
=====================================*/

.hero-section {
  min-height: 100vh;

  background: linear-gradient(135deg, #0f172a, #1e3a8a);

  color: #fff;

  position: relative;

  overflow: hidden;
}

.hero-section::before {
  content: "";

  position: absolute;

  width: 600px;

  height: 600px;

  background: #2563eb;

  opacity: 0.15;

  border-radius: 50%;

  top: -200px;

  right: -150px;
}

.hero-tag {
  display: inline-block;

  background: rgba(255, 255, 255, 0.12);

  padding: 10px 22px;

  border-radius: 50px;

  font-size: 15px;

  color: #38bdf8;
}

.hero-title {
  font-size: 60px;

  font-weight: 800;

  line-height: 1.2;

  margin: 25px 0;
}

.hero-title span {
  color: #38bdf8;
}

.hero-text {
  font-size: 18px;

  color: #cbd5e1;

  line-height: 32px;

  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;

  gap: 20px;

  margin-bottom: 50px;
}

.btn-primary-custom {
  background: #2563eb;

  color: #fff;

  padding: 15px 34px;

  border-radius: 50px;

  font-weight: 600;

  transition: 0.3s;
}

.btn-primary-custom:hover {
  background: #38bdf8;

  color: #fff;

  transform: translateY(-4px);
}

.btn-outline-custom {
  border: 2px solid #38bdf8;

  color: #38bdf8;

  padding: 15px 34px;

  border-radius: 50px;

  font-weight: 600;

  transition: 0.3s;
}

.btn-outline-custom:hover {
  background: #38bdf8;

  color: #fff;
}

.hero-stats {
  display: flex;

  gap: 60px;
}

.hero-stats h2 {
  font-size: 40px;

  font-weight: 700;
}

.hero-stats span {
  color: #cbd5e1;
}

.hero-image {
  max-width: 100%;

  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }

  100% {
    transform: translateY(0);
  }
}

/*====================================
            ABOUT SECTION
=====================================*/

.about-section {
  background: #fff;
}

.section-tag {
  display: inline-block;

  background: #dbeafe;

  color: #2563eb;

  padding: 8px 18px;

  border-radius: 50px;

  font-weight: 600;

  font-size: 14px;
}

.section-title {
  font-size: 44px;

  font-weight: 700;

  color: #0f172a;

  margin: 25px 0;

  line-height: 1.3;
}

.section-title span {
  color: #2563eb;
}

.section-text {
  color: #64748b;

  font-size: 17px;

  line-height: 32px;
}

.about-image {
  border-radius: 20px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-card {
  background: #f8fafc;

  padding: 30px;

  border-radius: 18px;

  margin-top: 25px;

  transition: 0.3s;

  border: 1px solid #e2e8f0;
}

.about-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-card i {
  width: 60px;

  height: 60px;

  background: #2563eb;

  color: #fff;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 24px;

  margin-bottom: 20px;
}

.about-card h5 {
  font-weight: 700;

  margin-bottom: 15px;
}

.about-card p {
  color: #64748b;

  line-height: 28px;
}

/*====================================
        SERVICES SECTION
=====================================*/

.services-section {
  background: #f8fafc;
}

.service-card {
  background: #fff;

  padding: 40px 30px;

  border-radius: 20px;

  transition: 0.35s;

  height: 100%;

  border: 1px solid #e2e8f0;
}

.service-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.service-icon {
  width: 80px;

  height: 80px;

  border-radius: 18px;

  background: linear-gradient(135deg, #2563eb, #38bdf8);

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

  font-size: 30px;

  margin-bottom: 25px;
}

.service-card h4 {
  font-size: 24px;

  font-weight: 700;

  color: #0f172a;

  margin-bottom: 15px;
}

.service-card p {
  color: #64748b;

  line-height: 30px;

  margin: 0;
}

/*====================================
        WHY CHOOSE US
=====================================*/

.why-us {
  background: #0f172a;

  color: #fff;
}

.why-us .section-title {
  color: #fff;
}

.why-us .section-text {
  color: #cbd5e1;
}

.why-feature {
  display: flex;

  align-items: flex-start;

  gap: 20px;

  margin-top: 30px;
}

.why-feature i {
  width: 55px;

  height: 55px;

  background: #2563eb;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

  font-size: 22px;

  flex-shrink: 0;
}

.why-feature h5 {
  font-weight: 600;

  margin-bottom: 8px;
}

.why-feature p {
  color: #cbd5e1;

  margin: 0;
}

.stats-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 25px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 20px;

  padding: 40px;

  text-align: center;

  transition: 0.3s;
}

.stat-card:hover {
  transform: translateY(-8px);

  background: #2563eb;
}

.stat-card h2 {
  font-size: 48px;

  font-weight: 700;

  color: #38bdf8;

  margin-bottom: 10px;
}

.stat-card p {
  margin: 0;

  color: #e2e8f0;
}

/*====================================
        TECHNOLOGY SECTION
=====================================*/

.technology-section {
  background: #f8fafc;
}

.tech-card {
  background: #fff;

  padding: 35px 20px;

  text-align: center;

  border-radius: 20px;

  border: 1px solid #e2e8f0;

  transition: 0.35s;

  height: 100%;
}

.tech-card:hover {
  transform: translateY(-10px);

  background: #2563eb;
}

.tech-card i {
  font-size: 48px;

  color: #2563eb;

  margin-bottom: 20px;

  transition: 0.3s;
}

.tech-card h5 {
  font-weight: 600;

  color: #0f172a;

  transition: 0.3s;
}

.tech-card:hover i,
.tech-card:hover h5 {
  color: #fff;
}

/*====================================
        INDUSTRIES SECTION
=====================================*/

.industries-section {
  background: #fff;
}

.industry-card {
  background: #fff;

  border: 1px solid #e2e8f0;

  border-radius: 20px;

  padding: 35px 25px;

  text-align: center;

  transition: 0.35s;

  height: 100%;
}

.industry-card:hover {
  background: #0f172a;

  transform: translateY(-10px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.industry-icon {
  width: 85px;

  height: 85px;

  margin: auto;

  margin-bottom: 25px;

  border-radius: 50%;

  background: linear-gradient(135deg, #2563eb, #38bdf8);

  display: flex;

  justify-content: center;

  align-items: center;
}

.industry-icon i {
  color: #fff;

  font-size: 34px;
}

.industry-card h4 {
  margin-bottom: 15px;

  font-weight: 700;

  color: #0f172a;

  transition: 0.3s;
}

.industry-card p {
  color: #64748b;

  line-height: 28px;

  transition: 0.3s;
}

.industry-card:hover h4,
.industry-card:hover p {
  color: #fff;
}

/*====================================
        PROCESS SECTION
=====================================*/

.process-section {
  background: #f8fafc;
}

.process-card {
  background: #fff;

  border-radius: 20px;

  padding: 35px 20px;

  text-align: center;

  position: relative;

  height: 100%;

  border: 1px solid #e2e8f0;

  transition: 0.35s;
}

.process-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.process-number {
  position: absolute;

  top: -15px;

  left: 50%;

  transform: translateX(-50%);

  width: 40px;

  height: 40px;

  background: #2563eb;

  color: #fff;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  font-weight: 700;
}

.process-card i {
  font-size: 40px;

  color: #2563eb;

  margin-top: 20px;

  margin-bottom: 20px;
}

.process-card h5 {
  font-weight: 700;

  margin-bottom: 15px;

  color: #0f172a;
}

.process-card p {
  color: #64748b;

  line-height: 28px;

  font-size: 15px;
}

/*====================================
        CONTACT SECTION
=====================================*/

.contact-section {
  background: #fff;
}

.contact-info {
  background: #0f172a;

  color: #fff;

  padding: 45px;

  border-radius: 25px;

  height: 100%;
}

.contact-item {
  display: flex;

  gap: 20px;

  margin-bottom: 35px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item .icon {
  width: 60px;

  height: 60px;

  background: #2563eb;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 22px;

  flex-shrink: 0;
}

.contact-item h5 {
  margin-bottom: 8px;

  font-weight: 600;
}

.contact-item p {
  color: #cbd5e1;

  margin: 0;

  line-height: 28px;
}

.contact-form {
  background: #f8fafc;

  padding: 45px;

  border-radius: 25px;

  border: 1px solid #e2e8f0;
}

.contact-form .form-control {
  border-radius: 12px;

  padding: 14px 18px;

  border: 1px solid #cbd5e1;

  box-shadow: none;
}

.contact-form .form-control:focus {
  border-color: #2563eb;

  box-shadow: 0 0 0 0.15rem rgba(37, 99, 235, 0.2);
}

.contact-form textarea {
  resize: none;
}

.contact-form button {
  padding: 14px 35px;

  border-radius: 50px;
}

/*====================================
        FOOTER
=====================================*/

.footer {
  background: #0f172a;

  color: #cbd5e1;

  padding: 80px 0 25px;
}

.footer-logo {
  width: 170px;

  margin-bottom: 25px;
}

.footer-about {
  line-height: 30px;

  margin-bottom: 30px;
}

.footer h4 {
  color: #fff;

  margin-bottom: 25px;

  font-size: 22px;

  font-weight: 600;
}

.footer ul {
  list-style: none;

  padding: 0;

  margin: 0;
}

.footer ul li {
  margin-bottom: 14px;
}

.footer ul li a {
  color: #cbd5e1;

  text-decoration: none;

  transition: 0.3s;
}

.footer ul li a:hover {
  color: #38bdf8;

  padding-left: 6px;
}

.footer-contact i {
  color: #38bdf8;

  width: 25px;
}

.footer-social {
  display: flex;

  gap: 15px;
}

.footer-social a {
  width: 45px;

  height: 45px;

  border-radius: 50%;

  background: #1e293b;

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  transition: 0.3s;
}

.footer-social a:hover {
  background: #2563eb;

  transform: translateY(-5px);
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.08);

  margin: 50px 0 25px;
}

.footer-bottom {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

.footer-bottom p {
  margin: 0;
}

.back-top {
  width: 48px;

  height: 48px;

  border-radius: 50%;

  background: #2563eb;

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  transition: 0.3s;
}

.back-top:hover {
  background: #38bdf8;

  color: #fff;
}
