/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

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

body {
  background: #ffffff;
  color: #333333;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

a {
  color: #004AAD;
  transition: 0.5s;
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  color: #004AAD;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
  color: #333333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
  color: #1a1a1a;
}

h2 {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  height: 80px;
  padding: 0;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#header .container-fluid {
  padding: 15px 30px;
  height: 100%;
}

#header .row {
  height: 100%;
  display: flex;
  align-items: center;
}

#logo {
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.logo-text:hover {
  color: #1e5a9b;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

#nav-menu-container {
  display: flex;
  align-items: center;
}

body.mobile-nav-active #nav-menu-container {
  display: block !important;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 998;
}

body.mobile-nav-active .nav-menu {
  display: flex !important;
  flex-direction: column;
  gap: 15px;
  padding: 0;
}

body.mobile-nav-active .nav-menu li {
  display: list-item !important;
}

body.mobile-nav-active .nav-menu li a {
  display: block !important;
  padding: 10px 0;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  color: #004AAD;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 5px;
}

.nav-menu li a:hover {
  color: #004AAD;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #004AAD;
  transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
  width: 100%;
}

/* Mobile Nav Toggle */

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #004AAD;
  cursor: pointer;
  transition: color 0.3s ease;
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 999;
}

.mobile-nav-toggle:hover {
  color: #004AAD;
}

.mobile-nav-toggle i {
  font-size: 24px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #004AAD 0%, #003d8a 50%, #002d66 100%);
  background-image: url('../img/home.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: end;
  justify-content: center;
  position: relative;
  margin-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}

@media (max-width: 1024px) {
  #hero {
    background-attachment: scroll;
  }
}

#hero::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0,0 L50,50 L100,0" stroke="rgba(255,255,255,0.05)" fill="none"/></pattern></defs><rect fill="url(%23pattern)" width="1200" height="600"/></svg>');
  animation: moveBackground 20s ease-in-out infinite;
  opacity: 0.5;
}

@keyframes moveBackground {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, 20px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 40px;
  width: 100vw;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 60px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  margin-bottom: 80px;
}

.btn-hero {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
}

.btn-hero:hover {
  background: #fff;
  color: #004AAD;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-footer {
  position: absolute;
  bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  left: 50%;
  transform: translateX(-50%);
}

.btn-contact,
.btn-instagram {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.btn-contact:hover,
.btn-instagram:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-instagram i {
  font-size: 16px;
}

/*--------------------------------------------------------------
# Main Content
--------------------------------------------------------------*/

#main {
  position: relative;
  z-index: 10;
}

/*--------------------------------------------------------------
# Our Company Section
--------------------------------------------------------------*/

.company-section {
  padding: 80px 0;
  background: #ffffff;
}

.company-header {
  text-align: center;
}

.company-title {
  color: #004AAD;
  font-size: 24px;
  font-weight: 600;
  display: inline-block;
  padding: 10px 30px;
  border: 2px solid #004AAD;
  border-radius: 30px;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.company-description {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(26, 26, 26, 0.8);
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Stat Cards
--------------------------------------------------------------*/

.stat-cards-container {
  margin-top: 60px;
  margin-bottom: 60px;
}

.stat-card {
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-card-blue {
  background: linear-gradient(135deg, #004AAD 0%, #003580 100%);
  color: #fff;
}

.stat-cards-container .col-lg-4:nth-child(2) .stat-card {
  background-image: url('../img/operational.png');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  background-color: rgba(30, 90, 155, 0.7);
}

.stat-card-gray {
  background: #e8e8e8;
  color: #000;
}

.stat-number {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 15px;
}

.stat-label {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.stat-label-large {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #fff;
}

.stat-description {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Info Cards
--------------------------------------------------------------*/

.info-cards-container {
  margin-top: 40px;
}

.info-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-subtitle {
  font-size: 14px;
  color: rgba(26, 26, 26, 0.7);
  margin: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: #f5f5f5;
  border-top: 1px solid rgba(76, 175, 136, 0.2);
  padding: 40px 0;
  text-align: center;
  color: rgba(26, 26, 26, 0.7);
}

#footer .copyright {
  font-size: 14px;
}

#footer .copyright strong {
  color: #004AAD;
}

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (max-width: 768px) {
  #header {
    height: 70px;
  }

  #header .container-fluid {
    padding: 10px 15px;
  }

  .logo-text {
    font-size: 18px;
  }

  #nav-menu-container {
    display: none !important;
  }

  body.mobile-nav-active #nav-menu-container {
    display: block !important;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 998;
  }

  body.mobile-nav-active .nav-menu {
    display: flex !important;
    flex-direction: column;
    gap: 15px;
  }

  .mobile-nav-toggle {
    display: block;
  }

  #hero {
    margin-top: 70px;
    background-image: url('../img/home-mobile.png') !important;
    background-attachment: scroll !important;
  }

  .hero-content h1 {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .btn-hero {
    margin-bottom: 60px;
  }

  .hero-footer {
    flex-direction: column;
    gap: 15px;
    bottom: 30px;
    padding: 0 20px;
  }

  .btn-contact,
  .btn-instagram {
    width: 100%;
    justify-content: center;
  }

  .company-section {
    padding: 60px 20px;
  }

  .company-description {
    font-size: 14px;
  }

  .stat-cards-container {
    margin-top: 40px;
    gap: 25px;
  }

  .stat-card {
    padding: 30px;
    min-height: 200px;
  }

  .stat-number {
    font-size: 40px;
  }

  .stat-label,
  .stat-label-large {
    font-size: 16px;
  }

  .info-cards-container {
    gap: 20px;
  }

  .info-title {
    font-size: 16px;
  }

  .info-subtitle {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .btn-hero {
    padding: 10px 30px;
    font-size: 14px;
  }

  .hero-footer {
    bottom: 20px;
    padding: 0 15px;
  }

  .company-section {
    padding: 40px 15px;
  }

  .company-title {
    font-size: 18px;
    padding: 8px 20px;
  }

  .stat-cards-container {
    margin-top: 30px;    gap: 25px;  }

  .stat-card {
    padding: 20px;
    min-height: 150px;
  }

  .stat-label,
  .stat-label-large {
    font-size: 14px;
  }

  .info-title {
    font-size: 14px;
  }

  .info-subtitle {
    font-size: 11px;
  }
}
