/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #313131;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   NAVIGATION & HEADER
   ============================================ */
.navbar {
  background-color: #fff;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #e9ecef;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.98);
}

.container-navbar {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.logo {
  display: inline-block;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  height: 60px !important;
  width: auto !important;
  display: block;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-left: auto;
}

.nav-link {
  color: #1a2b4c;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #1a2b4c;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: #000;
}

.nav-link.active {
  color: #000;
  font-weight: 600;
}

.navlink-contactus {
  background-color: #1a2b4c;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  border: 2px solid #1a2b4c;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(26, 43, 76, 0.15);
  position: relative;
  overflow: hidden;
}

.navlink-contactus::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.navlink-contactus:hover::before {
  left: 100%;
}

.navlink-contactus:hover {
  background-color: #0f1b2e;
  border-color: #0f1b2e;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(26, 43, 76, 0.25);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: #f6f6f6;
  padding: 60px 0 40px 0;
  border-top: 1px solid #ddd;
}

.footer_container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 50px;
}

.footer_logo-link {
  display: inline-block;
}

.footer_main-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 0;
}

.footer_left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer_logo-and-social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer_right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
  margin-top: -10px;
}

.footer_logo-image {
  height: 25px !important;
  width: auto !important;
  object-fit: contain;
}

.footer_social-media-logos {
  display: flex;
  gap: 15px;
}

.sm-logo-1 {
  display: inline-block;
}

.logo-fb-image,
.logo-linkedin-image {
  width: 24px;
  height: 24px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.logo-fb-image:hover,
.logo-linkedin-image:hover {
  opacity: 1;
}

.footer_navlinks {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-navlink {
  color: #313131;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-navlink:hover {
  color: #1a2b4c;
}

.footer_company-info {
  text-align: right;
}

.footer_company-details {
  font-size: 13px;
  line-height: 1.8;
  color: #666;
}

.footer_company-details p {
  margin: 0;
}

.footer_company-details a {
  color: #666;
  text-decoration: none;
}

.footer_company-details a:hover {
  color: #1a2b4c;
  text-decoration: underline;
}

.footer_bottom {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer_legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer_legal-link {
  color: #666;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer_legal-link:hover {
  color: #1a2b4c;
  text-decoration: underline;
}

.footer_copyright {
  font-size: 13px;
  color: #666;
}

.footer_disclaimer {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

.footer_disclaimer p {
  font-size: 11px;
  line-height: 1.6;
  color: #888;
  max-width: 900px;
  margin: 0 auto;
}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */
.w-nav-button {
  display: none;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.mobile-nav-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-nav-menu.active {
  transform: translateX(0);
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #1a2b4c;
}

.mobile-nav-links {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-links .nav-link {
  font-size: 18px;
  padding: 10px 0;
  border-bottom: 1px solid #e9ecef;
}

/* ============================================
   CTA SECTION
   ============================================ */
.section_cta {
  padding: 60px 0;
  background-color: #1a2b4c;
  text-align: center;
  color: white;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 50px;
}

.cta-heading {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 25px;
}

.cta-subheading {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-button-white {
  background-color: white;
  color: #1a2b4c;
  padding: 20px 50px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
  margin-bottom: 15px;
}

.cta-button-white:hover {
  background-color: #f8faff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

@keyframes heroFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes heroVideoFadeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ============================================
   RESPONSIVE DESIGN - TABLET (1024px)
   ============================================ */
@media (max-width: 1024px) {
  .container-navbar {
    padding: 0 30px;
  }

  .footer_container {
    padding: 0 30px;
  }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE (768px)
   ============================================ */
@media (max-width: 768px) {
  * {
    max-width: 100vw !important;
  }

  .container-navbar {
    padding: 0 20px;
    justify-content: flex-start;
    gap: 20px;
  }

  .logo img {
    height: 48px !important;
  }

  .logo {
    position: static;
    transform: none;
    margin-right: auto;
  }

  .nav-menu {
    display: none;
  }

  .w-nav-button {
    display: block;
    color: #1a2b4c;
    font-size: 24px;
    cursor: pointer;
  }

  .footer_container {
    padding: 0 20px;
  }

  .footer_main-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .footer_left {
    flex-direction: row;
    align-items: center;
    gap: 15px;
    width: 100%;
  }

  .footer_logo-link {
    margin-right: auto;
  }

  .footer_logo-image {
    height: 19px !important;
  }

  .footer {
    padding: 30px 0 30px 0;
  }

  .footer_navlinks {
    flex-direction: column;
    gap: 15px;
    margin-top: 0;
  }

  .footer_right {
    align-items: flex-start;
  }

  .footer_company-info {
    text-align: left;
  }

  .footer_bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer_legal-links {
    justify-content: center;
  }

  .cta-container {
    padding: 0 20px;
  }

  .cta-heading {
    font-size: 32px;
  }

  .cta-subheading {
    font-size: 16px;
  }

  .section_cta {
    padding: 50px 0;
  }
}

/* ============================================
   RESPONSIVE DESIGN - SMALL MOBILE (480px)
   ============================================ */
@media (max-width: 480px) {
  .logo img {
    height: 40px !important;
  }

  .footer_logo-image {
    height: 14px !important;
  }

  .cta-heading {
    font-size: 28px;
  }

  .cta-button-white {
    width: 100%;
    padding: 18px 30px;
    font-size: 18px;
  }
}
