/* -----------------------------------
   Fonts & Icons
----------------------------------- */
@font-face {
  font-family: 'bootstrap-icons';
  src: url('./bootstrap-icons.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* -----------------------------------
   Global Resets & Utilities
----------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  background-color: #f8f9fa;
  font-family: Arial, Helvetica, sans-serif, Times, serif, Courier, monospace;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: #0d6efd; /* Bootstrap Primary */
}

.textblack {
  color: black;
  font-weight: 700;
}

#bluecolor {
  background-color: #153f6c;
  color: white;
}

#starcolor {
  color: red;
}

/* Make sure video and overlay don't block navbar clicks */
.hero video,
.hero .bg-dark {
  pointer-events: none;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.navebar-color{
  background-color: rgba(255, 255, 255, 0.59);
}

.navbar-toggler {
  margin-left: auto;
}


/* -----------------------------------
   Logos
----------------------------------- */
#CompanyLogo {
  width: 200px;
  height: auto;
}
#FormCompanyLogo {
  width: 30%;
}
#form-co-logo {
  width: 300px;
}
.logo {
  max-width: 180px;
  margin-bottom: 20px;
}

/* -----------------------------------
   Headings
----------------------------------- */
h1 {
  font-size: 2rem;
  font-weight: bolder;
}

.section-title {
  font-weight: bold;
}

/* -----------------------------------
   Hero Section
----------------------------------- */
.hero {
  background: #f8f9fa;
  padding: 60px 0;
}
.hero img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
}

/* -----------------------------------
   Buttons
----------------------------------- */

.btn-get-started {
  background-color: #0d6efd;
  color: #fff;
  padding: 10px 24px;
  font-size: 16px;
}

.btn-home {
  margin-top: 25px;
  background-color: #194e87 !important;
  border-color: #194e87 !important;
  color: #fff !important;
}
.btn-home:hover,
.btn-home:focus {
  background-color: #153f6c !important;
  border-color: #153f6c !important;
}
.btn-home:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(25, 78, 135, 0.3);
}

.navlinks{
  color: black;
}

/* -----------------------------------
   Cards & Hover Effects
----------------------------------- */
.card-hover:hover {
  transform: translateY(-15px);
  transition: transform 0.5s ease;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.navbutton:hover {
  transform: translateY(10px);
  transition: transform 0.5s ease;
  background-color: #0d6dfd21;
  border-radius: 10px;
  box-shadow: 0 0.8rem 1rem rgba(7, 135, 240, 0.582);
}

.logoh:hover{
  background-color: #0d6dfd21;
  border-radius: 500px;
  box-shadow: 0 0.8rem 1rem rgba(7, 135, 240, 0.468);

}

.service-card {
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.service-icon {
  font-size: 2.5rem;
}

/* -----------------------------------
   Animations
----------------------------------- */
.animate-fade,
.animate-slide-top,
.animate-slide-left,
.animate-slide-right,
.animate-slide-up {
  opacity: 0;
  transition: all 0.6s ease-out;
  will-change: opacity, transform;
}

/* Fade */
.animate-fade {
  transform: translateY(40px);
}
.animate-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide Directions */
.animate-slide-top {
  transform: translateY(-30px);
}
.animate-slide-left {
  transform: translateX(-30px);
}
.animate-slide-right {
  transform: translateX(30px);
}
.animate-slide-up {
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}
.in-view,
.animate-slide-up.show {
  opacity: 1;
  transform: translate(0, 0);
}
/* Social Icon Style */
.social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.3rem;
  color: white;
  background-color: rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}

.social-icon:hover {
  transform: scale(1.15);
  color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Brand hover colors */
.social-icon.facebook:hover {
  background-color: #1877f2;
}

.social-icon.linkedin:hover {
  background-color: #0a66c2;
}

.social-icon.instagram:hover {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf, #4f5bd5);
}

/* -----------------------------------
   Forms
----------------------------------- */
.upload-form {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  margin: auto;
}
.form-wrapper {
  max-width: 900px;
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.form-label span {
  color: red;
}
@media (max-width: 768px) {
  .form-wrapper {
    padding: 1rem;
  }
}

/* -----------------------------------
   Images
----------------------------------- */
#in-img {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-height: 450px;
}
@media (max-width: 768px) {
  #in-img {
    aspect-ratio: 4 / 3; /* Taller for mobile */
  }
}

@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    padding-right: 1rem; /* Space on right side */
    padding-left: 1rem;  /* Space on left side */
  }
  .dropdown-menu {
    width: 100%; /* Make dropdown fit inside mobile menu */
  }
}

/* -----------------------------------
   Thank You Page
----------------------------------- */
.thank-you-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.thank-you-box {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
}
.thank-you-icon {
  font-size: 4rem;
  color: #194e87;
}

/* -----------------------------------
   Social Icons
----------------------------------- */
.socialicons {
  font-size: 30px;
  margin: 10px;
}
